/* Reset and base styles  */
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* Links */

a,
a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */

aside,
nav,
footer,
header,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
}

ul,
ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */

input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button,
input[type='submit'] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

input[type='file'] {
  max-width: 100%;
}

@font-face {
  font-family: 'Inter';
  src: url('/fontsHJKSFAh/inter-variablefontHJKSFAh.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip: rect(0 0 0 0);
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
}

.headerHJKSFAh {
  top: 0;
  z-index: 100;
  background: linear-gradient(0deg, #3a6756 0%, #234236 100%);
}

.headerHJKSFAh__container {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.headerHJKSFAh__logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
}

.headerHJKSFAh__logo img {
  display: block;
  height: auto;
  object-fit: contain;
}

.headerHJKSFAh__nav {
  display: flex;
  justify-content: flex-end;
  flex: 1;
}

.headerHJKSFAh__list,
.headerHJKSFAh__mobile-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.headerHJKSFAh__list {
  display: flex;
  align-items: center;
  gap: 34px;
}

.headerHJKSFAh__list a,
.headerHJKSFAh__mobile-list a {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.25s ease;
}

.headerHJKSFAh__list a:hover,
.headerHJKSFAh__list a:focus-visible,
.headerHJKSFAh__mobile-list a:hover,
.headerHJKSFAh__mobile-list a:focus-visible {
  opacity: 0.72;
}

.headerHJKSFAh__burger {
  display: none;
  width: 86px;
  height: 62px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.headerHJKSFAh__burger span {
  display: block;
  width: 82px;
  height: 6px;
  margin: 10px auto;
  border-radius: 999px;
  background: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.headerHJKSFAh__overlay {
  position: fixed;
  inset: 0;
  z-index: 98;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}

.headerHJKSFAh__mobile {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 99;
  width: min(390px, 86vw);
  height: 100vh;
  padding: 120px 28px 32px;
  background: linear-gradient(0deg, #3a6756 0%, #234236 100%);
  transform: translateX(110%);
  transition: transform 0.35s ease;
}

.headerHJKSFAh__mobile-logo {
  display: none;
}

.headerHJKSFAh__mobile-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.headerHJKSFAh__mobile-list a {
  font-size: 18px;
}

.headerHJKSFAh.is-open .headerHJKSFAh__overlay {
  opacity: 1;
  visibility: visible;
}

.headerHJKSFAh.is-open .headerHJKSFAh__mobile {
  transform: translateX(0);
}

.headerHJKSFAh.is-open .headerHJKSFAh__burger span:nth-child(1) {
  transform: translateY(16px) rotate(45deg);
}

.headerHJKSFAh.is-open .headerHJKSFAh__burger span:nth-child(2) {
  opacity: 0;
}

.headerHJKSFAh.is-open .headerHJKSFAh__burger span:nth-child(3) {
  transform: translateY(-16px) rotate(-45deg);
}

@media (max-width: 1024px) {
  .headerHJKSFAh__container {
    min-height: 140px;
  }

  .headerHJKSFAh__nav {
    display: none;
  }

  .headerHJKSFAh__burger {
    display: block;
    position: relative;
    z-index: 101;
  }
}

@media (max-width: 575px) {
  .headerHJKSFAh__container {
    min-height: 96px;
  }

  .headerHJKSFAh__burger {
    width: 54px;
    height: 44px;
  }

  .headerHJKSFAh__burger span {
    width: 48px;
    height: 4px;
    margin: 7px auto;
  }

  .headerHJKSFAh.is-open .headerHJKSFAh__burger span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
  }

  .headerHJKSFAh.is-open .headerHJKSFAh__burger span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
  }
}

.heroHJKSFAh {
  position: relative;
  min-height: 470px;
  padding: 130px 0 150px;
  background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.36) 0%,
      rgba(0, 0, 0, 0.46) 55%,
      rgba(0, 0, 0, 0.78) 100%
    ),
    url('/imagesHJKSFAh/hero-girlHJKSFAh.webp') center / cover no-repeat;
  overflow: hidden;
}

.heroHJKSFAh__container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.heroHJKSFAh__title {
  max-width: 980px;
  margin: 0 0 26px;

  color: #fff;
  text-align: center;
  font-variant-numeric: lining-nums proportional-nums;
  font-family: Inter, sans-serif;
  font-size: 38px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.heroHJKSFAh__text {
  max-width: 1120px;
  margin: 0 0 38px;

  color: #fff;
  text-align: center;
  font-variant-numeric: lining-nums proportional-nums;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.heroHJKSFAh__button {
  position: relative;
  overflow: hidden;

  width: min(380px, 100%);
  min-height: 60px;
  padding: 16px 34px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 30px;
  background: linear-gradient(180deg, #fff9ea 0%, #000 50%, #fff9ea 100%);

  color: #fff;
  text-align: center;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  text-decoration: none;

  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.4);

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.heroHJKSFAh__button:hover,
.heroHJKSFAh__button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.48);
}

.heroHJKSFAh__button-text {
  position: relative;
  z-index: 2;
}

.heroHJKSFAh__button-glare {
  position: absolute;
  top: -110px;
  left: -110px;
  z-index: 1;

  width: 44px;
  height: 320px;

  display: block;

  background: rgba(255, 255, 255, 0.85);

  transform: rotate(45deg);
  animation: heroGlareHJKSFAh 4s ease-in-out infinite;

  pointer-events: none;
}

@keyframes heroGlareHJKSFAh {
  0% {
    transform: translateX(0) rotate(45deg);
  }

  30%,
  100% {
    transform: translateX(520px) rotate(45deg);
  }
}

@media (max-width: 1024px) {
  .heroHJKSFAh {
    min-height: 720px;
    padding: 95px 0 30px;
    background-position: center top;
  }

  .heroHJKSFAh__title {
    max-width: 960px;
    margin-bottom: 44px;
    font-size: 64px;
  }

  .heroHJKSFAh__text {
    max-width: 880px;
    margin-bottom: 62px;
    font-size: 36px;
    line-height: 1.25;
  }

  .heroHJKSFAh__button {
    width: 100%;
    max-width: 900px;
    min-height: 92px;
    font-size: 36px;
  }

  @keyframes heroGlareHJKSFAh {
    0% {
      transform: translateX(0) rotate(45deg);
    }

    30%,
    100% {
      transform: translateX(1050px) rotate(45deg);
    }
  }
}

@media (max-width: 575px) {
  .heroHJKSFAh {
    min-height: 334px;
    padding: 72px 0 30px;
  }

  .heroHJKSFAh__title {
    margin-bottom: 34px;

    color: #fff;
    text-align: center;
    font-variant-numeric: lining-nums proportional-nums;
    font-family: Inter, sans-serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
  }

  .heroHJKSFAh__text {
    margin-bottom: 44px;

    color: #fff;
    text-align: center;
    font-variant-numeric: lining-nums proportional-nums;
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }

  .heroHJKSFAh__button {
    min-height: 70px;
    font-size: 20px;
  }
}

.aboutHJKSFAh {
  padding: 90px 0;
  background: #070707;
}

.aboutHJKSFAh__container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 520px);
  align-items: center;
  gap: 60px;
}

