/* Hero */
.hero {
  position: relative;
  min-height: 987px;
  overflow: hidden;
}

.hero-shadow {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 140px;
  z-index: 2;
}

.hero-shadow__inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-shadow__inner div,
.hero-shadow__inner::before,
.hero-shadow__inner::after {
  background: linear-gradient(
    180deg,
    var(--color-page-bg-0) 0%,
    var(--color-page-bg) 100%
  );
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.hero-shadow__inner::before,
.hero-shadow__inner::after {
  content: "";
  display: block;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: overlay;
  opacity: 0.6;
  pointer-events: none;
  z-index: 1;
}

.hero__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  min-height: 987px;
  padding-bottom: 159px;
}

.hero__images {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.hero__image {
  position: absolute;
  display: block;
  height: auto;
  border-radius: 10px;
  overflow: hidden;
}

.hero__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__image-inner {
  position: relative;
}

.hero__image img.hero__image--message {
  width: 191.3px;
  height: 58.45px;
  position: absolute;
  bottom: 129px;
  left: 50%;
  transform: translateX(-50%);
  object-fit: contain;
}

.hero__image--top {
  top: -50px;
  right: 673px;
  width: 141px;
  height: 253px;
  transform: rotate(10deg);
  transform: translate(0px, -50px);
}

.hero__image--left {
  top: 412px;
  left: 27px;
  width: 219px;
  height: 393px;
  transform: translate(40px, 90px) rotate(-20deg);
}

.hero__image--right {
  top: 475px;
  right: -16.5px;
  width: 279px;
  height: 501px;
  transform: translate(-40px, 80px) rotate(15deg);
}

.hero__content {
  position: relative;
  z-index: 3;
  width: 70vw;
  text-align: center;
}

.hero__title {
  margin-bottom: 40px;
}

.hero__subtitle {
  margin-bottom: 139px;
  color: var(--color-text-dark);
  font-family: var(--font-accent);
  font-size: 28px;
  font-weight: 300;
  line-height: 1.11;
  letter-spacing: -0.04em;
  text-align: center;
}

.hero__description {
  max-width: 440px;
  margin: 0 auto;
  color: var(--color-text-dark);
  font-size: 16px;
  line-height: 1.3;
  text-align: center;
}

.hero__actions {
  display: none;
}

@media (max-width: 1439px) {
  .hero__image--top {
    right: 55%;
  }
}

@media (max-width: 1200px) {
  .hero__content {
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .hero__image--left {
    left: -30px;
  }

  .hero__image--right {
    right: -36px;
  }
}

@media (max-width: 960px) {
  .hero {
    min-height: 0;
    padding-top: 228px;
  }

  .hero__inner {
    min-height: 0;
    padding-bottom: 478px;
  }

  .hero__title {
    margin-bottom: 29px;
  }

  .hero__subtitle {
    font-size: 25px;
    margin-bottom: 40px;
  }

  .hero__description {
    display: none;
  }

  .hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }

  .hero__image--top {
    display: none;
  }

  .hero__image--right {
    width: 251px;
    height: 450px;
    top: unset;
    bottom: 0;
    right: -20px;
  }

  .hero__image--left {
    width: 175px;
    height: 314px;
    top: unset;
    bottom: 124px;
  }

  .hero-shadow {
    height: 116px;
  }
}

@media (max-width: 560px) {
  .hero__image--right {
    width: 267px;
    height: 432px;
    right: -58px;
    transform: translate(-20px, 80px) rotate(10deg);
  }

  .hero__image--left {
    width: 119px;
    height: 213px;
    bottom: 224px;
    left: -43px;
    transform: translate(20px, 70px) rotate(-10deg);
  }
}

@media (max-width: 375px) {
  .hero__image--right {
    width: 230px;
    height: 414px;
  }
}
