/*@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');*/

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
    /*list-style: none;*/
    /*list-style: numeric;*/
    list-style: disc;
    text-decoration: none;
}


:root {
    --white: #ffffff;
    --btn_bg:#1769FF70;
    --btn_hover:#25388f;
    --bg_color:#030515;
  }


/* preloader */
#preloader {
    position: relative;
    width: 100%;
    height: 100vh;
    z-index: 99999;
    background-color: #35082B;
  }
  .wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .loader {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 16px solid purple;
    border-top: 16px solid blue;
    border-right: 16px solid #0051ff;
    border-bottom: 16px solid #F74444;
    animation: spin 2s linear infinite;
  }

  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  .preloader.hidden {
    display: none;
  }

  .custom_main_screens{
    display: flex;
    /*justify-content: space-around;*/
    flex-wrap: wrap;
    align-items: center;
  }



/* preloader */

h1,h2,h3,h4,h5,h6,p,span{
    margin: 0;
    padding: 0;
}
h2{
    font-size: 24px;
}
h3{
    font-size: 22px;
}
a{
    text-decoration: none;
    list-style: none;
}
ol{
    list-style: decimal;
}

ol li{
    list-style: decimal;
}
  
.manubar{
    background-color: #361039;
    position: absolute;
    width: 100%;
    padding: 15px 0;
    top: 0;
    left: 0;
    transition:top 1s ease-in-out;
    z-index: 999;

}

.banner_area .manubarbg{
    background-color: #3E0F36  !important;
    z-index: 9999;
}


.header_logo_mn{
    max-width: 200px;
    width: 130px;
}

.top_section_bgs{
    background-size: cover;
}

.navbar-expand-xl .navbar-nav{
    list-style: none!important;
}
.navbar-expand-xl .navbar-nav li{
    list-style: none!important;
}

/*.section_bgs_overlay{
  background: #CCC;
  filter: alpha(opacity=60);
  -moz-opacity: 0.6;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.section_bgs_txt_cont{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}*/



.logo_icon .navbar-brand{
    display: flex;
    align-items: center;
}

.logo_text{
    font-size: 20px;
    line-height: 37.2px;
    font-weight: bold;
    color: var(--white);
    padding-left: 8px;
}

.navbar-nav .nav-item .nav-link{
        font-size: 14px;
        line-height: 16.8px;
        font-weight: 700;
        color: var(--white);
}

