:root {
  --color-2: #000;
  --color-7: #fff0;
  --color: white;
  --color-3: #70061a;
  --color-4: #ddc0ba;
  --color-6: #bd9571;
  --color-5: #b59088;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

body {
  color: #333;
  font-family: Noto Sans, sans-serif;
  font-size: .875rem;
  line-height: 1.25rem;
}

.hero-section {
  background-color: var(--color-2);
  background-image: radial-gradient(circle farthest-corner at 100% 100%, var(--color-7), black), url('../images/h-img-2_1.avif');
  color: var(--color);
  background-position: 0 0, 100% 100%;
  background-repeat: repeat, no-repeat;
  background-size: auto, auto 100%;
}

.hero-wrapper {
  justify-content: center;
  align-items: flex-end;
  min-height: 100vh;
  padding-top: 7.5rem;
  padding-bottom: 3.75rem;
  display: flex;
}

.hero-container {
  width: 90%;
  max-width: 85rem;
}

.hero-content {
  width: 50%;
  padding: 1.5rem;
}

.hero-h1 {
  letter-spacing: -.1875rem;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Noto Serif, sans-serif;
  font-size: 5.625rem;
  font-weight: 400;
  line-height: 105%;
}

.hero-p {
  opacity: .8;
  max-width: 34.375rem;
  margin-top: 1.5rem;
  margin-bottom: 3rem;
  font-size: 1.125rem;
  line-height: 150%;
}

.btn-wrapper {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.btn {
  border: .0625rem solid var(--color-3);
  background-color: var(--color-3);
  color: var(--color-4);
  text-transform: uppercase;
  border-radius: .3125rem;
  padding: 1.1875rem 3.25rem;
  font-size: .9375rem;
  font-weight: 500;
  text-decoration: none;
  transition: all .2s;
}

.btn:hover {
  border-color: var(--color-6);
  background-color: var(--color-6);
  color: var(--color-3);
}

.btn.gh {
  border-color: var(--color-4);
  background-color: var(--color-7);
  margin-left: 1.5rem;
}

.btn.gh:hover {
  border-color: var(--color-6);
  background-color: var(--color-6);
}

.section-nav {
  position: absolute;
  inset: 0% 0% auto;
}

.nav-container {
  width: 90%;
  max-width: 85rem;
  margin-left: auto;
  margin-right: auto;
  padding: 3rem 1.5rem 1.5rem;
}

.img-logo {
  width: 12.5rem;
}

.section-pop {
  z-index: 500;
  -webkit-backdrop-filter: blur(.3125rem);
  backdrop-filter: blur(.3125rem);
  padding: 3.75rem;
  display: none;
  position: fixed;
  inset: 0%;
}

.pop-up-wrapper {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.container-pop {
  background-color: var(--color-3);
  color: var(--color-4);
  border-radius: 1.875rem;
  width: 100%;
  max-width: 60rem;
  padding: 5.625rem;
  position: relative;
}

.grid-contact {
  grid-template-rows: auto;
}

.section-title {
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-family: Noto Serif, sans-serif;
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 105%;
}

.link-contact {
  color: var(--color-6);
  font-size: 1.6875rem;
  line-height: 105%;
  text-decoration: underline;
}

.wrapper-phone-c.l {
  margin-top: 3rem;
}

.name-t {
  margin-bottom: .75rem;
  font-size: 1.25rem;
  line-height: 105%;
}

.close-btn {
  cursor: pointer;
  margin-top: 1.875rem;
  margin-right: 1.875rem;
  font-size: 1.875rem;
  line-height: 1;
  transition: all .2s;
  position: absolute;
  inset: 0% 0% auto auto;
}

.close-btn:hover {
  color: var(--color-6);
}

@media screen and (max-width: 991px) {
  .hero-content {
    width: 100%;
  }

  .pop-up-wrapper {
    justify-content: center;
    align-items: flex-start;
  }

  .container-pop {
    padding-left: 3.625rem;
    padding-right: 3.625rem;
  }

  .grid-contact {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    flex-flow: column;
    display: flex;
  }
}

@media screen and (max-width: 767px) {
  .hero-section {
    background-image: linear-gradient(180deg, var(--color-2), #0000007a 46%, black), url('../images/mob-img.jpg');
    background-position: 0 0, 50% 100%;
    background-size: auto, cover;
  }
}

@media screen and (max-width: 479px) {
  .hero-wrapper {
    justify-content: center;
    align-items: center;
  }

  .hero-h1 {
    font-size: 3.3125rem;
  }

  .btn-wrapper {
    flex-flow: column;
    justify-content: flex-start;
    align-items: stretch;
  }

  .btn {
    text-align: center;
  }

  .btn.gh {
    margin-top: 1.5rem;
    margin-left: 0;
  }

  .img-logo {
    width: 9.375rem;
  }

  .section-pop {
    padding: 1.5rem;
  }

  .container-pop {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .section-title {
    font-size: 2.1875rem;
  }

  .link-contact {
    font-size: 1.1875rem;
  }

  .wrapper-phone-c.l {
    margin-top: 1.5rem;
  }
}


