@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root{
    --color-blue-100:#00b9ff;
    --color-green-100:#66ff00;
    --color-dark-100:#000;
    --color-dark-70:#3f3f3f;
    --color-dark-30:#abaaaa;
    --color-dark-0:aliceblue;
    --gradient-topbottom:linear-gradient(to top, var(--color-blue-100) 6%, rgba(0, 0, 0, 1) 68%);
    --back-shadow:linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    --gradient-blueblack:linear-gradient(45deg, var(--color-blue-100), rgba(0, 0, 0, 0));
    --gradient-yellowblack:linear-gradient(45deg, var(--color-green-100), rgba(0, 0, 0, 0));
}


*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
/* html, body {
  overflow-x: hidden;
} */
 html{scroll-behavior: smooth;}
body{
    background-color: var(--color-dark-100);
}
body,input,button{font-family: "Poppins", sans-serif;}
body::-webkit-scrollbar{
  width: 4px;
}
body::-webkit-scrollbar-thumb{
  background: var(--color-dark-70);
  border-radius: 4px;
}

img{
    max-width: 100%;
    height: auto;
    display: block;
}
h1{
  font-size: 50px;
  line-height: 1.1;
  padding-bottom: 20px;
}
h2{
  font-size: 40px;
  line-height: 1.25;
  padding-bottom: 5px;
}
h3{
  font-size: 30px;
  line-height: 1.33333333333;
  font-weight: 600;
  padding-bottom: 5px;
}
h4{
  font-size: 24px;
  line-height: 1.66666666667;
  font-weight: 500;
  padding-bottom: 5px;
}
h1 span,h2 span{
  color: var(--color-green-100);
}
p{
  font-size: 16px;
  line-height: 1.25;
  padding-bottom: 10px;
  padding-top: 5px;
}

.container {
    max-width: 1370px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 10px;
    padding-right: 10px;
}
.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px;
}
.col-1{
    width: 8.333333333333333%;
    padding-left:10px;
    padding-right:10px;
}
.col-2{
    width: 16.6666666667%;
    padding-left:10px;
    padding-right:10px;
}
.col-3{
    width: 25%;
    padding-left:10px;
    padding-right:10px;
  }
.col-4{
    width: 33.3333333333%;
    padding-left:10px;
    padding-right:10px;
}
.col-5{
    width: 41.6666666667%;
    padding-left:10px;
    padding-right:10px;
}
.col-6{
    width: 50%;
    padding-left:10px;
    padding-right:10px;
}
.col-7{
    width: 58.3333333333%;
    padding-left:10px;
    padding-right:10px;
}
.col-8{
    width: 66.6666666666%;
    padding-left:10px;
    padding-right:10px;
}
.col-9{
    width: 75%;
    padding-left:10px;
    padding-right:10px;
}
.col-10{
    width: 83.3333333333%;
    padding-left:10px;
    padding-right:10px;
}
.col-11{
    width: 91.6666666666%;
    padding-left:10px;
    padding-right:10px;
}
.col-12{
    width: 100%;
    padding-left:10px;
    padding-right:10px;
}

header{
    position: sticky;
    top: 0;
    z-index: 9;
    transition: background-color 0.5s ease, box-shadow 0.5s ease;
    box-shadow: rgba(255, 255, 255, 0.1) 0px 10px 10px -10px;
  }
header.scrolled {
  background: #000000f0;
}
.headflex{
    justify-content: center;
    height: 120px;
}
.headAside{
    display: grid;
    align-items: center;
}
.headAside .h__top{
    display: flex;
    flex-wrap: wrap;
    color: var(--color-dark-30);
    height: 100%;
    align-items: center;
    border-bottom: 1px solid var(--color-dark-70);
}
.headAside .h__top span{
  cursor: pointer;
  padding: 0px 8px;
}

.socialIcon{
  box-shadow: rgba(255, 255, 255, 0.3) 0px 2px 8px 0px;
  border-radius: 50%;
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 7px;
  transition: 0.2s ease-in-out;
}
.socialIcon svg{
  width: 15px;
  height: 15px;
  display: grid;
}
.socialIcon svg path{
  fill: var(--color-dark-0)
}
.socialIcon:hover{
  background: var(--color-dark-0);
}
.socialIcon:nth-of-type(2):hover svg path{
  fill: #3B5998;
}
.socialIcon:nth-of-type(3):hover svg path{
  fill: #0077B5;
}
.socialIcon:nth-of-type(4):hover svg path{
  fill: var(--color-dark-100);
}
.socialIcon:nth-of-type(5):hover svg path{
  fill:#FF0000;
}

.mainMenu{
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    position: relative;
    list-style: none;
    align-items: center;
    height: 100%;
}
.mainMenu > li {
    position: relative;
    display: grid;
    align-items: center;
    height: 100%;
}

.mainMenu>li a{
    white-space: nowrap;
    width: 100%;
    text-decoration: none;
    color: #fff;
    padding: 5px 10px;
    display: grid;
    align-items: center;
    height: 100%;
}
.siteLogo{
    text-align: -webkit-center;
    display: grid;
    align-items: center;
    justify-items: center;
}
.headAside.flex_end .h__top{
    justify-content: end;
}
.headAside.flex_end ul{
    justify-content: end;
}

.subMenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #000;
    list-style: none;
    overflow: hidden;
    max-height: 0;
    box-shadow: rgba(255, 255, 255, 0.5) 0px 1px 1px 0px inset, rgba(255, 255, 255, 0.3) 0px 50px 100px -20px, rgba(255, 255, 255, 0.2) 0px 30px 60px -30px;

}

.mainMenu > li:hover .subMenu {
  padding: 10px;
    max-height:300px;
    transition: max-height 0.4s ease-in-out;
}

.subMenu>li:hover a{
  color: var(--color-green-100);
}

.mainMenu > li:hover .subMenu::-webkit-scrollbar {
    width: 4px; /* Width of the scrollbar */
}

.mainMenu > li:hover .subMenu::-webkit-scrollbar-thumb {
    background-color: var(--color-dark-70); /* Scrollbar thumb color */
    border-radius: 4px; /* Rounded corners */
}
.onlyMob{
    display: none;
}

