/* 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: 'Istok Web';
  src: url('/fontsYTSJHf4/istokweb-regularYTSJHf4.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Istok Web';
  src: url('/fontsYTSJHf4/istokweb-boldYTSJHf4.woff2') format('woff2');
  font-weight: 700;
  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%;
}

.headerYTSJHf4 {
  position: relative;
  z-index: 100;
  background: #050f0e;
}

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

.headerYTSJHf4__logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
  margin-left: 20px;
}

.headerYTSJHf4__logo img {
  display: block;
  width: 225px;
  height: auto;
  object-fit: contain;
}

.headerYTSJHf4__nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.headerYTSJHf4__list,
.headerYTSJHf4__mobile-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.headerYTSJHf4__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(34px, 5vw, 82px);
}

.headerYTSJHf4__list a,
.headerYTSJHf4__mobile-list a {
  position: relative;
  color: #fff;
  font-family: 'Istok Web', sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  transition: color 0.25s ease;
}

.headerYTSJHf4__list a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 0;
  height: 1px;
  background: #42b99d;
  transition: width 0.25s ease;
}

.headerYTSJHf4__list a:hover::after,
.headerYTSJHf4__list a:focus-visible::after {
  width: 100%;
}

.headerYTSJHf4__phone {
  min-height: 38px;
  padding: 0 18px 0 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  background: #06231d;
  color: #fff;
  font-family: 'Istok Web';
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-decoration: none;
  white-space: nowrap;
}

.headerYTSJHf4__phone-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.headerYTSJHf4__phone-icon img {
  width: 40px;
  height: 40px;
}

.headerYTSJHf4__phone-icon img,
.headerYTSJHf4__mobile-phone img {
  display: block;

  object-fit: contain;
}

.headerYTSJHf4__burger {
  display: none;
  width: 64px;
  height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.headerYTSJHf4__burger span {
  display: block;
  width: 60px;
  height: 4px;
  margin: 8px 0;
  border-radius: 999px;
  background: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

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

.headerYTSJHf4__mobile {
  position: fixed;
  top: 0;
  right: 0;
  width: min(390px, 86vw);
  height: 100vh;
  padding: 34px 26px;
  background: #050f0e;
  transform: translateX(110%);
  transition: transform 0.35s ease;
  z-index: 101;
  display: flex;
  flex-direction: column;
  gap: 38px;
}

.headerYTSJHf4__mobile-logo img {
  display: block;
  width: 100%;
  max-width: 320px;
  height: auto;
  object-fit: contain;
}

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

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

.headerYTSJHf4__mobile-phone {
  margin-top: auto;
  min-height: 44px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  background: #06231d;
  color: #fff;
  font-family: 'Istok Web', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.headerYTSJHf4.is-open .headerYTSJHf4__mobile {
  transform: translateX(0);
}

.headerYTSJHf4.is-open .headerYTSJHf4__overlay {
  opacity: 1;
  visibility: visible;
}

.headerYTSJHf4.is-open .headerYTSJHf4__burger span:nth-child(1) {
  transform: translateY(12px) rotate(45deg);
}

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

.headerYTSJHf4.is-open .headerYTSJHf4__burger span:nth-child(3) {
  transform: translateY(-12px) rotate(-45deg);
}

@media (max-width: 1024px) {
  .headerYTSJHf4__container {
    min-height: 126px;
    justify-content: center;
    position: relative;
  }

  .headerYTSJHf4__logo img {
    width: min(460px, 58vw);
  }

  .headerYTSJHf4__nav,
  .headerYTSJHf4__phone {
    display: none;
  }

  .headerYTSJHf4__burger {
    display: block;
    position: absolute;
    left: 32px;
    top: 50%;
    transform: translateY(-50%);
  }
}

@media (max-width: 575px) {
  .headerYTSJHf4 {
    border-width: 3px;
  }

  .headerYTSJHf4__container {
    min-height: 92px;
  }

  .headerYTSJHf4__logo img {
    width: min(280px, 62vw);
  }

  .headerYTSJHf4__burger {
    left: 18px;
    width: 44px;
    height: 38px;
  }

  .headerYTSJHf4__burger span {
    width: 42px;
    height: 3px;
    margin: 7px 0;
  }
}

.heroYTSJHf4 {
  position: relative;
  min-height: 470px;
  padding: 72px 0 190px;
  background: linear-gradient(
      180deg,
      rgba(0, 17, 14, 0.34) 0%,
      rgba(0, 17, 14, 0.7) 100%
    ),
    url('/imagesYTSJHf4/hero-partyYTSJHf4.webp') lightgray 50% / cover no-repeat;
  overflow: hidden;
}

.heroYTSJHf4::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 10, 8, 0.35);
  pointer-events: none;
}

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

.heroYTSJHf4__title {
  max-width: 900px;
  margin: 0 0 34px;
  color: #fff;
  text-align: center;
  font-family: 'Istok Web', sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.heroYTSJHf4__text {
  max-width: 730px;
  margin: 0 0 30px;
  color: #fff;
  text-align: center;
  font-family: 'Istok Web', sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.heroYTSJHf4__features {
  width: 100%;
  max-width: 1040px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.heroYTSJHf4__features li {
  min-width: 0;
}

.heroYTSJHf4__features a {
  padding: 6px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  border: 1px solid rgba(151, 151, 151, 0.72);
  background: rgba(105, 105, 105, 0.42);
  backdrop-filter: blur(6.300000190734863px);
  color: #fff;
  font-family: 'Istok Web', sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  transition: border-color 0.25s ease, background 0.25s ease,
    transform 0.25s ease;
}

.heroYTSJHf4__features a:hover,
.heroYTSJHf4__features a:focus-visible {
  border-color: #3ea185;
  background: rgba(62, 161, 133, 0.22);
  transform: translateY(-2px);
}

.heroYTSJHf4__button {
  position: relative;
  overflow: hidden;
  isolation: isolate;

  min-width: 248px;
  min-height: 44px;
  padding: 10px 34px;

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

  border-radius: 100px;
  border: 2px solid var(--1, #3ea185);
  background: rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(5px);

  color: #fff;
  text-align: center;
  font-family: 'Istok Web', sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-decoration: none;

  transition: color 0.35s ease, transform 0.35s ease, border-color 0.35s ease;
}

.heroYTSJHf4__button::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;

  background: #3ea185;

  transform: translateX(-102%);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.heroYTSJHf4__button:hover,
.heroYTSJHf4__button:focus-visible {
  transform: translateY(-2px);
  border-color: #59c4a6;
}

.heroYTSJHf4__button:hover::before,
.heroYTSJHf4__button:focus-visible::before {
  transform: translateX(0);
}
@media (max-width: 1024px) {
  .heroYTSJHf4 {
    min-height: 800px;
    padding: 92px 0 110px;
    background: linear-gradient(
        180deg,
        rgba(0, 17, 14, 0.28) 0%,
        rgba(0, 17, 14, 0.78) 100%
      ),
      url('/imagesYTSJHf4/hero-party-mbYTSJHf4.webp') lightgray 50% / cover
        no-repeat;
  }

  .heroYTSJHf4__title {
    max-width: 680px;
    margin-bottom: 54px;
    font-size: clamp(42px, 7vw, 58px);
  }

  .heroYTSJHf4__text {
    max-width: 620px;
    margin-bottom: 48px;
    font-size: 24px;
    line-height: 1.42;
  }

  .heroYTSJHf4__features {
    max-width: 620px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 32px;
    margin-bottom: 48px;
  }

  .heroYTSJHf4__features a {
    padding: 5px 20px;
    justify-content: flex-start;
    font-size: 15px;
    line-height: 1.4;
    white-space: normal;
    text-align: left;
  }

  .heroYTSJHf4__button {
    width: 100%;
    max-width: 620px;
    min-height: 64px;
    font-size: 24px;
  }
}

@media (max-width: 575px) {
  .heroYTSJHf4 {
    min-height: calc(100vh - 92px);
    padding: 54px 0 86px;
  }

  .heroYTSJHf4__title {
    margin-bottom: 36px;
    font-size: 40px;
  }

  .heroYTSJHf4__text {
    margin-bottom: 38px;
    font-size: 23px;
  }

  .heroYTSJHf4__features {
    gap: 28px 30px;
  }

  .heroYTSJHf4__features a {
    padding: 5px 20px;
    font-size: 15px;
  }

  .heroYTSJHf4__button {
    min-height: 64px;
    font-size: 23px;
  }
}

@media (max-width: 420px) {
  .heroYTSJHf4__title {
    font-size: 34px;
  }

  .heroYTSJHf4__text {
    font-size: 19px;
  }

  .heroYTSJHf4__features {
    gap: 18px;
  }

  .heroYTSJHf4__features a {
    min-height: 54px;
    padding: 5px 20px;
    font-size: 13px;
  }

  .heroYTSJHf4__button {
    font-size: 18px;
  }
}

.aboutYTSJHf4 {
  padding: 70px 0 110px;
  background: #050f0e;
}

.aboutYTSJHf4__container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 660px);
  gap: 70px;
  align-items: center;
}

.aboutYTSJHf4__title {
  margin: 0 0 20px;
  color: #fff;
  font-family: 'Istok Web', sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.aboutYTSJHf4__text {
  max-width: 650px;
}

.aboutYTSJHf4__text p {
  margin: 0 0 26px;
  color: #fff;
  font-family: 'Istok Web', sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

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

.aboutYTSJHf4__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.aboutYTSJHf4__item {
  padding: 27px 24px;
  border-radius: 20px;
  border: 1px solid transparent;
  background: #0e1a19;
  transition: border-color 0.25s ease, background 0.25s ease,
    transform 0.25s ease;
}

.aboutYTSJHf4__item:hover {
  border: 1px solid var(--1, #3ea185);
  background: radial-gradient(
    78.14% 79.04% at 21.86% 38.1%,
    #022d29 0%,
    #0e1a19 100%
  );
  transform: translateY(-2px);
}

.aboutYTSJHf4__item h3 {
  margin: 0 0 18px;
  color: #fff;
  font-family: 'Istok Web', sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.aboutYTSJHf4__item p {
  margin: 0;
  color: #fff;
  font-family: 'Istok Web', sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media (max-width: 1024px) {
  .aboutYTSJHf4 {
    padding: 80px 0 90px;
  }

  .aboutYTSJHf4__container {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .aboutYTSJHf4__text {
    max-width: 100%;
  }
}

@media (max-width: 575px) {
  .aboutYTSJHf4 {
    padding: 72px 0 74px;
  }

  .aboutYTSJHf4__title {
    margin-bottom: 20px;
    font-size: 32px;
  }

  .aboutYTSJHf4__text p {
    margin-bottom: 26px;
    font-size: 15px;
    line-height: 1.55;
  }

  .aboutYTSJHf4__list {
    gap: 12px;
  }

  .aboutYTSJHf4__item {
    padding: 24px 22px;
  }

  .aboutYTSJHf4__item h3 {
    margin-bottom: 18px;
    font-size: 20px;
  }

  .aboutYTSJHf4__item p {
    font-size: 15px;
    line-height: 1.55;
  }
}

.gamesExperienceYTSJHf4 {
  padding: 110px 0;
  background: #050f0e;
}

.gamesExperienceYTSJHf4__title {
  max-width: 760px;
  margin: 0 auto 26px;
  color: #fff;
  text-align: center;
  font-family: 'Istok Web', sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.gamesExperienceYTSJHf4__text {
  max-width: 980px;
  margin: 0 auto 56px;
  color: #fff;
  text-align: center;
  font-family: 'Istok Web', sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
}

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

.gamesExperienceYTSJHf4__item {
  min-height: 150px;
  padding: 28px 30px;
  display: flex;
  align-items: center;
  gap: 28px;
  border-radius: 24px;
  background: linear-gradient(
    90deg,
    rgba(14, 26, 25, 0.98) 0%,
    rgba(5, 30, 27, 0.98) 100%
  );
  transition: transform 0.25s ease, border-color 0.25s ease,
    background 0.25s ease;
  border: 1px solid transparent;
}

.gamesExperienceYTSJHf4__item:hover {
  border-color: #3ea185;
  background: radial-gradient(
    78.14% 79.04% at 21.86% 38.1%,
    #022d29 0%,
    #0e1a19 100%
  );
  transform: translateY(-2px);
}

.gamesExperienceYTSJHf4__item img {
  flex: 0 0 73px;
  width: 73px;
  height: 73px;
  object-fit: contain;
}

.gamesExperienceYTSJHf4__info {
  flex: 1;
  min-width: 0;
}

.gamesExperienceYTSJHf4__info h3 {
  margin: 0 0 16px;
  color: #fff;
  font-family: 'Istok Web', sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.gamesExperienceYTSJHf4__info p {
  margin: 0;
  color: #fff;
  font-family: 'Istok Web', sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

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

  .gamesExperienceYTSJHf4__list {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

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

  .gamesExperienceYTSJHf4__title {
    margin-bottom: 26px;
    font-size: 32px;
    line-height: 1.35;
  }

  .gamesExperienceYTSJHf4__text {
    margin-bottom: 34px;
    font-size: 15px;
    line-height: 1.6;
  }

  .gamesExperienceYTSJHf4__item {
    min-height: 0;
    padding: 26px 22px;
    align-items: flex-start;
    gap: 18px;
  }

  .gamesExperienceYTSJHf4__item img {
    flex: 0 0 72px;
    width: 72px;
    height: 72px;
  }

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

  .gamesExperienceYTSJHf4__info p {
    line-height: 1.55;
  }
}

@media (max-width: 420px) {
  .gamesExperienceYTSJHf4__item {
    padding: 24px 18px;
    gap: 16px;
  }

  .gamesExperienceYTSJHf4__item img {
    flex: 0 0 64px;
    width: 64px;
    height: 64px;
  }
}

.eventsYTSJHf4 {
  padding: 70px 0 90px;
  background: #050f0e;
}

.eventsYTSJHf4__title {
  margin: 0 0 26px;
  color: #fff;
  text-align: center;
  font-family: 'Istok Web', sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: normal;
}

.eventsYTSJHf4__text {
  max-width: 720px;
  margin: 0 auto 26px;
  color: #fff;
  text-align: center;
  font-family: 'Istok Web', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.45;
}

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

.eventsYTSJHf4__card {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid #3ea185;
  background: rgba(14, 26, 25, 0.92);
  box-shadow: 0 0 10px 0 rgba(62, 161, 133, 0.3);
}

.eventsYTSJHf4__image {
  display: block;
  width: 100%;
  border-radius: 8px;
}

.eventsYTSJHf4__meta {
  margin: 14px 0 16px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.eventsYTSJHf4__meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-family: 'Istok Web', sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: normal;
}

.eventsYTSJHf4__meta img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.eventsYTSJHf4__card h3,
.eventsYTSJHf4__custom h3 {
  margin: 0 0 18px;
  color: #fff;
  font-family: 'Istok Web', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
}

.eventsYTSJHf4__card p,
.eventsYTSJHf4__custom p,
.eventsYTSJHf4__features li,
.eventsYTSJHf4__custom li {
  color: #fff;
  font-family: 'Istok Web', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.45;
}

.eventsYTSJHf4__card p {
  margin: 0 0 16px;
}

.eventsYTSJHf4__features,
.eventsYTSJHf4__custom ul {
  margin: 0 0 22px;
  padding-left: 20px;
}

.eventsYTSJHf4__card a,
.eventsYTSJHf4__custom a {
  min-height: 38px;
  padding: 8px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 100px;
  border: 2px solid #3ea185;
  background: rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(5px);
  color: #fff;
  font-family: 'Istok Web', sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: normal;
  text-decoration: none;
}

.eventsYTSJHf4__custom {
  padding: 22px;
  border-radius: 20px;
  background: rgba(62, 161, 133, 0.3);
  box-shadow: 0 0 10px 0 rgba(62, 161, 133, 0.3);
  display: grid;
  grid-template-columns: 1fr 220px;
  align-items: center;
  gap: 30px;
}

.eventsYTSJHf4__custom p {
  margin: 0 0 10px;
}

.eventsYTSJHf4__custom ul {
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .eventsYTSJHf4__list {
    grid-template-columns: 1fr;
    max-width: 620px;
    margin: 0 auto 18px;
  }

  .eventsYTSJHf4__custom {
    max-width: 620px;
    margin: 0 auto;
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

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

  .eventsYTSJHf4__title {
    font-size: 32px;
  }

  .eventsYTSJHf4__text {
    margin-bottom: 24px;
    font-size: 15px;
  }

  .eventsYTSJHf4__card {
    padding: 12px;
  }

  .eventsYTSJHf4__image {
    height: 130px;
  }

  .eventsYTSJHf4__card h3,
  .eventsYTSJHf4__custom h3 {
    font-size: 20px;
  }

  .eventsYTSJHf4__card p,
  .eventsYTSJHf4__custom p,
  .eventsYTSJHf4__features li,
  .eventsYTSJHf4__custom li {
    font-size: 15px;
  }

  .eventsYTSJHf4__custom {
    padding: 18px;
  }
}

.packagesYTSJHf4 {
  padding: 70px 0 100px;
  background: #050f0e;
}

.packagesYTSJHf4__title {
  margin: 0 0 28px;
  color: #fff;
  text-align: center;
  font-family: 'Istok Web', sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.packagesYTSJHf4__text {
  max-width: 930px;
  margin: 0 auto 72px;
  color: #fff;
  text-align: center;
  font-family: 'Istok Web', sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
}

.packagesYTSJHf4__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
  align-items: start;
}

.packagesYTSJHf4__item {
  position: relative;
  padding: 28px 24px 30px;
  border-radius: 20px;
  border: 1px solid rgba(151, 151, 151, 0.72);
  background: #0e1a19;
}

.packagesYTSJHf4__item--active {
  border: 1px solid var(--1, #3ea185);
  background: radial-gradient(50% 50% at 50% 50%, #022d29 0%, #0e1a19 100%);
  box-shadow: 0 0 10px 0 rgba(62, 161, 133, 0.3);
}

.packagesYTSJHf4__emoji {
  position: absolute;
  top: -42px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  line-height: 1;
}

.packagesYTSJHf4__badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  min-height: 38px;
  padding: 8px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  background: #43b091;
  color: #fff;
  text-align: center;
  font-family: 'Istok Web', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  white-space: nowrap;
}

.packagesYTSJHf4__item h3 {
  margin: 0 0 28px;
  color: #fff;
  font-family: 'Istok Web', sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.packagesYTSJHf4__item p {
  margin: 0 0 22px;
  color: #fff;
  font-family: 'Istok Web', sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
}

.packagesYTSJHf4__features {
  margin: 0;
  padding-left: 22px;
  list-style: disc;
}

.packagesYTSJHf4__features li {
  margin-bottom: 8px;
  color: #fff;
  font-family: 'Istok Web', sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.45;
  list-style-type: disc;
}

.packagesYTSJHf4__features li:last-child {
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .packagesYTSJHf4 {
    padding: 82px 0 90px;
  }

  .packagesYTSJHf4__text {
    margin-bottom: 54px;
  }

  .packagesYTSJHf4__list {
    grid-template-columns: 1fr;
    max-width: 620px;
    margin: 0 auto;
    gap: 18px;
  }
}

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

  .packagesYTSJHf4__title {
    margin-bottom: 22px;
    font-size: 32px;
  }

  .packagesYTSJHf4__text {
    margin-bottom: 52px;
    font-size: 15px;
    line-height: 1.6;
  }

  .packagesYTSJHf4__item {
    padding: 20px 18px 24px;
  }

  .packagesYTSJHf4__emoji {
    top: -32px;
    font-size: 48px;
  }

  .packagesYTSJHf4__badge {
    top: -14px;
    min-height: 30px;
    padding: 6px 16px;
    font-size: 12px;
  }

  .packagesYTSJHf4__item h3 {
    margin-bottom: 18px;
    font-size: 20px;
  }

  .packagesYTSJHf4__item p,
  .packagesYTSJHf4__features li {
    font-size: 15px;
  }
}

.galleryYTSJHf4 {
  padding: 70px 0;
  background: #050f0e;
  overflow: hidden;
}

.galleryYTSJHf4__title {
  margin: 0 0 22px;
  color: #fff;
  text-align: center;
  font-family: 'Istok Web', sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.galleryYTSJHf4__text {
  max-width: 760px;
  margin: 0 auto 48px;
  color: #fff;
  text-align: center;
  font-family: 'Istok Web', sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
}

.galleryYTSJHf4__marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 14px;
}

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

.galleryYTSJHf4__track {
  display: flex;
  width: max-content;
  gap: 14px;
}

.galleryYTSJHf4__track--left {
  animation: galleryLeftYTSJHf4 35s linear infinite;
}

.galleryYTSJHf4__track--right {
  animation: galleryRightYTSJHf4 35s linear infinite;
}

.galleryYTSJHf4__row {
  display: flex;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.galleryYTSJHf4__row li {
  flex: 0 0 auto;
}

.galleryYTSJHf4__row img {
  display: block;
  width: 320px;
  height: 220px;
  object-fit: cover;
  user-select: none;
  pointer-events: none;
}

@keyframes galleryLeftYTSJHf4 {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 7px));
  }
}

@keyframes galleryRightYTSJHf4 {
  from {
    transform: translateX(calc(-50% - 7px));
  }

  to {
    transform: translateX(0);
  }
}

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

  .galleryYTSJHf4__row img {
    width: 280px;
    height: 190px;
  }
}

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

  .galleryYTSJHf4__title {
    margin-bottom: 22px;
    font-size: 32px;
    line-height: 1.3;
  }

  .galleryYTSJHf4__text {
    margin-bottom: 36px;
    font-size: 15px;
    line-height: 1.7;
  }

  .galleryYTSJHf4__track,
  .galleryYTSJHf4__row {
    gap: 10px;
  }

  .galleryYTSJHf4__marquee {
    margin-bottom: 10px;
  }

  .galleryYTSJHf4__row img {
    width: 240px;
    height: 160px;
  }

  @keyframes galleryLeftYTSJHf4 {
    from {
      transform: translateX(0);
    }

    to {
      transform: translateX(calc(-50% - 5px));
    }
  }

  @keyframes galleryRightYTSJHf4 {
    from {
      transform: translateX(calc(-50% - 5px));
    }

    to {
      transform: translateX(0);
    }
  }
}

.ctaYTSJHf4 {
  padding: 80px 0 100px;
  background: #050f0e;
}

.ctaYTSJHf4__wrapper {
  max-width: 1180px;
  margin: 0 auto;
  padding: 46px 40px 36px;
  border-radius: 20px;
  border: 1px solid var(--1, #3ea185);
  background: rgba(62, 161, 133, 0.15);
}

.ctaYTSJHf4__title {
  margin: 0 0 34px;
  color: #fff;
  text-align: center;
  font-family: 'Istok Web', sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.ctaYTSJHf4__text,
.ctaYTSJHf4__subtext {
  max-width: 980px;
  margin: 0 auto;
  color: #fff;
  text-align: center;
  font-family: 'Istok Web', sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.7;
}

.ctaYTSJHf4__text {
  margin-bottom: 26px;
}

.ctaYTSJHf4__subtext {
  margin-bottom: 28px;
}

.ctaYTSJHf4__button {
  min-width: 190px;
  min-height: 40px;
  padding: 10px 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  border-radius: 100px;
  border: 2px solid var(--1, #3ea185);
  background: rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(5px);
  color: #fff;
  text-align: center;
  font-family: 'Istok Web', sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease,
    border-color 0.25s ease;
}

.ctaYTSJHf4__button:hover,
.ctaYTSJHf4__button:focus-visible {
  background: rgba(62, 161, 133, 0.2);
  transform: translateY(-2px);
}

.ctaYTSJHf4__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

  .ctaYTSJHf4__wrapper {
    padding: 40px 24px 32px;
  }

  .ctaYTSJHf4__title {
    margin-bottom: 28px;
    font-size: 32px;
    line-height: 1.35;
  }

  .ctaYTSJHf4__text,
  .ctaYTSJHf4__subtext {
    font-size: 15px;
    line-height: 1.75;
  }

  .ctaYTSJHf4__text {
    margin-bottom: 22px;
  }

  .ctaYTSJHf4__subtext {
    margin-bottom: 26px;
  }

  .ctaYTSJHf4__button {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 420px) {
  .ctaYTSJHf4__wrapper {
    padding: 36px 18px 28px;
  }

  .ctaYTSJHf4__title {
    font-size: 28px;
  }
}

.footerYTSJHf4 {
  padding: 72px 0 44px;
  background: #050f0e;
}

.footerYTSJHf4__container {
  max-width: 1080px;
}

.footerYTSJHf4__line {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin-top: 20px;
}

.footerYTSJHf4__brand {
  padding: 52px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
}

.footerYTSJHf4__age {
  width: 48px;
  height: auto;
  object-fit: contain;
}

.footerYTSJHf4__logo {
  display: block;
  width: 220px;
  height: auto;
  object-fit: contain;
}

.footerYTSJHf4__top,
.footerYTSJHf4__bottom {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 70px;
}

.footerYTSJHf4__top {
  padding: 56px 0 50px;
}

.footerYTSJHf4__bottom {
  padding: 56px 0 50px;
}

.footerYTSJHf4__col h2,
.footerYTSJHf4__disclaimer h2 {
  margin: 0 0 18px;
  color: #fff;
  font-family: 'Istok Web', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
}

.footerYTSJHf4__col p,
.footerYTSJHf4__col a,
.footerYTSJHf4__col label,
.footerYTSJHf4__status,
.footerYTSJHf4__disclaimer p,
.footerYTSJHf4__disclaimer strong {
  color: #fff;
  font-family: 'Istok Web', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
}

.footerYTSJHf4__col p {
  margin: 0 0 18px;
}

.footerYTSJHf4__col strong {
  font-weight: 700;
}

.footerYTSJHf4__col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footerYTSJHf4__col li {
  margin-bottom: 14px;
}

.footerYTSJHf4__col a {
  text-decoration: none;
  transition: color 0.25s ease;
}

.footerYTSJHf4__col a:hover,
.footerYTSJHf4__col a:focus-visible {
  color: #3ea185;
}

.footerYTSJHf4__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footerYTSJHf4__form label {
  font-weight: 700;
}

.footerYTSJHf4__form input {
  width: 100%;
  min-height: 40px;
  padding: 8px 12px;
  border: 0;
  outline: none;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-family: 'Istok Web', sans-serif;
  font-size: 15px;
}

.footerYTSJHf4__form button {
  min-height: 40px;
  border-radius: 100px;
  border: 2px solid var(--1, #3ea185);
  background: rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(5px);
  color: #fff;
  font-family: 'Istok Web', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

.footerYTSJHf4__status {
  display: none;
  color: #3ea185;
  font-weight: 700;
}

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

.footerYTSJHf4__disclaimer {
  padding: 36px 48px;
  border-radius: 20px;
  border: 1px solid var(--1, #3ea185);
  background: rgba(62, 161, 133, 0.15);
  text-align: center;
}

.footerYTSJHf4__disclaimer p {
  max-width: 900px;
  margin: 0 auto 2px;
}

.footerYTSJHf4__disclaimer strong {
  display: block;
  margin-top: 22px;
  font-weight: 700;
}

.footerYTSJHf4__copy {
  margin: 52px 0 0;
  color: #fff;
  text-align: center;
  font-family: 'Istok Web', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
}

@media (max-width: 900px) {
  .footerYTSJHf4__top,
  .footerYTSJHf4__bottom {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 575px) {
  .footerYTSJHf4 {
    padding: 40px 0 34px;
  }

  .footerYTSJHf4__brand {
    padding: 34px 0;
    justify-content: flex-start;
    gap: 28px;
  }

  .footerYTSJHf4__age {
    width: 44px;
  }

  .footerYTSJHf4__logo {
    width: 150px;
  }

  .footerYTSJHf4__top,
  .footerYTSJHf4__bottom {
    padding: 34px 0;
    gap: 26px;
  }

  .footerYTSJHf4__col h2,
  .footerYTSJHf4__disclaimer h2 {
    font-size: 20px;
  }

  .footerYTSJHf4__col p,
  .footerYTSJHf4__col a,
  .footerYTSJHf4__col label,
  .footerYTSJHf4__status,
  .footerYTSJHf4__disclaimer p,
  .footerYTSJHf4__disclaimer strong {
    font-size: 15px;
  }

  .footerYTSJHf4__disclaimer {
    padding: 28px 22px;
  }

  .footerYTSJHf4__copy {
    margin-top: 34px;
    font-size: 18px;
  }
}

.aboutHeroYTSJHf4 {
  padding-top: 90px;
  padding-bottom: 20px;
  background: #050f0e;
}

.aboutHeroYTSJHf4__container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.aboutHeroYTSJHf4__title {
  max-width: 920px;
  margin: 0 0 26px;
  color: #fff;
  text-align: center;
  font-family: 'Istok Web', sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.35;
}

.aboutHeroYTSJHf4__text {
  max-width: 860px;
  margin: 0;
  color: #fff;
  text-align: center;
  font-family: 'Istok Web', sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .aboutHeroYTSJHf4 {
    padding: 72px 0 56px;
  }

  .aboutHeroYTSJHf4__title {
    margin-bottom: 22px;
    font-size: 32px;
    line-height: 1.4;
  }

  .aboutHeroYTSJHf4__text {
    font-size: 15px;
    line-height: 1.75;
  }
}

@media (max-width: 420px) {
  .aboutHeroYTSJHf4__title br {
    display: none;
  }

  .aboutHeroYTSJHf4__title {
    font-size: 28px;
  }
}

.stepsYTSJHf4 {
  padding: 90px 0;
  background: #00120f;
}

.stepsYTSJHf4__title {
  margin: 0 0 28px;
  color: #fff;
  text-align: center;
  font-family: 'Istok Web', sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.stepsYTSJHf4__text {
  max-width: 900px;
  margin: 0 auto 54px;
  color: #fff;
  text-align: center;
  font-family: 'Istok Web', sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.7;
}

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

.stepsYTSJHf4__item {
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  border-radius: 20px;
  background: #0e1a19;
}

.stepsYTSJHf4__number {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Istok Web', sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.stepsYTSJHf4__content {
  flex: 1;
  min-width: 0;
}

.stepsYTSJHf4__content h3 {
  margin: 0 0 14px;
  color: #fff;
  font-family: 'Istok Web', sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.stepsYTSJHf4__content p {
  margin: 0;
  color: #fff;
  font-family: 'Istok Web', sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.7;
}

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

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

  .stepsYTSJHf4__title {
    margin-bottom: 24px;
    font-size: 32px;
  }

  .stepsYTSJHf4__text {
    margin-bottom: 38px;
    font-size: 15px;
    line-height: 1.75;
  }

  .stepsYTSJHf4__item {
    padding: 24px 20px;
    gap: 16px;
  }

  .stepsYTSJHf4__number {
    font-size: 48px;
  }

  .stepsYTSJHf4__content h3 {
    margin-bottom: 12px;
    font-size: 20px;
  }

  .stepsYTSJHf4__content p {
    font-size: 15px;
    line-height: 1.75;
  }
}

@media (max-width: 420px) {
  .stepsYTSJHf4__item {
    padding: 22px 18px;
    gap: 14px;
  }

  .stepsYTSJHf4__number {
    font-size: 40px;
  }
}

.contactFormYTSJHf4 {
  padding: 50px 0 90px;
  background: #00120f;
}

.contactFormYTSJHf4__form {
  max-width: 860px;
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

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

.contactFormYTSJHf4__field {
  margin-bottom: 20px;
}

.contactFormYTSJHf4__field label {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-family: 'Istok Web', sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: normal;
}

.contactFormYTSJHf4__field input,
.contactFormYTSJHf4__field textarea {
  width: 100%;
  border: 0;
  outline: none;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-family: 'Istok Web', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
}

.contactFormYTSJHf4__field input {
  min-height: 58px;
  padding: 0 18px;
}

.contactFormYTSJHf4__field textarea {
  min-height: 112px;
  padding: 18px;
  resize: vertical;
}

.contactFormYTSJHf4__field input::placeholder,
.contactFormYTSJHf4__field textarea::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.contactFormYTSJHf4__checkbox {
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.contactFormYTSJHf4__checkbox input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.contactFormYTSJHf4__checkbox span {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border-radius: 5px;
  border: 1px solid #fff;
  background: transparent;
}

.contactFormYTSJHf4__checkbox input:checked + span {
  background: #3ea185;
  box-shadow: inset 0 0 0 4px #00120f;
}

.contactFormYTSJHf4__checkbox b,
.contactFormYTSJHf4__checkbox a {
  color: #fff;
  font-family: 'Istok Web', sans-serif;
  font-size: 15px;
  line-height: normal;
}

.contactFormYTSJHf4__checkbox b {
  font-weight: 400;
}

.contactFormYTSJHf4__checkbox a {
  font-weight: 700;
  text-decoration: none;
}

.contactFormYTSJHf4__button {
  width: 100%;
  min-height: 48px;
  border-radius: 100px;
  border: 2px solid var(--1, #3ea185);
  background: rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(5px);
  color: #fff;
  font-family: 'Istok Web', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

.contactFormYTSJHf4__status {
  display: none;
  margin: 16px 0 0;
  color: #3ea185;
  text-align: center;
  font-family: 'Istok Web', sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}

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

@media (max-width: 768px) {
  .contactFormYTSJHf4__row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (max-width: 575px) {
  .contactFormYTSJHf4 {
    padding: 40px 0 72px;
  }

  .contactFormYTSJHf4__field input,
  .contactFormYTSJHf4__field textarea {
    font-size: 15px;
  }

  .contactFormYTSJHf4__checkbox {
    align-items: flex-start;
  }
}

.terms {
  background: #050f0e;
  padding: 70px 0;
}

.terms h1 {
  color: #fff;
  text-align: center;
  font-family: 'Istok Web';
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  margin-bottom: 20px;
}

.terms .date {
  color: #fff;
  text-align: center;
  font-family: 'Istok Web';
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  margin-bottom: 20px;
}

.terms h2 {
  color: #fff;
  font-family: 'Istok Web';
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 20px;
}

.terms p {
  color: #fff;
  font-family: 'Istok Web';
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 20px;
}

.terms a {
  color: #fff;
  font-family: 'Istok Web';
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

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

.terms ul li {
  list-style-type: disc;
  color: #fff;
  font-family: 'Istok Web';
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-left: 15px;
}
