* {
  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";
}

main {
  overflow: hidden;
}

ul {
  list-style: none;
}

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

}

a {
  font-family: "Roboto";
}

html {
  scroll-behavior: smooth;
}

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

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

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

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





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

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

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

  @media(max-width: 700px) {
    padding-left: 12px;
    padding-right: 12px;
  }
}

.btn-filled__Kp9Qx4Tf {

  border-radius: 10px;
  background: #FB5555;
  padding: 3px 16px;
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  max-width: 189px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 44px;

  & span {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }

}

.btn-simple__Kp9Qx4Tf {
  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-Kp9Qx4Tf {
  display: flex;
  gap: 10px;
  align-items: center;

  & img {
    object-fit: contain;
    object-position: left;
    width: 70px;
    height: 51px;
  }

  & span {
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    /* 16.8px */
    text-transform: uppercase;
    color: var(--light-color);
  }
}

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

  background: #161C2D;
  box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(15px);
  position: relative;
  z-index: 10;

  & .nav-wrap__Kp9Qx4Tf {
    position: relative;
  }

  & .nav-menu__inner-Kp9Qx4Tf {
    padding: 10px;
    padding-bottom: 10px;
    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__Kp9Qx4Tf {
      width: 144px;
      height: 62px;

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

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

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

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

    & nav {
      & .nav-menu__Kp9Qx4Tf {
        display: flex;
        gap: 40px;

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

        & li {
          & a {
            color: #FFF;
            text-align: center;
            font-size: 16px;
            font-style: normal;
            font-weight: 600;
            line-height: normal;
          }

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



    & .mob-menu__Kp9Qx4Tf {
      display: none;

      @media(max-width: 992px) {
        position: absolute;
        left: -100%;
        top: 67px;
        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-Kp9Qx4Tf {
        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-Kp9Qx4Tf {
      display: none;

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

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

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

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

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

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

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

main {
  position: relative;
}

.page-image__Kp9Qx4Tf {
  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: 700;
  line-height: 120%;
  text-transform: uppercase;
  font-family: var(--title-font);

  @media(max-width: 992px) {
    font-size: 30px;
  }

  @media(max-width: 600px) {
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    text-transform: uppercase;
  }
}

h2 {
  color: var(--black, #242424);
  text-align: center;
  font-family: var(--title-font);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;

  /* 
  @media(max-width: 600px) {
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
  } */
}

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 {
  padding-top: 70px;

  & h2 {
    margin-bottom: 0 !important;
    padding-bottom: 70px;
  }

  &:has(.section__subtitle-Kp9Qx4Tf) {
    & h2 {
      padding-bottom: 16px;
    }

    .section__subtitle-Kp9Qx4Tf {
      padding-bottom: 70px;
      max-width: 643px;
      margin-left: auto;
      margin-right: auto;
    }
  }
}

.mainscreen-Kp9Qx4Tf {
  position: relative;
  padding-top: 70px;
  padding-bottom: 70px;


  @media(max-width: 600px) {
    padding-top: 40px;
    padding-bottom: 40px;
  }


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

  & .mainscreen-bg__Kp9Qx4Tf {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;

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

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

  & .mainscreen-inner__Kp9Qx4Tf {
    height: 100%;
    position: relative;
    padding: 40px 32px;
    border-radius: 35px;
    overflow: hidden;
    height: 401px;



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

      & .mainscreen-inner__info-Kp9Qx4Tf {
        & h1 {
          color: #fff;

          margin-bottom: 16px;

          @media(max-width: 700px) {
            color: #FFF;
            font-size: 24px;
            font-style: normal;
            font-weight: 400;
            line-height: normal;
          }

          /* text-align: center; */
        }

        & .mainscreen-description__Kp9Qx4Tf {
          color: #fff;
          font-size: 16px;
          font-style: normal;
          font-weight: 400;
          line-height: normal;
          margin-bottom: 16px;

          /* text-align: center; */
          @media(max-width: 600px) {
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: normal;
          }
        }

        & .btn-filled__Kp9Qx4Tf {
          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: 273px;

          @media(max-width: 992px) {

            max-width: 100%;
          }


        }
      }
    }
  }

  &.about-page {

    @media(max-width: 600px) {

      & h1 {
        max-width: 62% !important;
      }

      & .mainscreen-description__Kp9Qx4Tf {
        max-width: 62% !important;
      }
    }
  }
}

.mainscreen-adv__Kp9Qx4Tf {
  display: flex;
  gap: 8px;
  max-width: 577px;
  width: 100%;
  flex-wrap: wrap;

  & li {
    border-radius: 10px;
    background: #FFF;
    padding: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: fit-content;

    & span {
      color: #242424;
      text-align: center;
      font-size: 12px;
      font-style: normal;
      font-weight: 400;
      line-height: normal;
    }

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

.section__subtitle-Kp9Qx4Tf {
  color: #242424;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.recomended-Kp9Qx4Tf {
  & h2 {
    margin-bottom: 16px;
    text-align: center;
  }



  & .recomended-content__Kp9Qx4Tf {
    margin-top: 16px;
    border-radius: 16px;
    border: 1px solid #CFD6FA;
    background: #F2FAFF;
    padding: 16px;

    & .recomended-content__row-Kp9Qx4Tf {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      align-items: center;
      margin-bottom: 24px;

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

      & .recomended-logo__Kp9Qx4Tf {
        height: 84px;
        max-width: 200px;
        width: 100%;
        & img {
          object-fit: contain;
          width: 100%;
          height: 100%; 
        }
      }

      & .recomended-content__col-Kp9Qx4Tf {
        max-width: fit-content;

        &:nth-child(2) {
          max-width: 219px;

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

        &:nth-child(3) {
          max-width: 357px;

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

        & .recomended-content__col-gray__Kp9Qx4Tf {
          color: var(--gray_text, #5C5C5C);
          text-align: center;
          font-size: 16px;
          font-style: normal;
          font-weight: 400;
          line-height: normal;
          margin-bottom: 8px;
        }

        & .recomended-content__col-bold__Kp9Qx4Tf {
          color: #242424;
          text-align: center;
          font-size: 16px;
          font-style: normal;
          font-weight: 600;
          line-height: normal;
        }

        & .recomended-content__col-simple__Kp9Qx4Tf {
          color: #242424;
          font-size: 16px;
          font-style: normal;
          font-weight: 400;
          line-height: normal;
          display: flex;
          align-items: center;
          gap: 8px;

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

          &:not(:last-child) {
            margin-bottom: 15px;
          }
        }

        & .btn-filled__Kp9Qx4Tf {
          width: 189px;
        }
      }
    }

    & .recomended-content__disclaimer-Kp9Qx4Tf {
      border-radius: 16px;
      border: 1px solid #EFEFEF;
      background: #FFF;
      padding: 16px;

      & .recomended-content__disclaimer-title__Kp9Qx4Tf {
        color: #242424;
        text-align: center;
        font-family: var(--title-font);
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        margin-bottom: 16px;
      }

      & p {
        color: #5C5C5C;
        text-align: center;
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
      }
    }
  }
}

.advantages-Kp9Qx4Tf {
  padding-top: 70px;
  padding-top: 70px;

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

  & .advantages-items__Kp9Qx4Tf {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;

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

    & .advantages-item__Kp9Qx4Tf {
      border-radius: 16px;
      border: 1px solid #EFEFEF;
      background: #F2FAFF;
      padding: 16px;

      & .advantages-item__icon-Kp9Qx4Tf {
        width: 50px;
        height: 50px;
        margin-bottom: 24px;

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

      & h3 {
        color: #242424;
        font-family: var(--title-font);
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        margin-bottom: 8px;
      }

      & p {
        color: #5C5C5C;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
      }
    }
  }
}

.table-Kp9Qx4Tf {
  padding-top: 70px;
  padding-bottom: 70px;

  & h2 {
    margin-bottom: 16px;
  }
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  margin-top: 24px;
}

.comparison-table th,
.comparison-table td {
  border: 2px solid #EFEFEF;
  padding: 12px 10px;
  color: #242424;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.comparison-table th {}

.category-cell {

  width: 30%;
  color: #242424;
  text-align: center;
  font-family: var(--title-font);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.brand-title {

  color: #242424;
  text-align: center;
  font-family: var(--title-font);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

tbody {
  & tr {
    &:nth-child(odd) {
      background-color: #F2FAFF;
    }
  }
}

@media (max-width: 768px) {

  .comparison-table th,
  .comparison-table td {
    font-size: 12px;
    padding: 8px;
  }
}


.guide-Kp9Qx4Tf {
  background-color: #161C2D;
  padding-top: 64px;
  padding-bottom: 64px;

  & h2 {
    color: #fff;
    margin-bottom: 16px;
  }

  & .section__subtitle-Kp9Qx4Tf {
    color: #fff;
    margin-bottom: 27px
  }

  & .guide-items__Kp9Qx4Tf {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;

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

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


    & .guide-item__Kp9Qx4Tf {
      border-radius: 16px;
      background: #FFF;
      padding: 16px;
      display: flex;
      flex-direction: column;
      height: 413px;

      & .guide-item__image-Kp9Qx4Tf {
        width: 64px;
        height: 64px;
        margin-bottom: 16px;

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

      & h3 {
        color: #242424;
        font-family: var(--title-font);
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        margin-bottom: 16px;
        height: 54px;
      }

      & p {
        color: #5C5C5C;

        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
      }

      & .btn-filled__Kp9Qx4Tf {
        margin-top: auto;
      }
    }
  }
}




.faq-Kp9Qx4Tf {
  padding-top: 70px;
  padding-bottom: 70px;

  @media(max-width: 600px) {
    padding-top: 20px;
    padding-bottom: 20px;
  }

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

    @media(max-width: 992px) {
      margin-bottom: 20px;
    }
  }

  & .faq-items__Kp9Qx4Tf {
    display: flex;
    flex-direction: column;
    gap: 20px;

    @media(Max-width: 768px) {
      gap: 10px;
    }

    & .faq-item__Kp9Qx4Tf {
      border-radius: 24px;
      border: 1px solid #EFEFEF;
      background: #F2FAFF;
      padding: 16px 24px;
      position: relative;

      @media(Max-width: 768px) {
        padding: 10px;
      }

      & img {
        right: 34px;
        top: 31px;
        position: absolute;
        width: 24px;
        height: 16px;
        transform: rotate(180deg);
      }

      & h3 {
        color: #242424;
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
        margin-bottom: 16px;
        cursor: pointer;
        max-width: 90%;

        @media(max-width: 992px) {
          line-height: normal;
        }
      }

      & p {
        color: #5C5C5C;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        max-width: 90%;

      }

      &.open {
        & img {
          transform: rotate(0);
        }
      }
    }
  }
}

.form-section__Kp9Qx4Tf {
  padding-top: 70px;
  padding-bottom: 70px;

  & h2 {
    margin-bottom: 16px;
    text-align: center;
    position: relative;
    z-index: 2;
    font-family: var(--title-font);
  }

  & .section__title-Kp9Qx4Tf {
    text-align: center;
    margin-bottom: 24px;
  }

  & .form-section__inner-Kp9Qx4Tf {
    position: relative;
    display: flex;
    align-items: center;
    gap: 24px;

    @media(max-width: 768px) {
      flex-direction: column;
      align-items: flex-start;
      gap: 20px;
    }

    & .form-section__info-Kp9Qx4Tf {
      max-width: 598px;
      width: 100%;

      & .form-section__info-list__Kp9Qx4Tf {
        display: flex;
        flex-direction: column;
        gap: 20px;
        list-style: disc;
        padding-left: 25px;

        @media(max-width: 600px) {
          gap: 10px;
        }

        & li {
          font-size: 20px;
          font-style: normal;
          font-weight: 700;
          line-height: 120%;
          color: var(--light-color);

          @media(max-width: 600px) {
            font-size: 12px;
            font-style: normal;
            font-weight: 700;
            line-height: 120%;
          }
        }
      }
    }


    & .form-section__inner-image__Kp9Qx4Tf {
      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__Kp9Qx4Tf {
      max-width: 606px;
      display: flex;
      margin-left: auto;
      margin-right: auto;
      width: 100%;

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



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

    & .form-Kp9Qx4Tf {
      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-Kp9Qx4Tf {
        border-radius: 12px;
        border: 1px solid, #CAD5D4;
        background: rgba(255, 255, 255, 0.87);
        color: #2F2F2F;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        margin-bottom: 8px;
        padding: 16px;

        &::placeholder {
          color: #656565;
          font-size: 16px;
          font-style: normal;
          font-weight: 400;
          line-height: normal;

        }
      }

      & textarea {
        border-radius: 12px;
        border: 1px solid, #CAD5D4;
        background: rgba(255, 255, 255, 0.87);
        color: #2F2F2F;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        padding: 16px;
        resize: none;
        height: 162px;
        margin-bottom: 8px;

        &::placeholder {
          color: #656565;
          font-size: 16px;
          font-style: normal;
          font-weight: 400;
          line-height: normal;
        }
      }

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

    & .form-section__contacts-Kp9Qx4Tf {
      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);
        }
      }
    }
  }


}

.custom-select {
  position: relative;
  width: 100%;
  font-family: inherit;
}

.custom-select__trigger {
  border-radius: 12px;
  border: 1px solid, #CAD5D4;
  background: rgba(255, 255, 255, 0.87);
  color: #2F2F2F;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 8px;
  padding: 16px;
  cursor: pointer;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}



.custom-select__arrow {
  width: 18px;
  height: 18px;
  pointer-events: none;
  transition: transform .25s ease;
}

.custom-select.open .custom-select__arrow {
  transform: rotate(180deg);
}

.custom-select__list {
  position: absolute;
  top: calc(100% + 0px);
  left: 0;
  right: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  background: #fff;
  border: 1px solid #CAD5D4;
  border-radius: 6px;
  display: none;
  max-height: 200px;
  overflow-y: auto;
  z-index: 10;
}

.custom-select.open .custom-select__list {
  display: block;
}

.custom-select__list li {
  padding: 8px 16px;
  cursor: pointer;
  height: 56px;
  display: flex;
  align-items: center;

  &:not(:first-child) {
    border-top: 1px solid #CAD5D4;
  }
}

.custom-select__list li:hover {
  background: #f0f0f0;
}


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

  &.active {
    display: block;
  }
}

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

  & .disclaimer-inner__Kp9Qx4Tf {
    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__Kp9Qx4Tf {
      margin-bottom: 24px;
      width: 80px;
      height: 70px;



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


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

    }
  }
}

footer {
  padding-top: 60px;
  padding-bottom: 60px;
  background: #161C2D;

  @media(max-width: 600px) {
    padding-top: 40px;
    padding-bottom: 40px;
  }


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

    @media(max-width: 992px) {
      gap: 40px;
    }

    & .footer-info__item-Kp9Qx4Tf {
      width: 100%;

      & .footer-info__item-title__Kp9Qx4Tf {
        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__Kp9Qx4Tf {
        color: #fff;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 22px;
        text-align: center;
      }
    }
  }

  & .footer-disclaimer__Kp9Qx4Tf {
    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-info__Kp9Qx4Tf {
    display: flex;
    gap: 20px;
    width: 100%;

    margin-bottom: 41px;

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

    & .footer-info__items-Kp9Qx4Tf {
      display: flex;
      gap: 40px;
      width: 100%;

      & .footer-info__item-Kp9Qx4Tf {

        width: 100%;

        & .footer-info__item-title__Kp9Qx4Tf {
          color: #FFF;
          font-size: 18px;
          font-style: normal;
          font-weight: 400;
          line-height: normal;
          text-align: left;
          margin-bottom: 20px;
        }

        & .footer-info__item-text__Kp9Qx4Tf {
          color: #FFF;
          font-size: 16px;
          font-style: normal;
          font-weight: 400;
          line-height: normal;
          color: var(--light-color);
        }

        & address {
          font-size: 14px;
          font-style: normal;
          font-weight: 400;
          line-height: 120%;
          color: var(--light-color);
          margin-bottom: 5px;
        }

        & a {
          font-size: 14px;
          font-style: normal;
          font-weight: 400;
          line-height: 120%;
          color: var(--light-color);
          margin-bottom: 8px;
          display: block;
        }
      }
    }
  }

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

    @media(max-width: 600px) {
      flex-wrap: wrap;
      gap: 10px;
      justify-content: flex-start;
    }

    & 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;
      }
    }

    & span {
      max-width: 162px;
      height: 40px;
      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-age__Kp9Qx4Tf {
    margin-bottom: 41px;
    width: 45px;
    height: 57px;
    margin-left: auto;
    margin-right: auto;

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

  & .footer-menu__Kp9Qx4Tf {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 41px;

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

  & .footer-menu__logo-Kp9Qx4Tf {
    max-width: 126px;
    width: 100%;
    height: 126px;

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

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

  & .footer-links-Kp9Qx4Tf {
    display: flex;
    flex-direction: column;
    gap: 12px;

    & .footer-link__Kp9Qx4Tf {
      & a {
        color: var(--button_color, #FB5555);
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;

        &:hover {
          text-decoration: underline;
        }

      }

      & span {
        color: #FFF;
        font-family: var(--title-font);
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
      }
    }
  }

  & .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-Kp9Qx4Tf {
  position: relative;
  padding-top: 10px;
  padding-bottom: 10px;

  & h1 {
    margin-bottom: 16px;
    color: #242424;
    font-family: var(--title-font);
    font-size: 38px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;

  }

  & h2 {
    color: var(--black, #242424);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 8px;
    text-align: left;
    font-family: "Roboto";

  }

  & ul {
    margin-bottom: 16px;
    padding-left: 25px;
    list-style: disc;

    &:has(+p) {
      margin-bottom: 0;
    }

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

  & p {
    color: #5C5C5C;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 16px;


    &:has(+ul) {
      margin-bottom: 0;
    }
  }
}

.overlay-Kp9Qx4Tf {
  /* 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-Kp9Qx4Tf.active {
  display: block;
}

.modal-Kp9Qx4Tf {
  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__Kp9Qx4Tf {
    max-width: 520px;
    width: 100%;
    padding: 20px;
    position: relative;
    border-radius: 5px;
    background: #200F22;

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

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

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

    & img {
      width: 40px;
      height: 40px;
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 20px;
      text-align: center;
      display: block;
    }

    & .modal-title__Kp9Qx4Tf {
      font-size: 16px;
      font-style: normal;
      font-weight: 700;
      line-height: 120%;
      /* 19.2px */
      text-transform: uppercase;
      color: #FF0083;
      margin-bottom: 10px;
      text-align: center;
    }

    & .modal-title-subtitle__Kp9Qx4Tf {
      font-size: 12px;
      font-style: normal;
      font-weight: 400;
      line-height: 120%;
      text-align: center;
      margin-bottom: 20px;
      color: #fff;
      text-align: center;
    }

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

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

      & .btn-simple__Kp9Qx4Tf {
        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-Kp9Qx4Tf {
      & input {
        background: #E4E4E4;
        padding: 24px;
        display: block;
        width: 100%;
        height: 55px;
        border-radius: 14px;
        margin-bottom: 12px;
      }

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

    & .modal-bottom__Kp9Qx4Tf {
      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-Kp9Qx4Tf.active {
  display: flex;
}

.thx-modal {
  & .modal-inner__Kp9Qx4Tf {
    border-radius: 40px;
    background: #0B0A0F;
    padding: 32px;

    & .modal-sup__Kp9Qx4Tf {
      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-Kp9Qx4Tf {
      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__Kp9Qx4Tf {
      margin-bottom: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      max-width: 100%;
    }

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

/* about page */

.about-mainscreen_Kp9Qx4Tf {
  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__Kp9Qx4Tf {
  display: flex;
  align-items: center;
  gap: 24px;

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

  & .image-block__image-Kp9Qx4Tf {
    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-Kp9Qx4Tf {
    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-Kp9Qx4Tf.cream {
  & .image-block__Kp9Qx4Tf {
    @media(max-width: 700px) {
      flex-direction: column
    }
  }
}

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

  @media(max-width: 600px) {
    padding-top: 20px;
    padding-bottom: 20px;
  }

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

    @media(max-width: 600px) {
      margin-bottom: 20px;
    }
  }

  & .advantages-items__inner-Kp9Qx4Tf {
    display: flex;
    gap: 40px;
    align-items: center;

    @media(max-width: 992px) {
      flex-direction: column;
      gap: 20px;
    }

    & .advantages-items__Kp9Qx4Tf {
      display: flex;
      flex-direction: column;
      gap: 20px;

      & .advantages-item__Kp9Qx4Tf {
        border-radius: 5px;
        background: #242D3D;
        padding: 20px;

        @media(max-width: 600px) {
          padding: 10px;
        }

        & p {
          font-size: 20px;
          font-style: normal;
          font-weight: 700;
          line-height: 120%;
          /* 24px */
          text-transform: uppercase;
          color: var(--light-color);

          @media(max-width: 600px) {
            font-size: 12px;
            font-style: normal;
            font-weight: 700;
            line-height: 120%;
          }
        }
      }
    }

    & .advantages-items__image-Kp9Qx4Tf {
      max-width: 598px;
      width: 100%;
      border-radius: 5px;
      overflow: hidden;
      height: 520px;

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

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


  /* & .advantages-items__Kp9Qx4Tf {
      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__Kp9Qx4Tf {
        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-Kp9Qx4Tf {
          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__Kp9Qx4Tf {
    & h2 {
      margin-bottom: 24px;
      font-size: 24px;
      font-style: normal;
      font-weight: 400;
      line-height: normal;
      color: #222;
      text-align: center;
    }

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

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


      & .advantages-item__Kp9Qx4Tf {
        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__Kp9Qx4Tf.contact-page {
  & .form-section__inner-Kp9Qx4Tf {
    padding: 0;

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

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


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

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

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

}

.resume-Kp9Qx4Tf {
  padding-top: 70px;
  padding-bottom: 70px;

  & h2 {
    margin-bottom: 16px;
  }

  & .section__subtitle-Kp9Qx4Tf {
    max-width: 643px;
    margin-left: auto;
    margin-right: auto;

  }

  & .resume-items__Kp9Qx4Tf {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 60px 24px;
    margin-top: 24px;

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

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

    & li {
      &:nth-child(1) {
        grid-column-end: span 3;

        @media(max-width: 1050px) {
          grid-column-end: span 1;
        }
      }

      &:nth-child(2) {
        grid-column-end: span 3;

        @media(max-width: 1050px) {
          grid-column-end: span 1;
        }
      }

      &:nth-child(3) {
        grid-column-end: span 3;

        @media(max-width: 1050px) {
          grid-column-end: span 1;
        }
      }

      &:nth-child(4) {
        grid-column-end: span 3;

        @media(max-width: 1050px) {
          grid-column-end: span 1;
        }
      }

      &:nth-child(5) {
        grid-column-end: span 4;

        @media(max-width: 1050px) {
          grid-column-end: span 1;
        }
      }

      &:nth-child(6) {
        grid-column-end: span 4;

        @media(max-width: 1050px) {
          grid-column-end: span 1;
        }
      }

      &:nth-child(7) {
        grid-column-end: span 4;

        @media(max-width: 1050px) {
          grid-column-end: span 1;
        }
      }

      & img {
        width: 100%;
        height: 178px;
        border-radius: 21px;
        object-fit: cover;
        margin-bottom: 16px;
      }

      & h3 {
        color: #242424;
        font-family: var(--title-font);
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        margin-bottom: 8px;
      }

      & p {
        color: #5C5C5C;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
      }
    }
  }
}

.important-Kp9Qx4Tf {
  padding-top: 70px;
  padding-bottom: 70px;

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

  & .section__title-Kp9Qx4Tf {
    text-align: center;
    max-width: 586px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 70px;
  }

  & .important-items__Kp9Qx4Tf {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;

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

    &.three-col {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;

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

    &>li {
      border-radius: 16px;
      border: 1px solid #EFEFEF;
      background: #F2FAFF;
      padding: 16px;

      & h3 {
        color: #242424;
        text-align: center;
        font-family: var(--title-font);
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        margin-bottom: 16px;
        display: flex;
        align-items: center;
        gap: 16px;

        & span {
          color: #FFF;
          text-align: center;
          font-family: var(--title-font);
          font-size: 18px;
          font-style: normal;
          font-weight: 400;
          line-height: normal;
          border-radius: 10px;
          background: #383883;
          padding: 8px 12px;
        }
      }

      & p {
        color: #5C5C5C;
        text-align: center;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        min-height: 57px;
        margin-bottom: 26px;
      }

      & ul {
        display: flex;
        flex-direction: column;
        gap: 17px;

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

          & span {
            color: #5C5C5C;
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: normal;
          }

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

  &.left {
    & .important-items__Kp9Qx4Tf {

      &>li {

        & h3 {
          text-align: left;
        }

        & p {
          text-align: left;
        }

        & ul {
          display: flex;
          flex-direction: column;
          gap: 17px;

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

            & span {
              color: #5C5C5C;
              font-size: 16px;
              font-style: normal;
              font-weight: 400;
              line-height: normal;
            }

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

  &.methods {
    padding-top: 64px;
    padding-bottom: 64px;
    background: #161C2D;

    & h2 {
      color: #fff;
    }

    & .section__title-Kp9Qx4Tf {
      color: #fff;
    }

    & .important-items__Kp9Qx4Tf {

      &>li {
        border-radius: 16px;
        border: 1px solid #EFEFEF;
        background: #FFF;

        & h3 {
          text-align: left;
          display: flex;
          align-items: center;
          gap: 16px;


        }

        & p {
          text-align: left;
        }

        & ul {
          display: flex;
          flex-direction: column;
          gap: 17px;

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

            & span {
              color: #5C5C5C;
              font-size: 16px;
              font-style: normal;
              font-weight: 400;
              line-height: normal;
            }

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

}

.disclaimer-Kp9Qx4Tf {
  padding-top: 70px;
  padding-bottom: 70px;

  & .disclaimer-inner__Kp9Qx4Tf {
    border-radius: 16px;
    border: 1px solid #EFEFEF;
    background: #FFF7F7;
    padding: 16px;

    & img {
      width: 44px;
      height: 44px;
      object-fit: contain;
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 24px;
      display: block;
    }

    & .disclaimer-title__Kp9Qx4Tf {
      margin-bottom: 16px;
      color: #242424;
      text-align: center;
      font-family: var(--title-font);
      font-size: 18px;
      font-style: normal;
      font-weight: 400;
      line-height: normal;
    }

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

.safe-Kp9Qx4Tf {
  padding-top: 70px;
  padding-bottom: 70px;

  & h2 {
    margin-bottom: 16px;
  }

  & .section__title-Kp9Qx4Tf {
    max-width: 742px;
    margin-bottom: 16px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  & ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;

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

    & li {
      border-radius: 16px;
      border: 1px solid #EFEFEF;
      background: #FFF9E9;
      padding: 16px;

      & h3 {
        color: var(--black, #242424);
        text-align: center;
        font-family: var(--title-font);
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        margin-bottom: 16px;
      }

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

      &:first-child {
        background: #EEFFE9;
      }
    }
  }
}

.reward-Kp9Qx4Tf {
  padding-top: 64px;
  padding-bottom: 64px;
  background: #161C2D;

  & .container {
    &>ul {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 24px;

      &>li {
        border-radius: 16px;
        border: 1px solid #EFEFEF;
        background: #FFF;
        padding: 16px;
        position: relative;

        &:nth-child(1) {
          grid-column-end: span 4;

          @media(max-width: 992px) {
            grid-column-end: span 12;
          }
        }

        &:nth-child(2) {
          grid-column-end: span 4;

          @media(max-width: 992px) {
            grid-column-end: span 12;
          }
        }

        &:nth-child(3) {
          grid-column-end: span 4;

          @media(max-width: 992px) {
            grid-column-end: span 12;
          }
        }

        &:nth-child(4) {
          grid-column-end: span 6;

          @media(max-width: 992px) {
            grid-column-end: span 12;
          }
        }

        &:nth-child(5) {
          grid-column-end: span 6;

          @media(max-width: 992px) {
            grid-column-end: span 12;
          }
        }

        & .mark-Kp9Qx4Tf {
          color: #186B4E;
          text-align: center;
          font-size: 12px;
          font-style: normal;
          font-weight: 400;
          line-height: normal;
          border-radius: 5px;
          border: 1px solid #B1C9AA;
          background: #EEFFE9;
          padding: 8px;
          position: absolute;
          right: 16px;
          top: 16px;
        }

        & .num-Kp9Qx4Tf {
          color: #FFF;
          text-align: center;
          font-family: var(--title-font);
          font-size: 18px;
          font-style: normal;
          font-weight: 400;
          line-height: normal;
          width: 43px;
          height: 43px;
          border-radius: 10px;
          background: #383883;
          display: flex;
          justify-content: center;
          align-items: center;
          margin-bottom: 16px;
        }

        & h3 {
          color: #242424;
          font-family: var(--title-font);
          font-size: 18px;
          font-style: normal;
          font-weight: 400;
          line-height: normal;
          margin-bottom: 24px;
        }

        & .reward-title__Kp9Qx4Tf {
          display: flex;
          gap: 16px;
          align-items: center;
          margin-bottom: 14px;

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

          & span {
            color: #242424;
            font-size: 16px;
            font-style: normal;
            font-weight: 600;
            line-height: normal;
          }
        }

        & ul {
          display: flex;
          flex-direction: column;
          list-style: disc;
          padding-left: 20px;

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


}

.process-Kp9Qx4Tf {
  padding-top: 70px;
  padding-bottom: 70px;

  & .process-items__Kp9Qx4Tf {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;

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

    &.two-col {
      grid-template-columns: repeat(2, 1fr);

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

      &>li {
        & h3 {
          color: #242424;
          font-family: var(--title-font);
          font-size: 24px;
          font-style: normal;
          font-weight: 400;
          line-height: normal;
        }
      }
    }

    &>li {
      border-radius: 16px;
      border: 1px solid #EFEFEF;
      background: #F2FAFF;
      padding: 16px;

      & img {
        width: 64px;
        height: 64px;
        object-fit: contain;
        margin-bottom: 24px;
      }

      & h3 {
        color: #242424;
        font-family: var(--title-font);
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        margin-bottom: 8px;
      }

      & p {
        color: #5C5C5C;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
      }

      & ol {
        padding-left: 20px;
        list-style: decimal;

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

      & ul {
        padding-left: 20px;
        list-style: disc;

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

.text-section__Kp9Qx4Tf {
  padding-top: 70px;
  padding-bottom: 70px;

  & ul {
    display: flex;
    flex-direction: column;
    gap: 70px;

    & li {
      padding: 16px;

      &:last-child {
        border-radius: 16px;
        border: 1px solid #EFEFEF;
        background: #FFF9E9;
      }

      & h3 {
        color: #242424;
        text-align: center;
        font-family: var(--title-font);
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        margin-bottom: 16px;
      }

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

.bonuses-Kp9Qx4Tf {
  padding-top: 70px;
  padding-bottom: 70px;

  & h2 {
    margin-bottom: 70px;
  }

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

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

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

    & li {
      border-radius: 16px;
      border: 1px solid #EFEFEF;
      background: #F2FAFF;
      padding: 16px;
      display: flex;
      flex-direction: column;
      align-items: center;

      & img {
        margin-bottom: 16px;
        width: 107px;
        height: 107px;
        object-fit: contain;

      }

      & h3 {
        color: #474747;
        text-align: center;
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
        margin-bottom: 8px;
      }

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

.top-disclaimer__Kp9Qx4Tf {
  padding-top: 70px;
  padding-bottom: 70px;

  & h2 {
    margin-bottom: 16px;
  }

  & .section__title-Kp9Qx4Tf {
    max-width: 837px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}