/* banner slider start */
.slider {
    position: relative;
    min-height: 100vh;
    height: auto;
    overflow: hidden;

  }
  /* .slider__slides {
    z-index: 1;
    position: relative;
    height: 100%;
  } */
  .slider__control {
    z-index: 2;
    position: absolute;
    top: 50%;
    left: 5%;
    width: 60px;
    height: 60px;
    margin-left: -30px;
    margin-top: -30px;
    border-radius: 50%;
    background:transparent;
    border: 1px solid #ffffff5f;
    transition: background-color 0.3s;
    cursor: pointer;
  }
  .slider__control--right {
    left: 95%;
  }
  .slider__control:hover {
    background-color: var(--color-green-100);
  }
  .slider__control-line {
    position: absolute;
    left: 23px;
    top: 50%;
    width: 3px;
    height: 14px;
    transform-origin: 50% 0;
    transform: rotate(-45deg);
  }
  .slider__control-line:nth-child(2) {
    transform: translateY(1px) rotate(-135deg);
  }
  .slider__control--right .slider__control-line {
    left: 37px;
    transform-origin: 1px 0;
    transform: rotate(45deg);
  }
  .slider__control--right .slider__control-line:nth-child(2) {
    transform: translateY(1px) rotate(135deg);
  }
  .slider__control-line:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff4e;
    transition: background-color 0.3s;
  }
  .slider__control:hover .slider__control-line:after {
    background-color: #000
  }
  .slider__control.a--rotation .slider__control-line:after {
    -webkit-animation: arrowLineRotation 0.49s;
            animation: arrowLineRotation 0.49s;
  }
  .slider__control.a--rotation .slider__control-line:nth-child(1):after {
    -webkit-animation: arrowLineRotationRev 0.49s;
            animation: arrowLineRotationRev 0.49s;
  }
  
  @-webkit-keyframes arrowLineRotation {
    to {
      transform: rotate(180deg);
    }
  }
  
  @keyframes arrowLineRotation {
    to {
      transform: rotate(180deg);
    }
  }
  @-webkit-keyframes arrowLineRotationRev {
    to {
      transform: rotate(-180deg);
    }
  }
  @keyframes arrowLineRotationRev {
    to {
      transform: rotate(-180deg);
    }
  }
  .slide {
    overflow: hidden;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 150vmax;
    height: 150vmax;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    transition: -webkit-clip-path 0s 0.91s;
    transition: clip-path 0s 0.91s;
    transition: clip-path 0s 0.91s, -webkit-clip-path 0s 0.91s;
    -webkit-clip-path: circle(30px at 120vw 50%);
            clip-path: circle(30px at 120vw 50%);
  }
  .slide.s--prev {
    -webkit-clip-path: circle(30px at 30vw 50%);
            clip-path: circle(30px at 30vw 50%);
  }
  .slide.s--active {
    z-index: 1;
    transition: -webkit-clip-path 1.3s;
    transition: clip-path 1.3s;
    transition: clip-path 1.3s, -webkit-clip-path 1.3s;
    -webkit-clip-path: circle(120vmax at 120vw 50%);
            clip-path: circle(120vmax at 120vw 50%);
  }
  .slide.s--active.s--active-prev {
    -webkit-clip-path: circle(120vmax at 30vw 50%);
            clip-path: circle(120vmax at 30vw 50%);
  }
 
  .slide:nth-child(1) .slide__inner {
    background-image: url("../images/ezugi.jpg");
  }
  .slide:nth-child(2) .slide__inner {
    background-image: url("../images/jili.jpg");
  }
  .slide:nth-child(3) .slide__inner {
    background-image: url("../images/spribe.jpg");
  }
  .slide__inner {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100vw;
    height: 100vh;
    margin-left: -50vw;
    margin-top: -50vh;
    background-size: cover;
    background-position: center center;
  }
  .slide__inner:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
  }
.slide .slide__inner>div{
  height: 100vh;
  display: flex;
  color: #fff;
  align-items: center;
  }
.imagestransform{
    row-gap: 40px;
}
.imagestransform .boximg{
    height: 140px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.5) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
    overflow: hidden;
}
.imagestransform .boximg img{
    width: 100%;
    height: 100%;
}

.slide__heading {
  font-size: 30px;
}
.slide__text {
  font-size: 25px;
}
.slide__text a {
  color: inherit;
}
/* banner slider end */

/* company start */

