@import url('https://fonts.googleapis.com/css2?family=Tenor+Sans&display=swap');

:root {  
  --flex-basis-1:calc((100% - 3* 30px) / 3);
  --flex-basis-2:calc((100% - 2* 30px) / 2);
 
  --white: #fff;
  --black: #060606;
  --white-section:#f6f4ec;
  --hover-color:#ff0052;
   --box-shadow-card-1: 0 0 18px 0px inset #dc3545d9;
   --box-shadow-card-2:none;
  --hover-tranzitipn: all ease 0.4s;;  
}

body{
  
    direction: ltr;
    font-family: 'Tenor Sans', sans-serif !important;
    font-size: 17px;
    margin: 0;
    padding: 0px;    
    line-height:1.4; 
    
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

a{
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: var(--hover-tranzitipn);
}
input:focus, textarea:focus, select:focus {
  outline: none;
}

img, video{
    display: block;
    max-width: 100%;
    max-height: 100%;
}

ul{
    list-style: none;
    margin: 0px 10px;
}
[type='checkbox'] {
  box-sizing: border-box;
  padding: 0;
}
h2{
font-size: clamp(21px,4vw,36px)!important;
}
.buttunPx-1 {
 position: relative;
  padding: 15px 19px;
  display: block;
  cursor: pointer;
  width: fit-content; 
  text-align: center;
  border: none;
  border-radius: 15px;
  font-size: 16px;
  font-weight: 900;
  color: #ff0052;
  background-color: transparent;
  text-transform: uppercase;
  border-radius: 5px;
  transition: .2s cubic-bezier(0.79, 0.14, 0.15, 0.86);
  
}
.buttunPx-1::before,.buttunPx-1::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    transition: .2s cubic-bezier(0.79, 0.14, 0.15, 0.86);
    height: 100%;
    width: 100%;
    border-radius: 5px;
}
.buttunPx-1::before{
    background-color: #fff;
    z-index: 1;
    box-shadow: .2rem .2rem .5rem rgba(0, 0, 0, .2);
}
.buttunPx-1::after{
    background-color: #ff0052;
    transform: translate(4px, 4px);
    z-index: 0;
}
.buttunPx-1:hover{
    transform: translate(4px, 4px);
    color: #fff;
}
.buttunPx-1:hover:before{
    background-color: #ff0052;
}
.buttunPx-1:hover::after{
    background-color: #fff;
    transform: translate(-4px, -4px);
}
.buttunPx-1 span{
    position: inherit;
    z-index: 1;
}
.buttunPx-2 {
  padding: 16px 21px;
  display: block;
  width: fit-content;
  text-align: center;
  font-size: 16px;
  font-weight: 900;
  border: none;
  outline: none;
  color:#000;
  background: orange;
  cursor: pointer;
  position: relative;
  z-index: 0;
  border-radius: 4px;
transition: var(--hover-tranzitipn);
}

.buttunPx-2:before {
  content: '';
  background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #8c97cf, #7a00ff, #ff00c8, #ff0000);
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 400%;
  z-index: -1;
  filter: blur(5px);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  animation: glowing 20s linear infinite;
  opacity: 1;
  transition: opacity .2s ease-in-out;
 border-radius: 4px;
}

.buttunPx-2:hover {
color: #fff;
}

.buttunPx-2:after {
  z-index: -1;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
background: orange;
  left: 0;
  top: 0;
  border-radius: 4px;
}

@keyframes glowing {
  0% {
    background-position: 0 0;
  }

  50% {
    background-position: 400% 0;
  }

  100% {
    background-position: 0 0;
  }
}
.buttunPx-3{
  text-align: center;
   width: fit-content;
    background: linear-gradient(90deg, #ffcc00, #ff9900); 
    color: #ffffff;
    font-size: 16px; 
    font-weight: 900; 
    padding: 14px 21px; 
    border: none; 
    display: block;
    border-radius: 8px; 
    cursor: pointer; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
    transition: transform 0.2s, box-shadow 0.2s;
    text-transform: uppercase; 
} 
.buttunPx-3:hover{
   transform: scale(1.05); 
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3); 

}
.buttunPx-3:active{
    transform: scale(0.98); 
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); 
}
.buttunPx-4 {
    display: block;
    text-align: center;
    width: fit-content;
    background: linear-gradient(90deg, #ff0000, #ff6600); 
    color: #ffffff;
    font-size: 16px; 
    font-weight: 900; 
    padding: 12px 26px; 
    border: none; 
    border-radius: 11px; 
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); 
    text-transform: uppercase; 
    transition: transform 0.2s ease, box-shadow 0.2s ease; 
    position: relative; 
    overflow: hidden; 
  
}

