@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-family: "Josefin Sans", serif;
}

.container {
    max-width: 1320px;
    margin: auto;
}

.col-1 {    width: 8.33%;}
.col-2 {    width: 16.66%;}
.col-3 {    width: 25%;}
.col-4 {    width: 33.33%;}
.col-5 {    width: 41.66%;}
.col-6 {    width: 50%;}
.col-7 {    width: 58.33%;}
.col-8 {    width: 66.66%;}
.col-9 {    width: 75%;}
.col-10 {   width: 83.33%;}
.col-11 {   width: 91.66%;}
.col-12 {   width: 100%;}

*[class*="col-"]{
    padding: 0 15px;
}

.text-center{
    text-align: center !important;
}
.flex {
    display: flex;
    flex-wrap: wrap;
}

.justify-space-bet {
    justify-content: space-between;
}
.justify-center{
    justify-content: center;
}

.align-center{
    align-items: center;
}

.navbar {
    position: fixed;
    top: 0;
    background-color: #36092c;
    width: 100%;
    padding: 10px 0;
    z-index: 10;
}

nav ul {
    display: flex;
    padding-top: 20px;
    gap: 25px;
}

nav ul li a {
    color: white;
    font-size: 15px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #007bff;
}

.menu i {
    display: none;
    font-size: 20px;
    color: white;
}