.companies{
  margin: 40px 0 50px;
}
.companySliderheading p{
  text-align: center;
  color: var(--color-dark-30);
  padding-bottom: 20px;
}
.companySlider_item{
  width: max-content!important;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.companySlider_item img{
  height: 60px;
  width: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
.companySlider_item.clrwhite img{
  filter: invert(1)
}

.companySlider .slick-track{
  display: flex!important;
}

/* company end */

/*  */
.content_block{
  color: var(--color-dark-0);
  margin-top: 80px;
}
.content_block.mt-40{
  margin-top: 40px;
}
.content_block h2{
  margin-bottom: 40px;
}

.feature-Flex{
  justify-content: space-between;
  row-gap: 50px;
}

.feature-card{
  border: 1px solid var(--color-dark-70);
  padding: 40px 30px;
  border-radius: 15px;
  height: 100%;
  position: relative;
}

.feature-card p{
  color: var(--color-dark-30);
}
.card-Count{
  border-radius: 50%;
  position: absolute;
  top: -20px;
  right: -5px;
  background: var(--color-dark-100);
}
.card-Count span{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: var(--color-green-100);
  font-weight: 600;
  width: 100px;
  height: 100px;
}
.card-Count span::before{
  content: "";
  position: absolute;
  left:50%;
  top:50%;
  display: block;
  background:#000;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  z-index: -1;
  box-shadow: rgb(102 255 0) 0px 3px 5px;
  transform: translate(-50%, -50%) rotate(45deg);
  animation: rotateShadow 2s linear infinite;
}

@keyframes rotateShadow {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}



/*  */
.game_pro-img{
  justify-content: space-between;
  row-gap: 40px;
}
.game_pro-imgCol{
  border-radius:20px;
  overflow: hidden;
  min-height: 400px;
  height: 100%;
  position: relative;
}
.game_pro-imgCol .custom-btn.btn-12{
  margin-left: 20px;
}

.game_pro-imgCol img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.game_proShadow{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background:linear-gradient(0deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.5) 100%);
}
.game_pro-imgCol .game_pro-imgContent{
  display: flex;
  gap: 20px;
  width: 100%;
  position: absolute;
  padding: 30px;
  top: 0;
  left: 0;
}
.game_pro-imgCol .game_pro-imgContent .game_pro-imgLogo{
  width: 22%;
}
.game_pro-imgCol .game_pro-imgContent .game_pro-imgLogo img{
  width: 100%;
  height: fit-content;
  object-fit: cover;
}
.game_proText{
  width: 78%;
}
.game_proText>div{
  line-height: 40px;
  font-size: 40px;
  font-weight: 600;
  padding-bottom: 10px;
}
.game_pro-imgCol .custom-btn{
  opacity: 0;
  position: absolute;
  bottom:100px;
  left: 0px;
}
/*  */

/* button start */
.custom-btn {
  width: unset;
  height: 40px;
  color: #fff;
  border-radius: 5px;
  padding: 0;
  font-family: 'Lato', sans-serif;
  font-weight: 500;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
   box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
   7px 7px 20px 0px rgba(0,0,0,.1),
   4px 4px 5px 0px rgba(0,0,0,.1);
  outline: none;
}

.btn-12{
  position: relative;
  bottom: 20px;
  border:none;
  box-shadow: none;
  height: 40px;
  line-height: 42px;
  -webkit-perspective: 230px;
  perspective: 230px;
}
.btn-12 span {
  background: rgb(0,172,238);
  background: linear-gradient(0deg, rgba(0,172,238,1) 0%, rgba(2,126,251,1) 100%);
  display: block;
  position: absolute;
  width: 130px;
  height: 40px;
  box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
   7px 7px 20px 0px rgba(0,0,0,.1),
   4px 4px 5px 0px rgba(0,0,0,.1);
  border-radius: 5px;
  margin:0;
  text-align: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
  font-size: 16px;
}
.btn-12 span:nth-child(1) {
  -webkit-transform: rotateX(90deg);
  -moz-transform: rotateX(90deg);
  transform: rotateX(90deg);
  -webkit-transform-origin: 50% 50% -20px;
  -moz-transform-origin: 50% 50% -20px;
  transform-origin: 50% 50% -20px;
}
.btn-12 span:nth-child(2) {
  -webkit-transform: rotateX(0deg);
  -moz-transform: rotateX(0deg);
  transform: rotateX(0deg);
  -webkit-transform-origin: 50% 50% -20px;
  -moz-transform-origin: 50% 50% -20px;
  transform-origin: 50% 50% -20px;
}
.btn-12:hover span:nth-child(1) {
  -webkit-transform: rotateX(0deg);
  -moz-transform: rotateX(0deg);
  transform: rotateX(0deg);
}
.btn-12:hover span:nth-child(2) {
  box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
   7px 7px 20px 0px rgba(0,0,0,.1),
   4px 4px 5px 0px rgba(0,0,0,.1);
  color: transparent;
  -webkit-transform: rotateX(-90deg);
  -moz-transform: rotateX(-90deg);
  transform: rotateX(-90deg);
}
/* btn end */

/*  */
.headerflex{
  color: #fff;
}
.headerflex .col-6:nth-child(2){
  text-align: end;
}
.headerflex .col-6:nth-child(2) span{
  width: 60px;
  height: 60px;
  border: 1px solid #02a9724d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 400ms;
}
.headerflex .col-6:nth-child(2) span:hover{
  border: 1px solid var(--color-green-100);
  color:var(--color-green-100);
  border-radius: 5px;
}
.apifeaturedFlex{
  margin:0 -10px
}
.apiCard{
  color: #fff;
  border: 1px solid #000;
  border-radius: 10px;
  position: relative;
  height: 400px;
  overflow: hidden;
  margin: 0 10px;
}
.apiCard-Shadow{
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: auto;
  padding: 20px;
  transition: all 400ms;
  backdrop-filter: blur(6px);
}
.apiCard-Shadow .apiCard__imgText p{
  padding-top: 0;
}
.apiCard-Shadow .apiCard__imgText ul{
  padding-bottom: 15px;
  padding-top: 0;
  padding-left: 18px;
}
.apiCard .apiImg img{
  transition: .3s ease-in-out;
}
.apiCard:hover .apiImg img{
  transform: scale(1.1);
}

.expandable {
  color: var(--color-dark-0);
  border-radius: 5px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
  font-size: 16px;
  padding: 5px;
}

.apiCard:hover .expandable {
  max-height: 200px;
  opacity: 1;
}





.apiCard .apiImg{
  height:400px;
}
.apiCard .apiImg img{
  object-fit: cover;
  border-radius: 10px;
  display: block;
  width: 100%;
  height: 100%;
}
.apiCard h3{
  color: var(--color-dark-0);
}

.apiCard-Shadow .custom-btn{
  margin-top: 10px;
}
/*  */

/*  */
.backImage{
  width: 100%;
  padding: 60px 10%;
  text-align: center;
  position: relative;
}
.backImage::before{
  content: ''; 
  position: fixed;
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.8)), url('../images/1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: -1; 
  opacity: 0.2;/* Ensure it appears behind the content of .bgimagestadium */
}

.backImage h2{
  margin-bottom: 20px;
}
.backImage button{
  display: flex;
  justify-content: center;
  margin: auto;
  bottom: 0;
  margin-top: 40px;
}
.backImage button span{
  width: 200px;
}

/* faq start */

.faqFlex_wrap img{
  width: 100%;
  height: 100%;
}
.faqFlex_wrap h2{
  position: relative;
}
.faqFlex_wrap h2:after{
  content: "";
  width: 75%;
  height: 2px;
  background: var(--color-green-100);
  position: absolute;
  right: 0%;
  top: 50%;
  transform: translate(0%,-50%);
}
.faqSecDiv{
  background:rgba(255, 255, 255, 0.1);
  padding: 20px 20px;
  margin-bottom: 20px;
  border-radius: 10px;
}
.faqSecDiv>div{
  display: none;
  padding-top: 2px;
  color: var(--color-dark-30);
}
.faqSecDiv h4>span{
  color: var(--color-green-100);
  font-weight: 600;
}
.faqSecDiv h4>span+span{
  display: none;
}
.faqSecDiv h4.active>span{
  display: none;
}
.faqSecDiv h4.active>span+span{
  display: inline-block;
}
/* faq end */

/* footer start */

footer{
  color: var(--color-dark-0);
  margin-top: 80px;
}
footer h2{
  margin-bottom: 10px;
  color: var(--color-green-100);
}
footer p{
  color: var(--color-dark-30);
}
.latestNews{
  margin-top: 40px;
}
.newsLetter{
  margin-top: 10px;
  position: relative;
  width: 70%;
  border-radius: 5px;
  overflow: hidden;
}
.newsLetter input{
  border: 1px solid var(--color-dark-70);
  background: var(--color-dark-70);
  padding: 15px 10px;
  color: var(--color-dark-0);
  width: 100%;
  outline: none;
}

.newsLetter button{
  position: absolute;
  right: 0;
  top: 0;
  padding: 0 20px;
  height: 100%;
  background: var(--color-dark-30);
  color: var(--color-dark-100);
  border: none;
}
.newsLetter button:hover{
  background: var(--color-dark-0);
  color: var(--color-dark-100);
}

.heading_foot-OPtion{
  list-style: none;
  padding-left: 0px;
  margin-top: 20px;
}
.heading_foot{
  position: relative;
}
.heading_foot::before{
  content:"";
  position: absolute;
  bottom: 0;
  left: 0;
  width:15%;
  height: 2px;
  background: var(--color-green-100);
}
.heading_foot-OPtion a{
  display: block;
  padding: 3px 0;
  text-decoration: none;
  color: var(--color-dark-30);
}
.heading_foot-OPtion a:hover{
  color: var(--color-dark-0);
}
.footerLogoo img {
    margin-bottom: 20px;
    width: 120px;
}


footer .lastfooter{
  border-top: 1px solid var(--color-dark-70);
  padding: 10px;
  color: var(--color-dark-30);
  margin-top: 50px;
}