.signin_btn{
    padding: 10px 16px;
    font-weight: 700;
    color: var(--white);
    border-color: #ff6e04;
    /*transition: all 0.5s ease-in-out;*/
}
.signup_btn{
    background: linear-gradient(180deg, #ffc876 -1.75%, #ff6e04 100.23%);
    color: #350b2d;
    padding: 10px 16px;
    font-weight: 700;
    transition: all 0.4s ease-in-out;
}
.signin_btn:hover{
    background: linear-gradient(180deg, #ff6e04 -1.75%, #ffc876 100.23%);
    transition: all 0.5s ease-in-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
.signup_btn:hover{
    background: linear-gradient(180deg, #ff6e04 -1.75%, #ffc876 100.23%);
    transition: all 0.5s ease-in-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.signup_btn__head{
    transition: 0.3sease-in-out;
    -webkit-animation: pulse 2s infinite;
    animation: pulse 2s infinite;
}

@-webkit-keyframes pulse {
  0% {
    transform: scale(0.90);
    box-shadow: 0 0 0 0 var(--button-bg-color);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 4px 24px 0 var(--button-bg-hover);
  }
  100% {
    transform: scale(0.90);
    box-shadow: 0 0 0 0 transparent;
  }
}

@keyframes pulse {
  0% {
    transform: scale(0.90);
    box-shadow: 0 0 0 0 var(--button-bg-color);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 4px 24px 0 var(--button-bg-hover);
  }
  100% {
    transform: scale(0.90);
    box-shadow: 0 0 0 0 transparent;
  }
}

@media screen and (max-width: 1199px) {

    .navbar-nav{
        padding: 20px 0;
    }


}

.banner_area{
    background-color: #2A0622;
    padding-top: 90px;
    position: relative;
    z-index: 9;
}
 .right_img img{
    position:absolute;
    right: 76px;
    bottom: 43px;
    max-width: 48%;
    z-index: 99;
    animation: left_animation 4s infinite alternate;
}
@keyframes left_animation {
    0%   {transform: translateX(-40px);}
    100% {transform: translateX(0px);}
}



  
.left_img img{
    position:absolute;
    left: 0;
    top: 150px;
    z-index: 99;
    animation: left_animaiton_img;
    animation-duration: 5s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    max-width: 9%;

}
@keyframes left_animaiton_img {
    0%   {transform: translateX(40px);}
    100% {transform: translateX(0px);}
  }

  @media screen and (max-width: 568px) {

    .left_img img {
        display: none;
    }


}
.left_contain{
    padding-top: 180px;
    padding-bottom: 165px;
    position: relative;
    z-index: 999;
}

@media screen and (max-width: 1199px) {

    .left_contain {
        padding-top: 100px;
        padding-bottom: 100px;
        position: relative;
        z-index: 999;
    }


}

.left_contain h4,h1,p{
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 1.5);
}
.left_contain h4{

    font-size: 25px;
    line-height: 30px;
    padding-bottom: 20px;
    font-weight: bold;

}
.left_contain h1{
    font-size: 64px;
    line-height: 86.8px;
    padding-bottom: 20px;
    font-weight: bold;
}
.left_contain p{
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
    margin-bottom: 50px;
}
.left_contain .banner_btn{
    font-size: 18px;
    line-height: 19.2px;
    font-weight: 700;
    padding: 14px 30px;
    margin-top: 36px;
    border-radius: 8px;
    background: linear-gradient(180deg, #ffc876 -1.75%, #ff6e04 100.23%);
    color: #350B2D;
    border-style: none !important;
    text-decoration: none;
    transition: all 0.5s ease-in-out;
    z-index: 99;

   
}
.left_contain .banner_btn:hover{
    background: linear-gradient(180deg, #ff6e04 -1.75%, #ffc876 100.23%);
    transition: all 0.5s ease-in-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    border: var(--btn_bg) solid 1px;
   
}
.left_contain .banner_btn:active,
.left_contain .banner_btn:focus,
.left_contain .banner_btn:focus-visible {
    border-style: none !important;
}
.right_contain{
    position: relative;
    z-index: 55;
}

.winner_contain_area{
    padding-left: 24px;
    padding-right: 24px;
    background-color: #280C2B;
    color: var(--white);
   
}
.swiper {
    padding-left: 15px !important;
    padding-right: 15px !important;
}
.topwinner_header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-bottom: 32px;

}

.topwinner_header h2{
    font-weight: bold;
}

.topwinner_header .overlay_btn_effect{
    position: relative;
}


.topwinner_header a.banner_btn {
    font-size: 18px;
    line-height: 19.2px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 8px;
    background: linear-gradient(180deg, #ffc876 -1.75%, #ff6e04 100.23%);
    color: #350b2d;
    border-style: none !important;
    text-decoration: none;
    transition: all 0.0s ease-in-out;

}

.topwinner_header a.banner_btn:hover {
    background: linear-gradient(180deg, #ff6e04 -1.75%, #ffc876 100.23%);
    transition: all 0.5s ease-in-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.box_contain {
    display: flex;
    gap: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 16px;
    margin-bottom: 24px;
    background-color: #1769FF50;
}
.box_contain img{
    border-radius: 16px;
}
.winner_name{
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 8px;
}
.right_text_area p{
    font-size: 16px;
    line-height: 22px;
    color: #1D2766;
    text-shadow: none;
    margin-bottom: 8px;
    color: var(--white);
}
.right_text_area h5{
    font-size: 20px;
    line-height: 24px;
    font-weight: bold;
}

.favourate_player_first{
    background-color: #35082B;
    color: var(--white);
}
.favourate_player{
    background-color: #35082B;
    color: var(--white);
}
.favourate_player .player_heading h2{
    font-weight: bold;
}
.favourate_player .contain_area .inner_contain{
    position: relative;
    overflow: hidden;
    margin-bottom: 24px;
}
.favourate_player .contain_area .inner_contain img{
    width: 100%;
    border-radius: 8px;
}
.favourate_player .contain_area .inner_contain:hover .hover_effect{
/*    position: relative;
    top: -100px;*/

    position: absolute;
    top: 50%;
    left: 50%;
    /*transform: translate(-50%, -50%);*/
    transition: all .6s ease-in-out;
    border-radius: 8px;

}
.favourate_player .contain_area .inner_contain:hover .overlay{
    height: 100%;
    transition: all .6s ease-in-out;
    border-radius: 8px;

}
.favourate_player .contain_area .inner_contain .hover_effect{
    position: relative;
    top: 70px;
    /*transition: all .6s ease-in-out;*/

}
.favourate_player .contain_area .inner_contain .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background-color: #000000;
    opacity: 70%;
    transition: all .6s ease-in-out;

}
.favourate_player .contain_area .hover_contain{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99;


}
.favourate_player .contain_area .hover_contain .inner_box{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

}
.favourate_player .contain_area .hover_contain img{
    position: relative;
    left: 50%;
    transform: translate(-50%);
    margin-bottom: 14px;
    cursor: pointer;


}

.favourate_player .contain_area .hover_contain a{
    background: linear-gradient(180deg, #ffc876 -1.75%, #ff6e04 100.23%);
    font-size: 18px;
    line-height: 23.4px;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 8px;
    color: #350b2d;
    text-decoration: none;
    list-style: none;
}

.promotion_section {
    background-color: #35082B;
    color: var(--white);
    padding-top: 60px;
    padding-bottom: 60px;
}
.promotion_section .promotion_contain h2{
    font-weight: bold;
}
.promotion_section .promotion_contain .slider_card_main{
    background-color: #1f071b;
    border-radius: 8px;
    border: 1px solid #35082B;
    position: relative;
    overflow: hidden;

}
.promotion_section .promotion_contain .slider_card_main .circle{
    height: 118%;
    width: 65%;
    background-color: #361039;
    position: absolute;
    top: -17px;
    left: -100px;
    border-radius: 50%;



}
.promotion_section .promotion_contain .slider_card_main .promotion_card_area{
   position: relative;
   top: 50%;
   left: 50%;
   transform: translate(-50% , -50%);
   z-index: 99;

}

.promotion_section .promotion_contain .slider_card_area{
    padding: 40px 0;
    position: relative;
}
.promotion_section .promotion_contain .slider_card_area .gift{
    position: absolute;
    right: 30px;
    top: 30px;
}
.promotion_section .promotion_contain .slider_card_area .gift1{
    position: absolute;
    right: 10px;
    bottom: 30px;
}

.promotion_section .promotion_contain .slider_card_area h6{
  
    font-size: 16px;
    line-height: 19.2px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 12px;
}
.promotion_section .promotion_contain .slider_card_area h3{
  
    font-size: 31px;
    line-height: 37px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
}
.promotion_section .promotion_contain .slider_card_area .slider_btn{
  
    font-size: 16px;
    line-height: 19.2px;
    font-weight: 500;
    padding: 16px 30px;
    border-style: none !important;
    color: #1769FF;
    border-radius: 8px;
}



@keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
  }

  .marquee-container {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
  }

  .marquee-content {
    animation: marquee 10s linear infinite;
    display: inline-block;
    width: max-content; /* Adjusts the width of the content */
  }

.footer_slider{
    padding: 5px 0;
    background-color: #1F071B;
    border-bottom: 1px solid #00000009;
}
.footer_slider img{
    padding: 20px;
}


.footer{
    background-color: #361039;
    padding: 20px 0;
    color: var(--white);
}

.footem_main_bottoms{
    padding-top: 40px;
}

.home_bottom_content{
    background-color: #35082B;
}

.home_bottom_content h2{
    margin-top: 10px;
    margin-bottom: 10px;
}
.home_bottom_content h3{
    margin-top: 10px;
    margin-bottom: 10px;
}
.home_bottom_content p{}

.footer_contain{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer_contain_copyright{
    justify-content: center;
    padding-top: 30px;
}
.footer_contain span{
    color: #1769FF;
    font-size: 18px;
    line-height: 30px;
    font-weight: 600;
}
.footer_contain p{
  text-shadow: none;
  color: var(--white);
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
}
.footer_contain a{
    color: #ff6e04;
}
.footer_contain a:hover{
    color: #fff;
    text-decoration: underline;
    transition: all .3s;
}
.footer_btn{
    outline: none;
    display: flex;
    /*flex-direction: column;*/
    gap: 20px;
}
.footer_btn a{
    cursor: pointer;
}

.footer_lnk_cont{
    display: flex;
    flex-wrap: wrap;
    gap: 100px;
}
.footer_lnk_cont .footer_lnk_sect{}
.footer_lnk_cont .footer_lnk_sect .footer_lnk_sect__item{}
.footer_lnk_cont .footer_lnk_sect .footer_lnk_sect__item a{
    display: block;
    margin-bottom: 15px;
}

@media only screen and (max-width: 1199px) {

    .footer_contain{
        display: flex;
        align-items: center;
        flex-direction: column;
        gap: 10px;
    }


}
@media only screen and (max-width: 575px) {
    .footer_lnk_cont{
        padding-top: 20px;
        gap: 20px;
        /*justify-content: center;*/
    }
    .footer_lnk_cont .footer_lnk_sect{
        display: flex;
        flex-direction: column;
        width: 100%;
        justify-content: center;
        align-items: center;
    }
    .footer_contain_copyright{
        padding-top: 0;
    }

    .footer_lnk_cont .footer_lnk_sect .footer_lnk_sect__item a{
        font-size: 14px;
    }

    .footer_contain p {
        text-shadow: none;
        color: #ffffff;
        font-size: 12px;
        line-height: 19px;
        font-weight: 400;
    }
    .footer_btn img{
       width: 100px;
    }
}

.navbar-toggler {
    padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
    font-size: var(--bs-navbar-toggler-font-size);
    line-height: none;
    color: var(--bs-navbar-color);
    background-color: transparent;
    border: 1px solid #ffffff50;
    border-radius: var(--bs-navbar-toggler-border-radius);
    transition: var(--bs-navbar-toggler-transition);
}
.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: none;
}

.swiper .swiper-button-prev::after {
    display: none;
}
.swiper .swiper-button-next::after {
    display: none;
}

.swiper  .swiper-button-next{
    height: 30px;
    background-color: var(--btn_bg);
    width: 30px;
    border-radius: 50%;
    transition: all .5s ease-in-out;


}
.swiper  .swiper-button-next:hover{
    background-color:  var(--btn_hover);
    transition: all .5s ease-in-out;
}
.swiper .swiper-button-prev {
    height: 30px;
    background-color: var(--btn_bg);
    width: 30px;
    border-radius: 50%;
    transition: all .5s ease-in-out;

}
.swiper .swiper-button-prev:hover {
    background-color:  var(--btn_hover);
    transition: all .5s ease-in-out;
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset,0px) !important;
    left: auto;
}
.swiper-button-prev, .swiper-rtl .swiper-button-next {
    left: var(--swiper-navigation-sides-offset,0px) !important;
    right: auto;
}

.topwinner_header_soon {
    padding-top: 20px
}

.active{
    position: fixed;
    top: 0px; 
    left: 0;
    width: 100%;
    background-color: #361039;
    transition:top 1s ease-in-out;
    z-index: 1000; 
  }

  .Coming{
    padding-bottom: 40px;
  }



  .navbar-toggler{
    background-color: #ffffff;
  }



  @media screen and (max-width: 575px) {

    .favourate_player_first {
        padding: 0px; 
    }


  }

  @media screen and (max-width: 350px) {
    .swiper {
        padding-left: 5px !important;
        padding-right: 5px !important;
    }
    .right_text_area h5 {
        font-size: 16px;
        line-height: 18px;
        font-weight: bold;
    }
    .box_contain {
        padding: 8px;
    }
    .favourate_player_first {
        padding: 0px;
    }
    .topwinner_header_soon {
        padding-top: 20px;
    }
    .Coming{
        padding-bottom: 20px;
      }
    

  }

.casino-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    margin-bottom: 20px;
}

.casino-table th, .casino-table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

.casino-table th {
    background-color: #361039;
    /*background-color: #35082B;*/
    font-weight: bold;
    color: #fff;
}

.casino-table td{
    background-color: #35082B;
    color: #fff;
}

.team{
	position: relative;
	width: 100%;
	height: 100vh;
	background: radial-gradient(#281c3e,#0f051d);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
.team-content{
	width: 100%;
	max-width: 1350px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, auto));
	align-items: center;
	gap: 2rem;
	text-align: center;
	margin-top: 0rem;
}
.team-content img{
	width: 100%;
	height: auto;
	border-radius: 16px;
	margin-bottom: 16px;
}
.center h1{
	color: #fff;
	font-size: 4rem;
	text-align: center;
}
.box{
	padding: 16px;
	background: #150616;
	border-radius: 16px;
	transition: all .38s ease;
}
.box h3{
	font-size: 23px;
	font-weight: 600;
	color: #fff;
	margin-bottom: 8px;
}
.box h5{
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	margin-bottom: -8px;
	letter-spacing: 0px;
}
.icons i{
	display: inline-block;
	color: #fff;
	font-size: 20px;
	margin: 0 8px;
	transition: all .38s ease;
}
.icons i:hover{
	transform: scale(1.2);
}
.box:hover{
	transform: translateY(-10px);
	cursor: pointer;
}

.casino_padding_new{
    padding-top: 10px;
}
#Table_games{
    padding-bottom: 20px;

}
.home_bg{
    position: absolute;
    top: 0;
    z-index: -999;
    
}
.home_bg .home_bg_left{
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
}



::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}
::-webkit-scrollbar-track {
    background: #5c2525;
}
::-webkit-scrollbar-thumb {
    background: var(--btn_bg);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #555;
}



@media(max-width: 1240px){
	.team{
		width: 100%;
		height: auto;
		padding: 90px 2%;
	}
	.center h1{
		font-size: 3.2rem;
	}
}


@media only screen and (max-width: 1199px) {

    .footer_contain{
        display: flex;
        align-items: center;
        flex-direction: column;
        gap: 10px;
    }
    .left_contain h1 {
        font-size: 60px;
        line-height: 70.8px;
        padding-bottom: 20px;
        font-weight: bold;
    }
    .home_bg .home_bg_left img{
        height: 500px;
        width: 400px;
      
    }


}
@media only screen and (max-width: 991px) {


    .home_bg .home_bg_left img{
        height: 300px;
        width: 200px;
     
    }
    .home_bg .home_bg_left{
        top: 200px;
    }


}

@media only screen and (max-width: 768px) {

    .left_contain h1 {
        font-size: 45px;
        line-height: 53.8px;
        padding-bottom: 20px;
        font-weight: bold;
    }
    .left_contain {
        padding-top: 70px;
        padding-bottom: 70px;
        position: relative;
        z-index: 999;
    }
    .home_bg .home_bg_left img{
        height: 200px;
        width: 200px;
     
    }

}

@media only screen and (max-width: 520px) {
    .section_bgs_txt_cont img{
        display: none;
    }
}

@media only screen and (max-width: 450px) {

    .left_contain h1 {
        font-size: 32px;
        line-height: 45.8px;
        padding-bottom: 20px;
        font-weight: bold;
    }


}
