.hero {
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  aspect-ratio: 1500/700;
  width: 100%;
  min-height: 400px;
  max-height: 80vh;
  background: center/cover no-repeat;
  -webkit-mask-image: linear-gradient(0deg, transparent 0%, black 20%, black 60%, transparent 95%);
  mask-image: linear-gradient(0deg, transparent 0%, black 20%, black 60%, transparent 95%);
}

.hero__bg_mob {
  display: none;
}

.hero__bg:before {
  background: var(--bg);
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  mix-blend-mode: color;
  pointer-events: none;
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  transition: var(--tr);
}

.hero__container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  padding-top: var(--sp) !important;
  padding-bottom: var(--sp) !important;
  height: 100vh;
  max-height: 1280px;
}

.hero__text-content {
  font-weight: 300;
  font-size: 26px;
  line-height: 130%;
  color: var(--yellow-gray-100);
}

.hero__text-content h1,
.hero__text-content h2,
.hero__text-content h3,
.hero__text-content h4,
.hero__text-content h5,
.hero__text-content h6 {
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero__text-content h1:is(.home .hero .hero__text-content h1,
.home .hero .hero__text-content h2,
.home .hero .hero__text-content h3,
.home .hero .hero__text-content h4,
.home .hero .hero__text-content h5,
.home .hero .hero__text-content h6),
.hero__text-content h2:is(.home .hero .hero__text-content h1,
.home .hero .hero__text-content h2,
.home .hero .hero__text-content h3,
.home .hero .hero__text-content h4,
.home .hero .hero__text-content h5,
.home .hero .hero__text-content h6),
.hero__text-content h3:is(.home .hero .hero__text-content h1,
.home .hero .hero__text-content h2,
.home .hero .hero__text-content h3,
.home .hero .hero__text-content h4,
.home .hero .hero__text-content h5,
.home .hero .hero__text-content h6),
.hero__text-content h4:is(.home .hero .hero__text-content h1,
.home .hero .hero__text-content h2,
.home .hero .hero__text-content h3,
.home .hero .hero__text-content h4,
.home .hero .hero__text-content h5,
.home .hero .hero__text-content h6),
.hero__text-content h5:is(.home .hero .hero__text-content h1,
.home .hero .hero__text-content h2,
.home .hero .hero__text-content h3,
.home .hero .hero__text-content h4,
.home .hero .hero__text-content h5,
.home .hero .hero__text-content h6),
.hero__text-content h6:is(.home .hero .hero__text-content h1,
.home .hero .hero__text-content h2,
.home .hero .hero__text-content h3,
.home .hero .hero__text-content h4,
.home .hero .hero__text-content h5,
.home .hero .hero__text-content h6) {
  font: 500 var(--h1-big)/90% var(--heading-font-family);
}

.hero__text-content h1 ._row-1 {
  display: flex;
  gap: 0.5em;
  width: 100%;
  justify-content: space-between;
}

.hero__btn-wrap {
  margin-top: 80px;
  display: flex;
  justify-content: center;
}

.hero .form {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 64px;
}

.hero .form__field {
  flex: 1 1 25%;
}

.hero .form__button {
  flex: 0 0 auto;
}

.hero .form .cs-select .cs-option[data-value=none] {
  display: none;
}

.hero__search-mob {
  display: none;
}

@media (max-width: 1260px) {
  .hero__bg {
    min-height: 435px;
    margin-bottom: -125px;
  }

  .hero__container {
    max-height: 920px;
    min-height: initial;
    gap: 120px;
  }

  .hero__text-content {
    font-weight: 300;
    font-size: 20px;
    line-height: 130%;
  }

  .hero__btn-wrap {
    margin-top: 32px;
  }

  .hero .form {
    display: none;
  }

  .hero__search-mob {
    display: block;
    margin-top: 32px;
  }

  .hero:not(.home .hero) .hero__container {
    min-height: initial;
    max-height: initial;
    height: initial;
    gap: 260px;
  }
}

@media (max-width: 760px) {
  .hero__bg {
    display: none;
    aspect-ratio: 390/350;
    width: 100%;
    margin-bottom: -120px;
    background-position: center;
  }

  .hero__bg_mob {
    display: block;
  }

  .hero__text-content h1 ._row-1 {
    display: initial;
  }

  .hero__text-content br {
    display: none;
  }
}