/* @import url('https://fonts.googleapis.com/css2?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'); */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100..900&display=swap');
*{
    padding: 0; margin: 0;
    box-sizing: border-box; text-transform: capitalize;
    transition: .4s linear;
    outline: none; border: none; text-decoration: none;
    text-transform: unset!important;
    font-family: 'Montserrat', sans-serif;

}

:root{
    --main-color: #FFB90E;
/*    --main-color: linear-gradient(45deg, rgb(88 101 242), #0753cd);*/
    --black-color: #1b1b1b;
    --dark-black-color: #010F1C;
    --white-color: #fff;
    --gray-color: #737887;
    --light-gray: #e5e5e5;
    --box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
}


html{
    font-size: 65.5%;
    scroll-behavior: smooth;
    transition: .10s all;

}

body{
    overflow-x: hidden;
    background: black;
}

a{
    text-decoration: none!important;
}

ol, ul{
    padding-left: 0;
}

::-webkit-scrollbar{
    width: .6rem;
}

::-webkit-scrollbar-track{
    background: var(--white-color);
}

::-webkit-scrollbar-thumb{
    background: #F4F5F6;
}

/*Start header*/
nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 5%;
      background: linear-gradient(180deg, rgb(0, 0, 0), rgb(0, 0, 0)  -50%, rgba(0, 0, 0, 0) 170.00000000000003%);
      background: #000000;
      position: relative;
      z-index: 10; z-index: 1000;
      position: fixed; top: 0; left: 0; width: 100%;
    }

    .logo {
      font-size: 30px;
      font-weight: bold;
    }

    .logo img{
        height: 4rem;
    }

    .logo span:nth-child(1),
    .logo span:nth-child(3) {
      color: #ccc;
    }

    .logo span:nth-child(2) {
      color: orange;
    }

    .menu-toggle {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: flex-end;
      width: 30px;
      cursor: pointer;
      gap: 6px;
    }

    .menu-toggle div {
      height: 3px;
      background: white;
      border-radius: 5px;
      transition: all 0.4s ease;
    }

    .bar1 { width: 100%; }
    .bar2 { width: 80%; }
    .bar3 { width: 60%; }

    .menu-toggle.active .bar1 {
      transform: rotate(45deg) translate(5px, 5px);
      width: 100%;
    }

    .menu-toggle.active .bar2 {
      opacity: 0;
    }

    .menu-toggle.active .bar3 {
      transform: rotate(-45deg) translate(5px, -5px);
      width: 100%;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 25px;
    }

    .nav-links a {
      color: rgb(230 236 255 / 70%);
      text-decoration: none;
      transition: color 0.3s ease;
      font-size: 16px;
    }

    .nav-links a:hover {
      color: white;
    }

    .nav-links .active {
      color: white;
      font-weight: 600;
    }

    .contact-btn {
      background: var(--main-color);
        color: black !important;
        padding: 16px 28px;
        border-radius: 10px;
        display: inline-flex;
        align-items: center;
        letter-spacing: .4px;
        justify-content: center;
        font-size: 1.6rem !important;
        font-weight: bold;
    }

    .contact-btn:hover {
      background-color: #fff;
    }

/*End header*/

/*Start home section*/
.carousel-item{
    /*display: flex!important;
    align-items: center;
    justify-content: center;*/
    padding: 4rem 5%;
    -webkit-animation: zoomin 20s ease-in infinite;
    animation: zoomin 20s ease-in infinite;
    transition: all .5s ease-in-out;
    overflow: hidden; 
    background-size: 100%; background-position: center;
    position: relative;
    display: flex; align-items: center;
}

.mask-shape-1{
    position: absolute;
    opacity: .2;
    height: 100%;
    z-index: 2;
    right: 0%; transform: translate(-50%, -50%);
    animation: service_hexagon_2 15s infinite linear;
}

@keyframes service_hexagon_2{
    0%{
        transform: rotateY(0deg);
    }

    100%{
        transform: rotateY(360deg);
    }
}


