body{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;

  font-family: "Inter Tight", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}


.hero-container{
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1800px;
  min-height: calc(100% + 1000px);
}


.hero{
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #F6F8F8;
  height: calc(100vh - 40px);
  border-radius: 40px;
  padding: 85px 30px 30px 30px;
  overflow: hidden;
  position: sticky;
  top: 20px;
}


.hero-holder{
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
  left: 0;
  top: 0;
  opacity: 0;
  pointer-events: none;
  z-index: 10;
}


.header{
  position: fixed;
  width: 100%;
  max-width: 1800px;
  top: 50px;
  
  z-index: 10;
  transition: .1s ease;
}


.header-container{
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
  margin: 0 20px;
  transition: .1s ease;
}



.header .logo{
  display: flex;
  align-items: center;
  flex: 1;
  color: #000;
}



.header .logo svg{
  height: 55px;
  width: 100px;
}


.header .nav{
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  position: relative;
}

.header .nav ul{
  display: flex;
  height: 55px;
  padding: 4px;
  border: 1px solid #D0D0D0;
  border-radius: 55px;
}






.header .nav ul li{
  padding: 0 25px;
  display: flex;
  align-items: center;

  font-size: 16px;
  font-weight: 600;
  color: #4D4D4D;
  cursor: pointer;
  z-index: 1;
  user-select: none;
}

.header .nav ul li.active{
  color: #0867FF;
  background: #fff;
  border-radius: 55px;
}


.header .nav .highlight {
  position: absolute;
  top: 4px;
  height: 47px;
  background: #fff;
  border-radius: 55px;
  transition: all 0.2s ease;
  z-index: 0;
}



.header .account{
  display: flex;
  justify-content: flex-end;
  flex: 1;
}

.header .account ul{
  display: flex;
  align-items: center;
  column-gap: 10px;
}


.header .account ul li{
  height: 50px;
}



.header .account ul li a,
.header .account ul li button{
  display: flex;
  align-items: center;
  height: inherit;
  padding: 0 35px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 40px;
  text-decoration: none;
}



.header.header--sticky{
  background: #F6F8F8;
  top: 0;
  padding: 20px 0px;
}



.btn-default{
  color: #1372FF;
  transition: .2s ease;
}

.btn-default:hover{
  background: #fff;
}


.btn-blue{
  color: #fff;
  background: #0867FF;
  transition: .2s ease;
  position: relative;
  overflow: hidden;
}

.btn-blue:hover{
  background: #4286f3;
}





.btn-blue:after{
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  bottom: -50%;
  left: -50%;
  background: linear-gradient(to bottom, rgba(229, 172, 142, 0), rgba(255,255,255,0.5) 50%, rgba(229, 172, 142, 0));
  transform: rotateZ(60deg) translate(-5em, 7.5em);
  animation: sheen 8s infinite;
}


@keyframes sheen {
  0% {
    transform: rotateZ(60deg) translate(-5em, 7.5em);
    opacity: 0;
  }
  15% {
    transform: rotateZ(60deg) translate(1em, -9em);
    opacity: 1;
  }
  16% {
    opacity: 0;
  }
  100% {
    transform: rotateZ(60deg) translate(1em, -9em);
    opacity: 0;
  }
}



.btn-blue span.sparkle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  filter: blur(1px);
  animation: floatLight 4s infinite ease-in-out;
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
}

@keyframes floatLight {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(-3px, -6px); }
  50%  { transform: translate(4px, 4px); }
  75%  { transform: translate(-2px, 3px); }
  100% { transform: translate(0, 0); }
}




.hero-content{
  display: flex;
  flex-direction: column;
  position: relative;
}


.hero-heading{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 60px;
  row-gap: 1rem;
  padding-left: 20%;
  padding-right: 20%;
}



.line-wrapper{
  position: absolute;
  bottom: 0px;
  max-width: calc(100% + 60px);
  width: calc(100% + 60px);
  left: -30px;
}

.line-wrapper .point{
  opacity: 0;
}