.buttunPx-4:hover,
.buttunPx-4:focus {
 transform: scale(1.1); 
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4); 
}
.buttunPx-4::before{
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3); 
    transform: skewX(-30deg); 
    transition: all 0.5s ease-in-out; 
}
.buttunPx-4:hover:before,.buttunPx-4:focus:before{
    left: 100%;
}
.buttunPx-5 {
  width: fit-content;
  display: block;
  text-align: center;
   background: #000000; 
    color: #00ff99; 
    font-size: 16px; 
    font-weight: 900; 
    padding: 12px 26px; 
    border: 2px solid #00ff99; 
    border-radius: 8px; 
    cursor: pointer; 
    text-transform: uppercase; 
    text-shadow: 0 0 5px #00ff99, 0 0 10px #00ff99, 0 0 15px #00ff99; 
    transition: all 0.2s ease; 
    position: relative;
    box-shadow: 0 0 19px rgba(0, 255, 153, 0.5), 0 0 29px rgba(0, 255, 153, 0.4); 
    animation: neonPulse 1.4s infinite alternate; 
}

.buttunPx-5:hover {
  color: #ffffff; 
    border-color: #ff00cc; 
    text-shadow: 0 0 5px #ff00cc, 0 0 10px #ff00cc, 0 0 19px #ff00cc; 
    box-shadow: 0 0 25px rgba(255, 0, 204, 0.7), 0 0 34px rgba(255, 0, 204, 0.6); 
    background: #ff00cc; 
}
@keyframes neonPulse {
    0%, 100% {
        box-shadow: 0 0 19px rgba(0, 255, 153, 0.5), 0 0 29px rgba(0, 255, 153, 0.4);
    }
    50% {
        box-shadow: 0 0 29px rgba(0, 255, 153, 0.7), 0 0 34px rgba(0, 255, 153, 0.6);
    }
}
.header-section{
    background: rgba(35,42,92,.3);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 2;
}
.frame{
    max-width: 1170px;
    margin: 0 auto;
    width: 100%;
    padding-left: 16px;
    padding-right:16px;
}
.header-holder{

justify-content: space-between;
align-items: center;
}
.d-flex{
    display: flex;
}
.flex-wrap{
    flex-wrap: wrap;
}
.brand-logo{
    display: inline-block;
    width: 20%;
}
.logo{
    display: flex;
    align-items: center;
    justify-content: center;
    img{
        height: 69px;
        object-fit: contain;
    }
}
.header-menu-part{
position: relative;
}
.header-top {
    border-bottom: 2px solid rgba(255, 255, 255, .1);
}