@keyframes zoomin {
  0% {
    background-size: 100%;
  }

  50% {
    background-size: 150%;
  }

  100% {
    background-size: 100%;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100px, 0, 0);
    transform: translate3d(100px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.carousel-control-prev{
    width: 60px;
    height: 60px;
    background: var(--main-color);
    top: 70%;
}

.carousel-control-next{
    width: 60px;
    height: 60px;
    background: var(--main-color);
    top: 70%;
}

.carousel-control-prev-icon{
    background: url(../img/left.svg);
    filter: invert(1);
}

.carousel-control-next-icon{
    background: url(../img/right.svg);
    filter: invert(1);
}

.carousel-control-next, .carousel-control-prev{
    opacity: 1!important;
}

/*End home section*/

.home-section-card{
    background: #fff;
    width: 100%; height: auto; background-size: cover;
    background-position: right;
    padding: 0 5%;
}

.home-section-card .row-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
    transform: translateY(-50px);
    width: 100%;
    z-index: 998;
    position: relative;
}

.home-card-box{
    background-color: #fff;
    width: 100%;
    padding: 2rem 3rem;
    text-align: center;
    margin: auto;
    display: flex;
    height: 200px;
    flex: 1 1 200px;
    box-shadow: 0 20px 40px rgb(34 42 65 / 10%)!important;
    transition: .6s transform;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.home-card-box:hover{
    background: url(../img/card-bg.jpg);
    height: 200px;
    padding: 2rem 3rem;
    width: 100%; height: auto; background-size: cover;
    background-position: center;
    transform: translateY(-20px);
}

.home-card-box:hover h4{
    color: #fff;
}

.home-card-box img{
    width: 70px;
}

.home-card-box h4{
    font-size: 1.8rem;
    color: #333;
    padding: 1rem 0;
    font-weight: 800;
}

.home-card-box:hover img{
    filter: brightness(30);
    transform: scale(1.2) translateY(-10px);
}

.home-text{
  max-width: 800px;
  position: relative;
  margin-top: 6rem;
}
.home-text h2{
  color: var(--white-color);
  font-size: 8rem;
  font-weight: 600;
  padding: 2.4rem 0;
  font-family: "Roboto Slab", serif;;
}
.home-text h2 span{
  color: transparent;
  -webkit-background-clip: text!important;
  -webkit-text-fill-color: transparent;
  background: var(--main-color);
  font-family: "Roboto Slab", serif;;
}
.home-text p{
  color: var(--white-color);
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: .3px;
}
.home-text h4 {
  display: inline-flex;
  align-items: center;
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: .3px;
  color: var(--black-color);
  background: var(--main-color);
  padding: 1rem 2.4rem;
  margin-top: 1rem; margin-bottom: 2.4rem;
  height: 58px;
  font-family: 'Montserrat', sans-serif;
  border-radius: 33px;
}
.read-more-btns{
  display: flex; align-items: center;
  gap: 2rem; margin-top: 1.4rem;
}
.read-more-btns a{
  display: inline-flex;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: .3px;
  color: var(--black-color);
  background: var(--main-color);
  padding: 1rem 2.8rem;
  height: 57px;
  font-family: 'Montserrat', sans-serif;
  border-radius: 6px;
}
















.home-box-main{
    display: grid;
    grid-row-gap: 2rem;
    grid-column-gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    margin-top: 3rem;
}

.home-box-inner{
    /*background: linear-gradient(148deg, rgba(1, 152, 255, 0.18) 0%, rgba(0, 0, 0, 0) 100%);*/
    padding: 1.5rem 3rem;
    backdrop-filter: blur(15px);
    margin: auto;
    min-height: 180px;
    background: var(--white-color);
    border-radius: 4px;
}

.home-box-inner img{
    width: 60px;
    margin: auto;
    display: block;
}

.home-box-inner h3{
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--black-color);
    padding: 1rem 0;
    line-height: 1.5;
}

.top-absolute{
    position: relative;
}

.top-absolute .top-absolute-line1{
    width: 50px; height: 2px;
    background-color: #723CCC;
    position: absolute;
    top: -8px;
    left: -8px;
}

.top-absolute .top-absolute-line2{
    width: 50px;
    height: 2px;
    background-color: #723CCC;
    transform: rotate(90deg);
    position: absolute;
    left: -34px;
    top: 16px;
}

/*End home section*/

/*Start slider section*/
.slider {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    overflow: hidden;
    background: #000;
    padding: 2rem 0;
}

.slider-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    animation: scrolling 20s linear infinite;
}