/* 
footer .heading h2{
  color: var(--color-green-100);
  margin-bottom: 0;
}
footer .heading input{
  padding: 15px 10px;
  border: 1px solid var(--color-dark-30);
  border-radius: 5px;
  background: transparent;
  width:100%;
  color: #fff;
}
footer .heading .col-6:nth-child(2) input::placeholder{
  color:var(--color-dark-30);
}
footer .heading .col-6:nth-child(2){
  position: relative;
  margin-bottom: 40px;
}
footer .heading .col-6:nth-child(2) button{
  font-family: "Poppins", sans-serif;
  position: absolute;
  right: 10px;
  bottom: 50%;
  height: 100%;
  transform: translate(0%, 50%);
  padding: 0px 20px;
  background: var(--color-green-100);
  color: #000;
  border: none;
  letter-spacing: 1px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease-in;
}
footer .heading .col-6:nth-child(2) button:hover{
  background: var(--color-blue-100);
  color: #fff;
}
footer .col-3 .heading_foot{
  padding-bottom: 10px;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
}
footer .col-3 ul{
  list-style: none;
}
footer .col-3 ul li a{
  display: block;
  color: var(--color-dark-30);
  padding:2px 0;  
  text-decoration: none;
}
footer .col-3 ul li a:hover{
  color: #fff;
} */


/* game Aggregator start */

.game_aggrBann .col-5 img{
  width: 100%;
  height: 100%;
  border-radius: 15px;
  object-fit: cover;
}

.game_aggrBann .custom-btn {
  margin-top: 50px;
}

.game_aggrBann .custom-btn span {
  width: 250px;
}

.advantages .row{
  justify-content: space-between;
  row-gap: 30px;
}

.advantages .col-4>div{
  height: 100%;
  padding: 20px;
  box-shadow: rgba(255, 255, 255, 0.3) 0px 0px 8px 2px;
  border-radius: 15px;
}
.advantages h4{
  display: flex;
  align-items: center;
}
.advantages h4 img{
  width: 40px;
  color: var(--color-green-100);
}
.advantages p{
  color: var(--color-dark-30);
  padding-top:10px;
}



.feature_sec{
  border: 1px solid var(--color-dark-70);
  padding: 20px;
  border-radius: 15px;
  margin-top: 30px;
  background: var(--color-dark-100);
}
.feature_sec:nth-child(1){
  margin-top: 0;
}

.feature_icon img{
  width: 50px;
  font-size: 30px;
  color: var(--color-green-100);
}
.feature_icon{
  padding-bottom: 10px;
}

.game_features .columnStick ,.game_features .feature_sec{
  overflow: hidden;
  position: sticky;
  top: 150px;
}
.game_features .feature_sec:nth-child(2){
  top: 170px;
}
.game_features .feature_sec:nth-child(3){
  top: 190px;
}
.game_features .feature_sec:nth-child(4){
  top: 210px;
}
.game_features .custom-btn{
  margin-top: 25px;
  margin-bottom: 20px;
}