.header-top_contact{
    display: flex;
    flex-wrap: wrap;
    margin-inline-start:  19px;
    color: var(--white-section);
}
.header-top_contact li{
    padding: 16px 21px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.cont-svg{
    flex: 0 0 auto;
    svg{
        width:  19px;
        height:  19px;
        fill: transparent;
        stroke: var(--white-section);
    }
}

.banner{
    position: relative;
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 5%, cover;
    padding-top: 253px;
    padding-bottom: 123px;   
   
    animation: heroBg 800ms ease-in forwards;
    background-image: url(picgallery/assets/roulette-068d67471246a0.png), linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgb(34 62 82) 89%, rgb(56 56 78) 100%);
}
@keyframes heroBg {
    0% {
    background-size: 5%, cover;
}
100% {
    background-size: 45%, cover;
}
}
.banner_row{
    flex-direction:  row-reverse
}
.section-anime{
    position: relative;
}
.section-anime::after{
    content: '';
    position: absolute;
    bottom: 0px;
    display: block;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #0d0e01 0%, #ebff06ab 50%, #03cd1fbd 85%, transparent 100%) 4%;
    animation: borde 5s infinite alternate;
}
@keyframes borde {
    0% {
    width: 0%;
    inset-inline-start: 10%;
    opacity: 0;
}
50% {
    opacity: 1;
    inset-inline-start: 0%;
    width: 100%;
}
95% {
    opacity: 1;
    inset-inline-start: 90%;
    width: 0%;
}
100% {
    width: 0%;
    inset-inline-start: 0;
    opacity: 0;
}
}
.header-wrapper{
    position: relative;
    width: 100%;
    padding: 19px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.menu{
    display: flex;
    align-items: center;
}
.menu>li>a{
    position: relative;
    color: #fff;
    font-size: 16px;
    font-weight: 900;
    padding: 15px 19px;
    text-transform: uppercase;
}
.menu>li>a::before{
    position: absolute;
    content: "";
    left: 16px;
    bottom: 8px;
    border: 2px  solid var(--hover-color);
    width: 0;
    transition: 0.4s;
    opacity: 0;
}

.mobile-toggle-btn{
  position: relative;
  height: 40px;
  width: 40px;  
  cursor: pointer;
  background-color: transparent;
  text-align: center;
  outline: none;
  border: none;
  display: none; 
  border-radius: 8px;
}
.mobile-toggle-btn::before{
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  display: block;
  border: 2px  solid #f5f7fa;
  opacity: 0.15;
  border-radius: inherit;
  transition: opacity 0.2s;
  z-index: 1;
}
.mobile-toggle-btn > span {
  display: inline-block;
  position: relative;
  height: 2px;
  width: 34px;
  border-radius: 1px;
  background:#fff;
  vertical-align: middle;
}
.mobile-toggle-btn > span:before, .mobile-toggle-btn > span:after {
  display: inline-block;
  position: absolute;
  content: "";
  height: 2px;
  border-radius: 1px;
  background:#fff;
  transition: all 200ms;
}

.mobile-toggle-btn > span:before {
  top: -11px;
  left: 3px;
  width: 28px;
}

.mobile-toggle-btn > span:after {
  top: 11px;
  left: 6px;
  width: 22px;
}
.menu-area.nav-active .mobile-toggle-btn > span{
  height: 0;
}
.menu-area.nav-active .mobile-toggle-btn > span:before {
  top: 0;
  width: 34px;
  left: 0;
  transform: rotate(45deg);
}

.menu-area.nav-active .mobile-toggle-btn > span:after {
  top: 0;
  left: 0;
  width: 34px;
  transform: rotate(-45deg);
} 

.menu-area.nav-active .mobile-toggle-btn{
  background-color: transparent;
}
.menu-area.nav-active .mobile-toggle-btn::before{
  opacity: 1;
}
.mob-logo{
    display: none;
    img{
        height: 59px;
    }
}
.menu-area.nav-active .menu{
    transform: scaleY(1);
}
.header-sticky{
    position: fixed;
    background-color: #080e37;
    top: 0;
    left: 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, .5);
    border-bottom: 2px solid rgba(255, 255, 255, .1);
    animation: fadeInDown .4s;
    -webkit-animation: fadeInDown .4s;

}
@keyframes fadeInDown {
    0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
}
100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}
}
.header-section.header-sticky .header-top{
    display: none;
}
.col-12{
    flex: 0 0 auto;
    width: 100%;
    padding-left: 14px;
    padding-right: 14px;
    margin-top: 34px;
}
.banner__content{
    display: flex;
    flex-direction: column;
    gap: 19px;   

}
.banner_title{
    color: #fff;
    font-size: calc(1.5rem + 3vw);
    text-shadow: 2px 2px 2px rgba(255, 0, 82, .9);
}
.relet{
    position: relative;
}
.banner_text{
    text-transform: capitalize;
    color: #fff;
    font-size: 19px;
    text-shadow: 2px 2px 2px rgb(6 6 6 / 90%);
}
.section-pad{
    padding: 69px 0;
}
.how-bg{
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-image: url(picgallery/bg/bg-all-068d67471243e8.jpg);
}
.how-bg::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color:  #060606e3;
}
.step-card{
    display: flex;
    height: 100%;
    gap: 19px;
    align-items: center;
    flex-direction: column;
}