.aboutHJKSFAh__content {
  width: 100%;
}

.aboutHJKSFAh__title {
  margin: 0 0 34px;

  color: #fff;
  font-variant-numeric: lining-nums proportional-nums;
  font-family: Inter, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.aboutHJKSFAh__text {
  margin: 0 0 34px;

  color: #fff;
  font-variant-numeric: lining-nums proportional-nums;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.aboutHJKSFAh__text:last-child {
  margin-bottom: 0;
}

.aboutHJKSFAh__image-wrapper {
  width: 100%;
}

.aboutHJKSFAh__image {
  display: block;
  width: 100%;
  height: auto;

  border-radius: 18px;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .aboutHJKSFAh {
    padding: 72px 0;
  }

  .aboutHJKSFAh__container {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .aboutHJKSFAh__image-wrapper {
    max-width: 720px;
    margin: 0 auto;
  }
}

@media (max-width: 575px) {
  .aboutHJKSFAh {
    padding: 56px 0;
  }

  .aboutHJKSFAh__container {
    gap: 36px;
  }

  .aboutHJKSFAh__title {
    margin-bottom: 28px;
    font-size: 20px;
  }

  .aboutHJKSFAh__text {
    margin-bottom: 28px;
    font-size: 16px;
  }

  .aboutHJKSFAh__image {
    border-radius: 14px;
  }
}

.whyHJKSFAh {
  padding: 56px 0;
  background: #070707;
}

.whyHJKSFAh__head {
  margin-bottom: 28px;
}

.whyHJKSFAh__title {
  margin: 0 0 12px;
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.whyHJKSFAh__subtitle {
  margin: 0;
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.whyHJKSFAh__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.whyHJKSFAh__item {
  padding: 20px;
  border-radius: 10px;
  background: linear-gradient(0deg, #3a6756 0%, #234236 100%);
}

.whyHJKSFAh__item img {
  display: block;
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
  object-fit: contain;
}

.whyHJKSFAh__item h3 {
  margin: 0 0 16px;
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.whyHJKSFAh__item p {
  margin: 0;
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media (max-width: 1024px) {
  .whyHJKSFAh__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .whyHJKSFAh {
    padding: 44px 0;
  }

  .whyHJKSFAh__title {
    font-size: 20px;
  }

  .whyHJKSFAh__subtitle {
    font-size: 18px;
  }

  .whyHJKSFAh__list {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .whyHJKSFAh__list::-webkit-scrollbar {
    height: 0;
  }

  .whyHJKSFAh__item {
    flex: 0 0 88%;
    min-height: 265px;
    padding: 28px 24px;
    scroll-snap-align: start;
  }

  .whyHJKSFAh__item img {
    width: 58px;
    height: 58px;
    margin-bottom: 24px;
  }

  .whyHJKSFAh__item h3 {
    font-size: 20px;
  }

  .whyHJKSFAh__item p {
    font-size: 14px;
  }
}

.gamesHJKSFAh {
  padding: 56px 0 72px;
  background: #070707;
}

.gamesHJKSFAh__head {
  margin-bottom: 34px;
}

.gamesHJKSFAh__title {
  margin: 0 0 16px;

  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.gamesHJKSFAh__text {
  max-width: 1280px;
  margin: 0;

  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.gamesHJKSFAh__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.gamesHJKSFAh__item {
  width: 100%;
}

.gamesHJKSFAh__link {
  position: relative;
  overflow: hidden;

  min-height: 68px;
  padding: 10px 24px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 30px;

  background: linear-gradient(180deg, #fff9ea 0%, #000 50%, #fff9ea 100%);

  text-decoration: none;

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gamesHJKSFAh__link:hover,
.gamesHJKSFAh__link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(255, 249, 234, 0.18);
}

.gamesHJKSFAh__content {
  position: relative;
  z-index: 2;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.gamesHJKSFAh__name {
  color: #fff;
  text-align: center;
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.gamesHJKSFAh__content img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.gamesHJKSFAh__glare {
  position: absolute;
  top: -120px;
  left: -110px;
  z-index: 1;

  width: 40px;
  height: 300px;

  background: rgba(255, 255, 255, 0.85);

  transform: rotate(45deg);

  animation: gamesGlareHJKSFAh 4s ease-in-out infinite;

  pointer-events: none;
}

@keyframes gamesGlareHJKSFAh {
  0% {
    transform: translateX(0) rotate(45deg);
  }

  30%,
  100% {
    transform: translateX(420px) rotate(45deg);
  }
}

@media (max-width: 1024px) {
  .gamesHJKSFAh__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .gamesHJKSFAh {
    padding: 44px 0 56px;
  }

  .gamesHJKSFAh__head {
    margin-bottom: 28px;
  }

  .gamesHJKSFAh__title {
    margin-bottom: 14px;
    font-size: 20px;
  }

  .gamesHJKSFAh__text {
    font-size: 16px;
  }

  .gamesHJKSFAh__list {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .gamesHJKSFAh__link {
    min-height: 64px;
    padding: 12px 20px;
  }

  .gamesHJKSFAh__name {
    font-size: 18px;
  }

  .gamesHJKSFAh__content img {
    width: 24px;
    height: 24px;
  }

  @keyframes gamesGlareHJKSFAh {
    0% {
      transform: translateX(0) rotate(45deg);
    }

    30%,
    100% {
      transform: translateX(520px) rotate(45deg);
    }
  }
}

.reviewsHJKSFAh {
  padding: 56px 0 72px;
  background: #070707;
}

.reviewsHJKSFAh__head {
  margin-bottom: 34px;
}

.reviewsHJKSFAh__title {
  margin: 0 0 16px;

  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.reviewsHJKSFAh__text {
  max-width: 1320px;
  margin: 0;

  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.reviewsHJKSFAh__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.reviewsHJKSFAh__item {
  padding: 22px 22px 24px;

  border-radius: 10px;
  background: linear-gradient(0deg, #3a6756 0%, #234236 100%);
}

.reviewsHJKSFAh__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;

  margin-bottom: 26px;
}

.reviewsHJKSFAh__likes {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.reviewsHJKSFAh__likes img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.reviewsHJKSFAh__likes span,
.reviewsHJKSFAh__rating {
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.reviewsHJKSFAh__item h3 {
  margin: 0 0 16px;

  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.reviewsHJKSFAh__line {
  width: 100%;
  height: 1px;
  margin-bottom: 16px;

  background: rgba(255, 255, 255, 0.24);
}

.reviewsHJKSFAh__item p {
  margin: 0;

  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media (max-width: 1024px) {
  .reviewsHJKSFAh__list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .reviewsHJKSFAh {
    padding: 44px 0 56px;
  }

  .reviewsHJKSFAh__head {
    margin-bottom: 28px;
  }

  .reviewsHJKSFAh__title {
    margin-bottom: 14px;
    font-size: 20px;
  }

  .reviewsHJKSFAh__text {
    font-size: 16px;
  }

  .reviewsHJKSFAh__item {
    padding: 22px 20px;
  }

  .reviewsHJKSFAh__top {
    margin-bottom: 24px;
  }

  .reviewsHJKSFAh__item h3 {
    font-size: 18px;
  }

  .reviewsHJKSFAh__item p {
    font-size: 14px;
  }
}

.packagesHJKSFAh {
  padding: 90px 0;
  background: #000;
}

.packagesHJKSFAh__top {
  margin-bottom: 48px;
}

.packagesHJKSFAh__title {
  margin: 0 0 18px;
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.packagesHJKSFAh__text {
  max-width: 1200px;
  margin: 0;
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.35;
}

.packagesHJKSFAh__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.packagesHJKSFAh__item {
  display: flex;
}

.packagesHJKSFAh__card {
  width: 100%;
  min-height: 100%;
  padding: 28px 24px 30px;
  border-radius: 10px;
  background: linear-gradient(0deg, #3a6756 0%, #234236 100%);
}

.packagesHJKSFAh__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 34px;
}

.packagesHJKSFAh__number {
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 34px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
}

.packagesHJKSFAh__stars {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.packagesHJKSFAh__stars img {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
}

.packagesHJKSFAh__card-title {
  margin: 0 0 14px;
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.packagesHJKSFAh__description {
  margin: 0;
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.3;
}

.packagesHJKSFAh__divider {
  width: 100%;
  height: 1px;
  margin: 22px 0 18px;
  background: rgba(255, 255, 255, 0.28);
}

.packagesHJKSFAh__subtitle {
  margin: 0 0 14px;
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
}

.packagesHJKSFAh__features {
  margin: 0;
  padding-left: 22px;
}

.packagesHJKSFAh__features li {
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.35;
}

.packagesHJKSFAh__features li + li {
  margin-top: 4px;
}

@media (max-width: 1200px) {
  .packagesHJKSFAh__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .packagesHJKSFAh {
    padding: 70px 0;
  }

  .packagesHJKSFAh__top {
    margin-bottom: 32px;
  }

  .packagesHJKSFAh__title {
    font-size: 28px;
    line-height: 1.1;
  }

  .packagesHJKSFAh__text {
    font-size: 16px;
  }

  .packagesHJKSFAh__list {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .packagesHJKSFAh__card {
    padding: 24px 18px 24px;
  }

  .packagesHJKSFAh__head {
    margin-bottom: 28px;
  }

  .packagesHJKSFAh__number {
    font-size: 30px;
  }

  .packagesHJKSFAh__stars img {
    width: 24px;
    height: 24px;
  }

  .packagesHJKSFAh__card-title {
    font-size: 22px;
  }

  .packagesHJKSFAh__description {
    font-size: 16px;
  }

  .packagesHJKSFAh__subtitle {
    font-size: 18px;
  }

  .packagesHJKSFAh__features li {
    font-size: 15px;
  }
}

.galleryHJKSFAh {
  padding: 48px 0 44px;
  background: #070707;
}

.galleryHJKSFAh__container {
  max-width: 1320px;
}

.galleryHJKSFAh__title {
  margin: 0 0 14px;
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.galleryHJKSFAh__text {
  max-width: 1280px;
  margin: 0 0 24px;
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.galleryHJKSFAh__list {
  display: grid;
  grid-template-columns: 1.04fr 0.5fr 0.5fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 38px 34px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.galleryHJKSFAh__item {
  min-width: 0;
  overflow: hidden;
}

.galleryHJKSFAh__item--big {
  grid-row: 1 / span 2;
}

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

.galleryHJKSFAh__item--big img {
  aspect-ratio: 612 / 530;
}

.galleryHJKSFAh__item:not(.galleryHJKSFAh__item--big) img {
  aspect-ratio: 292 / 242;
}

@media (max-width: 1024px) {
  .galleryHJKSFAh {
    padding: 38px 0 44px;
  }

  .galleryHJKSFAh__container {
    max-width: 520px;
  }

  .galleryHJKSFAh__title {
    font-size: 20px;
  }

  .galleryHJKSFAh__text {
    margin-bottom: 20px;
    font-size: 16px;
  }

  .galleryHJKSFAh__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .galleryHJKSFAh__item--big {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .galleryHJKSFAh__item--big img {
    aspect-ratio: 2.05 / 1;
  }

  .galleryHJKSFAh__item:not(.galleryHJKSFAh__item--big) img {
    aspect-ratio: 1 / 1;
  }
}

.contactHJKSFAh {
  padding: 80px 0 90px;
  background: #070707;
}

.contactHJKSFAh__title {
  margin: 0 0 28px;
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.contactHJKSFAh__form {
  width: 100%;
}

.contactHJKSFAh__row {
  display: grid;
  gap: 24px;
  margin-bottom: 32px;
}

.contactHJKSFAh__row--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contactHJKSFAh__row--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.contactHJKSFAh__field {
  display: flex;
  flex-direction: column;
}

.contactHJKSFAh__field label {
  margin-bottom: 10px;
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.contactHJKSFAh__field input,
.contactHJKSFAh__field textarea {
  width: 100%;
  border: 1px solid #fff;
  border-radius: 10px;
  background: #9b9b9b;
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 400;
  outline: none;
}

.contactHJKSFAh__field input {
  min-height: 56px;
  padding: 0 18px;
}

.contactHJKSFAh__field textarea {
  min-height: 150px;
  padding: 16px 18px;
  resize: vertical;
}

.contactHJKSFAh__field input::placeholder,
.contactHJKSFAh__field textarea::placeholder {
  color: #fff;
  opacity: 0.9;
}

.contactHJKSFAh__button {
  position: relative;
  overflow: hidden;
  width: min(370px, 100%);
  min-height: 68px;
  margin: 44px auto 0;
  padding: 16px 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 30px;
  background: linear-gradient(180deg, #fff9ea 0%, #000 50%, #fff9ea 100%);
  color: #fff;
  text-align: center;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  cursor: pointer;
}

.contactHJKSFAh__button span:not(.contactHJKSFAh__glare) {
  position: relative;
  z-index: 2;
}

.contactHJKSFAh__glare {
  position: absolute;
  top: -110px;
  left: -110px;
  z-index: 1;
  width: 44px;
  height: 320px;
  background: rgba(255, 255, 255, 0.85);
  transform: rotate(45deg);
  animation: contactGlareHJKSFAh 4s ease-in-out infinite;
  pointer-events: none;
}

.contactHJKSFAh__status {
  display: none;
  margin: 18px 0 0;
  color: #fff;
  text-align: center;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.contactHJKSFAh__status.is-visible {
  display: block;
}

@keyframes contactGlareHJKSFAh {
  0% {
    transform: translateX(0) rotate(45deg);
  }

  30%,
  100% {
    transform: translateX(520px) rotate(45deg);
  }
}

@media (max-width: 1024px) {
  .contactHJKSFAh__row--three,
  .contactHJKSFAh__row--four {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contactHJKSFAh__row {
    margin-bottom: 24px;
  }
}

@media (max-width: 575px) {
  .contactHJKSFAh {
    padding: 56px 0 64px;
  }

  .contactHJKSFAh__title {
    font-size: 20px;
  }

  .contactHJKSFAh__field label {
    font-size: 16px;
  }

  .contactHJKSFAh__field input {
    min-height: 54px;
  }

  .contactHJKSFAh__field textarea {
    min-height: 150px;
  }

  .contactHJKSFAh__button {
    width: 100%;
    min-height: 66px;
    margin-top: 34px;
  }
}
.footerHJKSFAh {
  padding: 50px 0 44px;
  background: linear-gradient(0deg, #3a6756 0%, #234236 100%);
  overflow: hidden;
}

.footerHJKSFAh * {
  box-sizing: border-box;
}

.footerHJKSFAh__container {
  display: grid;
  grid-template-columns: minmax(150px, 220px) minmax(180px, 1fr) minmax(
      130px,
      170px
    ) minmax(180px, 240px) minmax(220px, 260px);
  gap: clamp(20px, 3vw, 44px);
  align-items: start;
}

.footerHJKSFAh__brand {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.footerHJKSFAh__logo {
  display: block;
  width: min(210px, 100%);
  height: auto;
  object-fit: contain;
}

.footerHJKSFAh__age {
  display: block;
  width: 58px;
  height: auto;
  object-fit: contain;
}

.footerHJKSFAh__info,
.footerHJKSFAh__nav,
.footerHJKSFAh__contacts {
  min-width: 0;
}

.footerHJKSFAh__info p,
.footerHJKSFAh__list a,
.footerHJKSFAh__contacts a,
.footerHJKSFAh__contacts span,
.footerHJKSFAh__copy {
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.footerHJKSFAh__info p {
  margin: 0 0 28px;
}

.footerHJKSFAh__info p:last-child {
  margin-bottom: 0;
}

.footerHJKSFAh__list,
.footerHJKSFAh__contacts-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footerHJKSFAh__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footerHJKSFAh__list a,
.footerHJKSFAh__contacts a {
  text-decoration: none;
  transition: opacity 0.25s ease;
}

.footerHJKSFAh__list a:hover,
.footerHJKSFAh__list a:focus-visible,
.footerHJKSFAh__contacts a:hover,
.footerHJKSFAh__contacts a:focus-visible {
  opacity: 0.7;
}

.footerHJKSFAh__contacts {
  margin: 0;
  font-style: normal;
}

.footerHJKSFAh__contacts-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.footerHJKSFAh__contacts-list li {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.footerHJKSFAh__contacts-list img {
  display: block;
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.footerHJKSFAh__copy {
  grid-column: 1 / -1;
  margin: 0;
  text-align: center;
}

@media (max-width: 1200px) {
  .footerHJKSFAh__container {
    grid-template-columns: minmax(150px, 220px) repeat(2, minmax(180px, 1fr));
  }

  .footerHJKSFAh__contacts {
    grid-column: 2 / -1;
  }
}

@media (max-width: 768px) {
  .footerHJKSFAh {
    padding: 42px 0 38px;
  }

  .footerHJKSFAh__container {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footerHJKSFAh__brand {
    gap: 24px;
  }

  .footerHJKSFAh__nav:first-of-type {
    order: 2;
  }

  .footerHJKSFAh__info {
    order: 3;
  }

  .footerHJKSFAh__contacts {
    order: 4;
    grid-column: auto;
  }

  .footerHJKSFAh__nav:last-of-type {
    order: 5;
  }

  .footerHJKSFAh__copy {
    order: 6;
    text-align: center;
  }

  .footerHJKSFAh__list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px 22px;
  }

  .footerHJKSFAh__logo {
    width: 200px;
  }
}

@media (max-width: 420px) {
  .footerHJKSFAh__list {
    flex-direction: column;
    gap: 14px;
  }

  .footerHJKSFAh__contacts-list li {
    gap: 12px;
  }
}
.partyPageHJKSFAh {
  padding: 48px 0 80px;
  background: #070707;
}

.partyPageHJKSFAh__back {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.partyPageHJKSFAh__title {
  margin: 0 0 34px;
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 56px;
  font-weight: 700;
  text-transform: uppercase;
}

.partyPageHJKSFAh__wrapper {
  padding: 38px;
  border-radius: 12px;
  background: linear-gradient(0deg, #3a6756 0%, #234236 100%);
}

.partyPageHJKSFAh__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 38px;
  align-items: stretch;
  margin-bottom: 34px;
}

.partyPageHJKSFAh__content p {
  margin: 0 0 20px;
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.28;
}

.partyPageHJKSFAh__content p:last-child {
  margin-bottom: 0;
}

.partyPageHJKSFAh__hero-list,
.partyPageHJKSFAh__gallery {
  margin: 0;
  padding: 0;
  list-style: none;
}

.partyPageHJKSFAh__hero-list li,
.partyPageHJKSFAh__gallery li {
  overflow: hidden;
  border-radius: 8px;
}

.partyPageHJKSFAh__hero-list img,
.partyPageHJKSFAh__gallery img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* верхняя картинка справа */
.partyPageHJKSFAh__hero-list {
  height: 100%;
}

.partyPageHJKSFAh__hero-list li {
  height: 100%;
  min-height: 360px;
}

/* нижняя галерея: большая слева + 4 маленькие справа */
.partyPageHJKSFAh__gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 0.68fr) minmax(0, 0.68fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 28px;
}

.partyPageHJKSFAh__gallery-large {
  grid-row: 1 / span 2;
}

.partyPageHJKSFAh__gallery-large img {
  aspect-ratio: 1.16 / 1;
}

.partyPageHJKSFAh__gallery li:not(.partyPageHJKSFAh__gallery-large) img {
  aspect-ratio: 1.28 / 1;
}

@media (max-width: 1024px) {
  .partyPageHJKSFAh {
    padding: 40px 0 68px;
  }

  .partyPageHJKSFAh__title {
    font-size: 42px;
  }

  .partyPageHJKSFAh__wrapper {
    padding: 28px;
  }

  .partyPageHJKSFAh__top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .partyPageHJKSFAh__hero-list li {
    min-height: auto;
  }

  .partyPageHJKSFAh__hero-list img {
    aspect-ratio: 1.75 / 1;
  }

  .partyPageHJKSFAh__gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .partyPageHJKSFAh__gallery-large {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .partyPageHJKSFAh__gallery-large img {
    aspect-ratio: 1.75 / 1;
  }

  .partyPageHJKSFAh__gallery li:not(.partyPageHJKSFAh__gallery-large) img {
    aspect-ratio: 1 / 1;
  }
}

@media (max-width: 575px) {
  .partyPageHJKSFAh {
    padding: 32px 0 60px;
  }

  .partyPageHJKSFAh__back {
    margin-bottom: 18px;
    font-size: 12px;
  }

  .partyPageHJKSFAh__title {
    margin-bottom: 20px;
    font-size: 28px;
  }

  .partyPageHJKSFAh__wrapper {
    padding: 14px;
    border-radius: 8px;
  }

  .partyPageHJKSFAh__top {
    gap: 20px;
    margin-bottom: 14px;
  }

  .partyPageHJKSFAh__content p {
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.22;
  }

  .partyPageHJKSFAh__hero-list img {
    aspect-ratio: 1.75 / 1;
  }

  .partyPageHJKSFAh__gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .partyPageHJKSFAh__gallery-large {
    order: 6;
    grid-column: 1 / -1;
  }

  .partyPageHJKSFAh__gallery-large img {
    aspect-ratio: 1.75 / 1;
  }

  .partyPageHJKSFAh__gallery li:not(.partyPageHJKSFAh__gallery-large) img {
    aspect-ratio: 1 / 1;
  }
}

.terms {
  background: #070707;
  padding: 40px 0;
  word-wrap: break-word;
}

.terms-text {
  padding: 40px;
  border-radius: 10px;
  background: linear-gradient(0deg, #3a6756 0%, #234236 100%);
}

.terms h1 {
  color: #fff;
  font-variant-numeric: lining-nums proportional-nums;
  font-family: 'Inter', sans-serif;
  font-size: 38px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.terms p {
  color: #fff;
  font-variant-numeric: lining-nums proportional-nums;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 20px;
}

.terms ul {
  list-style: disc;
  margin-bottom: 20px;
}

.terms ul li {
  color: #fff;
  font-variant-numeric: lining-nums proportional-nums;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  list-style-type: disc;
  margin-left: 15px;
}

.terms a {
  color: #fff;
  font-variant-numeric: lining-nums proportional-nums;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media (max-width: 460px) {
  .terms-text {
    padding: 20px;
  }

  .terms h1 {
    font-size: 30px;
  }
}