.backBg{
  margin: 100px 0;
  background-image: url(../images/baccarat_banner_1270x530.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  min-height: 530px;
}
.counterContent{
  max-width: 800px;
  width: 100%;
  margin: auto;
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 150px 0;
}
.backBg .colSection{
  box-shadow: rgba(204, 219, 232, 0.141) 3px 3px 6px 0px inset, rgba(255, 255, 255, 0.158) -3px -3px 6px 1px inset;
  padding: 50px 80px;
  border-radius: 15px;
  background: #00000070;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #f6f6f651;
  color: #ffffff95;
}
.backBg .colSection span{
  font-size: 20px;
  font-weight: 500;
}
.backBg .colSection span:nth-child(1){
  color: #ffffff;
  font-size:60px;
  line-height: 1.2;
  font-weight: 500;
}


.testimonials .row{
  text-align: center;
}
.testimonialSlider{
  margin: auto;
  max-width: 1000px;
  width: 100%;
}

.testimonialSlider .slick-track{
  display: flex;
}


.testimonial_Items{
  background: #ffffff0f;
  border: 1px solid #ffffff20;
  border-radius: 20px;
  padding: 50px;
  margin-left: 10px;
  margin-right: 10px;
}
.testimonial_Items .row{
  gap: 20px;
  margin-bottom: 20px;
}
.f_letter{
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffff;
  font-size: 50px;
}
.nm_profile{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.nm_profile span:nth-child(1){
  font-size: 30px;
}
.nm_profile span:nth-child(2){
  font-size: 18px;
  color: var(--color-dark-30);
}

.testimonial_Items p{
  letter-spacing: 0.5px;
  line-height: 1.5;
}
/* game Aggregator end*/







/* banner code start */
.cont {
  position: relative;
  overflow: hidden;
  height: 600px;
  /* height: calc(100vh - 120px); */
  padding-bottom: 80px;
  padding-top: 20px;
  }
  .cont__inner {
  position: relative;
  height: 100%;
  }
  .cont__inner:hover .el__bg:after {
  opacity: 1;
  }

  .el {
  position: absolute;
  left: 0;
  top: 0;
  width: 19.2%;
  height: 100%;
  background: #252525;
  transition: transform 0.6s 0.7s, width 0.7s, opacity 0.6s 0.7s, z-index 0s 1.3s;
  will-change: transform, width, opacity;
  border-radius: 20px;
  }
  .el:not(.s--active) {
  cursor: pointer;
  }
  .el__overflow {
  overflow: hidden;
  position: relative;
  height: 100%;
  }
  .el__inner {
  overflow: hidden;
  position: relative;
  height: 100%;
  transition: transform 1s;
  }
  .cont.s--inactive .el__inner {
  transform: translate3d(0, 100%, 0);
  }
  .el__bg {
  position: relative;
  /* width: calc(100vw - 140px); */
  height: 100%;
  transition: transform 0.6s 0.7s;
  will-change: transform;
  }
  .el__bg:before {
  content: "";
  position: absolute;
  left: 0;
  /* top: -5%; */
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  transition: transform 1s;
  transform: translate3d(0, 0, 0) scale(1);
  }
  .cont.s--inactive .el__bg:before {
  transform: translate3d(0, -100%, 0) scale(1.2);
  }
  .el.s--active .el__bg:before {
  transition: transform 0.8s;
  }
  .el__bg:after {
  content: "";
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(358deg, transparent 70%, #08080891);
  opacity: 0;
  transition: opacity 0.5s;
  }
  .cont.s--el-active .el__bg:after {
  transition: opacity 0.5s 1.4s;
  opacity: 1 !important;
  }
  .el__preview-cont {
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s 1.2s;
  }
  .cont.s--inactive .el__preview-cont {
  opacity: 0;
  transform: translateY(10px);
  }
  .cont.s--el-active .el__preview-cont {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s;
  }
  .el__heading {
  color: #fff;
  text-transform: uppercase;
  font-size: 18px;
  }
  .el__content {
  z-index: -1;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 30px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.1s;
  }
  .el.s--active .el__content {
  z-index: 2;
  opacity: 1;
  pointer-events: auto;
  transition: all 0.5s 1.4s;
  }
  .el__text {
  text-transform: uppercase;
  font-size: 40px;
  color: #fff;
  line-height: 1;
  }
  .el__close-btn {
  z-index: -1;
  position: absolute;
  right: 10px;
  top: 10px;
  width: 60px;
  height: 60px;
  opacity: 0;
  pointer-events: none;
  transition: all 0s 0.45s;
  cursor: pointer;
  }
  .el.s--active .el__close-btn {
  z-index: 5;
  opacity: 1;
  pointer-events: auto;
  transition: all 0s 1.4s;
  }
  .el__close-btn:before, .el__close-btn:after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 8px;
  margin-top: -4px;
  background: #fff;
  opacity: 0;
  transition: opacity 0s;
  }
  .el.s--active .el__close-btn:before, .el.s--active .el__close-btn:after {
  opacity: 1;
  }
  .el__close-btn:before {
  transform: rotate(45deg) translateX(100%);
  }
  .el.s--active .el__close-btn:before {
  transition: all 0.3s 1.4s cubic-bezier(0.72, 0.09, 0.32, 1.57);
  transform: rotate(45deg) translateX(0);
  }
  .el__close-btn:after {
  transform: rotate(-45deg) translateX(100%);
  }
  .el.s--active .el__close-btn:after {
  transition: all 0.3s 1.55s cubic-bezier(0.72, 0.09, 0.32, 1.57);
  transform: rotate(-45deg) translateX(0);
  }
  .el__index {
  overflow: hidden;
  position: absolute;
  left: 0;
  bottom: -80px;
  width: 100%;
  height: 100%;
  min-height: 250px;
  text-align: center;
  font-size: 20vw;
  line-height: 0.85;
  font-weight: bold;
  transition: transform 0.5s, opacity 0.3s 1.4s;
  transform: translate3d(0, 1vw, 0);
  }
  .el:hover .el__index {
  transform: translate3d(0, 0, 0);
  }
  .cont.s--el-active .el__index {
  transition: transform 0.5s, opacity 0.3s;
  opacity: 0;
  }
  .el__index-back, .el__index-front {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  }
  .el__index-back {
  color: #2f3840;
  opacity: 0;
  transition: opacity 0.25s 0.25s;
  }
  .el:hover .el__index-back {
  transition: opacity 0.25s;
  opacity: 1;
  }
  .el__index-overlay {
  overflow: hidden;
  position: relative;
  transform: translate3d(0, 100%, 0);
  transition: transform 0.5s 0.1s;
  color: transparent;
  }
  .el__index-overlay:before {
  content: attr(data-index);
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  transform: translate3d(0, -100%, 0);
  transition: transform 0.5s 0.1s;
  }
  .el:hover .el__index-overlay {
  transform: translate3d(0, 0, 0);
  }
  .el:hover .el__index-overlay:before {
  transform: translate3d(0, 0, 0);
  }
  .el:nth-child(1) {
  transform: translate3d(0%, 0, 0);
  transform-origin: 50% 50%;
  }
  .cont.s--el-active .el:nth-child(1):not(.s--active) {
  transform: scale(0.5) translate3d(0%, 0, 0);
  opacity: 0;
  transition: transform 0.95s, opacity 0.95s;
  }
  .el:nth-child(1) .el__inner {
  transition-delay: 0s;
  }
  /* .el:nth-child(1) .el__bg {
  transform: translate3d(0%, 0, 0);
  } */
  .el:nth-child(1) .el__bg:before {
  transition-delay: 0s;
  background-image: url("../images/banner/spribe1.jpg");
  border-radius: 20px;
  }
  .el:nth-child(2) {
  transform: translate3d(105.2083333333%, 0, 0);
  transform-origin: 155.2083333333% 50%;
  }
  .cont.s--el-active .el:nth-child(2):not(.s--active) {
  transform: scale(0.5) translate3d(105.2083333333%, 0, 0);
  opacity: 0;
  transition: transform 0.95s, opacity 0.95s;
  }
  .el:nth-child(2) .el__inner {
  transition-delay: 0.1s;
  }
  /* .el:nth-child(2) .el__bg {
  transform: translate3d(-19.2%, 0, 0);
  } */
  .el:nth-child(2) .el__bg:before {
  transition-delay: 0.1s;
  background-image: url("../images/banner/jili1.jpg");
  border-radius: 20px;
  }
  .el:nth-child(3) {
  transform: translate3d(210.4166666667%, 0, 0);
  transform-origin: 260.4166666667% 50%;
  }
  .cont.s--el-active .el:nth-child(3):not(.s--active) {
  transform: scale(0.5) translate3d(210.4166666667%, 0, 0);
  opacity: 0;
  transition: transform 0.95s, opacity 0.95s;
  }
  .el:nth-child(3) .el__inner {
  transition-delay: 0.2s;
  }
  /* .el:nth-child(3) .el__bg {
  transform: translate3d(-38.4%, 0, 0);
  } */
  .el:nth-child(3) .el__bg:before {
  transition-delay: 0.2s;
  background-image: url("../images/banner/liveCasino.jpg");
  border-radius: 20px;
  }
  .el:nth-child(4) {
  transform: translate3d(315.625%, 0, 0);
  transform-origin: 365.625% 50%;
  }
  .cont.s--el-active .el:nth-child(4):not(.s--active) {
  transform: scale(0.5) translate3d(315.625%, 0, 0);
  opacity: 0;
  transition: transform 0.95s, opacity 0.95s;
  }
  .el:nth-child(4) .el__inner {
  transition-delay: 0.3s;
  }
  /* .el:nth-child(4) .el__bg {
  transform: translate3d(-57.6%, 0, 0);
  } */
  .el:nth-child(4) .el__bg:before {
  transition-delay: 0.3s;
  background-image: url("../images/banner/ezugi.jpg");
  border-radius: 20px;
  }
  .el:nth-child(5) {
  transform: translate3d(420.8333333333%, 0, 0);
  transform-origin: 470.8333333333% 50%;
  }
  .cont.s--el-active .el:nth-child(5):not(.s--active) {
  transform: scale(0.5) translate3d(420.8333333333%, 0, 0);
  opacity: 0;
  transition: transform 0.95s, opacity 0.95s;
  }
  .el:nth-child(5) .el__inner {
  transition-delay: 0.4s;
  }
  /* .el:nth-child(5) .el__bg {
  transform: translate3d(-76.8%, 0, 0);
  } */
  .el:nth-child(5) .el__bg:before {
  transition-delay: 0.4s;
  background-image: url("../images/banner/evolution.jpg");
  border-radius: 20px;
  }
  .el:hover .el__bg:after {
  opacity: 0;
  }
  .el.s--active {
  z-index: 1;
  width: 100%;
  transform: translate3d(0, 0, 0);
  transition: transform 0.6s, width 0.7s 0.7s, z-index 0s;
  }
  .el.s--active .el__bg {
  transform: translate3d(0, 0, 0);
  transition: transform 0.6s;
  }
  .el.s--active .el__bg:before {
  transition-delay: 0.6s;
  /* transform: scale(1.1); */
  }

  .icon-link {
  position: absolute;
  left: 5px;
  bottom: 5px;
  width: 32px;
  }
  .icon-link img {
    width: 100%;
    vertical-align: top;
  }
  .icon-link--twitter {
    left: auto;
    right: 5px;
  }

/* banner code end */


/* cursor circle start */

  #cursor {
    position: fixed;
    top: -5px;
    left: -5px;
    width: 10px;
    height: 10px;
    background-color: #ffffff3f;
    border-radius: 50%;
    pointer-events: none;
    z-index: 999;
  }

  #cursor-border {
    --size: 50px;
    position: fixed;
    top: calc(var(--size) / -2);
    left: calc(var(--size) / -2);
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    box-shadow: 0 0 0 1px #ffffff3f;
    pointer-events: none;
    transition: top 0.15s ease-out, left 0.15s ease-out, width 0.15s ease-out,
      height 0.15s ease-out, background-color 0.15s ease-out;
    z-index: 999;
  }