@keyframes scrolling {

    0% {
        transform: translateX(80%);
    }

    100% {
        transform: translateX(-20%);
    }
}

.slider-items img {
    width: 16%;
    margin: 20px;
}
/*End slider section*/

/*Start casino partner section*/
.casino-partner-section{
    padding: 4rem 5%;
    background: #282828;
/*    box-shadow: 0px 0px 20px 0px #000000 inset;*/
    background: url(../img/gaming-section-bg.jpg);
    background-size: cover; background-position: center;
    width: 100%;
}

.section-heading{
    font-size: 4rem;
    font-weight: 700;
    color: var(--white-color);
    padding: 1.4rem 0;
    margin: auto;
    text-align: center;
    margin-bottom: 1rem;
}

.casino-partner-section-img{
    margin-bottom: 1.4rem;
}

.casino-partner-section-img img{
    width: 100%;
    border-radius: 12px;
    border: 4px solid var(--main-color);
}
/*End casino partner section*/

/*Start admin sharing section*/
.admin-sharing-section{
    padding: 4rem 5%;
    background: #282828;
    background: url(../img/admin-sharing-bg.jpg);
    background-size: cover; background-position: center;
    width: 100%;
}

.admin-sharing-section .row{
    padding: 0 8%;
}

.admin-sharing-section .nav-pills{
    display: flex; align-items: center; justify-content: center;
    gap: 2rem; overflow-x: auto;
    flex-wrap: nowrap; padding-bottom: 1.5rem;
}

.nav-pills::-webkit-scrollbar {
  width: 8px; height: 4px;

}

.nav-pills::-webkit-scrollbar-track {
  background: rgb(19 25 45 / 70%);
  border-radius: 4px;
}

.nav-pills::-webkit-scrollbar-thumb {
  background-color: #1a2648;
  border-radius: 4px;
}

.nav-pills::-webkit-scrollbar-thumb:hover {
  background-color: #fff;
}

.admin-sharing-section .nav-pills .nav-link {
    font-weight: 500;
    letter-spacing: .4px;
    font-size: 1.8rem;
    color: rgb(230 236 255 / 70%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgb(19 25 45 / 70%);
    backdrop-filter: blur(16px);
    padding: 1.2rem 4rem;
    border-radius: 6px;
    border: 1px solid #192135;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
}

.nav-pills .nav-link.active, .nav-pills .show>.nav-link{
    background: var(--main-color);
    color: #000;
}

.admin-sharing-box {
    min-height: 135px;
    background: #0e1321;
    background: var(--main-color);
    display: flex;
    align-items: center;
    border-radius: 12px;
    gap: 2rem; border: 1px solid #192135;
    margin-bottom: 2rem;
}

.admin-sharing-box-img{
    width: 40%;
    min-height: 135px;
    background: #064347;
    display: flex;
    border-radius: 12px 0 0 12px;
    align-items: center;
    justify-content: center;
}

.admin-sharing-box-img img{
    width: 90%;
    max-width: 100%;
}

.admin-sharing-box-content h4{
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark-black-color);
    margin: 0;
}

.admin-sharing-box-content .admin-sharing-box-content-percent{
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.8rem;
    font-weight: 600;
    color: #000;
    padding: 1rem 0;
}

.admin-sharing-box-content a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    background: #000;
    color: #fff;
    padding: .6rem 2rem;
    border-radius: 8px;
    text-transform: uppercase!important;
    font-weight: 600;
}
/*End admin sharing section*/