.section-header{
    display: flex;
    gap: 29px;
    text-align: center;
    flex-direction: column;
    margin-bottom:  38px;
 h2{
   
    color: var(--white-section);
    text-shadow: 2px 2px 2px rgba(255, 0, 82, .9);
 }
 h4{
    color: #dc3545;
    text-shadow: 2px 2px 2px rgb(0 0 0 / 90%);
 }
}
.item-layer{
    height: 100%;
    position: relative;
    transition: .2s all linear;
    
}
.item-layer::before{
    position: absolute;
    content: "";
    width: 95%;
    height: 95%;
    border: 2px  solid rgba(255, 255, 255, .04);
    bottom: -12px;
    left: 50%;
    z-index: 1;
    transform: translateX(-50%);
    transition: all .2s ease;
    border-radius: 3px;
    background-color: rgba(255, 255, 255, .1);
}
.item-layer::after{
    position: absolute;
    content: "";
    width: 90%;
    height: 90%;
    border: 2px  solid rgba(255, 255, 255, .04);
    bottom: -22px;
    left: 50%;
    z-index: 0;
    transform: translateX(-50%);
    transition: all .2s ease;
    border-radius: 3px;
    background-color: rgba(255, 255, 255, .1);  
}
.item-layer:hover{
    transform: translateY(10px);
    box-shadow: 0 3px 20px rgba(0, 0, 0, .4);
}
.item-layer:hover:after,.item-layer:hover:before {
    opacity: 0;
    bottom: 0;
    visibility: hidden;
}
.game__inner{
    position: relative;
    height: 100%;
    z-index: 1;
    padding: 30px;
    display: flex;
    text-align: center;
    gap:  13px;
    flex-direction: column;
    background-color: #232a5c;
    color: #fff;
    border-radius: 5px;
}
.game__thumb{    
    height: 123px;
    display: flex;
    align-items: center;
    justify-content: center;
    img{
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}
.color-section{
    background-color:  #01005E;
}
.justify-center{
    justify-content: center;
}

.step-card_content{
    padding: 19px;
    height: 100%;
    font-size: 16px;
    text-align: center;
    align-content: center;
    transition: all .2s ease;
    color: var(--white-section);   
    box-shadow: var(--box-shadow-card-2);
}
.step-card:hover .step-card_content{
    color: orange;
}
.step-card_wrappe-icon{
    flex: 0 0 auto;
}
.brightIcon{
    width: 114px;
    height: 114px;
    font-size: 38px;
    background: black;
    color: orange;
    transition: all 500ms;
    border-radius: 0%;
}
.flip-block{
    background: transparent;
    width: 100%;
    height: 100%;
    perspective: 1000px;
    padding: 14px;
}
.flip-inner{
   position: relative;
    display: inline-block;
    width: 100%;
    height: 100%;
    top: 0;
    transition: transform 800ms;
    transform-style: preserve-3d;
    align-content: center;
}
.flip-front,.flip-back{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    text-align: center;
    backface-visibility: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    svg{
        fill: transparent;
        stroke:orange;
        width: 59px;
        height: 59px;
    }
}
.flip-back{
    transform: rotateY(180deg);
}
.step-card:hover .flip-inner{
transform: rotateY(180deg);
    backface-visibility: hidden;
}
.games{
    background: url(picgallery/bg/bg-all-168d674712441f.jpg) no-repeat fixed;
    position: relative;   
    background-size: cover; 
    
}
.rand-section-games{
    display: flex;
    flex-direction: column;
    gap:19px ;

}
.games::before{
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: #01005E;
    opacity: 0.7;  

}
.game__item{
    transition: .2s all linear;
}
.game-wrapper{
    border-radius: 6px;
    background: #232a5c;
    position: relative;
    z-index: 1;
}
.game-boxImg {
    display: block;
img{
 width: 100%;
 height: 300px;
 object-fit: cover;
 border-radius: 6px;
}
}
.game__overlay{
    position: absolute;
    height: auto;
    background-color: rgba(255, 0, 82, .8);
    padding: 12px  29px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    bottom: 0;
    top: auto;    
    transition: all .45s ease;    
    left: 50%;
    width: 100%;
    flex-wrap: wrap;
    gap: 11px;   
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, 0%) scale(1);
}