/* contact pge start */

.contact_page-flex h1{
  color: var(--color-dark-0);
  line-height: 1;
}
.contact_page-flex p{
  color: var(--color-dark-30);
  padding-bottom: 12px;
}
.imgContant{
  margin-top: 40px;
}
.imgContant img{
  max-width: 350px;
  width: 100%;
  margin: auto;
}
.imgSection{
  padding: 50px;
  border-radius: 15px;
  box-shadow: rgba(204, 219, 232, 0.114) 3px 3px 6px 0px inset, rgba(255, 255, 255, 0.114) -3px -3px 6px 1px inset;
}
.formRight{
  color: var(--color-dark-0);
padding-left: 30px;
}
.head_Fm{
  font-size: 30px;
  text-align: center;
  padding: 15px;
  background: #ffffff1b;
  border-radius: 10px;
  font-weight: 600;
  color: var(--color-dark-0);
}
.formRow_flex{
  margin-top: 20px;
  margin-bottom: 20px;
}
.formRow_Colmn{
  display: grid;
}
.formRow_Colmn label{
  color: var(--color-dark-0);
}
.formRow_Colmn input{
  background: #ffffff14;
  border: 1px solid var(--color-dark-70);
  padding: 15px;
  border-radius: 5px;
  outline: none;
  margin-top: 10px;
  color: var(--color-dark-0);
}
.formRow_Colmn textarea{
  color: var(--color-dark-0);
  background: #ffffff14;
  border: 1px solid var(--color-dark-70);
  padding: 15px;
  border-radius: 5px;
  outline: none;
  margin-top: 10px;
}

.agree{
  display: flex;
  align-items: center;
}
.agree p{
  padding: 0;
  line-height: 1.4;
  padding-left: 10px;
}

.submitForm{
  margin-top: 20px;
  border: none;
  background: linear-gradient(90deg,var(--color-green-100),var(--color-blue-100));
  padding: 20px;
  border-radius: 5px;
  color: var(--color-dark-100);
  font-size: 18px;
  font-weight: 600;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 2px;
}
.submitForm:hover{
  background: linear-gradient(90deg,var(--color-blue-100),var(--color-green-100));
}



/* about */
.main_adv_item-flex{
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: 30px;
}
.main_adv_item{
  display: flex;
  gap: 20px;
  border: 1px solid var(--color-dark-70);
  padding: 20px;
  border-radius: 5px;
  background: #ffffff1a;
}
.main_adv_item img{
  height: 50px;
}
.main_adv_item-cont h4{
  font-size: 30px;
  line-height: 1;
}
.main_adv_item-cont p{
  padding-top: 10px;
  color: var(--color-dark-30);
}

.journey{
  text-align: center;
}

.journeyStairs{
  max-width: 1000px;
  width: 100%;
  margin: auto;
}
.journeySection_flex:nth-child(even){
  flex-direction: row-reverse;
}
.journeySection_flex{
  display: flex;
  margin-bottom: 80px;
}
.journeySection_colm{
  width: calc(100% / 2) ;
  background: #00ff5e14;
  border: 1px solid #00ff1e6f;
  padding: 20px;
  color: var(--color-dark-0);
  border-radius: 15px;
}
.journeySection_colm:nth-child(2){
  background: unset;
  border: unset;
  padding: unset;
  display: flex;
  justify-content: center;
  align-items: center;
}
.journeySection_colm p{
  color: var(--color-dark-30);
}
.yrDiv{
  border: 1px solid rgba(0, 255, 17, 0.221);
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: relative;
  font-size: 20px;
  font-weight: 600;
}
.yrDiv::after{
  content: "";
  width: 150px;
  height: 165px;
  border: 1px solid rgba(0, 255, 17, 0.221);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position:absolute;
  transform: rotate(145deg);
  transition: .3s ease-in;
  animation: rotatespin 4s linear infinite;
}
/* .yrDiv:hover::after{
  border: 1px solid rgba(0, 255, 17, 0.366);
} */

@keyframes rotatespin {
  0% {
    border: 1px solid rgba(0, 255, 17, 0.221);
    transform:  rotate(0deg);
  }
  50%{
    border: 1px solid rgba(208, 255, 0, 0.522);
  }
  100% {
    border: 1px solid rgba(0, 255, 17, 0.221);
    transform: rotate(360deg);
  }
} 

/* disclaimer */
.DisclaimerBann_Bg{
  background: linear-gradient(90deg , var(--color-green-100),var(--color-blue-100));
  border-radius: 20px;
  padding: 40px 20px;
}
.DisclaimerBann{
  display: flex;
  max-width: 1000px;
  width: 100%;
  margin: auto;
  align-items: center;
  justify-content: center;
  gap: 50px;
}
.DisclaimerBann img{
  max-width: 250px;
  width: 100%;
}
.DisclaimerBann h1{
  color: var(--color-dark-100);
}
.DisclaimerBann p{
  color: var(--color-dark-70);
}
.disclaimer_body{
  max-width: 1000px;
  width: 100%;
  margin: 80px auto;
}
.disclaimer_body p{
  color: var(--color-dark-30);
}


/* apiProvider */

/* banner */
.gameProvideSlider{
    display: flex;
    gap: 50px;
    align-items: stretch;
}
.Provide_slider-wrapper{
    width: 65%;
    height: 400px;
    margin: 0 -10px;
}
.ProVider_slide-item{
    padding: 0 10px;
}
.ProVider_slide-item img{
    height: 100%;
    border-radius: 20px;
}
.progressBarContainer{
    width: 35%;
}

