@charset "utf-8";

.footer {
  background-color: #333333;
  padding-top: 50px;
  padding-bottom: 30px;
}

.contact {
  margin-left: 10rem;
  margin-right: 10rem;
  padding-top: 50px;
  padding-bottom: 50px;
  padding-left: 50px;
  padding-right: 50px;
  background-color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 20px;
}

.contact-text h1 {
  margin-bottom: 30px;
}

.footer-content {
  padding-top: 50px;
  text-align: center;
  color: #fff;
}

.corporate-name {
  font-weight: bold;
}

.corporate-address {
  font-size: 13px;
  padding-top: 30px;
}

.footer-logo a img {
  width: 300px;
  margin-bottom: 30px;
}

.copyright {
  color: white;
  text-align: center;
  padding-top: 50px;
  padding-bottom: 10px;
  font-size: 13px;
  font-weight: bold;
}

.privacy-policy {
  color: white;
  text-align: center;
  padding-top: 30px;
  font-size: 13px;
  font-weight: bold;
}

.c-button {
  color: #333;
  font-size: 16px;
  font-weight: bold;
  background: transparent;
  padding: 3rem 15rem;
  border: 3px solid #333;
  border-radius: 10px;
  position: relative;
  z-index: 1;
  transition: 0.3s;
}

.c-button::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #333;
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform ease 0.3s;
}

.c-button:hover {
  color: #fff;
}

.c-button:hover::before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}

/**************************/
/* BELOW 944px (Tablets) */
/* (1em = 16px, 944px = 59em) */
/**************************/

@media (max-width: 59em) {
  .footer .contact {
    flex-direction: column;
    align-items: flex-start;
    margin-left: 2rem;
    margin-right: 2rem;
  }

  .footer .c-button {
    margin-top: 2rem;
    padding: 2rem 3rem;
  }
}