.menu button {
    padding: 10px 25px;
    margin-top: -20px;
    font-size: 15px;
    background: linear-gradient(0deg, #ff9c19 40%, #ffdd2d 110%);
    box-shadow: -3.828px -3.828px 6px 0px rgba(255, 200, 39, 0.4), 3px 5px 8px 0px rgba(255, 82, 1, 0.2);
    position: relative;
    overflow: hidden;
    border: none;
    border-radius: 10px;
    color: #1f1f23;
    display: none;
}

.online {
    background: url(../images/bg\ \(1\).png) center;
    width: 100%;
    height: 100%;
    position: relative;
}

.online::before {
    content: "";
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #2e0327;
    opacity: 0.8;
    object-fit: cover;
    z-index: 1;
}

.pt-100 {
    padding-top: 100px;
}

.online-content h1 {
    font-size: 66px;
    padding-top: 80px;
    line-height: 1.5;
    color: white;
}

.online-content h1 span {
    color: #ffc827;
}

.online-content p {
    padding: 20px 0 35px;
    font-size: 22px;
    font-family: "Open Sans", sans-serif;
    color: #ffffffcc;
}

.online-content button {
    padding: 13px 35px;
    margin: 5px 10px;
    font-size: 24px;
    background: linear-gradient(0deg, #ff9c19 40%, #ffdd2d 110%);
    box-shadow: -3.828px -3.828px 6px 0px rgba(255, 200, 39, 0.4), 3px 5px 8px 0px rgba(255, 82, 1, 0.2);
    border: none;
    border-radius: 10px;
    margin-bottom: 100px;
    transition: all 0.3s linear;
}

.online-content button i {
    padding-right: 10px;
}

.online-content button:hover {
    box-shadow: -3.828px -3.828px 24px 0px rgba(255, 200, 39, 0.4), 3px 5px 8px 0px rgba(255, 82, 1, 0.2);
    background: linear-gradient(0deg, #ff9c19 40%, #ffdd2d 110%);
    cursor: pointer;
}

.z-1 {
    z-index: 1;
}

.game-section{
    position: relative;
    padding: 130px 0;
    overflow: hidden !important;
}

.game-section::after{
    content: "";
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #350b2d;
    opacity: 0.98;
    object-fit: cover;
    z-index: -1;
}

.game-section-1{
    align-items: center;
}
.about-game-img img{
    position: relative;
    z-index: 1;
}

.shapes img{
    top: 30px;
    opacity: .1;
    left: 50px;
    max-width: 300px;
    /* overflow: clip;
    vertical-align: middle; */
    transition: all ease .3s;
    position: absolute;
}
.about-game-content h2{
    color: white;
    font-size: 50px;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    z-index: 11;
}
.about-game-content p{
    font-size: 20px;
    color: white;
    font-family: "Open Sans",serif;
    margin-bottom: 50px;
}
.about-game-content button{
    padding: 12px 35px;
    font-size: 19px;
    color: #1f1f23;
    background: linear-gradient(0deg, #ff9c19 40%, #ffdd2d 110%);
    box-shadow: -3.828px -3.828px 6px 0px rgba(255, 200, 39, 0.4), 3px 5px 8px 0px rgba(255, 82, 1, 0.2);
    border: none;
    border-radius: 10px;
    transition: all 0.3s linear;
}
.about-game-content button:hover {
    box-shadow: -3.828px -3.828px 24px 0px rgba(255, 200, 39, 0.4), 3px 5px 8px 0px rgba(255, 82, 1, 0.2);
    background: linear-gradient(0deg, #ff9c19 40%, #ffdd2d 110%);
    cursor: pointer;
}
/* section 3 */
.top-games{
    background-image: url(../images/bg3\ \(2\).jpg);
    background-position: center center;
    object-fit: cover;
    position: relative;
}
.top-games::before ,.roulette::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #2e0327;
    opacity: 0.9;
}
.container{
    position: relative;
}
.games{
    padding-top: 50px;
    padding-bottom: 75px;
    text-align: center;
}
.games h2{
    color: white;
    font-family: "Josefin Sans",sans-serif;
    font-size: 50px;
    font-weight: 700;
}
.games p{
    color: #ffffffcc;
    font-size: 19px;
    /* padding: 0 410px; */
}
.game-vasu{
    padding-bottom: 100px;
}
.roulette{
    background-image: url(../images/shape\ \(2\).png);
    text-align: center;
    padding: 35px 40px;
    border-radius: 10px;
    position: relative;
    transition: all ease .3s;
    overflow: hidden;
    z-index: 1;
    box-shadow: -3.828px -3.828px 6px 0px rgba(255, 200, 39, 0.4), 3px 5px 8px 0px rgba(255, 82, 1, 0.2);
    margin-top: 10px;
}
.games-img{
    width: 100%;
    height: 140px;
    margin: 0 auto 25px;
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 7px;
    background: #2e0327;
    padding: 10px;
    z-index: 10;
    position: relative;
}
.games-img img{
    height: 100%;
    width: 100%;
    object-fit: contain;
    z-index: 10;
}
.games-content{
    position: relative;
    z-index: 10;
}
.games-content h3{
    font-family: "Josefin Sans",sans-serif;
    font-size: 24px;
    color: white;
    padding: 10px 0;
}
.games-content h4{
    font-family: "Open Sans",sans-serif;
    font-size: 18px;
    color: #ffffffcc;
    text-transform: uppercase;
    padding: 10px 0;
}
.games-content p{
    color: #FFC827;
    padding: 10px 0;
}
.games-content button{
    padding: 10px 25px;
    font-family: "Josefin Sans",sans-serif;
    font-size: 15px;
    margin-top: 10px;
    border: none;
    background: linear-gradient(0deg, #ff9c19 40%, #ffdd2d 110%);
    box-shadow: -3.828px -3.828px 6px 0px rgba(255, 200, 39, 0.4), 3px 5px 8px 0px rgba(255, 82, 1, 0.2);
    transition: all 0.2s linear;
}
.games-content button:hover{
    box-shadow: 11px 11px 32px rgba(255, 82, 1, 0.2), -11px -11px 32px rgba(255, 200, 39, 0.4);
}
.ball{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0px;
    bottom: 0px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    transform: rotate(45deg);
    -webkit-transition: all ease .3s;
    -moz-transition: all ease .3s;
    transition: all ease .3s;
    box-shadow: -3.828px -3.828px 6px 0px rgba(255, 200, 39, 0.4), 3px 5px 8px 0px rgba(255, 82, 1, 0.2);
}

.ball:hover{
    transform: scale(1.5);
    position: absolute;
}
/* section 4 */
.why{
    position: relative;
    padding: 130px 0;
    overflow: hidden !important;
}

.why::after{
    content: "";
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #350b2d;
    opacity: 0.98;
    object-fit: cover;
    z-index: -1;
}
.shape img{
    top: 30px;
    opacity: .095;
    left: 50px;
    max-width: 900px;
    /* overflow: clip;
    vertical-align: middle; */
    transition: all ease .3s;
    position: absolute;
}
.why-content h2{
    color: white;
    font-family: "Josefin Sans",sans-serif;
    font-size: 52px;
    line-height: 1.5;
    margin-bottom: 30px;
}
.why-content p{
    font-family: "Open Sans",serif;
    font-size: 19px;
    color: #ffffffcc;
    margin-bottom: 15px;
}
.why-item_thumb{
   background: linear-gradient(0deg, #ff9c19 40%, #ffdd2d 110%);
   box-shadow: -4.828px -4.828px 12px 0px rgba(255, 200, 39, 0.4), 3px 5px 15px 0px rgba(255, 82, 1, 0.2);
   align-items: center;
   justify-content: center;
   display: flex;
   color: #1f1f23;
   border: 6px solid #350b2d;
   font-size: 34px;
   width: 65px;
   height: 65px;
   border-radius: 50%;
   margin-bottom: 20px;
   margin: 20px 0;
}
.las{
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}
.why-item_content h4{
    font-family: "Josefin Sans",sans-serif;
    font-size: 26px;
    color: white;
    margin-bottom: 7px;
}
.why-item_content p{
    font-family: "Open Sans",serif;
    font-size: 18px;
    color: #ffffffcc;
    margin-bottom: 30pxs;
}
.how-section{
    background-image: url(../images/bg2.jpg);
    padding: 10rem 0;
    position: relative;
}
.how-section::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #2e0327;
    opacity: .9;
}
.section-header_title{
    color: white;
    text-align: center;   
    font-family: "Joasefin Sans",sans-serif;
    font-size: 50px; 
    margin-bottom: 20px;
}
.section-header p{
    color: #ffffffcc;
    font-size: 19px;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 70px;
}
.how-item{
    text-align: center;
    padding: 0 25px;
    position: relative;
}
.how-item::before{
    position: absolute;
    content: '';
    width: 100%;
    height: 0;
    border: 1px dashed rgba(255, 200, 39, 0.7);
    top: 60px;
    box-sizing: border-box;
}
.how-item__thumb{
    box-shadow: -4.828px -4.828px 12px 0px rgba(255, 200, 39, 0.4), 3px 5px 15px 0px rgba(255, 82, 1, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background: #350b2d;
    border-radius: 50%;
    font-size: 46px;
    margin: 0 auto 30px;
    position: relative; 
    transition: all 0.3S linear;
}
.how-item__thumb:hover{
    background: linear-gradient(0deg, #ff9c19 40%, #ffdd2d 110%);
    cursor: pointer;
}
.how-item__thumb:hover i{
    color: black;
}
.las{
    /* font-family: 'Line Awesome Free'; */
    font-weight: 900;
    /* -webkit-font-smoothing: antialiased; */
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    color: white;
}

.laS::before{
    content: "";
    box-sizing: border-box;
}

.badge{
    background: linear-gradient(0deg, #ff9c19 40%, #ffdd2d 110%);
    Position: absolute;
    right: -10px;
    top: 10px;
    width: 30px;
    height: 30px;
    color: #1f1f23 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 7px;
    line-height: 0.75;
    font-size: 14px;
    font-weight: 500;
}
.how-item_content h4{
    font-family: "Josefin Sans",sans-serif;
    font-size: 24px;
    color: white;
    text-align: center;
}
.section-5{
    position: relative;
    padding: 130px 0;
    overflow: hidden !important;
    display: block;
    unicode-bidi: isolate;
}

.game-vasu-1{
    justify-content: center !important;
    margin: 0 1.5rem;
}

.game-vasu-content{
    margin-bottom: 55px;
    text-align: center !important;
}

.game-vasu-content h2{
    display: inline-block;
    color: #fff;
    margin-bottom: 15px;
    position: relative;
    font-size: 50px;
    margin-top: -8px;
}

.game-vasu-content p{
    margin-bottom: 15px;
    font-size: 19px;
    color: #ffffffcc;
    margin: 0;
    padding: 0;
}

.shapes-vasu img{
    position: absolute;
    right: 0px;
    top: 50px;
    max-width: 500px;
    z-index: 10;
    opacity: .15;
}

.section-5::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #350b2d;
}
.faq-boxs details {
    color: white;
    background-color: #2e0327;
    padding: 20px;
    font-size: 20px;
    border: solid  #41162a;
}
.faq-boxs details summary i{
    margin-left: 200px;
}
.faq-boxs details p{
    margin: 10px 0 ;
    color: #ffffffcc;
}
.section-7{
    position: relative;
    padding: 130px 0;
    overflow: hidden !important;
    display: block;
    unicode-bidi: isolate;
}
.section-7::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #350b2d;
}
.tit{
    font-size: 56px;
    color: white;
    line-height: 1.5;
}
.section-header p{
    font-size: 20px;
    font-family: "Open Sans",serif;    
}
.shapes-1 img{
    position: absolute;
    left: -10px;
    top: 0px;
    z-index: 0;
    opacity: .1;
}

.testimonial-slider{
    margin-bottom: 30px;
    position: relative;
    display: block;
}

.slick-list{
    padding: 15px 0 !important;
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
}

.slick-list::before{
    content: "";
    display: table;
}

.single-slide{
    width: 348px;
    margin: 0 12px;
    display: block;
    height: 100%;
    min-width: 1px;
}

.single-box{
    position: relative;
    box-shadow: -3.828px -3.828px 6px 0px rgba(255, 200, 39, 0.4), 3px 5px 8px 0px rgba(255, 82, 1, 0.2);
    text-align: center;
    padding: 30px;
    position: relative;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

.single-box::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #2e0327;
    opacity: .95;
}
.single-box img{
   position: relative;
   padding: 10px 0;
}
.single-box p{
    position: relative;
    z-index: 11;
    font-size: 16px;
    font-family: "Open Sans",sans-serif;
    color: #ffffffcc;
    padding-bottom: 15px;
}
.profile-img{
    position: relative;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background-color: #ffc827;
    overflow: hidden;
}
.profile-name{
    position: relative;
}
.profile-name h3{
    padding: 10px 15px;
    color: white;
}
.profile-name p{
    color: #ffc827;
    font-family: "Open Sans",serif;
    font-size: 13px;

}

.section-6{
    position: relative;
    background-image: url(../images/download.png);
    padding: 130px 0;
    background-size: cover;
    background-repeat: no-repeat;

}

.section-6::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #2e0327;
    opacity: .9;
}

.latest h3{
    font-size: 20px;
    text-align: center;
    margin-bottom: 1.5rem !important;
    margin-top: -5px;
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
    color: #ffffffe5;
}

.investor{
   width: 139px;     
}
.investor-item_thumb{
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    border-radius: 50%;
    position: relative;
    box-shadow: -4.828px -4.828px 12px 0px rgba(255, 200, 39, 0.4), 3px 5px 15px 0px rgba(255, 82, 1, 0.2);
}
.investor-item_thumb img{
    border-radius: 50%;
    width: 80px;
    height: 80px;
    background: #ffc827;
}
.investor-item_thumb .amount{
    position: absolute;
    padding: 0 10px;
    border-radius: 20px;
    font-size: 13px;
    top: calc(100% - 15px);
    left: 50%;
    transform: translateX(-50%);
    color: #1f1f23;
    font-weight: 600;
    box-shadow: -4.828px -4.828px 12px 0px rgba(255, 200, 39, 0.4), 3px 5px 15px 0px rgba(255, 82, 1, 0.2);
    background: linear-gradient(0deg, #ff9c19 40%, #ffdd2d 110%);
}

.cla-wrapper{
    max-width: 250px;
    margin: 0 auto;
    position: relative;
}

.title-win{
    font-size: 28px;
    margin-bottom: 24px !important;
    margin-top: -5px;
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
    color: #fff
}

.thumb-win-img{
    margin-top: 25px;
}

.thumb-win-img::before{
    position: absolute;
    content: '';
    box-shadow: 0 0 50px 50px rgba(255, 200, 39, 0.7);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    /* transform: translate(-50%, -50%); */
    transform: translateY(50px);
}

.thumb-win-img img{
    width: 100%;
    vertical-align: middle;
}

.footer-section{
    position: relative;
    padding: 40px 0 35px;
    background: url(../images/bg.jpg) center;
}

.footer-section::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #2e0327;
    opacity: .9;
}
.footer-link li{
    color: #fff;
    padding-right: 15px;
    font-family: "Open Sans",serif;
    font-size: 16px;
}
.copy-write{
    color: white;
}
.footer-wrapper p{
    font-family: "Open Sans",serif;
    font-size: 16px;
}
.footer-bottom .viser{
    color: #FFC827 !important;
    padding-left: 10px;
}
.footer-section .shape3{
    max-width: 150px;
}