* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  text-decoration: none;
}

button,
input {
  outline: none;
  border: none;
  background-color: transparent;
}

button {
  cursor: pointer;
  font-family: "Roboto";
}

textarea {
  font-family: "Roboto";
  outline: none;
}

input {
  font-family: "Roboto";
}

ul {
  list-style: none;
}

body {
  font-family: "Roboto";
  display: grid;
  /* grid-template-rows: 1fr auto;
  align-content: flex-start;
  min-height: 100vh; */
  background-color: #0B0A0F;

}

a {
  font-family: "Roboto";
}

html {
  scroll-behavior: smooth;
}

@font-face {
  font-family: 'Chango';
  src: url('../fonts/Chango-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}




:root {
  --gradient-color: linear-gradient(0deg, #0B0A0F 0%, #0D1413 47.12%, #1E2E2E 100%);
  --title-font: "Chango";
  --light-color: #fff;

}

.container {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;

  @media(max-width: 1450px) {
    padding-left: 24px;
    padding-right: 24px;
  }
}

.btn-filled__xR5yM9wK {

  border-radius: 15px;
  background: #106B75;
  padding: 16px 40px;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  color: var(--light-color);
  text-transform: capitalize;
  font-family: var(--title-font);
}

.btn-simple__xR5yM9wK {
  border-radius: 15px;
  border: 1px solid #106B75;
  padding: 16px 40px;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  color: var(--light-color);
  text-transform: capitalize;
  font-family: var(--title-font);
}

.nav-logo-xR5yM9wK {
  height: 60px;
  width: 62px;

  & img {
    object-fit: contain;
    object-position: left;
    width: 100%;
    height: 100%;
  }
}

header {
  background: var(--gradient-color);

  /* background-color: #fff; */
  & .nav-wrap__xR5yM9wK {
    position: relative;
  }

  & .nav-menu__inner-xR5yM9wK {
    padding: 25px;
    padding-bottom: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 0;
    padding-right: 0;

    @media(Max-width: 992px) {
      padding-bottom: 8px;
      padding-top: 8px;
    }


    & .nav-logo__xR5yM9wK {
      width: 144px;
      height: 62px;

      & img {
        object-fit: contain;
        width: 100%;
        height: 100%;
      }
    }

    & .nav-buttons__xR5yM9wK {
      display: flex;
      gap: 5px;

      @media(max-width: 992px) {
        display: none;
      }
    }

    & .header-right__xR5yM9wK {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      max-width: 774px;
      width: 100%;

      @media(max-width: 992px) {
        flex-direction: column;
        align-items: flex-end;
      }
    }

    & nav {
      & .nav-menu__xR5yM9wK {
        display: flex;
        gap: 32px;

        @media(max-width: 992px) {
          display: none;
        }

        & li {
          & a {
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: 22px;
            color: var(--light-color);
            font-family: var(--title-font);
          }

          &.current-menu-item {
            & a {
              color: #106B75;
            }
          }
        }
      }
    }



    & .mob-menu__xR5yM9wK {
      display: none;

      @media(max-width: 992px) {
        position: absolute;
        left: -100%;
        top: 86px;
        width: 100%;
        height: 50vh;
        background: #000;
        z-index: 10;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        transition: all .3s ease-in;
      }

      & .mob-menu__list-xR5yM9wK {
        display: flex;
        flex-direction: column;
        gap: 12px;

        & li {
          display: flex;
          justify-content: center;
        }

        & a {
          display: flex;
          justify-content: center;
          align-items: center;
          max-width: fit-content;
          color: #fff;
          font-family: var(--title-font);
          font-size: 18px;
          font-style: normal;
          font-weight: 400;

        }

        &.current-menu-item {
          & a {
            color: #76DD00;
          }
        }

      }

      &.active {
        transition: all .3s ease-in;
        left: 0;
      }
    }

    & .burger-xR5yM9wK {
      display: none;

      & img {
        width: 24px;
        height: 17px;
      }

      @media(max-width: 992px) {
        display: block;
      }
    }
  }

  & .header-disclaimer__xR5yM9wK {
    display: flex;
    gap: 21px;

    @media(max-width: 992px) {
      padding-bottom: 3px;
    }

    & .header-disclaimer__age-xR5yM9wK {
      & img {
        width: 21px;
        height: 14px;
      }
    }

    & .header-disclaimer__text-xR5yM9wK {
      font-size: 14px;
      font-style: normal;
      font-weight: 400;
      line-height: normal;
      color: #222;
    }

    &.moved {
      margin-top: 20px;
    }
  }
}

main {
  position: relative;
}

.page-image__xR5yM9wK {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 726px;

  & img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
}

h1 {
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 41px;
  font-family: var(--title-font);

  @media(max-width: 992px) {
    font-size: 26px;
    font-style: normal;
    font-weight: 400;
    line-height: 33px;
  }
}

h2 {
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 50px;
  font-family: var(--title-font);
  color: #fff;


  @media(max-width: 992px) {
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
  }
}

h3 {
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  color: #fff;
  font: var(--title-font);

  @media(Max-width: 992px) {
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
  }
}

h4 {}

h5 {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  color: #fff;
}

.section {
  margin-bottom: 70px;
}

.mainscreen-xR5yM9wK {
  position: relative;
  height: 552px;
  padding-top: 16px;

  @media(max-width: 600px) {
    height: 419px;
  }



  & .container {
    width: 100%;
    height: 100%;
  }

  & .mainscreen-inner__xR5yM9wK {
    height: 100%;
    position: relative;
    padding: 40px 24px;

    & .mainscreen-bg__xR5yM9wK {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      border-radius: 30px;
      border: 2px solid #10919F;
      overflow: hidden;

      & img {
        object-fit: cover;
        width: 100%;
        height: 100%;
      }

      & video {
        object-fit: cover;
        width: 100%;
        height: 100%;
      }
    }

    & .mainscreen-inner__top-xR5yM9wK {
      position: relative;
      height: 100%;
      display: flex;
      align-items: center;
      /* justify-content: center; */
      max-width: 562px;
      z-index: 2;

      & .mainscreen-inner__info-xR5yM9wK {
        & h1 {
          color: #FFF;
          margin-bottom: 16px;
          /* text-align: center; */

        }

        & .mainscreen-description__xR5yM9wK {
          color: #fff;
          font-size: 16px;
          font-style: normal;
          font-weight: 400;
          line-height: 22px;
          margin-bottom: 24px;
          /* text-align: center; */
        }

        & .btn-filled__xR5yM9wK {
          display: flex;
          justify-content: center;
          align-items: center;
          max-width: fit-content;
          margin-left: auto;
          margin-right: auto;
          margin-left: 0;
          width: 100%;
          text-align: center;
          max-width: 100%;

          @media(max-width: 992px) {

            max-width: 100%;
          }
        }
      }
    }
  }
}

.about-play__xR5yM9wK {
  padding-top: 60px;
  padding-bottom: 60px;

  & h2 {
    text-align: center;
    margin-bottom: 40px;
  }

  & .about-play__inner-xR5yM9wK {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;

    @media(max-width: 992px) {
      flex-direction: column;
      align-items: center;
    }

    & .about-play__image-xR5yM9wK {
      max-width: 616px;
      width: 100%;
      height: 473px;
      border-radius: 30px;
      overflow: hidden;
      border-radius: 40px;
      border: 1px solid #10919F;

      @media(max-width: 992px) {
        height: initial;
        aspect-ratio: 1.17/1;
      }

      & img {
        object-fit: cover;
        width: 100%;
        height: 100%;
      }

      & video {
        object-fit: cover;
        width: 100%;
        height: 100%;
      }
    }

    & .about-play__info-xR5yM9wK {
      max-width: 600px;
      width: 100%;

      @media(max-width: 992px) {
        max-width: 100%;
      }

      & h3 {
        font-size: 26px;
        font-style: normal;
        font-weight: 400;
        line-height: 33px;
        color: var(--light-color);
        font-family: var(--title-font);
        margin-bottom: 24px;

        @media(max-width: 992px) {
          font-size: 20px;
          font-style: normal;
          font-weight: 400;
          line-height: 22px
        }
      }

      & .about-play__text-xR5yM9wK {
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 22px;
        color: var(--light-color);
        max-width: 610px;
        margin-bottom: 24px;
      }

      & .btn-filled__xR5yM9wK {
        display: flex;
        justify-content: center;
        align-items: center;
        max-width: 100%;

        &.red-btn {
          background-color: #C12D00;
          text-decoration: underline;
          margin-top: 24px;
          text-align: center;
        }
      }
    }
  }
}

.empty-xR5yM9wK {
  padding-top: 40px;
  padding-bottom: 40px;
  position: relative;

  & .demo-xR5yM9wK {
    /* display: none; */
    width: 100%;
    height: 100%;
    border: 0;
    /* display: none; */

    &.active {
      display: block;
    }

    &.hidden {
      display: none;
    }
  }

  & #demo-btn__xR5yM9wK {
    &.hidden {
      display: none;
    }
  }

  & .empty-bg__xR5yM9wK {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;

    & img {
      object-fit: cover;
      width: 100%;
      height: 100%;
    }
  }

  & h2 {
    text-align: center;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
  }

  & .empty-frame__xR5yM9wK {
    /* max-width: 1141px; */
    max-width: 860px;
    width: 100%;
    height: 687px;
    height: 498px;
    border-radius: 50px;
    border-radius: 39.6px;
    border: 1px solid #10919F;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;

    @media(max-width: 450px) {
      height: 300px;
    }

    & .btn-filled__xR5yM9wK {
      color: #fff;
      font-size: 40px;
      font-style: normal;
      font-weight: 400;
      line-height: 51px;
      /* 127.5% */
      text-transform: uppercase;
      background-color: transparent;
    }

  }

  & .game-bottom__xR5yM9wK {
    margin-top: 17px;
    display: flex;
    gap: 24px;
    position: relative;
    z-index: 2;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;

    @media(max-width: 700px) {
      flex-direction: column-reverse;
      align-items: center;
    }

    & .btn-filled__xR5yM9wK {
      max-width: 624px;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    & .game-like__xR5yM9wK {
      display: flex;
      gap: 12px;
      align-items: center;
      max-width: 212px;
      width: 100%;
      justify-content: center;

      & img {
        width: 20px;
        height: 19px;
        object-fit: contain;
      }

      & span {
        color: var(--light-color);
        text-align: center;
        font-family: var(--title-font);
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: 22px;
      }
    }
  }
}

.feedback-xR5yM9wK {
  padding-top: 40px;
  padding-bottom: 40px;

  & .feedback-inner__xR5yM9wK {
    display: flex;
    gap: 24px;

    & .feedback-info__xR5yM9wK {
      max-width: 608px;
      width: 100%;

      @media(max-width: 992px) {
        max-width: 100%;
      }

      & h2 {
        font-size: 26px;
        font-style: normal;
        font-weight: 400;
        line-height: 33px;
        margin-bottom: 24px;
      }

      &>p {
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 22px;
        margin-bottom: 34px;
        position: relative;
        color: var(--light-color);

        &::before {
          content: '';
          position: absolute;
          width: 100%;
          height: 2px;
          background-color: #10919F;
          left: 0;
          bottom: -16px;
        }
      }

      & .feedback-form__xR5yM9wK {
        display: flex;
        flex-direction: column;
        gap: 24px;

        & .btn-filled__xR5yM9wK {
          height: 46px;
          padding: 0;
        }

        & .feedback-form__question-xR5yM9wK {
          max-width: 562px;
          width: 100%;

          @media(max-width: 992px) {
            max-width: 100%;
          }

          & p {
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: 22px;
            color: var(--light-color);
            margin-bottom: 24px;
          }

          & .rating-xR5yM9wK {
            display: flex;
            gap: 8px;

            & label {
              cursor: pointer;
            }

            & input {
              display: none;
            }

            & span {
              display: flex;
              width: 106px;
              height: 42px;
              align-items: center;
              justify-content: center;
              border-radius: 27px;
              border: 1px solid #106B75;
              font-size: 20px;
              font-style: normal;
              font-weight: 400;
              line-height: 22px;
              color: #292929;
              transition: .25s;
              background-color: var(--light-color);
              font-family: var(--title-font);

              @media(max-width: 700px) {
                width: 55px;
                height: 55px;
                border-radius: 15px;
              }
            }

            & input:checked+span {
              background-color: #106B75;
              color: #fff;
            }
          }
        }
      }
    }

    & .feedback-image {
      max-width: 608px;
      width: 100%;
      height: auto;
      border-radius: 40px;
      border: 1px solid #10919F;
      overflow: hidden;

      @media(max-width: 992px) {
        display: none;
      }

      & img {
        object-fit: cover;
        width: 100%;
        height: 100%;
      }
    }
  }
}



.form-section__xR5yM9wK {
  padding-top: 60px;
  padding-bottom: 60px;

  & h2 {
    margin-bottom: 24px;
    text-align: center;
    position: relative;
    z-index: 2;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    font-family: var(--title-font);
    color: var(--light-color);
  }

  & .form-section__inner-xR5yM9wK {
    position: relative;
    display: flex;
    gap: 24px;


    & .form-section__inner-image__xR5yM9wK {
      max-width: 616px;
      width: 100%;
      height: 604px;
      border-radius: 40px;
      border: 1.32px solid #10919F;
      overflow: hidden;

      @media(max-width: 992px) {
        display: none;
      }

      & img {
        object-fit: cover;
        width: 100%;
        height: 100%;
      }
    }

    & .form-section__inner-form__xR5yM9wK {
      max-width: 600px;
      width: 100%;

      @media(max-width: 992px) {
        max-width: 100%;
      }
    }



    & .form-section__description-xR5yM9wK {
      text-align: center;
      font-size: 16px;
      font-style: normal;
      font-weight: 400;
      line-height: 22px;
      margin-bottom: 24px;
      color: #222;
    }

    & .form-xR5yM9wK {
      max-width: 610px;
      width: 100%;
      margin-left: auto;
      margin-right: auto;
      display: flex;
      flex-direction: column;
      position: relative;
      z-index: 2;

      @media(Max-width: 992px) {
        max-width: 100%;
      }

      & label {
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 22px;
        color: var(--light-color);
        margin-bottom: 12px;
      }

      & .form-section__input-xR5yM9wK {
        border-radius: 12px;
        background: #fff;
        padding: 24px;
        display: block;
        width: 100%;
        height: 55px;
        border-radius: 14px;
        margin-bottom: 16px;
        color: #131313;
        padding: 15px 20px;

        &::placeholder {
          color: #131313;
        }
      }

      & textarea {
        display: block;
        width: 100%;
        height: 142px;
        padding: 15px 20px;
        border-radius: 12px;
        margin-bottom: 20px;
        background: #fff;
        color: #131313;
        border: none;
        resize: none;

        &::placeholder {
          color: #131313;
        }
      }

      & .btn-filled {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
      }
    }

    & .form-section__contacts-xR5yM9wK {
      margin-top: 24px;
      display: flex;
      flex-direction: column;
      gap: 17px;

      & li {
        display: flex;
        align-items: center;
        gap: 16px;

        & img {
          width: 24px;
          height: 24px;
          object-fit: contain;
          min-width: 24px;
        }

        & address {
          font-size: 16px;
          font-style: normal;
          font-weight: 400;
          line-height: 22px;
          color: var(--light-color);
        }

        & a {
          font-size: 16px;
          font-style: normal;
          font-weight: 400;
          line-height: 22px;
          color: var(--light-color);
        }
      }
    }
  }


}

.success-message__xR5yM9wK {
  margin-top: 15px;
  text-align: center;
  color: var(--light-color);
  display: none;

  &.active {
    display: block;
  }
}

.disclaimer-xR5yM9wK {
  margin-bottom: 60px;

  & .disclaimer-inner__xR5yM9wK {
    border-radius: 40px;
    border: 1px solid #10919F;
    background: linear-gradient(180deg, #0B0A0F 0%, #0D1413 47.12%, #1E2E2E 100%);
    padding-top: 16px;
    padding-bottom: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;

    @media(max-width: 700px) {
      /* padding: 24px 16px; */
    }

    & .disclaimer-icon__xR5yM9wK {
      margin-bottom: 24px;
      width: 80px;
      height: 70px;



      & img {
        object-fit: contain;
        width: 100%;
        height: 100%;
      }
    }


    & .disclaimer-text__xR5yM9wK {
      font-size: 16px;
      font-style: normal;
      font-weight: 400;
      line-height: 22px;
      color: #F1F1F1;
      text-align: center;

    }
  }
}

footer {
  padding-top: 24px;
  padding-bottom: 24px;
  background: linear-gradient(180deg, #0B0A0F 0%, #0D1413 47.12%, #1E2E2E 100%);


  & .footer-info__items-xR5yM9wK {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 29px;

    @media(max-width: 992px) {
      flex-direction: column;
      align-items: center;
      gap: 24px;
    }

    & .footer-info__item-xR5yM9wK {
      max-width: 595px;
      width: 100%;

      & .footer-info__item-title__xR5yM9wK {
        color: #fff;
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: 22px;
        font-family: var(--title-font);
        margin-bottom: 24px;
        text-align: center;
      }

      & .footer-info__item-subtitle__xR5yM9wK {
        color: #fff;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 22px;
        text-align: center;
      }
    }
  }

  & .footer-disclaimer__xR5yM9wK {
    display: flex;
    justify-content: center;
    margin-bottom: 26px;

    @media(max-width: 992px) {
      flex-direction: column;
      align-items: center;
    }

    & span {
      max-width: 1240px;
      width: 100%;
      text-align: center;
      font-size: 16px;
      font-style: normal;
      font-weight: 400;
      line-height: 22px;
      color: #fff;
    }

    & img {
      min-width: 40px;
      width: 40px;
      height: 40px;
      object-fit: contain;
    }
  }

  & .footer-logos {
    max-width: 700px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 26px;
    margin-left: auto;
    margin-right: auto;

    & a {
      max-width: 140px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;

      & img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        max-height: fit-content;
      }
    }
  }

  & .footer-copy {
    margin-bottom: 20px;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    color: #fff;
    text-align: center;
  }

  & .footer-links-xR5yM9wK {
    display: flex;
    justify-content: space-between;
    gap: 44px;
    flex-wrap: wrap;

    @media(max-width: 992px) {
      /* flex-direction: column; */
      justify-content: center;
      gap: 24px;
      align-items: center;
    }

    & .footer-link__xR5yM9wK {
      & a {
        font-family: Roboto;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 22px;
        color: #fff;
        font-family: var(--text-font);

        &:hover {
          text-decoration: underline;
        }
      }
    }
  }

  & .footer-contacts {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    & .footer-contacts__title {
      font-size: 18px;
      font-style: normal;
      font-weight: 400;
      line-height: 22px;
      margin-bottom: 24px;
      color: #fff;
      font-family: var(--title-font);
    }

    & address {
      font-size: 16px;
      font-style: normal;
      font-weight: 400;
      line-height: 22px;
      color: #fff;
      margin-bottom: 5px;
      display: block;
    }

    & a {
      font-size: 16px;
      font-style: normal;
      font-weight: 400;
      line-height: 22px;
      color: #fff;
      margin-bottom: 5px;
      display: block;
    }
  }
}

.text-page-xR5yM9wK {
  position: relative;
  padding-top: 70px;
  padding-bottom: 70px;

  & h1 {
    color: var(--light-color);
    margin-bottom: 24px;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 41px;
    font-family: var(--title-font);
    text-align: center;
  }

  & h2 {
    margin-bottom: 16px;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    font-family: var(--title-font);
    color: var(--light-color);
  }

  & ul {
    margin-bottom: 24px;
    padding-left: 25px;
    list-style: disc;
    &:has(+p) {
      margin-bottom: 0;
    }

    & li {
      font-size: 16px;
      font-style: normal;
      font-weight: 400;
      line-height: 22px;
      color: #DCDCDC;
    }
  }

  & p {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    color: #DCDCDC;
    margin-bottom: 24px;
    &:has(+ul) {
      margin-bottom: 0;
    }
  }
}

.overlay-xR5yM9wK {
  /* background-color: #0009; */
  background: rgba(66, 66, 66, 0.48);
  backdrop-filter: blur(12.550000190734863px);
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 50;
  display: none;
}

.overlay-xR5yM9wK.active {
  display: block;
}

.modal-xR5yM9wK {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 51;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;

  & .modal-inner__xR5yM9wK {
    max-width: 336px;
    width: 100%;
    padding: 16px;
    position: relative;
    border-radius: 15px;
    border: 1px solid #10919F;
    background: #0B0A0F;

    @media(max-width: 700px) {
      width: 98%;
    }

    & .close-btn__xR5yM9wK {
      position: absolute;
      top: 32px;
      right: 29px;
      cursor: pointer;

      & img {
        width: 14px;
        height: 14px;
      }
    }

    & .modal-title__xR5yM9wK {
      font-size: 26px;
      font-style: normal;
      font-weight: 400;
      line-height: 33px;
      text-align: center;
      color: var(--light-color);
      margin-bottom: 16px;
      font-family: var(--title-font);
    }

    & .modal-title-subtitle__xR5yM9wK {
      font-size: 16px;
      font-style: normal;
      font-weight: 400;
      line-height: 22px;
      color: #C1C1C1;
      margin-bottom: 18px;
      text-align: center;
    }

    & .age-buttons__xR5yM9wK {
      display: flex;
      justify-content: center;
      flex-direction: column;
      gap: 12px;

      & .btn-filled__xR5yM9wK {
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: 22px;
        padding-left: 6px;
        padding-right: 6px;
        display: flex;
        justify-content: center;
        align-items: center;
        max-width: 100%;
        width: 100%;
      }

      & .btn-simple__xR5yM9wK {
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: 22px;
        padding-left: 6px;
        padding-right: 6px;
        display: flex;
        justify-content: center;
        align-items: center;
        max-width: 100%;
        width: 100%;
      }
    }

    & .form-xR5yM9wK {
      & input {
        background: #E4E4E4;
        padding: 24px;
        display: block;
        width: 100%;
        height: 55px;
        border-radius: 14px;
        margin-bottom: 12px;
      }

      & .btn-filled__xR5yM9wK {
        max-width: 100%;
        width: 100%;
      }
    }

    & .modal-bottom__xR5yM9wK {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 12px;

      & span {
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: 22px;
        color: #fff;
      }

      & a {
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: 22px;
        background: linear-gradient(90deg, #6C877E 0%, #D1FF88 100%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
      }
    }
  }
}

.modal-xR5yM9wK.active {
  display: flex;
}

.thx-modal {
  & .modal-inner__xR5yM9wK {
    border-radius: 40px;
    background: #0B0A0F;
    padding: 32px;
    max-width: 608px;

    & .modal-sup__xR5yM9wK {
      font-size: 20px;
      font-style: normal;
      font-weight: 400;
      line-height: 22px;
      margin-bottom: 8px;
      color: #DCDCDC;
      font-family: var(--title-font);
      text-align: center;
    }

    & .modal-title__thx-xR5yM9wK {
      font-size: 40px;
      font-style: normal;
      font-weight: 400;
      line-height: 50px;
      color: var(--light-color);
      font-family: var(--title-font);
      margin-bottom: 24px;
      text-align: center;
    }

    & .btn-filled__xR5yM9wK {
      margin-bottom: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      max-width: 100%;
    }

    & .btn-simple__xR5yM9wK {
      display: flex;
      align-items: center;
      justify-content: center;
      max-width: 100%;
    }
  }
}

/* about page */

.about-mainscreen_xR5yM9wK {
  padding-top: 60px;
  padding-bottom: 60px;
  background: #FFF4E3;
  backdrop-filter: blur(12.5px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;

  & h1 {
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: #222;
    margin-bottom: 24px;
    font-family: var(--title-font);
    text-align: center;
  }

  & p {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    color: #222;
    text-align: center;
  }
}

.image-block__xR5yM9wK {
  display: flex;
  align-items: center;
  gap: 24px;

  @media(max-width: 700px) {
    flex-direction: column-reverse;
  }

  & .image-block__image-xR5yM9wK {
    max-width: 610px;
    width: 100%;
    height: 388px;
    border-radius: 30px;
    overflow: hidden;

    @media(max-width: 700px) {
      height: 209px;
    }

    & img {
      object-fit: cover;
      width: 100%;
      height: 100%;
    }

    & video {
      object-fit: cover;
      width: 100%;
      height: 100%;
    }
  }

  & .image-block__info-xR5yM9wK {
    max-width: 606px;
    width: 100%;

    & h2 {
      margin-bottom: 10px;
      font-size: 20px;
      font-style: normal;
      font-weight: 400;
      line-height: 26px;
      color: #222;
    }

    & p {
      font-size: 16px;
      font-style: normal;
      font-weight: 400;
      line-height: 22px;
      color: #222;

      &:last-child {
        margin-top: 16px;
      }
    }
  }
}

.mission-xR5yM9wK.cream {
  & .image-block__xR5yM9wK {
    @media(max-width: 700px) {
      flex-direction: column
    }
  }
}

.advantages-xR5yM9wK {
  padding-top: 60px;
  padding-bottom: 60px;

  & .advantages-inner__xR5yM9wK {
    & h2 {
      margin-bottom: 24px;
      font-size: 24px;
      font-style: normal;
      font-weight: 400;
      line-height: normal;
      color: var(--light-color);
      text-align: center;
    }

    & .advantages-items__xR5yM9wK {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;

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

      @media(max-width: 992px) {
        grid-template-columns: repeat(1, 1fr);
      }

      & .advantages-item__xR5yM9wK {
        padding: 24px;
        border-radius: 40px;
        border: 1px solid var(--stroke, #10919F);
        background: linear-gradient(180deg, #0B0A0F 0%, #0D1413 47.12%, #1E2E2E 100%);
        min-height: 361px;

        @media(max-width: 992px) {
          min-height: 383px;
        }

        & .advantages-item__image-xR5yM9wK {
          width: 100%;
          height: 100px;
          margin-bottom: 10px;

          & img {
            object-fit: contain;
            width: 100%;
            height: 100%;
            object-position: center;
          }
        }

        & h3 {
          font-size: 26px;
          font-style: normal;
          font-weight: 400;
          line-height: 33px;
          color: #fff;
          height: 99px;
          font-family: var(--title-font);
          text-align: center;
          margin-bottom: 24px;

          @media(max-width: 768px) {
            font-size: 26px;
            font-style: normal;
            font-weight: 400;
            line-height: 33px;
          }
        }

        & p {
          font-size: 16px;
          font-style: normal;
          font-weight: 400;
          line-height: 22px;
          color: #fff;
          text-align: center;
        }
      }
    }
  }
}

.cream {
  padding-top: 60px;
  padding-bottom: 60px;
  background: #FFF4E3;
  backdrop-filter: blur(12.5px);
}

.transparent {
  padding-top: 0;
  padding-bottom: 0;
  background: transparent;

  & .advantages-inner__xR5yM9wK {
    & h2 {
      margin-bottom: 24px;
      font-size: 24px;
      font-style: normal;
      font-weight: 400;
      line-height: normal;
      color: #222;
      text-align: center;
    }

    & .advantages-items__xR5yM9wK {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;

      @media(max-width: 992px) {
        grid-template-columns: repeat(1, 1fr);
      }


      & .advantages-item__xR5yM9wK {
        padding: 16px;
        border-radius: 20px;
        background: transparent;
        border: 1px solid #555454;
        max-width: 292px;
        width: 100%;

        @media(max-width: 992px) {
          min-height: 310px;
        }

        & h3 {
          color: #222;
        }

        & p {
          color: #222;
        }
      }
    }
  }
}

/* about page  end*/

.form-section__xR5yM9wK.contact-page {
  & .form-section__inner-xR5yM9wK {
    padding: 0;

    & h2 {
      font-family: var(--title-font);
      font-size: 24px;
      font-style: normal;
      font-weight: 400;
      line-height: normal;
    }

    & .form-xR5yM9wK {
      & .form-section__input-xR5yM9wK {
        background: #fff;
        color: #222;
        border: 1px solid #555454;


        &::placeholder {
          color: #222;
        }
      }

      & textarea {
        background: #fff;
        color: #222;
        border: 1px solid #555454;

        &::placeholder {
          color: #222;
        }
      }
    }
  }

}

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