.plus-html {
  position: absolute;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.plus-html.visible {
  opacity: 1;
}

.plus-button{
  position: relative;
  width: 40px;
  height: 40px;
  background: #F6F8F8;
  border: 1px solid #0867FF;
  color: #000;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}






.plus-content{
  display: flex;
  flex-direction: column;
  margin-left: -20px;
  margin-top: -10px;

  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.plus-html.shown .plus-content {
  opacity: 1;
  transform: translateY(0);
}


.plus-html.right .plus-content{
  position: absolute;
  right: 15px;
  margin-left: 0;
  width: 300px;
  text-align: right;
  align-items: flex-end;
}


.plus-content .pc-head{
  font-size: 40px;
  color: #0867FF;
}

.pc-text{
  font-size: 20px;
  font-weight: 500;
  color: #000;
  padding: 10px 20px;
  border-radius: 5px;
  background: #fff;
  margin-top: 10px;
  width: fit-content;
}



.hero-diamond{
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  pointer-events: none;
}


.hero-diamond-wrap{
  width: 25%;
  margin-top: -3%;
  -webkit-box-reflect: below 0 linear-gradient(hsla(0, 0%, 100%, 0), hsla(0, 0%, 100%, 0) 50%, hsla(0, 0%, 100%, 0.1));
}







.hero-footer{
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 1rem;
}

.hero-footer .hero-footer-desc{
  flex: 1;
}



.hero-footer-buttons{
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 auto;
  width: 300px;
}

.hero-footer-buttons .signin{
  height: 60px;
  padding: 0 40px;
  border-radius: 55px;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.hero-footer-buttons .or{
  padding-top: 1rem;
  font-size: 20px;
  font-weight: 500;
  color: #000;
}

.hero-footer-buttons a.login{
  padding-top: 1rem;
  font-size: 18px;
  font-weight: 400;
  color: #000;
  text-decoration: none;
  border-bottom: 2px dotted #000;
}



.hero-footer-desc span{
  font-weight: 500;
  font-size: 25px;
}


.hero-footer .hero-footer-commuity{
  flex: 1;
  display: flex;
  justify-content: flex-end;
}



.hf-community{
  display: flex;
  align-items: center;
  padding: 15px 50px 15px 25px;
  background: #fff;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.10) 0px 1px 4px;
}

.community-avatars{
  display: flex;
}

.community-avatars img{
  width: 80px;
  height: 80px;

  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;

}

.community-avatars img:nth-child(1){
  z-index: 1;
}

.community-avatars img:nth-child(2){
  z-index: 2;
  margin-left: -40px;
}

.community-avatars img:nth-child(3){
  z-index: 3;
  margin-left: -40px;
}

.community-avatars img.show {
  opacity: 1;
  transform: translateX(0);
}

.community-text{
  font-size: 22px;
  font-weight: 500;
  text-transform: uppercase;
  padding-left: 25px;
}





@media(max-width:768px){
   

   body{
     padding: 0 10px;
   }

   .xs-display{
    display: flex;
   }

   .header{
    top: 20px;
    padding: 0px 25px;
   }

   .header.header--sticky{
      padding: 20px 25px;
   }

   .header .logo{
    max-width: 140px;
   }


   .header .account ul li{
      font-size: 14px;
      height: 40px;
      padding: 0;
   }


   .header .account ul li.sign-in{
    display: none;
   }

   .header .account ul li .btn-default{
    padding: 0 15px;
   }

   .header .account ul li.submenu .btn-blue{
    padding: 0;
    width: 40px;
    height: 40px;
    justify-content: center;

   }
   

   .header .nav{
      display: none;
   }



   .hero{
     top: 10px;
     height: calc(100vh - 20px);
     padding: 85px 10px 10px 10px;
   }

   .hero-content{
     flex: 1;
     justify-content: space-evenly;
   }

   .hero .hero-heading{
     padding: 0;
   }

   .hero .hero-diamond-wrap{
    width: 50%;
    transform: scale(0.8);
   }


   .hero-footer{
    flex-direction: column;
    z-index: 20;
    padding-bottom: 10px;
   }

   .hero-footer .hero-footer-desc{
    text-align: center;
   }

   .hero-footer .hero-footer-desc span{
    font-size: 16px;
   }

   .hero-footer .hero-footer-commuity{
    margin-top: 1rem;
   }
  
   .hero-footer-buttons a.signin{
     height: 40px;
     font-size: 14px;
   }

   .hero-footer-buttons a.login{
    font-size: 14px;
    display: none;
   }



   .hf-community{
    padding: 10px 15px;
   }

   .hf-community .community-avatars img{
      width: 50px;
      height: 50px;
   }

   .hf-community .community-avatars img:nth-child(2) {
      margin-left: -25px;
   }

   .hf-community .community-avatars img:nth-child(3) {
      margin-left: -25px;
   }

  .hf-community .community-text{
      font-size: 13px;
      padding-left: 15px;
   }

   .hero-footer .hero-footer-buttons{
    order: 3;
    margin-top: 1rem;
   }

   .line-wrapper {
        max-width: calc(100% + 20px);
        width: calc(100% + 20px);
        left: -10px;

        position: relative;
        display: flex;
        height: 100px;
        top: -20px;
        margin-top: -20px;
    }

    .line-wrapper .rounded-line{
        position: absolute;
        top: 0;
    }

    .line-wrapper .plus-html{
      top: 0 !important;
    }

    .line-wrapper .plus-button{
      width: 30px;
      height: 30px;
    }

    .line-wrapper .plus-button img{
      width: 15px;
      height: 15px;
    }

    .line-wrapper .plus-content .pc-head{
      font-size: 16px;
    }

    .line-wrapper .plus-content {
      margin-left: -15px;
    }

    .line-wrapper .plus-content .pc-text{
      font-size: 12px;
      padding: 5px;
      margin-top: 2px;
    }




    .line-wrapper .plus-html.el-0{
      margin-top: 10%;
    }

    .line-wrapper .plus-html.el-1{
      margin-left: -5%;
      margin-top: -5%;
    }

    .line-wrapper .plus-html.el-2{
      margin-right: -10%;
      margin-top: -15%;
    }

    .line-wrapper .plus-html.el-3{
      margin-top: 6%;
    }



}



@media(min-width:700px) and (max-width:768px){


   .line-wrapper{
    height: 200px;
   }

   .line-wrapper .plus-html.el-3{
    right: 5% !important;
   }


   .line-wrapper .plus-content .pc-head{
      font-size: 22px;
    }
  .line-wrapper .plus-content .pc-text{
        font-size: 16px;
        padding: 5px;
        margin-top: 2px;
      }


}








@media(min-width: 769px){

  .header .account ul li.submenu{
    display: none;
   }
}





@media(min-width:769px) and (max-width:1000px){


    .header .logo img{
      max-width: 120px;
    }
    
    .header .nav ul{
      height: 40px;
    }

    .header .nav ul li{
      padding: 0 15px;
      font-size: 14px;
    }


    .header .nav .highlight{
      height: 32px;
    }

    .header .account ul li a,
    .header .account ul li button{
      padding: 0 15px;
      height: 40px;
      font-size: 14px;
    }


    .hero-heading{
       padding-left: 5%;
       padding-right: 5%;
    }

    .hero-diamond-wrap{
      width: 35%;
    }


    .plus-button{
      width: 30px;
      height: 30px;
    }

    .line-wrapper .plus-button img{
      width: 15px;
      height: 15px;
    }

    .plus-content .pc-head{
      font-size: 22px;
    }

    .plus-content .pc-text{
      font-size: 14px;
      padding: 7px;
      margin-top: 4px;
    }

    .hero-footer{
      flex-wrap: wrap;
      padding-bottom: 1rem;
      column-gap: 2rem;
      justify-content: center;
      z-index: 20;
    }

    .hero-footer .hero-footer-desc{
      width: 100%;
      min-width: 100%;
      padding-bottom: 2rem;
      text-align: center;
    }

    .hero-footer-buttons{
      order: 3;
      width: auto;
    }

    .hero-footer-buttons .signin {
      height: 45px;
      padding: 0px 30px;
      border-radius: 55px;
      font-size: 14px;
      font-weight: 600;
    }

    .hero-footer-buttons a{
      font-size: 14px;
      padding-top: .5rem;
    }


    .hf-community{
      padding: 15px 25px;
     }

   .hf-community .community-avatars img{
      width: 60px;
      height: 60px;
   }

   .hf-community .community-avatars img:nth-child(2) {
      margin-left: -30px;
   }

   .hf-community .community-avatars img:nth-child(3) {
      margin-left: -30px;
   }

  .hf-community .community-text{
      font-size: 16px;
   }

   .hero-footer .hero-footer-commuity{
    justify-content:flex-start;
    flex: none;
   }

   .hero-footer-desc span{
    font-size: 18px;
   }




}


@media(min-width:1001px) and (max-width:1200px){

    .header .nav ul{
      height: 45px;
    }

    .header .nav ul li{
      padding: 0 20px;
      font-size: 14px;
    }

    .header .nav .highlight{
      height: 37px;
    }

    .header .account ul li a,
    .header .account ul li button{
      padding: 0 15px;
      height: 45px;
      font-size: 14px;
    }

    .header .logo img{
      max-width: 160px;
    }


    .hero-heading{
       padding-left: 5%;
       padding-right: 5%;
    }

    .hero-diamond-wrap{
      width: 35%;
    }


    .plus-button{
      width: 30px;
      height: 30px;
    }

    .line-wrapper .plus-button img{
      width: 15px;
      height: 15px;
    }

    .plus-content .pc-head{
      font-size: 22px;
    }

    .plus-content .pc-text{
      font-size: 14px;
      padding: 7px;
      margin-top: 4px;
    }

    .hero-footer{
      flex-wrap: wrap;
      padding-bottom: 1rem;
      column-gap: 2rem;
      justify-content: center;
      z-index: 20;
    }

    .hero-footer .hero-footer-desc{
      width: 100%;
      min-width: 100%;
      padding-bottom: 2rem;
      text-align: center;
    }

    .hero-footer-buttons{
      order: 3;
      width: auto;
    }

    .hero-footer-buttons .signin {
      height: 45px;
      padding: 0px 30px;
      border-radius: 55px;
      font-size: 14px;
      font-weight: 600;
    }

    .hero-footer-buttons a.login{
      font-size: 14px;
      padding-top: .5rem;
    }


    .hf-community{
      padding: 15px 25px;
     }

   .hf-community .community-avatars img{
      width: 60px;
      height: 60px;
   }

   .hf-community .community-avatars img:nth-child(2) {
      margin-left: -30px;
   }

   .hf-community .community-avatars img:nth-child(3) {
      margin-left: -30px;
   }

  .hf-community .community-text{
      font-size: 16px;
   }

   .hero-footer .hero-footer-commuity{
    justify-content:flex-start;
    flex: none;
   }

   .hero-footer-desc span{
    font-size: 18px;
   }



}


.content{
  width: 100%;
  min-height: 1000px;
  background: #000;
  display: flex;
}



.smart-submenu{
  position: fixed;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 10;
  display: flex;
  padding: 10px;
  opacity: 0;
  pointer-events: none;

}


.smart-menu-content{
  padding: 10px;
  background: #F6F8F8;
  border-radius: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  row-gap: 1rem;
  flex: 1;
  transition: .2s ease;
  transform: scale(0.9);
}



@media(max-width: 768px){

body.modal-menu{
  overflow: hidden;
}


body.modal-menu .smart-submenu{
  opacity: 1;
  pointer-events: auto;
}


body.modal-menu .smart-submenu .smart-menu-content{
  transform: scale(1);
}


}




.smart-header{

    position: relative;
    width: 100%;
    max-width: 1800px;
    padding: 0 5px;
    display: flex;
    justify-content: space-between;
    z-index: 10;
}

.smart-header .logo{
  display: flex;
  align-items: center;
  flex: 1;
  max-width: 140px;
}

.smart-header .logo svg{
  height: 55px;
  width: 100px;
}

.smart-header .account {
    display: flex;
    justify-content: flex-end;
    flex: 1;
}

.smart-header .account ul {
    display: flex;
    align-items: center;
    column-gap: 10px;
}


.smart-header .account ul li {
    display: flex;
    align-items: center;
    height: 40px;
    padding: 0 15px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 40px;
}

.smart-header .account ul li.btn-blue {
    width: 40px;
    height: 40px;
    justify-content: center;
    padding: 0;

}


.smart-nav {
    display: flex;
    align-items: center;
    justify-content: center;
}



.smart-nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.smart-nav ul li {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: #4D4D4D;
    cursor: pointer;
    z-index: 1;
    user-select: none;
    transition: .2s ease;
}

.smart-nav ul li a{
    color: inherit;
    text-decoration: none;
}


.smart-nav ul li.active{
    background: #fff;
    border-radius: 55px;
    color: #0867FF;
    padding: 15px 20px;
}


.smart-footer{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 10px;
}

.smart-footer a.signin {
    height: 40px;
    padding: 0px 40px;
    border-radius: 55px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.smart-footer a.login {
    padding-top: 1rem;
    font-size: 14px;
    font-weight: 400;
    color: #000;
    text-decoration: none;
    border-bottom: 2px dotted #000;
}







.deposit-levels{
  display: flex;
  width: 100%;

  min-height: 100vh;

}


.deposit-levels-container{
    display: flex;
    background: url(/pub/media/levels/bg.jpg);
    background-size: cover;
    border-radius: 40px;
    flex: 1;
    margin: 20px 0;
    padding: 120px 30px 30px 30px;
    justify-content: space-between;
    column-gap: 1rem;
    position: relative;
}



.side-packs{
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}


.pack-item{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 260px;
  background: #1A1A1A;


  border-radius: 20px;
  padding: 30px 40px;
  flex: 1;
  position: relative;

  row-gap: 10px;
  opacity: .5;
  transition: opacity .2s ease;
  
}
 



.pack-item:after{
  content: '';
  position: absolute;
  width: 100%;
  height: 80px;
  background: url(/pub/media/levels/circle.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  bottom: 0;
  pointer-events: none;
}

.pack-item .media{
  width: 120px;
  height: 120px;
  position: relative;
}

.pack-item .media img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pack-item .media span{
  width: 40px;
  height: 40px;
  background: #1A1A1A;
  border: 1px solid #505050;
  border-radius: 9999px;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  color: #fff;
  font-weight: 400;
}


.pack-item .meta{
  display: flex;
  flex-direction: column;
  text-align: center;
}

.pack-item .meta .name{
  font-size: 36px;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1;
}



.pack-item.silver .meta .name{
  background: linear-gradient(90deg, #c0c0c0, #f0f0f0 50%, #707070);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pack-item.gold .meta .name{
  background: linear-gradient(
    90deg,
    #fff4c2,   /* светлый золотистый */
    #f5c84c,   /* основной золотой */
    #c89c3f    /* тёмное золото */
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.pack-item.platinum .meta .name{
    background: linear-gradient(90deg, #f8e0c8, #b89c84, #f8e0c8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pack-item.diamond .meta .name{
  background: linear-gradient(
    90deg,
    #ffffff,
    #e0e8ff,
    #d4bfff,
    #add8e6,
    #ffffff
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.pack-item .meta .desc{
  font-size: 16px;
  font-weight: 500;
  color: #535353;
  padding-top: 5px;
  line-height: 1;
}



.pack-item .data{
  display: flex;
  flex-direction: column;
  text-align: center;
}

.pack-item .data .name{
  font-size: 36px;
  text-transform: uppercase;
  font-weight: 600;
  color: #0867FF;
  line-height: 1;
}

.pack-item .data .desc{
  font-size: 16px;
  font-weight: 500;
  color: #535353;
  padding-top: 5px;
  line-height: 1;
}

.pack-item .data.ref{
  margin-top: 5px;
}

.pack-item .data.ref .name{
  /*font-size: 22px;*/
}


.side-packs.second{
  order: 3;
}


.levels-center{
  flex: 1;
  display: flex;
  justify-content: center;
  flex-direction: column;
      align-items: center;
}


.slider-container{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80%;
  margin-bottom: 3rem;
}


.slider-container h2{
  
  text-transform: uppercase;
  
  color: #fff;
  
}


.slider-amount{
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 1.5rem 0 2rem 0;
}

.slider-amount label{
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: .5rem;
}

.amount-input{
  display: flex;
  flex-direction: column;
  font-size: 30px;
  color: #fff;
  font-weight: 400;
}



.amount-input input {
  text-align: center;
}



.js-slider{
   width: 100%;
   display: flex;
   flex-direction: column;
   height: 80px;
}



.noUi-marker{
  display: none;
}

.noUi-value{
  transition: .2s ease;
}

.noUi-value[data-value="500"] {
  transform: translate(0%, 50%);
  text-align: left;
}

.noUi-value[data-value="50000"] {
  transform: translate(-100%, 50%);
  text-align: right;
}


.slider-container[data-status="silver"] .noUi-value[data-value="500"],
.slider-container[data-status="silver"] .noUi-value[data-value="1000"]{

  color: #e3e3e3;

}


.slider-container[data-status="gold"] .noUi-value[data-value="500"],
.slider-container[data-status="gold"] .noUi-value[data-value="1000"],
.slider-container[data-status="gold"] .noUi-value[data-value="5000"]{

  color: #edc049;

}


.slider-container[data-status="platinum"] .noUi-value[data-value="500"],
.slider-container[data-status="platinum"] .noUi-value[data-value="1000"],
.slider-container[data-status="platinum"] .noUi-value[data-value="5000"],
.slider-container[data-status="platinum"] .noUi-value[data-value="10000"]{

  color: #d5baa2;

}

.slider-container[data-status="diamond"] .noUi-value{

  color: #d4bfff;
}


.slider-container[data-status="silver"] .noUi-connect{
  background: linear-gradient(90deg, #c0c0c0, #f0f0f0 50%, #707070);

}


.slider-container[data-status="gold"] .noUi-connect{

    background: linear-gradient(
    90deg,
    #fff4c2,   /* светлый золотистый */
    #f5c84c,   /* основной золотой */
    #c89c3f    /* тёмное золото */
  );

}

.slider-container[data-status="platinum"] .noUi-connect{

    background: linear-gradient(90deg, #f8e0c8, #b89c84, #f8e0c8);
}


.slider-container[data-status="diamond"] .noUi-connect{

    background: linear-gradient(
    90deg,
    #ffffff,
    #e0e8ff,
    #d4bfff,
    #add8e6,
    #ffffff
  );
}






.slider-container[data-status="silver"] h2{

    background: linear-gradient(90deg, #c0c0c0, #f0f0f0 50%, #707070);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}

.slider-container[data-status="gold"] h2{

    background: linear-gradient(90deg, #fff4c2, /* светлый золотистый */ #f5c84c, /* основной золотой */ #c89c3f /* тёмное золото */);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}


.slider-container[data-status="platinum"] h2{

    background: linear-gradient(90deg, #f8e0c8, #b89c84, #f8e0c8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}

.slider-container[data-status="diamond"] h2{

    background: linear-gradient(90deg, #ffffff, #e0e8ff, #d4bfff, #add8e6, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}








.slider-legend{
  display: flex;
  justify-content: space-evenly;
  width: 100%;
  color: #fff;
  margin-top: 2rem;
  column-gap: 10px;
}

.slider-legend .item{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.slider-legend .item .value{
  font-size: 30px;
  line-height: 1;
  font-weight: 600;
}

.slider-legend .item .name{
  font-size: 14px;
  font-weight: 400;
  margin-top: 15px;
  line-height: 1;
  color: #666;
}



.levels-diamond{
  max-width: 30%;
}



.deposit-levels-container[data-pack="diamond"] .pack-item.diamond,
.deposit-levels-container[data-pack="platinum"] .pack-item.platinum,
.deposit-levels-container[data-pack="gold"] .pack-item.gold,
.deposit-levels-container[data-pack="silver"] .pack-item.silver{
  opacity: 1;
}






.header.header--sticky.header--dark{
  background: #fff;
  top: 0;
  padding-bottom: 0;
  padding-top: 0;
}




.header.header--sticky.header--dark .header-container{
    background: #1A1A1A;
    padding: 20px 30px;
}



.header.header--sticky.header--dark .nav ul{
  border: 1px solid #535353;
}

.header.header--sticky.header--dark .nav ul li{
  color: #fff;
}

.header.header--sticky.header--dark .nav ul li.active{
  color: #0867FF;
}

.header.header--sticky.header--dark .logo{
  color: #fff;
}




.header--fixed-in-block2 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}



.how-it-works{
  display: flex;
  flex-direction: column;
  width: 100%;
  /*min-height: 100vh;*/
}


.hiw-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    padding: 30px;

}

.hiw-container .heading{
  display: flex;
  flex-direction: column;
  text-align: center;
}

.hiw-container .heading h2{
  font-size: 40px;
  font-weight: 500;
}

.hiw-container .heading p{
  font-size: 20px;
  margin-top: .5rem;
}

.hiw-container .hiw-items{
  display: flex;
  padding-top: 60px;
  justify-content: space-evenly;
  align-items: center;
}

.hiw-container .hiw-items .item{
  display: flex;
  flex-direction: column;
  width: 300px;
}

.hiw-container .hiw-items .item .number{
    width: 40px;
    height: 40px;
    background: #0867FF;
    border: 1px solid #0867FF;
    border-radius: 9999px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    color: #fff;
    font-weight: 400;
}




.hiw-container .hiw-items .item .name{
  font-size: 22px;
  font-weight: 500;
  margin-top: 1rem;
}

.hiw-container .hiw-items .item p{
  margin-top: .5rem;
  font-size: 18px;
  font-weight: 400;
  color: #595959;
}


.diamond-anim{
    display: flex;
    justify-content: center;
}

.diamond-anim .anim-group{
  width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: .5rem;
}



.diamond-anim .anim-group img:nth-child(1),
.diamond-anim .anim-group img:nth-child(3){
  max-width: 80%;
}

.diamond-anim .anim-group img:nth-child(2){
  max-width: 100%;
}

.anim-group img {
  display: inline-block;
  will-change: transform;
}

/* 1. Левитация вверх-вниз */
.levitate-up {
  animation: levitate-up 2.5s ease-in-out infinite;
}

@keyframes levitate-up {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}




.levitate-down {
  animation: levitate-down 2.5s ease-in-out infinite;
}

@keyframes levitate-down {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}


.hiw-items .side-items{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  row-gap: 3rem;
}

.hiw-items .side-items.left .item{
  align-items: flex-end;
  text-align: right;

}





.dist-income{
  display: flex;
  width: 100%;
  flex: 1;
  margin: 20px 0;
}

.dist-container{
  display: flex;
  flex-direction: column;
  background: #F6F8F8;
  flex: 1;
  width: 100%;
  margin: 20px 0;
  padding: 150px 30px 70px 30px;
  border-radius: 40px;
  row-gap: 1rem;
}


.dist-container .heading{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.dist-container .heading h2{
  text-align: center;
  font-size: 40px;
  font-weight: 500;
}

.dist-container .heading .legend{
  display: flex;
  column-gap: 1rem;
  margin-top: 1rem;
}

.dist-container .heading .legend > div{
  background: #FFFFFF;
  border-radius: 10px;
  padding: 10px;

  color: #000000;
  font-size: 16px;
  font-weight: 600;

  display: flex;
  align-items: center;
  column-gap: .5rem;
}

.dist-container .heading .legend .first span{
  display: inline-flex;
  width: 30px;
  height: 30px;
  border-radius: 5px;
  background: #CEE1FF;
}

.dist-container .heading .legend .second span{
  display: inline-flex;
  width: 30px;
  height: 30px;
  border-radius: 5px;
  background: #0867FF;
}



.dist-chart{
  height: 450px;
  display: flex;
  justify-content: center;
  justify-content: space-evenly;
  border-bottom: 1px dashed #BCBEC0;
  position: relative;
}


.dist-chart:before{
  content: '';
    position: absolute;
    top: 50%;
    height: 1px;
    border-top: 1px dashed #BCBEC0;
    width: 100%;
}


.chart-item{
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  width: 150px;
}


.chart-item .lines{
    display: flex;
    flex: 1;
    align-items: flex-end;
}

.chart-item .lines .first{
  height: var(--height);
  width: 50px;
  background: #CEE1FF;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  position: relative;
  transition: height .7s ease-out;
  height: 0;
}

.chart-item .lines .first .percent{
  color: #CEE1FF;
}

.chart-item .lines .second{
  height: var(--height);
  width: 50px;
  background: #0867FF;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  position: relative;
  margin-left: -20px;
  text-align: center;
  transition: height 1s ease-out;
  height: 0;
}



.chart-item .lines .second .percent{
  color: #0867FF;
}

.chart-item .lines > div .percent{
  font-size: 25px;
  font-weight: 700;
  position: absolute;
  top: -40px;
}

.chart-item .lines .second .percent{
  left: 25px;
}




.chart-item .amount{
  position: absolute;
  bottom: -50px;
  font-size: 20px;
  font-weight: 700;
  color: #000000;
}



.header.header--sticky.header--dist{
  background: #fff;
  top: 0;
  padding-bottom: 0;
  padding-top: 0;
}




.header.header--sticky.header--dist .header-container{
    background: #F6F8F8;
    padding: 20px 30px;
}





.faq{
  display: flex;
  width: 100%;
  flex: 1;
}


.faq-container{
  display: flex;
  flex: 1;
  column-gap: 10px;
}


.faq-list{
  flex: 1;
  background: url(/pub/media/levels/bg.jpg);
  background-size: cover;
  border-radius: 40px;
  display: flex;
  flex-direction: column;
  padding: 140px 70px 40px 70px;
    margin: 20px 0;
}


.faq-list .heading{
  font-weight: 500;
  font-size: 60px;
  text-align: center;
  color: #fff;
  margin-bottom: 40px;
}




.faq-media{
  border-radius: 40px;
  overflow: hidden;
}



.faq-items{
  display: flex;
  gap: 24px;
}



.faq-items .column{
  width: calc(100%/3 - 16px);
  display: flex;
  flex-direction: column;
  gap: 24px;
}




.faq-item{
  display: flex;
  flex-direction: column;

  background: #00000033;
  border: 1px solid #FFFFFF33;
  border-radius: 18px;
  padding: 20px 20px;
  cursor: pointer;
  transition: .1s ease;
}

.faq-item .fi-heading{
  display: flex;
  justify-content: space-between;
  column-gap: 20px;
  align-items: center;
}

.faq-item .fi-heading .title{
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}


.faq-item .fi-heading button{
  width: 35px;
  height: 35px;
  min-width: 35px;
  border-radius: 9999px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  color: #000;
}

.faq-item .fi-heading button svg{
  width: 16px;
  height: 16px;
  margin-left: 1px;
  transition: .2s ease;
}



.faq-item .fi-body{
  display: none;
}


.faq-item.active{
  background: #fff;
}

.faq-item.active .fi-heading .title{
  color: #000;
}

.faq-item.active .fi-body{
  display: flex;
  flex-direction: column;
  padding-top: 15px;
  color: #595959;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  row-gap: 10px;
}



.faq-item.active .fi-heading button{
  background: #0867FF;
}

.faq-item.active .fi-heading button{
  color: #fff;
}

.faq-item.active .fi-heading button svg{
  transform: rotate(45deg);
}



.faq-items .action{
    height: 50px;
    padding: 0 40px;
    border-radius: 55px;
    font-size: 20px;
    font-weight: 500;
    width: fit-content;
}







.header.header--sticky.header--faq{
  background: transparent;
  top: 30px;
}


.header.header--sticky.header--faq .nav ul{
  border: 1px solid #535353;
}

.header.header--sticky.header--faq .nav ul li{
  color: #fff;
}

.header.header--sticky.header--faq .nav ul li.active{
  color: #0867FF;
}

.header.header--sticky.header--faq .logo{
  color: #fff;
}




.footer{
  display: flex;
  width: 100%;
  margin-top: 20px;
}



.footer-container{
    display: flex;
    flex-direction: column;
    background: #F6F8F8;
    flex: 1;
    width: 100%;
    padding: 60px 70px 30px 70px;
    row-gap: 1rem;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}


.footer-main-row{
  display: flex;
  column-gap: 2rem;

}



.footer-main-row .menu{
  display: flex;
  flex-direction: column;
  min-width: 10%;
}


.footer-main-row .menu .heading{
  font-size: 16px;
  font-weight: 500;
  color: #000;
  text-transform: uppercase;
  padding-bottom: 15px;
}


.footer-main-row .menu .menu-list{
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}

.footer-main-row .menu .menu-list a{
  font-size: 16px;
  font-weight: 400;
  color: #7c7676;
  text-decoration: none;
  transition: .2s ease;
}

.footer-main-row .menu .menu-list a:hover{
  color: #000;
}




.footer-main-row .media{
  min-width: 20%;
  display: flex;
  flex-direction: column;
}


.footer-main-row .media .logo{
    width: 210px;
    height: 150px;
}



.footer-main-row .menu.social{
  margin-top: 20px;
}

.social-data{
  display: flex;
  column-gap: 10px;
}

.social-data a{
  width: 24px;
  height: 24px;
  display: flex;
  color: #7c7676;
  transition: .2s ease;
}

/*.social-data a svg{
  fill: #000000;
}
*/

.social-data a .tw{
  width: 24px;
  height: 24px;
}


.social-data a:hover{
  color: #000;
}


.cert{
  display: flex;
  column-gap: 1rem;
  margin-top: auto;
}

.cert img{
  height: 40px;
}



.footer-menu{
  display: grid;
  grid-template-columns: repeat(4, 200px); /* 2 колонки */
  column-gap: 30px;
  margin-left: auto;
}


.footer-copy{
  border-top: 1px solid #ccc;
  padding-top: 1rem;
  margin-top: 1rem;
}

.footer-copy span{
  font-size: 14px;
  font-weight: 300;
}




@media(max-width: 768px){


    .header-container{
      padding: 0;
      margin: 0;
    }



    .deposit-levels-container{
      padding: 85px 10px 10px 10px;
      margin: 10px 0;
      border-top-left-radius: 0px;
      border-top-right-radius: 0px;
      flex-wrap: wrap;
      column-gap: 10px;
      align-items: center;
      align-content: stretch;
    }

    .slider-container{
      width: 90%;
    }


    .slider-legend .item .value{
      font-size: 20px;
    }

    .noUi-value{
      font-size: 12px;
    }

    .amount-input input{
      width: 100%;
    }

    .slider-legend{
      margin-top: 0;
    }

    .header.header--sticky.header--dark{
      padding: 0px 10px;
    }

    .header.header--sticky.header--dark .header-container{
      padding: 20px 15px;
      background: #000000;
    }


    .side-packs.second{
      order: 0;
    }

    .side-packs{
      flex-direction: row;
      width: calc(50% - 5px);
      column-gap: 10px;
    }

    .pack-item{
      width: calc(50% - 5px);
      padding: 10px 10px;
      row-gap: 7px;
    }

    .pack-item .media{
      width: 50px;
      height: 50px;
    }

    .pack-item .media span{
      width: 20px;
      height: 20px;
      font-size: 10px;
    }

    .pack-item .meta .name{
      font-size: 12px;
    }

    .pack-item .meta .desc{
      font-size: 10px;
    }

    .pack-item .data .name{
      font-size: 16px;
    }

    .pack-item .data .desc{
      font-size: 10px;
    }
    
    .slider-amount{
          margin: .5rem 0 1rem 0;
    }

    .js-slider{
      height: 60px;
    }
    

    .hiw-container{
      padding: 120px 20px 50px 20px;
    }


    .hiw-container .hiw-items{
      flex-direction: column;
      row-gap: 1.5rem;
    }

    .hiw-items .side-items.left .item{
      text-align: left;
      align-items: flex-start;
    }

    .diamond-anim{
      display: none;
    }


    .hiw-container .heading h2{
      font-size: 22px;
    }

    .hiw-container .heading p{
      font-size: 18px;
    }

    .hiw-container .hiw-items .item .name{
      font-size: 16px;
    }

    .hiw-container .hiw-items .item p{
      font-size: 14px;
    }

    .hiw-items .side-items{
      row-gap: 1.5rem;
    }

    .hiw-items .side-items .item:nth-child(2){
      text-align: right;
      align-items: flex-end;
    }


    .dist-container{
      padding: 85px 20px 85px 20px;
      margin: 10px 0;
    }

    .dist-container .heading h2{
      font-size: 22px;
    }

    .dist-container .heading .legend{
      flex-direction: column;
      row-gap: 1rem;
    }

    .dist-container .heading .legend > div{
      font-size: 12px;
    }

    .dist-container .heading .legend .first span,
    .dist-container .heading .legend .second span{
      width: 20px;
      height: 20px;
    }
    
    .chart-item .lines .first{
      width: 20px;
    }


    .chart-item .lines .second{
      width: 20px;
      margin-left: -5px;
    }

    .chart-item .lines > div .percent{
      font-size: 12px;
    }

    .chart-item .lines .second .percent{
      left: 12px;
    }


    .dist-chart{
      height: 300px;
    }

    .chart-item .amount{
        bottom: -25px;
        font-size: 12px;
    }



    .header.header--sticky.header--dist{
      padding: 0px 10px;
    }

    .header.header--sticky.header--dist .header-container{
      padding: 20px 15px;
      background: #f6f8f8;
    }

    .dist-income{
      margin: 10px 0;
    }


    .faq{
      min-height: auto;
    }


    .faq-list{
      padding: 85px 15px 30px 15px;
      margin: 10px 0;
      border-top-left-radius: 0px;
      border-top-right-radius: 0px;
    }

    .faq-list .heading{
      font-size: 22px;
    }


    .faq-items{
      gap: 10px;
      flex-direction: column;
    }

    .faq-items .column{
      width: 100%;
    }

    .faq-item{
      padding: 10px 15px;
    }

    .faq-item .fi-heading button{
      width: 30px;
      height: 30px;
      min-width: 30px;
    }

    .faq-item .fi-heading .title{
      font-size: 14px;
    }

    .faq-item.active .fi-body{
      font-size: 14px;
      padding-top: 10px;
    }

    .faq-items .action{
      height: 40px;
      font-size: 16px;

    }


    .footer{
      margin-top: 30px;
    }

    .footer-container{

      padding: 40px 30px 25px 30px;
    }

    .footer-main-row{
      flex-direction: column;
    }

    .footer-menu{
      grid-template-columns: repeat(2, 1fr);
    }


    .footer-menu{
      margin-left: 0;
      row-gap: 1.5rem;
      margin-top: 1.5rem;
    }

    .footer-main-row .media{
          align-items: center;
          margin-bottom: 2rem;
    }

    .footer-main-row .media .logo{
        width: 150px;
        height: 135px;
    }

    .footer-main-row .menu .menu-list a{
      font-size: 14px;
    }

}



@media (max-width: 1440px) and (max-height: 900px) {
  .deposit-levels {
    min-height: unset !important;
  }
}


@media(min-width: 1200px) and (max-height: 780px){


    .plus-content .pc-head{
       font-size: 25px; 
    }

    .plus-content .pc-text{
      font-size: 15px;
      padding: 5px 10px;
    }

    .hero-footer-desc span{
      font-size: 18px;
    }

    .hf-community{
        padding: 15px 25px 15px 25px;
    }

    .community-avatars img{
      width: 60px;
      height: 60px;
    }

    .community-text{
      font-size: 15px;
    }

    .community-avatars img:nth-child(2),
    .community-avatars img:nth-child(3){
      margin-left: -30px;
    }

    .hero-footer-buttons a.signin{
      height: 45px;
      font-size: 16px;
      font-weight: 600;
    }

    .hero-footer-buttons a{
      font-size: 16px;
      padding-top: .5rem;
    }



}




@media(min-width: 769px) and (max-width: 992px){

  .deposit-levels-container {
        padding: 50px 10px 10px 10px;
        margin: 10px 0;
        border-top-left-radius: 0px;
        border-top-right-radius: 0px;
        flex-wrap: wrap;
        column-gap: 10px;
        align-items: center;
        align-content: stretch;
    }

.side-packs.second{
      order: 0;
    }

    .side-packs{
      flex-direction: row;
      width: calc(50% - 5px);
      column-gap: 10px;
    }

    .pack-item{
      width: calc(50% - 5px);
      padding: 25px 15px;
      row-gap: 7px;
    }

    .pack-item .media{
      width: 50px;
      height: 50px;
    }

    .pack-item .media span{
      width: 20px;
      height: 20px;
      font-size: 14px;
    }

    .pack-item .meta .name{
      font-size: 16px;
    }

    .pack-item .meta .desc{
      font-size: 14px;
    }

    .pack-item .data .name{
      font-size: 16px;
    }

    .pack-item .data .desc{
      font-size: 12px;
    }
    
    .slider-amount{
          margin: .5rem 0 1rem 0;
    }

    .js-slider{
      height: 60px;
    }



    .hiw-container .hiw-items{
      padding-top: 30px;
    }

    .hiw-container .hiw-items .item .name{
      font-size: 16px;
    }

    .hiw-container .hiw-items .item p{
      font-size: 14px;
    }

    .hiw-container .hiw-items .item{
      width: fit-content;
    }

    .hiw-container .hiw-items{
      column-gap: .5rem;
    }



    .dist-container{
      padding-top: 75px;
      padding-bottom: 100px;
    }

    .dist-container .heading .legend > div{
      font-size: 12px;
    }

    .dist-chart{
      height: 340px;
    }



    .faq-list{
      padding-top: 70px;
    }

    .faq-items{
      flex-direction: column;
    }

    .faq-items .column{
      width: 100%;
    }





}





@media(min-width: 992px) and (max-width: 1200px){




   .deposit-levels-container .pack-item{
      
      width: 220px;
   }


   .faq-list{
    padding-top: 100px;
   }


}






@media(min-width: 768px) and (max-width: 992px){
  
  .footer-container{
    padding-left: 40px;
    padding-right: 40px;
  }

  .footer-menu{
    grid-template-columns: repeat(2, 180px);
    row-gap: 30px;
  }
}


@media(min-width: 992px) and (max-width: 1270px){
  
  .footer-main-row .media{
        align-items: center;
  }

  .footer-main-row{
    flex-direction: column;
    row-gap: 2rem;
  }

  .footer-menu{
    margin-right: auto;
  }
}



.header.static-page{
  top: 0px;
}

.header.static-page .header-container {
    background: #F6F8F8;
    padding: 20px 30px;
}






.static-text{
  display: flex;
  flex-direction: column;
  background: #F6F8F8;
  flex: 1;
  width: 100%;
  margin: 20px 0;
  padding: 100px 30px 50px 30px;
  border-radius: 40px;
  row-gap: 1rem;
}


.static-text .container .text-content{
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}


.static-text .container .heading{
  max-width: 80%;
  padding-bottom: 2rem;
}

.static-text .container .heading h1{
  font-size: 20px;
  margin-bottom: .5rem;
}

.static-text .container .heading p{
  font-size: 14px;
}


.static-text .container .text-content .content-item h2{
  font-size: 18px;
  margin-bottom: .5rem;
}

.static-text .container .text-content .content-item p{
  font-size: 14px;
  margin-top: .5rem;
  max-width: 90%;
}




@media(max-width: 768px){
  .header.static-page{
    padding: 0 10px;
  }

  .header.static-page .header-container{
    padding: 20px 15px;
  }

  .static-text{
    margin-top: 0;
    padding: 100px 15px 50px 15px;
  }

  .static-text .container .heading{
    max-width: 100%;
  }

  .static-text .container .text-content .content-item p{
    max-width: 100%;
  }
}