.Provide_slider-wrapper,
.progressBarContainer {
    height: 400px; 
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.progressBarContainer{
  display: flex;
  flex-direction: column;
}
.navItems{
  display: flex;
  gap: 20px;
  padding:10px;
  align-items: center;
}
.navItems:hover{
  background: #ffffff1a;
}
.navItemsImage{
  width: 30%;
}
.navItemsImage img{
  min-height: 80px;
  height: 100%;
  width: auto;
  object-fit: cover;
}
.navItemscont{
  flex: 1;
  color: var(--color-dark-0);
  font-size: 14px;
}

/* banner */




.gameType_slick{
  margin:0 -10px
}
.gameType_slick .apiCard .apiImg{
  height:200px;
}
.gameType_slick .apiCard h3{
  font-size: 18px;
}
.gameType_slick .apiCard-Shadow{
  transition: all 400ms;
}

.gameType_slick .expandable {
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 0;
  opacity: 1;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
  text-align: center;
  font-size: 0px;
  padding: 0px;
}
.gameType_slick .apiCard:hover .expandable {
  max-height: 200px;
  opacity: 1;
  padding: 5px;
  font-size: 16px;
}

.gameType_slick .expandable.clr1 {
  background: linear-gradient(45deg, #5ebcfe, #be41d4);
}
.gameType_slick .expandable.clr2 {
  background: linear-gradient(45deg, #354fa5, #f9a131);
}
.gameType_slick .expandable.clr3 {
  background: linear-gradient(45deg, #cc9b33, #334a46);
}
.gameType_slick .expandable.clr4 {
  background: linear-gradient(45deg, #004e03, #b12221);
}
.gameType_slick .expandable.clr5 {
  background: linear-gradient(45deg, #a80d14, #554bf7);
}
.gameType_slick .expandable.clr6 {
  background: linear-gradient(45deg, #014042, #4fb8bf);
}
.gameType_slick .expandable.clr7 {
  background: linear-gradient(45deg, #bc8a1f, #1c4aba);
}
.gameType_slick .expandable.clr8 {
  background: linear-gradient(45deg, #5088de, #fb946c);;
}

.featured_slick{
  margin:0 -10px
}

.feature-card--item{
  background: var(--color-dark-70);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 0 10px;
}

.feature__Img{
  position: relative;
  height:70px
}
.feature__Img img{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 140px;
}
.num-Of_Games{
  text-align: center;
  background: #abaaaa6b;
  padding: 5px;
  width: fit-content;
  font-size: 14px;
  padding: 4px 20px;
  margin: 10px auto 20px auto;
}

.feature__Img img:nth-child(2){
  opacity: 0;
}
.feature-card--item:hover .feature__Img img:nth-child(1){
  opacity: 0;
}
.feature-card--item:hover .feature__Img img:nth-child(2){
  opacity: 1;
}

.feature-card--item:hover .num-Of_Games{
  background: linear-gradient(45deg, var(--color-blue-100),var(--color-green-100));
  color: #000;
  font-weight: 600;
}



/*  */
.gameApi-Block_Section{
  margin-top: 40px;
}
.provider-Item_Heading{
  padding-bottom: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.gameLabel{
  color: var(--color-dark-30);
  font-size: 14px;
  padding-top: 10px;
  padding-bottom: 3px;
}
.apiNameFlex{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.apiName{
  margin-top: 10px;
  padding: 5px 10px;
  border: 1px solid var(--color-dark-70);
  color: var(--color-dark-30);
  border-radius: 4px;
  font-size: 12px;
}
.provider-Item_section{
  margin-left: -10px;
  margin-right: -10px;
}
.provider-Item_slider{
  padding-left: 10px;
  padding-right: 10px;
}

.provider-Item_Heading .btn-12 span {
  right: 100%;
}

.fltrHead{
  color: var(--color-dark-0);
  font-size: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.Provider_ryt-Section{
  padding-left: 20px;
}
.flterSection{
  position: sticky;
  top: 130px;
  background: linear-gradient(359deg, #00ff4324, #028bf81f);
  border-radius: 10px;
  padding: 20px;
  border: 1px solid #02a9724d;
  /* max-height: 73px;
  overflow: hidden; */
}
/* .Quick_Jump-List{
  opacity: 0;
} */
/* .flterSection:hover{
  transition: max-height 400ms ease-in;
  max-height:600px;
}
.flterSection:hover .Quick_Jump-List{
  opacity: 1;
} */



.Quick_Jump-List{
  padding-top: 20px;
  list-style: none;
}
.Quick_Jump-List li a{
  text-decoration: none;
  display: block;
  padding: 10px 0;
  color: var(--color-dark-30);
  border-bottom: 1px dashed #ffffff14;
}
.Quick_Jump-List li:last-child a{
  border-bottom: none;
}
.Quick_Jump-List li a:hover{
  cursor: pointer;
  color:var(--color-dark-0)
}

@media(max-width:1024px){

  h1{
    font-size: 32px;
    line-height: 1.125;
    padding-top: 20px;
    padding-bottom: 10px;
  }
  h2{
    font-size: 24px;
    line-height: 1.41666666667;
  }
  h3{
    font-size: 20px;
    line-height: 1.3;
  }
  h4{
    font-size: 20px;
    line-height: 1.11111111111;
  }
  .slide__inner .col-5{
    width: 100%;
  }

  .xcol-1{
      width: 8.333333333333333%;
  }
  .xcol-2{
      width: 16.6666666667%;
  }
  .xcol-3{
      width: 25%;
    }
  .xcol-4{
      width: 33.3333333333%;
  }
  .xcol-5{
      width: 41.6666666667%;
  }
  .xcol-6{
      width: 50%;
  }
  .xcol-7{
      width: 58.3333333333%;
  }
  .xcol-8{
      width: 66.6666666666%;
  }
  .xcol-9{
      width: 75%;
  }
  .xcol-10{
      width: 83.3333333333%;
  }
  .xcol-11{
      width: 91.6666666666%;
  }
  .xcol-12{
      width: 100%;
  }


  header{
      display: none;
  }
  .onlyMob {
      background:#000;
      width: 100%;
      position: fixed;
      left: 0;
      top: 0;
      z-index: 999;
      display: block;
  }
  .onlyMob .navMob{
      display: flex;
      justify-content: space-between;
      padding:10px;
  }
  .onlyMob .navMob div:nth-child(1){
      gap: 5px;
      display: grid;
      align-items: center;
      align-content: center;
  }
  .onlyMob .navMob div:nth-child(1) span{
      width: 25px;
      height: 3px;
      background: var(--color-dark-30);
      display: block;
  }
  .onlyMob .navMob div:nth-child(1) span:nth-child(2){
      margin-left: 5px;
  }
  .onlyMob .navMob div:nth-child(2) img{
      width:100px;
  }
  .onlyMob .navMob div:nth-child(2){
      color: #fff;
      font-size: 24px;
      font-weight: 600;
  }
  .onlyMob>ul{
      display: none;
      height: 100vh;
  }
  .onlyMob>ul li>a{
      color: #fff;
      text-decoration: none;
      display: flex;
      padding: 5px 20px;
      justify-content: space-between;
  }
  .onlyMob>ul li>a span:nth-child(2){
      display: none;
  }
  .onlyMob>ul li.active>a span:nth-child(2){
      display: block;
  }
  .onlyMob>ul li.active>a span:nth-child(1){
      display: none;
  }

  .onlyMob>ul li>ul li a{
      padding: 3px 30px;
      color: var(--color-dark-30);
      font-size: 14px;
  }
  .mobSubmenu {
      padding-bottom: 10px;
      display: none;
  }

  /* slider */
  .slider {
    height: 200px;
    margin-top: 56px;
  }
  .slide__inner {
    height: 200px;
    margin-top: -100px;
  }
  .slide__content {
      top: 40%;
      max-width: 90%;
  }
  .slide__heading {
    font-size: 18px;
  }
  .slide__text {
    font-size: 14px;
  }
  .slide .slide__inner>div{
    top:40%;
  }
  .slider__control {
      width: 30px;
      height: 30px;
      margin-left: 8px;
      margin-top: -20px;
      top: 75%
  }
  .slider__control--right{
      left:16%;
  }
  .slider__control-line {
    left:9px;
    height: 10px;
  }
  .slider__control--right .slider__control-line {
    left: 18px;
  }
  .slide .slide__inner>div {
      width: 90%;
  }
  .wid50{
      width: 100%;
  }
  .imagestransform{
      display: none;
  }

  /* slider end */

  .content_block{
    margin-top: 40px;
  }
  .content_block h2 {
    margin-bottom: 10px;

  }

  .col-6.feature-card{
    width:100%;
  }
  .feature-Flex {
    row-gap: 40px;
  }
  .feature-card{
    border: 1px solid var(--color-dark-70);
    padding: 20px 15px;
    border-radius: 15px;
    position: relative;
  }
  .card-Count span{
    font-size: 30px;
    width: 50px;
    height: 50px;
  }
  .card-Count span::before{
    width: 50px;
    height: 50px;
  }
  .card-Count {
    top: -25px;
    right: 0px;
  }

  .game_pro-imgCol {
    height: 100%;
    min-height: 180px;
  }
  .game_pro-imgCol .game_pro-imgContent{
    flex-wrap: wrap;
    gap: 2px;
  }
  .game_proText>div{
    line-height: 20px;
    font-size: 20px;
  }
  .game_pro-imgCol .game_pro-imgContent {
    padding: 15px;
  }
  .game_proText p{
    display: none;
  }
  .game_pro-imgCol .custom-btn{
    opacity: 1;
    bottom: 32px;
  }
  .game_pro-imgCol .custom-btn.btn-12 {
    margin-left: 12px;
  }

  .backImage {
    width: 100%;
    padding: 40px 0%;
  }


  .faqFlex {
      flex-direction: column-reverse;
  }
  .faqFlex_wrap {
      width: 100%;
  }
  .faqSecDiv {
      padding: 15px 15px;
  }


  .latestNews{
    margin-top: 20px;
    margin-bottom: 30px;
  }
  .heading_foot-OPtion{
    margin-top: 10px;
    margin-bottom: 20px;
  }
.main_adv_item {
  padding: 15px;
  gap: 10px;
}
.main_adv_item-cont h4{
  font-size: 20px;
  padding: 0;
}
.main_adv_item i{
  font-size: 20px;
}

.contact_page-flex{
  flex-direction: column-reverse;
  margin-top: 70px!important;
}
.formRight{
  padding-left: 10px;
}
  .advantages .col-4{
    width: 100%;
  }

  .game_features .columnStick ,.game_features .feature_sec{
    overflow: hidden;
    position: unset;
    top: 150px;
  }
  .feature_sec{
    padding: 10px;
  }
  .feature_sec-img{
    margin-bottom: 20px;
  }
  .feature_sec-img img{
    height: 250px;
    object-fit: cover;
    width: 100%;
  }
  .cont {
      position: relative;
      overflow: hidden;
      height: 300px;
      padding-bottom: 0px;
      padding-top: 20px;
      margin-top: 40px;
  }
  .el__content{
    padding: 10px;
  }
  .el__index{
    display: none;
  }

  .el__close-btn{
    width: 35px;
    height: 35px;
  }
  .el__close-btn:before, .el__close-btn:after {
    height: 5px;
  }

.Provide_slider-wrapper{
  width: 100%;
  height: fit-content;
  margin: unset;
}
.progressBarContainer{
  display: none;
}
.gameProvideSlider{
  gap: 0;
  margin-top: 56px;
  margin-left: -10px;
  margin-right: -10px;
}

.headerflex .col-6:nth-child(2) span{
  width:40px;
  height: 40px;
  }

  .testimonial_Items{
    padding: 20px;
  }
 .f_letter{
    height: 60px;
    width: 60px;
    font-size: 30px;
 }
 .nm_profile span:nth-child(1) {
    font-size: 20px;
    line-height: 1.2;
}
.nm_profile span:nth-child(2) {
    font-size: 16px;
    color: var(--color-dark-30);
}


footer .lastfooter{
margin-top: 0;
}

.main_adv_item-flex{
  margin-top: 10px;
    padding-left: 0;
  }
.counterContent{
  flex-direction: column;
  width: 90%;
  margin: auto;
}
}
@media(max-width:520px){

  .smcol-1{
      width: 8.333333333333333%;
  }
  .smcol-2{
      width: 16.6666666667%;
  }
  .smcol-3{
      width: 25%;
    }
  .smcol-4{
      width: 33.3333333333%;
  }
  .smcol-5{
      width: 41.6666666667%;
  }
  .smcol-6{
      width: 50%;
  }
  .smcol-7{
      width: 58.3333333333%;
  }
  .smcol-8{
      width: 66.6666666666%;
  }
  .smcol-9{
      width: 75%;
  }
  .smcol-10{
      width: 83.3333333333%;
  }
  .smcol-11{
      width: 91.6666666666%;
  }
  .smcol-12{
      width: 100%;
  }

  .formRight{
    padding-left: 10px;
  }
  .imgSection{
    padding: 20px;
  }



  .backBg .colSection{
    padding: 30px 50px;
  }
  .backBg .colSection span:nth-child(1){
    font-size: 40px;
  }
  .backBg .colSection span{
    font-size: 16px;
  }
  

 .DisclaimerBann{
  flex-direction: column;
  gap: 0;
}
.DisclaimerBann img{
  max-width: 100px;
  width: 100%;
}

  .Provider_ryt-Section{
    padding-left: 10px;
  }





.flterSection{
  position: fixed;
  bottom: 0;
  width: 100%;
  left: 0;
  top: unset;
  padding: 20px 10px;
  background:linear-gradient(45deg, #002b0a, #00203a);
  z-index: 9;
  border-radius: 0;
}
.fltrHead{
  display: none;
}
.Quick_Jump-List{
  display: flex;
  padding-top: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  gap: 10px;
}
.Quick_Jump-List li{
  white-space: nowrap;
  width: auto;
  max-width: 100vw;
}
.Quick_Jump-List li a{
  background: var(--color-dark-70);
  display: block;
  padding: 10px 10px;
  color: var(--color-dark-0);
  border-radius: 6px;
  font-size: 14px;
}
.Quick_Jump-List li.active a{
  background: linear-gradient(0deg, rgba(0,172,238,1) 0%, rgba(2,126,251,1) 100%);
}
.content_block.mt-40{
  margin-top: 60px;
}

.journeySection_flex:nth-child(even){
  flex-direction: column-reverse;
}
.journeySection_flex{
  flex-direction: column-reverse;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 45px;
  gap: 20px;
}
.journeySection_colm{
  width: 100% ;

}
}