.game__overlay-left{
    text-align: left;
    h3{
        color: #fff;
    }
}
.footer-tumb{
    background-color: #212529;
    padding: 59px 0 34px;
    color: #FFF;
}
.footer-tumb_bottom{
    display: flex;
    flex-direction: row-reverse;
    gap: 19px;

}
.footer-copyright{
  display: flex; 
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;

}
.footer-disclaimer{
    display: flex;
  align-items: center;
  justify-content: center;
 
  img{
    width: 55px;
    height: 55px;
    object-fit: contain;
  }
}
.top-footer-tumb{
    margin-bottom: 29px;
    gap: 29px;
    padding-bottom: 19px;
    border-bottom: 2px solid rgba(255, 255, 255, .1);
    flex-direction: row-reverse;
}
.footer-element{
    flex: 1;
}
.fm-item-title {
    margin-bottom:21px;
    text-align: center;
    font-size: 19px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--white-section);
}
.footet-list{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    text-align: center;
}
.footet-list li a{
color: #fff;
}
.footer-contact{
    color: #fff;
    word-break: break-word;
}
.footet-list li:hover a{
 color: var(--hover-color);
}
.footer-img{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    max-height: 195px;
    width: 100%;
    img{
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}
.counter__area{
    padding: 34px;
    border-radius:  19px;
    box-shadow: 0px 5px 30px 0px rgba(105,90,166,.23);
    background-color:#c4230b;
    margin-bottom: 43px;
    color: #fff;
    position: relative;
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 15px;
}
.section-top{
    padding: 150px 0 123px;
}
.bg-top_img{
    position: relative;
    background-image: url(picgallery/bg/bg-all-268d6747124452.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.bg-top_img::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #01005Ebf;
}
.section-top_title{
    text-align: center;
    color: #fff;
    margin-bottom: 11px;
}
.breadcrumb{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.breadcrumb-item{
 color: #fff;
 font-weight: 500;
 text-transform:uppercase;
 a{
  color: #ff0052;  
}
}
.item-active{
    position: relative;
    padding-inline-start: 10px;
}
.item-active::before{
    position: absolute;
    content: "/";    
    inset-inline-start:2px;
    color: #6c757d;

}
.flex-col-group{
    flex-direction: column;
}
.contact-item {
    padding: 43px 15px;
    height: 100%;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background-color: #232a5c;
    text-align: center;
    border-radius: 5px;    
    h3{
        text-transform: uppercase;
        color: var(--white-section);
        font-weight: 500;
    }
    
}
.contact-thumb{
    position: relative;
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    border-radius: 100%;
    background-color: #ff0052;
    margin: 0 auto 29px;
    svg{
        width: 29px;
        height: 29px;
        fill: transparent;
        stroke: #fff;
    }
}
.contact-thumb::after{
    opacity: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";   
    border: 8px solid rgba(255, 255, 255, .3);
    border-radius: 100%;
   
    animation-duration: 2s;
    animation-delay: .2s;
    border-width: 15px;
    animation-iteration-count: infinite;
    animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
    z-index: 1;
   
}


.contact-item:hover .contact-thumb::after{
 animation-name: ripple;
}
.contact-item:hover  a{
    color: orange;
}
@keyframes ripple {
  0% {
    opacity: 1;
    transform: scale3d(0.75, 0.75, 1);
}  
100% {
    opacity: 0;
    transform: scale3d(1.5, 1.5, 1);
}
}
.contact-form{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.form-group{
    display: flex;
    gap: 15px;
    flex-direction: row-reverse;
}
.input-contact,.textarea-contact,.input-field-component_component,.textarea-field-component_component{
    width: 100%;
    border: 2px  solid rgba(255, 255, 255, .1);
    border-radius: 4px;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, .06);
    height: 57px;
    padding: 10px 21px;
    background: rgba(35, 42, 92, .5);
    color: #fff;

}
.textarea-contact,.textarea-field-component_component{
    min-height: 123px;
}
.input-contact::placeholder,.textarea-contact::placeholder{
    color: var(--white-section);
    opacity: 0.8;
}
.input-field-component_component,.textarea-field-component_component{
    background-color: #343a40;
}
.contact-form_check{
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  font-size: 14px;
 color: var(--white-section);
}
.form-btn{
    margin: 0 auto;
}
.bg-opas{
    background-image: url(picgallery/bg/opacity_bg-068d67471244d1.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.bg-top-contact{
    background-image:  linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgb(34 62 82) 89%, rgb(56 56 78) 100%);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.about-wrapperVL{
    gap: 29px;    
    flex-direction: row-reverse;
}
.about-content{
    display: flex;
    padding: 19px;
    background-color: #ffffff1a;
    border-radius: 5px;
    color: var(--white-section);
    flex-direction: column;
    justify-content: center;
    p{
    margin-bottom: 11px;
    text-indent: 3ch;
    }
}
.about-img{
    width: 100%;
    height: 100%;
    max-height:395px;
    display: flex;
    align-items: center;
    justify-content: center;
}
@keyframes lab_zoominout{
0% {
    transform: scale(0.85);
}
50% {
    transform: scale(1);
}
100% {
    transform: scale(0.85);
}
    
}
.accordion {
   display: flex;
   flex-direction: column;
   gap: 15px;
   height: 100%;
   justify-content: center;
}

.accordion-item {
    padding: 19px 29px;
    border: none;
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
    background: #232a5c;
    box-shadow: 0 0 3px rgba(136, 136, 136, .1);
}

.accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 11px;
    justify-content: flex-start;     
    cursor: pointer;    
}
.accordion-header_right h6{
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 19px;
}

.accordion-content {
    display: none;
   color: var(--white-section);
   p{
    padding-top: 10px;    
   }     
}
.accordion-icon{
    position: relative;
    flex: 0 0 auto;
    width: 29px;
    height: 29px;
    background: #ff0052;
    border-radius: 50%;
}
.accordion-icon::before,.accordion-icon::after{
    position: absolute;
    content: "";
    background: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.accordion-icon::before{
    width: 2px;
    height: 15px;
}
.accordion-icon::after{
    width: 15px;
    height: 2px;
}
.accordion-item.open .accordion-icon::before {
   width: 15px;
    height: 2px; 
}
.group-section{
    display: flex;
    gap: 50px;   
    flex-direction: column;
}
.section-form{
    flex: 2;
}
.section-reviews,.section-win{
    flex: 1;
}
.box-formFll{    
    padding: 43px 19px;
    color:var(--white-section);
    background-color: #212529;
}
.reviews-list{
   
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 19px;
}
.review-card{
    display: flex;    
    align-items: center;
    flex-grow: 1;
    flex-direction: row-reverse;
    gap: 15px;
    padding: 14px;
    border-radius: 8px;
    transition: all 800ms;
    background-color: transparent;
}
.review_img{
    flex: 0 0 auto;
    width: 114px;
    height: 114px;
    overflow: hidden;
    border-radius:  0%;
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}
.review_card-body{
    display: flex;
    flex-direction: column;
    color: #fff;
    gap: 11px;
    align-items: center;
    text-align: center;
    h4{
        font-weight: 500;
        font-size: 16px;
    }
}
.reviews-list:hover .review-card{
    background: #0700004a !important;
    opacity: 0.3;
}
.review-card:hover{
    background: #0700004a !important;
    opacity: 1 !important;
}
.section-win{
    display: none;
}
.level-img {
   display: flex;
   gap: 8px;
   align-items: center;
   svg{
    width: 34px;
    height: 34px;
    fill: transparent;
    stroke: orange;
   }
}
.page-wrapper{
    padding: 19px;
    margin-bottom: 43px;
    color: #fff;
    display: flex;
    gap: 43px;
    flex-direction:column;
    background-color: #ffffff1a;
    border-radius: 5px;

}
.Ypwrapper-page_imgBlok{
    display: flex;
    align-items: center;
    justify-content: center;
    img{
        width: 100%;
        height: 400px;
        object-fit: contain;
    }
}
.page-game-content p{
    margin-bottom: 11px;
    text-indent: 3ch;

}
.page-game-content ul,ol{
    list-style: inside;
}
.playing-pageKL{
    height: 100vh;
    width: 100%;
    margin-top: 43px;
    margin-left: auto;
    margin-right: auto;
}
.playing-pageKL iframe{
    height: 100%;
    width: 100%;
}
.privacy-content{
 word-break: break-word;
 color: var(--white-section);
}
.privacy-content p{
  margin-bottom: 11px;
  text-indent: 3ch;
}
.privacy-content h1{
    font-weight: 500;
    text-align: center;
    margin-bottom:  23px;
}
.privacy-content h2{
    font-weight: 500;
    text-align: center;
    margin-bottom:20px ;
}
.privacy-content table,.privacy-content a{
    word-break: break-word;
    color: inherit;
}


@media screen and (min-width: 480px) {

			  
}
@media screen and (min-width: 575px){
 .frame{
    max-width: 540px;
 }
 .col-sm-6{
    flex: 0 0 auto;
    width: 50%;
    
 }
}

@media (max-width: 575px){
   .banner {
    
    background-position: right bottom !important;
   }
   .col-12 {
    padding-left: 0;
    padding-right: 0;
} 
.footer-tumb_bottom{
    justify-content: center;
    flex-direction: column;
}
.section-top{
    padding: 123pxx 0;
}
.accordion-item{
    padding: 19px 12px;
}
.accordion-header_right h6{
    font-size: 16px;
}
.Ypwrapper-page_imgBlok img{
height: auto;
}
.section-pad{
    padding: 59px 0;
}   
.counter__area {
    padding: 19px 10px;
}

}
@media (min-width: 768px){ 
    .frame{
    max-width: 720px;
 }
 .game__overlay{
    visibility: hidden;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
 }
 .game__item:hover .game__overlay {
   visibility: visible;
    opacity: 1;
    transform: translate(-50%, 0%) scale(1); 
}

 
 
}
@media (max-width: 768px){
 .game__inner{
    padding: 29px 15px;
 }
 .banner {
    padding-top: 123px;
}
.top-footer-tumb{
    flex-direction: column;
}
.footer-img{
    height: 253px;
}
.form-group{
    flex-direction: column;
}
.playing-pageKL{
    width: 100%;
    height: 100vh;
   }

}
@media (min-width: 575px) and (max-width: 992px){  
   
}

@media (max-width: 992px){ 
  
   .header-top,.brand-logo {
    display: none;
 }
 .mobile-toggle-btn,.mob-logo{
    display: block;
 }
 .header-bottom,.header-menu-part{
    width: 100%;
 }
 .header-wrapper{
    padding: 11px 0;
 }
 .menu{
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;    
    transition: all ease .2s;
    transform: scaleY(0);
    transform-origin: top;
    background: rgba(35, 42, 92, .95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
 }
 .menu li a {
    display: block;
    padding: 10px 21px;
    font-size: 17px;
    font-weight: 900;
    text-transform: capitalize;
    border-top: 1px solid rgba(255, 255, 255, .1);
    color: #fff;
}
 .menu li{
    width: 100%;
 }
  .menu>li:hover a{
        background: rgba(255, 0, 82, .6);
}
.step-card{
    flex-direction: column;
    gap: 40px;
}
.btn-game,.game__overlay-right,.game__overlay-left {
    width: 100%;
}
.game__overlay-left {
    text-align: center;
}
.about-wrapperVL{
    flex-direction:  column;
}
.about-img{
    height: 395px;
}
}
@media (min-width: 992px){ 
   .frame{
    max-width: 960px;
 }
 .col-lg-7{
    flex: 0 0 auto;
    width: 58.888%;
}
.col-lg-4{
    flex: 0 0 auto;
    width: 33.3333333333%;
}
.col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
}
 .header-menu-part{
    width: 75%;
 }
 .header-menu-part::after{
    position: absolute;
    content: "";
    top: -20px;
    inset-inline-start: -15px;
    height: 120%;
    width: 1px;
    background-color: rgba(255, 255, 255, .1);
    transform: rotate(30deg);
 }
 .menu{
    justify-content: center;
 }
 .menu>li:hover a{
 color: var(--hover-color);
}
.menu>li:hover a::before{
    width: 50%;
    transition: 0.4s;
    opacity: 1;
}
 .header-section.header-sticky .header-holder {
    padding: 8px 0;
 }
}    

@media (max-width: 1200px){
.review-card{
    flex-basis: 250px;
    flex-direction: column;
}
}
@media (min-width: 1200px){   
  .frame{
    max-width: 1140px;
 }
 .col-xl-6{
    flex: 0 0 auto;
    width: 50%;
 }
 .faq-right-part{
       margin-right: -29px;
        animation: lab_zoominout 15s linear infinite;
    }
    .group-section{   
    gap: 29px;
    align-items: flex-end;
    flex-direction: row-reverse;
  }
  .reviews-list{
    flex-direction: column;
  }
}


.privacy-content ul{ list-style: disc;}



.footer-logos {
  display: flex;
  justify-content: center; 
  align-items: center;
  gap: 20px;
  padding: 20px;
  flex-direction: row;
  flex-wrap: wrap;

  a img {
    max-height: 50px;
    width: 100%;
    display: block;
    max-width: none;
    transition: 0.3s linear;
    
    &:hover,
    &:hover{
      transform: scale(0.96);
      opacity: 0.8;
    }
  }
}