/*Start form section*/
.btob-form-container {
    padding: 4rem 8%;
    background: linear-gradient(180deg, #0e1321 0%, #0e132100 100%);
    border-radius: 12px;
}

.btob-form-container-form-box h2{
    text-align: center;
    font-size: 2rem;
    color: var(--white-color);
    font-weight: 700;
    margin: 0;
    padding: 1rem 0;
}

    .btob-form-container-form-box, .info-box {
      background-color: #1c1a18;
      border-radius: 8px;
      padding: 2rem;
      margin: 1rem;
      box-shadow: 0 0 10px rgba(0,0,0,0.5);
    }

    .btob-form-container-form-box {
      border: 1px solid #fbb928;
      background: black;
    }

    .info-box {
    }

    .form-logo{
        margin: auto;
        display: block;
        height: 5rem;
        margin-bottom: 2rem;
    }

    .b-form-label {
        display: block;
        margin-bottom: .7rem;
        margin-top: .5rem;
        font-size: 1.4rem;
        font-weight: 400;
        color: #FFFFFF;
    }

    .b-form-Input, .b-form-select, .b-form-submit-btn {
        width: 100%;
        padding: 0 1.4rem;
        margin-bottom: 1rem;
        border-radius: 5px;
        border: none;
        height: 45px;
        font-size: 1.4rem;
    }
    .b-form-Input, .b-form-select {
      background-color: #fff;
      color: #000;
    }

    .b-form-submit-btn {
      background-color: #fbb928;
      font-weight: bold;
      color: #000;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .b-form-submit-btn:hover {
      background-color: #e0a800;
    }

    .info-box h3 {
        font-size: 1.5rem;
        margin: 0;
        font-size: 3rem;
        font-weight: 600;
        color: var(--white-color);
    }

    .info-box p {
        margin: 0;
        color: white;
        font-size: 1.6rem;
        line-height: 1.7;
        padding: 2rem 0;
    }

    .social-icons i {
        font-size: 1.4rem;
        margin-right: 15px;
        color: #e18404;
        background: white;
        padding: 10px;
        display: inline-flex;
        border-radius: 50%;
        transition: background 0.3s;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
}

    .social-icons i:hover {
      background: #e0a800;
      color: #fff;
    }

    .contact-details {
      margin-top: 1.5rem;
    }

    .contact-details i {
      margin-right: 10px;
      color: #fbb928;
    }

    .contact-details a{
        color: var(--white-color);
        font-size: 1.6rem;
        margin: 1rem 0;
        display: block;
    }

    .contact-details h4{
        font-size: 1.5rem;
        margin-bottom: 1rem;
        margin: 0;
        font-size: 3rem;
        font-weight: 600;
        color: var(--white-color);
        padding: 1.4rem 0;
    }

    .info-box{
        padding: 0!important;
        background: transparent!important;
        box-shadow: none!important;
    }
/*End form section*/

/*Start footer section*/
.footer-section {
  background-color: #0e1321;
  color: #fff;
  padding: 4rem 5%;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  border-bottom: 1px solid #333;
  padding-bottom: 20px;
}

.footer-logo {
  max-width: 120px;
  height: auto;
}

.footer-right {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.footer-link {
  color: #ccc;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
  font-size: 1.6rem;
}

.footer-link:hover {
  color: #ff9900;
}

.footer-warning {
  margin-top: 20px;
  background-color: #0d44dc1a;
  color: #fff;
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.5;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.footer-warning strong {
  color: #ffa500;
}

.footer-bottom {
  margin-top: 20px;
  font-size: 14px;
  text-align: center;
  color: #ffa500;
}
/*End footer section*/

/*B2B panel css start*/
.b-to-b-slider-section {
  padding: 4rem 5%;
  background-color: #0d44dc1a;
}

.b-to-b-bannerSlide .item {
  border: 4px solid #f5a623;
  border-radius: 10px;
  overflow: hidden;
  margin: 10px;
}

.b-to-b-bannerSlide .item img {
  width: 100%;
  display: block;
}

/*B2B panel css end*/

/*Start videp section*/
.video-section {
  background: url(../img/gaming-section-bg.jpg);
    background-size: cover; background-position: center;
    width: 100%;  padding: 4rem 5%;
}

.video-wrapper {
  position: relative;
  max-width: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}
/*End video section*/

/*Start b choose section*/
.b-choose-section{
    padding: 4rem 5%;
    background: #000;
}

.b-choose-section-box {
    background: #071320;
    padding: 3rem;
    border-radius: 12px;margin-bottom: 1.5rem;
    text-align: center;
    border: 1.4px solid rgb(22 66 206 / 25%);
}

.b-choose-section-box img{
    width: 70px;
}

.b-choose-section-box h4{
    font-size: 2rem;
    color: var(--white-color);
    margin: 0;
    font-weight: 600;
    margin: 1.4rem 0;
}

.b-choose-section-box p{
    color: rgb(230 236 255 / 70%);
    line-height: 1.7;
    font-size: 1.4rem;
    margin: 0;
}

.offcanvas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
    background: var(--main-color);
}

.offcanvas-header h5{
    margin: 0;
    color: black;
    font-size: 1.8rem;
    font-weight: 600;
}

.offcanvas-body{
    padding: 2rem;
    background: #000;
}

.service-list{
    list-style-type: none;
}

.service-list li a{
    letter-spacing: .3px;
    font-weight: 600;
    font-size: 2rem;
    color: var(--white-color);
}

.service-list li a:hover{
    color: var(--main-color);
}

.service-list li{
    padding: 1rem 0;
}

.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 0 51px #2aff00;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;

    &:hover{
        color: white;
    }
}

.my-float{
    margin-top:16px;
}
/*End b choose section*/

/*Start privacy section*/
.privacy-section {
  background-color: #0e1321;
  padding: 4rem 5%;
  color: #fff;
  margin-top: 8rem;
}

.privacy-section__title {
  font-size: 4rem;
  color: #ffa500;
  margin-bottom: 2rem;
  letter-spacing: .3px;
  font-weight: 700;
}

.privacy-section__description,
.privacy-section__text {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 2rem;
  letter-spacing: .3px;
  padding-bottom: 1rem;
}

.privacy-section__subtitle {
  font-size: 2.2rem;
  font-weight: 600;
  margin: 2.5rem 0 1rem;
  text-decoration: underline;
  letter-spacing: .3px;
}

.privacy-section__list {
  list-style: decimal inside;
  font-size: 1.6rem;
  line-height: 1.7;
  padding-left: 1rem;
  letter-spacing: .3px;
  margin-bottom: 2rem;
}

.privacy-section__list li {
  margin-bottom: 1rem;
}


/*End privacy sectio*/




/*Media quaries*/
@media screen and (max-width: 991px){
html{
    font-size: 55%;
}

.menu-toggle {
  display: flex;
}

.nav-links {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #111;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.5s ease;
  padding: 0 30px;
  pointer-events: none;
}

.nav-links.open {
  max-height: 500px;
  opacity: 1;
  padding: 20px 30px;
  pointer-events: auto;
}

.nav-links a,
.contact-btn {
  padding: 10px 0;
}

.contact-btn{
  padding: 10px 17px!important;
}


}

@media screen and (max-width: 991px){ 

}

@media screen and (max-width: 768px){

      .admin-sharing-section .row{
            padding: 0;
        }

      .btob-form-container {
        flex-direction: column;
        align-items: center;
      }

      .admin-sharing-box-content h4{
        overflow:hidden;
          text-overflow:ellipsis;
          overflow:hidden;
          white-space:nowrap;
          width: 188px;
        }

        .home-text h2{
            font-size: 6rem;
        }

        .carousel-item{
            animation-play-state: paused;
            background-size: cover!important;
        }

        .read-more-btns a{
            height: 45px;
        }

        .home-text{ text-align:center;  margin: auto;}

        .read-more-btns{
            justify-content: center;
        }

        .read-more-btns a{
            height: 45px;
            font-size: 1.8rem;
        }

        .home-text h4{
            font-size: 2rem;
            height: 45px;
        }

        .footer-container {
            flex-direction: column;
            align-items: flex-start;
          }

          .footer-right {
            justify-content: flex-start;
            flex-direction: column;
            gap: 10px;
          }

          .footer-link {
            font-size: 14px;
          }

          .privacy-section {
            padding: 3rem 3%;
          }

          .privacy-section__title {
            font-size: 2rem;
          }

          .privacy-section__subtitle {
            font-size: 1.6rem;
          }

          .privacy-section__description,
          .privacy-section__text,
          .privacy-section__list {
            font-size: 1.3rem;
          }
}


@media screen and (max-width: 650px){ 
    
}

@media screen and (max-width: 450px){
html{
    font-size: 50%;
}

.privacy-section__title {
    font-size: 1.8rem;
  }

  .privacy-section__subtitle {
    font-size: 1.5rem;
  }

  .privacy-section__description,
  .privacy-section__text,
  .privacy-section__list {
    font-size: 1.2rem;
  }

}
