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

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

input {
  font-family: "Play";
}

ul {
  list-style: none;
}

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

}

a {
  font-family: "Play";
}

html {
  scroll-behavior: smooth;
}

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

@font-face {
  font-family: 'Play';
  src: url('../fonts/Play-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: "Play";
  --light-color: #fff;
  --btn-color: #fff;
}

.container {
  max-width: 1236px;
  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__Rf6Gb9Mn {

  border-radius: 20px;
  background:
    /*передний эффект бликов*/
    repeating-linear-gradient(75grad, rgba(0, 0, 0, 0) 25%, rgba(255, 255, 255, 0.6) 26%, rgba(0, 0, 0, 0.0) 50%, rgba(0, 0, 0, 0) 100%),
    /*задний фон - стандартное состояние*/
    #589809;
  color: var(--btn-color);
  color: #FFF;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  /* 19.2px */
  letter-spacing: -0.176px;
  text-transform: uppercase;
  padding: 15px 20px;
  font-family: var(--title-font);
  transition: 0.5s;
  /*влияет на плавность изменения тени при наведении*/
  /*-----------поменяй на ЗЕЛЕНЫЙ!!!*/

  /*Свойстава ниже можно менять под общий стиль сайта*/
  /* border: none;
  border-bottom: rgba(0, 0, 0, 0.4) solid 1px;
  border-top: rgba(255, 255, 255, 0.4) solid 1px;
  border-right: rgba(255, 255, 255, 0.4) solid 1px;
  border-left: rgba(0, 0, 0, 0.4) solid 1px;
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.4); */


  /*запуск анимации, для повышения скорости надо 5s уменьшить до 4,3,2,1 итд*/
  animation: mymove 5s infinite linear;

  &:hover {
    background:
      /*блик, при наведении становится чуть ярче и цвет текста меняется*/
      repeating-linear-gradient(75grad, rgba(0, 0, 0, 0) 25%, rgba(255, 255, 255, 0.6) 26%, rgba(0, 0, 0, 0.0) 70%, rgba(0, 0, 0, 0) 100%),
      /*задний фон при наведении*/
      #6cbc09;
    /*-----------поменяй на ЗЕЛЕНЫЙ!!!*/
    box-shadow: -1px 5px 10px rgba(0, 0, 0, 0.35);
  }

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

@keyframes mymove {
  0% {
    background-position: 0px 0px;
  }

  100% {
    background-position: 500px 0px;
  }
}


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

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

  & 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); */
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 5;
  /* background-color: #13171F; */

  & .nav-wrap__Rf6Gb9Mn {
    position: relative;
  }

  & .nav-menu__inner-Rf6Gb9Mn {
    padding: 15px;
    padding-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 0;
    padding-right: 0;

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


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

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

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

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

    & .header-right__Rf6Gb9Mn {
      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__Rf6Gb9Mn {
        display: flex;
        gap: 40px;

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

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

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



    & .mob-menu__Rf6Gb9Mn {
      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-Rf6Gb9Mn {
        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-Rf6Gb9Mn {
      display: none;

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

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

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

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

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

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

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

main {
  position: relative;
}

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

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

h1 {
  font-size: 48px;
  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: #FFF;

  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  font-family: var(--title-font);


  @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 {
  margin-bottom: 70px;
}

.mainscreen-Rf6Gb9Mn {
  position: relative;
  padding-top: 83px;
  padding-bottom: 40px;
  position: relative;

  & .gradient-Rf6Gb9Mn {
    background: linear-gradient(180deg, rgba(13, 0, 0, 0.2) 0%, rgba(13, 0, 0, 0.75) 64.07%, #0D0000 100%);
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
    height: 100%;
    width: 100%;
  }


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


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

  & .mainscreen-bg__Rf6Gb9Mn {
    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__Rf6Gb9Mn {
    height: 100%;
    position: relative;
    /* padding: 40px 24px; */



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

      & .mainscreen-inner__info-Rf6Gb9Mn {
        & h1 {
          color: #FFF;
          margin-bottom: 20px;
          margin-left: auto;
          margin-right: auto;

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

        }

        & .mainscreen-description__Rf6Gb9Mn {
          color: #fff;
          font-size: 20px;
          font-style: normal;
          font-weight: 400;
          line-height: 120%;
          margin-bottom: 20px;
          text-align: center;

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



        & .btn-filled__Rf6Gb9Mn {
          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%;
          }


        }
      }

      & .mainscreen-badges__items-Rf6Gb9Mn {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 20px;
        position: relative;
        z-index: 2;

        @media(max-width: 700px) {
          gap: 5px;
          margin-top: 10px;
        }

        & li {
          border-radius: 20px;
          border: 1px solid #985809;
          background: radial-gradient(237.9% 141.42% at 0% 100%, rgba(50, 21, 11, 0.60) 0%, rgba(13, 0, 0, 0.60) 100%);
          backdrop-filter: blur(3px);
          padding: 10px 20px;
          color: #FFF;
          text-align: center;
          text-shadow: 0 1px 2px rgba(0, 0, 0, 0.50);
          font-size: 14px;
          font-style: normal;
          font-weight: 700;
          line-height: normal;

          @media(max-width: 700px) {
            font-size: 8px;
            font-style: normal;
            font-weight: 700;
            line-height: normal;
            padding: 5px 7px;
          }
        }
      }
    }
  }

  &.about-page {

    @media(max-width: 600px) {

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

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

& .games-items__Rf6Gb9Mn {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 40px;

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

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


  & .games-item__Rf6Gb9Mn {
    border-radius: 20px;
    border: 1px solid #4E0311;
    background: radial-gradient(237.9% 141.42% at 0% 100%, rgba(50, 21, 11, 0.60) 0%, rgba(13, 0, 0, 0.60) 100%);
    backdrop-filter: blur(3px);
    padding: 20px;
    z-index: 2;
    transition: all .3s ease-in;

    &:hover {
      transition: all .3s ease-in;
      border: 1px solid #4E0311;
      background: radial-gradient(237.9% 141.42% at 0% 100%, rgba(50, 21, 11, 0.60) 0%, rgba(13, 0, 0, 0.60) 100%);
      box-shadow: 0 0 20px 0 rgba(186, 68, 80, 0.50);
      backdrop-filter: blur(3px);
      transform: scaleY(1.05);
    }


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

    & .games-item__top-Rf6Gb9Mn {
      display: flex;
      align-items: center;
      gap: 30px;

      & .games-item__rating-Rf6Gb9Mn {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;

        @media(max-width: 600px) {
          font-size: 5px;
        }

        & .games-item__rating-name__Rf6Gb9Mn {
          color: #FFF;

          text-align: center;
          font-size: 16px;
          font-style: normal;
          font-weight: 700;
          line-height: 120%;

          @media(max-width: 600px) {
            font-size: 14px;
          }
        }

        & .games-item__rating-stars__Rf6Gb9Mn {
          display: flex;
          gap: 5px;

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

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

        & .games-item__rating-points__Rf6Gb9Mn {
          font-size: 20px;
          font-style: normal;
          font-weight: 700;
          line-height: 120%;
          color: #fff;

          @media(max-width: 600px) {
            font-size: 14px;
          }
        }
      }

    }

    & .games-item__descr-Rf6Gb9Mn {
      margin-top: 30px;
      margin-bottom: 30px;
      text-align: center;
      color: #FFF;
      text-align: center;
      font-size: 20px;
      font-style: normal;
      font-weight: 700;
      line-height: 120%;

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

    & .games-item__bottom-Rf6Gb9Mn {
      @media(max-width: 600px) {
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
        align-items: center;
        gap: 5px;
      }
    }

    & .games-logos__Rf6Gb9Mn {
      display: flex;
      gap: 20px;
      margin-top: 20px;
      justify-content: center;

      @media(max-width:600px) {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
        max-width: 155px;
        margin-top: 0;
      }

      & li {
        & img {
          width: 31px;
          height: 31px;
          object-fit: contain;

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

    & .games-item__image-Rf6Gb9Mn {
      height: 59px;
      width: 100%;

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

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

    & .game-item__name-Rf6Gb9Mn {
      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: 14px;
        font-style: normal;
        font-weight: 700;
        line-height: 120%;
      }
    }

    & .game-item__points-Rf6Gb9Mn {
      display: flex;
      justify-content: space-between;
      align-items: center;

      & .game-item__point-Rf6Gb9Mn {
        display: flex;
        align-items: center;
        gap: 10px;

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

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

    & .btn-filled__Rf6Gb9Mn {
      display: flex;
      align-items: center;
      justify-content: center;
      max-width: 100%;
      padding-left: 25px;
      padding-right: 25px;

      @media(max-width:600px) {
        max-width: 155px;
        width: 100%;
        padding: 15px 20px;
        height: 49px;
      }
    }
  }
}


.about-play__Rf6Gb9Mn {
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;

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

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

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

  & .about-play__image-Rf6Gb9Mn {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden;

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

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

  & .about-play__inner-Rf6Gb9Mn {
    display: flex;
    align-items: center;
    /* justify-content: center; */
    gap: 20px;
    position: relative;
    z-index: 2;

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



    & .about-play__info-Rf6Gb9Mn {
      width: 100%;


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


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

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

      & .about-play__items-Rf6Gb9Mn {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;

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

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

        & li {
          display: flex;
          gap: 20px;
          border-radius: 20px;
          border: 1px solid #4E0311;
          background: radial-gradient(237.9% 141.42% at 0% 100%, rgba(50, 21, 11, 0.60) 0%, rgba(13, 0, 0, 0.60) 100%);
          backdrop-filter: blur(3px);
          padding: 20px;

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

          & .about-play__items-left__Rf6Gb9Mn {
            max-width: 140px;
            width: 100%;
            min-width: 140px;

            & p {
              color: #FFF;
              font-size: 16px;
              font-style: normal;
              font-weight: 700;
              line-height: 120%;
              margin-bottom: 10px;

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

            & .about-play__items-left__stars-Rf6Gb9Mn {
              display: flex;
              gap: 5px;

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

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

            & .about-play__items-stars__Rf6Gb9Mn {
              & img {
                width: 24px;
                height: 24px;

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

          & .about-play__items-descr__Rf6Gb9Mn {
            color: #FFF;
            text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: 120%;

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

            /* 19.2px */
          }
        }
      }

      /* 
      & 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-Rf6Gb9Mn {
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: 120%;
        color: var(--light-color);
        margin-bottom: 24px;

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

      & .btn-filled__Rf6Gb9Mn {
        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-Rf6Gb9Mn {
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
  background-color: #13171F;

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

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

    &.active {
      display: block;
    }

    &.hidden {
      display: none;
    }
  }

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

  & .empty-bg__Rf6Gb9Mn {
    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__Rf6Gb9Mn {
    /* max-width: 1141px; */
    /* max-width: 860px; */
    width: 100%;
    height: 600px;
    /* 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__Rf6Gb9Mn {
      color: #fff;
      font-size: 40px;
      font-style: normal;
      font-weight: 400;
      line-height: 51px;
      /* 127.5% */
      text-transform: uppercase;
      background-color: transparent;
    }

  }

  & .game-bottom__Rf6Gb9Mn {
    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__Rf6Gb9Mn {
      max-width: 624px;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    & .game-like__Rf6Gb9Mn {
      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;
      }
    }
  }
}

.section-info__Rf6Gb9Mn {
  padding-top: 40px;
  padding-bottom: 40px;
  background: radial-gradient(237.9% 141.42% at 0% 100%, rgba(50, 21, 11, 0.60) 0%, rgba(13, 0, 0, 0.60) 100%);
  backdrop-filter: blur(3px);

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

  h2 {
    color: #FF8E05;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    margin-bottom: 20px;

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

  .section-info__items-Rf6Gb9Mn {
    display: flex;
    flex-direction: column;
    gap: 20px;

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

    & .section-info__item-Rf6Gb9Mn {
      & h3 {
        color: #FFF;
        font-size: 18px;
        font-style: normal;
        font-weight: 700;
        line-height: 120%;
        margin-bottom: 10px;

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

      & p {
        color: #FFF;
        text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 120%;

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

.faq-Rf6Gb9Mn {
  padding-top: 60px;
  padding-bottom: 60px;

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

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

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

  & .faq-items__Rf6Gb9Mn {
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;

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

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

    & .faq-item__Rf6Gb9Mn {
      border-radius: 20px;
      border: 1px solid #4E0311;
      background: radial-gradient(237.9% 141.42% at 0% 100%, rgba(50, 21, 11, 0.60) 0%, rgba(13, 0, 0, 0.60) 100%);
      backdrop-filter: blur(3px);
      padding: 20px;

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

      & h3 {
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: 120%;
        text-align: center;
        color: #FF8E05;
        margin-bottom: 20px;

        @media(max-width: 768px) {
          font-size: 14px;
          font-style: normal;
          font-weight: 700;
          line-height: 120%;
          margin-bottom: 10px;
        }
      }

      & p {
        color: #FFF;
        text-align: center;
        text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 120%;
        /* 19.2px */

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

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

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

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

  & .form-section__inner-Rf6Gb9Mn {
    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-Rf6Gb9Mn {
      max-width: 598px;
      width: 100%;

      & .form-section__info-list__Rf6Gb9Mn {
        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__Rf6Gb9Mn {
      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__Rf6Gb9Mn {
      max-width: 600px;
      width: 100%;

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



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

    & .form-Rf6Gb9Mn {
      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-Rf6Gb9Mn {
        border-radius: 5px;
        background: #13171F;
        padding: 20px;
        display: block;
        width: 100%;
        height: 64px;
        margin-bottom: 20px;
        color: #fff;
        padding: 15px 20px;
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        line-height: 120%;
        /* 24px */
        text-transform: uppercase;

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

        &::placeholder {
          color: #676767;
          font-size: 20px;
          font-style: normal;
          font-weight: 700;
          line-height: 120%;
          /* 24px */
          text-transform: uppercase;

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

      & textarea {
        border-radius: 5px;
        background: #13171F;
        padding: 20px;
        display: block;
        width: 100%;
        height: 64px;
        margin-bottom: 20px;
        color: #fff;
        padding: 15px 20px;
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        line-height: 120%;
        /* 24px */
        text-transform: uppercase;
        border: none;
        resize: none;

        @media(max-width: 600px) {
          padding: 10px;
          height: 34px;
          margin-bottom: 10px;
        }

        &::placeholder {
          color: #676767;
          font-size: 20px;
          font-style: normal;
          font-weight: 700;
          line-height: 120%;
          /* 24px */
          text-transform: uppercase;

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

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

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

    & .form-section__contacts-Rf6Gb9Mn {
      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__Rf6Gb9Mn {
  margin-top: 15px;
  text-align: center;
  color: var(--light-color);
  display: none;

  &.active {
    display: block;
  }
}

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

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



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


    & .disclaimer-text__Rf6Gb9Mn {
      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: #1B0804;

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


  & .footer-info__items-Rf6Gb9Mn {
    display: flex;
    justify-content: space-between;
    gap: 40px;


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

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

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

  & .footer-disclaimer__Rf6Gb9Mn {
    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__Rf6Gb9Mn {
    display: flex;
    gap: 20px;

    margin-bottom: 20px;

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

    & .footer-info__items-Rf6Gb9Mn {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;

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


      & .footer-info__item-Rf6Gb9Mn {
        max-width: 608px;
        width: 100%;

        & .footer-info__item-title__Rf6Gb9Mn {
          color: #FFF;
          font-size: 18px;
          font-style: normal;
          font-weight: 700;
          line-height: 120%;
          margin-bottom: 10px;
          text-align: left;

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

        & .footer-info__item-text__Rf6Gb9Mn {
          text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
          font-size: 16px;
          font-style: normal;
          font-weight: 400;
          line-height: 120%;
          /* 19.2px */
          color: var(--light-color);

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

        & 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__Rf6Gb9Mn {
    /* 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-links-Rf6Gb9Mn {
    display: flex;
    justify-content: space-between;
    gap: 44px;
    flex-wrap: wrap;

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

    & .footer-link__Rf6Gb9Mn {
      & a {
        color: #FF8E05;
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: 120%;
        /* 19.2px */

      }
    }
  }

  & .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-Rf6Gb9Mn {
  position: relative;
  padding-top: 83px;
  padding-bottom: 60px;

  & img {
    position: absolute;
    left: 0;
    top: 0;
    height: 180px;
    object-fit: cover;
    width: 100%;
  }

  & h1 {
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    text-transform: uppercase;
    margin-bottom: 100px;
    color: var(--light-color);
    position: relative;
    z-index: 2;

    @media(max-width: 600px) {
      margin-bottom: 20px;
      font-size: 16px;
      font-style: normal;
      font-weight: 700;
      line-height: 120%;
      /* 19.2px */
      text-transform: uppercase;
      margin-bottom: 40px;
    }
  }

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

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

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

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

    & li {
      color: #FFF;
      text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
      font-size: 16px;
      font-style: normal;
      font-weight: 400;
      line-height: 120%;
      /* 19.2px */
      margin-bottom: 20px;

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

  & p {
    color: #FFF;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    margin-bottom: 20px;

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

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

  & span {
    color: #FFF;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    margin-bottom: 20px;

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

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

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

.modal-Rf6Gb9Mn {
  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__Rf6Gb9Mn {
    max-width: 520px;
    width: 100%;
    padding: 20px;
    position: relative;
    border-radius: 5px;
    background: radial-gradient(237.9% 141.42% at 0% 100%, rgba(50, 21, 11, 1) 0%, rgba(13, 0, 0, 1) 100%);
    backdrop-filter: blur(3px);

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

    & .close-btn__Rf6Gb9Mn {
      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__Rf6Gb9Mn {
      font-size: 16px;
      font-style: normal;
      font-weight: 700;
      line-height: 120%;
      /* 19.2px */
      text-transform: uppercase;
      color: #FF8E05;
      margin-bottom: 10px;
      text-align: center;
    }

    & .modal-title-subtitle__Rf6Gb9Mn {
      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__Rf6Gb9Mn {
      display: flex;
      justify-content: center;
      flex-direction: column;
      gap: 12px;

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

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

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

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

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

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

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

/* about page */

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

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

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

.advantages-Rf6Gb9Mn {
  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-Rf6Gb9Mn {
    display: flex;
    gap: 40px;
    align-items: center;

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

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

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

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

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


      & .advantages-item__Rf6Gb9Mn {
        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__Rf6Gb9Mn.contact-page {
  & .form-section__inner-Rf6Gb9Mn {
    padding: 0;

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

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


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

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

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

}