@font-face {
  font-family: "AmericanaStd-Regular";
  font-style: normal;
  font-weight: 400;
  src: url("/assets/font/AmericanaStdFUHA-Regular.woff2") format("woff2");
}
:root {
  --wrapper: 100vw;
  --gutter: 40px;
  --rh: calc((var(--wrapper) - (3 * var(--gutter))) / 4);
}

.contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.contact__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 116px 24px;
  width: 100%;
  max-width: 760px;
}
.contact__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 96px 24px;
  width: 100%;
  background-image: url("/assets/image/home-contact-bg.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.contact__info__image {
  display: block;
  margin: 0 0 64px 0;
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
.contact__info__address {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 306px;
}
.contact__info__address p {
  margin: 5px 0;
  color: #fff;
}
.contact__info__address a {
  color: #fff;
  text-decoration: none;
}
.contact__info__address strong {
  color: #17C37B;
}
@media only screen and (min-width: 1280px) {
  .contact__info {
    flex-direction: row;
    padding: 96px 100px;
  }
  .contact__info__image {
    margin: 0 64px 0 0;
  }
}
@media only screen and (min-width: 1366px) {
  .contact__info {
    flex-direction: row;
    padding: 116px 140px;
  }
}