.contact-section {
  padding-top: 48px;
}

/* =========================
   HERO
========================= */

.contact-hero {
  position: relative;

  min-height: 290px;

  margin-bottom: 42px;

  display: flex;
  align-items: center;

  background-size: cover;
  background-position: center;

  overflow: hidden;
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;

  background: rgba(16, 24, 25, .38);
}

.contact-hero__content {
  position: relative;
  z-index: 2;

  padding-left: 78px;
}

.contact-hero h1 {
  margin: 0;

  color: #fff;

  font-size: 58px;
  line-height: 1.02;
  font-weight: 900;

  text-transform: uppercase;

  letter-spacing: .02em;
}

/* =========================
   BOXY
========================= */

.contact-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 34px;

  margin-bottom: 46px;
}

.contact-box {
  min-height: 182px;

  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 30px;

  align-items: start;

  padding: 40px 38px;

  background: #fff;
  border: 1px solid #e8e8e8;

  box-sizing: border-box;

  transition: .25s ease;
}

.contact-box:hover {
  border-color: #d8d3bf;
  transform: translateY(-2px);
}

.contact-box__icon {
  padding-top: 2px;
}

.contact-box__icon img {
  width: 52px;
  height: 52px;

  object-fit: contain;
  display: block;
}

.contact-box__content {
  width: 100%;
}

.contact-box h2 {
  margin: 0 0 20px;

  color: #aaa48a;

  font-size: 20px;
  line-height: 1;
  font-weight: 900;

  text-transform: uppercase;

  letter-spacing: .03em;
}

.contact-box p {
  margin: 0;

  color: #111;

  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
}

.contact-box strong {
  font-weight: 700;
}

.contact-box a {
  color: #aaa48a;

  font-weight: 700;

  text-decoration: none;
}

.contact-box a:hover {
  text-decoration: underline;
}

/* =========================
   MAPA
========================= */

.contact-map {
  margin-bottom: 0;
}

.contact-map iframe {
  width: 100%;
  height: 570px;

  display: block;

  border: 0;

  filter: grayscale(1);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {

  .contact-boxes {
    gap: 24px;
  }

  .contact-box {
    padding: 34px 28px;

    grid-template-columns: 54px 1fr;
    gap: 22px;
  }

}

@media (max-width: 991px) {

  .contact-boxes {
    grid-template-columns: 1fr;
  }

  .contact-box {
    min-height: auto;
  }

  .contact-hero {
    min-height: 240px;
  }

  .contact-hero__content {
    padding-left: 36px;
  }

  .contact-hero h1 {
    font-size: 42px;
  }

  .contact-map iframe {
    height: 430px;
  }

}

@media (max-width: 575px) {

  .contact-section {
    padding-top: 34px;
  }

  .contact-hero {
    min-height: 200px;
    margin-bottom: 28px;
  }

  .contact-hero__content {
    padding-left: 24px;
    padding-right: 24px;
  }

  .contact-hero h1 {
    font-size: 34px;
  }

  .contact-box {
    padding: 26px 22px;

    grid-template-columns: 46px 1fr;
    gap: 18px;
  }

  .contact-box__icon img {
    width: 40px;
    height: 40px;
  }

  .contact-box h2 {
    margin-bottom: 14px;

    font-size: 18px;
  }

  .contact-box p {
    font-size: 15px;
  }

  .contact-map iframe {
    height: 340px;
  }

}
