@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
@import url('fonts/fonts.css');

:root{
	--blue : #368CE7;
	--blue-dark : #1666BA;
	--blue-light : #7AB3EF;

	--red : #FF0000;
	--red-dark : #A70000;
	--red-light : #FF5252;

	--green : #76BA1B;
	--green-dark : #4C9A2A;
	--green-light : #ACDF87;

	--orange : #ff7400;
	--orange-dark : #ff4d00;
	--orange-light : #ff9a00;

	--black : #000;
	--dark : #333;
	--light : #666;

	--white : #fff;
	--white-dark : #ccc;
	--white-light : #eee; 
}


html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
html body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  background: #fff;
  position: relative;
  color: #2d3436;
  
 /* line-height: 32px;*/
  font-weight: 400;
      /*letter-spacing: -.24px;*/
}
html body a {
  color: #9237cb;
  text-decoration: none;
  transition: 0.5s all ease;
}
html body a:hover {
  text-decoration: none;
  color: #2d3436;
}

h1,
h2,
h3,
h4,
h5,
h6 {
 
 font-family:  'bogart_trialextrabold';
}

.hero-btns{
	padding-top:2rem;
}

.btn-custom {
  background: #025bde;
    border-color: #025bde;
    color: #ffff;
    border-radius: 0px;
    padding: 0.75rem 2.5rem;
    transition: all 0.3s ease-in-out;
    margin-right: 10px;
    border-radius: 30px;
    font-family: "Inter", sans-serif;
    font-size: 1rem;
	border-width:2px;
	font-weight:bold;
   
}
.btn-custom.borderd{
	background-color:transparent;
	border-color: #fff;
}
.btn-custom:hover, .btn-custom.borderd:hover {
  color: #025bde;
  background: #fff;
  border-color: #fff;
}
.button-wrap .btn-custom:hover{
	border-color: #025bde;
}
.rating-sec{
    background: #f4f0f9;
    border: 1px solid #673ab7;
    border-radius: 16px;
    display: grid;
    gap: 32px;
    grid-template-columns: repeat(1,1fr);
    padding: 72px 48px 56px;
    position: relative;
    text-align: center;
}
.statistics__decoration {
    align-items: center;
    background-color: #fff;
    border: 1px solid #673ab7;
    border-radius: 999px;
    display: flex;
    gap: 6px;
    left: 50%;
    padding: 13px 18px;
    position: absolute;
    top: 0;
    transform: translate(-50%,-50%);
width: fit-content;
}
.statistics__decoration i{
	color:#ffcc00; font-size:1.5rem;
}
.statistics__item i{
	font-size:2.5rem;color: #673ab7;
}
.statistics__item .subheading{
	font-size: 1.25rem;
    font-weight: bold;
    color: #000;    padding-top: 1rem;
}
.secton-bg{
	background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.631372549), rgba(0, 0, 0, 0.631372549)), url("../images/header-below-bg.jpg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	color: #fff;
	padding: 40px 0px;
	
}
.secton-bg a{ color: #fff; font-weight: bold; text-decoration: underline;}
.remtxt{background: #f5f5f5; 
		padding: 20px 20px; 
		border-radius: 20px;}

.section{padding:20px 0; position: relative;}
.section .container{position: relative; z-index: 2;}

.section8{
	width: 100%; float: left;
	background:url("../images/foot-bg.jpg") center fixed;
	background-size:cover;
}
.section8:before{
	content:'';
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	backdrop-filter: blur(20px);
}

.section8 .container{
	max-width:600px;
}


.formbox{
	width: 100%; float: left;
	padding:20px;
	display: flex;
	flex-direction: column;
}
.formbox input, .formbox textarea{
	width:100%;
	height:50px;
	float:left;
	border:none;
	border:solid 1px #ccc;
	background:#fff;
	padding:0 10px;
	font-size:18px;
	margin:0 0 10px;
}
.formbox textarea{
	height:100px;
	padding:10px;
	resize: none;
}
.buttonSubmit{
	width: 100%; float: left;
	padding:10px 20px;
	background:var(--blue-dark);
	color:var(--white);
	cursor: pointer;
	border:none;
}
.buttonSubmit:hover{
	color:var(--white);
	background:var(--blue);
}



@media screen and (min-width: 768px){
.rating-sec {
    grid-template-columns: repeat(4,1fr);
    text-align: left;
}
}
@media (max-width: 575px) {
  .desktop {
    display: none;
  }
}

@media (min-width: 576px) {
  .mobile {
    display: none;
  }
}

/*************Header*********/
header {
  width: 100%;
    position: sticky;
    top: 0;
    z-index: 99;
    background-color:#fff;
    
}
header .navbar {
  padding: 0;
}
header .logo {
  width: 280px;
  padding: 10px 0;
}
@media (max-width: 991px) {
  header .logo {
    width: 225px;
  }
}
header .navbar-light .navbar-brand {
  margin-right: 2rem;
}


@media (max-width: 991px) {
  header .navbar-light .navbar-brand .site-logo {
    display: none;
  }
}
header .navbar-light .navbar-toggler {
  padding: 0;
  font-size: 1.5rem;
  line-height: 0;
  border-radius: 0;
  border: none;
}
@media (max-width: 360px) {
  header .navbar-light .navbar-toggler {
    font-size: 1.1rem;
  }
}
header .navbar-light .navbar-toggler:focus {
  box-shadow: none;
}
header .navbar-light .navbar-toggler .navbar-toggler-icon {
  width: auto;
  height: auto;
  background-image: none;
  color: #025bde;
}
@media (max-width: 991px) {
  header .navbar-light .navbar-nav {
    padding: 20px 0;
  }
}
header .navbar-light .navbar-nav .nav-item {
  position: relative;
}

header .navbar-light .navbar-nav .nav-item:last-child {
  padding-right: 0;
}
@media (max-width: 991px) {
  header .navbar-light .navbar-nav .nav-item {
    padding: 0;
  }
}
header .navbar-light .navbar-nav .nav-link {
  font-size: 16px;
      padding: 15px 12px;
  color: #000;
    white-space: nowrap;
    
}
@media (max-width: 991px) {
  header .navbar-light .navbar-nav .nav-link {
    display: block;
  }
  header .navbar-light .navbar-nav .nav-link{
	  padding: 7px 12px;
  }
}
header .navbar-light .navbar-nav .nav-link.active, header .navbar-light .navbar-nav .nav-link:hover {
  color: #025bde;
}

.hero{
	background-color: #130a38;
    position: relative;
    height: 75vh;
    padding-bottom: 7rem;
    display: flex;
    align-items: center;
}
.hero:after{
	position: absolute;
    left: 0px;
    bottom: -48px;
    background-color: #fff;
    content: "";
    width: 100%;
    height: 100px;
    border-radius: 52%;
}
.top-heading{
	color: #fff;
    font-family:  'bogart_trialextrabold';
    font-size: 56px;
    font-style: normal;

    line-height: normal;
}
.hero-casino .top-heading span{
	    color:#00132e;font-family: "Inter", sans-serif;font-weight: 900;
}
.lead{
	color: #555c67;
    font-size: 1rem;
    font-style: normal;
    line-height: 150%;
    margin: 15px auto 0px;
}
.hero-casino .top-heading{
	color:#00132e;
}
.hero-casino .lead{
	color:#00132e;
	font-size: 17px;
    font-weight: 400;
	padding-right: 1rem;
}
.hero-casino .lead a{ font-weight: bold; text-decoration: underline; color: #000;}
.hero-img{width:100%; max-height:300px; object-fit:cover;}
.raduis-1r{border-radius:1rem;}

.hero-casino{
	background-color:#e2f9ec;
}

/*******Footer**********/
.footer {
  background: #000;
  color: #fff;
  padding: 1rem 0 0;
  text-align: center;
}
.footer .footer-logos {
  margin-bottom: 45px;
}
.footer .footer-logo {
  padding-bottom: 15px;
}
.footer .footer-logo img {
  width: 180px;
}
.footer .footer-links{
padding-bottom: 2rem;
}
.footer .footer-links a{
padding:0 10px;
}
.footer .footer-links ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  font-size: 1.2rem;
  
}
.footer .footer-links ul li {
  padding: 0 15px 5px 0;
  font-size: 16px;
  display: inline-block;
}
.footer .footer-links ul li:last-child {
  padding-right: 0;
}
.footer a {
  color: #fff;
}
.footer a:hover {
  color: #aaa;
}
.footer a i {
  font-size: 12px;
  padding-right: 10px;
}
.footer .copyright {
  color: #b2bec3;
  font-size: 14px;
  padding-top: 20px;
}
.footer .copyright p {
  padding-bottom: 20px;
}
.footer .copyright p:last-child {
  padding-bottom: 0;
}

.after-footer {
  background: #0f092a;
  padding: 10px 0 10px;
}
.after-footer p{
  margin-bottom:0;
  color:#fdfdfd; font-size:12px;
}
.after-footer .before-footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 414px) {
  .after-footer .before-footer-content {
    flex-direction: column;
  }
}
.after-footer .footer-logo {
  text-align: center;
}
.after-footer .footer-logo img {
  max-width: 250px;
  width: 100%;
}
.after-footer .social {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.after-footer .social li {
  display: inline-block;
  margin-right: 0.5rem;
}
.after-footer .social li:last-child {
  margin-right: 0;
}
.after-footer .social li a {
  display: inline-block;
  background-color: #ffffff33;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: #fff;
  border-radius: 2px;
  font-size: 16px;
}
@media (max-width: 575px) {
  .after-footer .social li a {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
  }
}
.after-footer .social li a:hover {
  background-color: #ffffff82;
}

#newcookies {
  color: #fff;
  top: unset;
  left: 0px;
  bottom: 0px;
  padding-right: 0px !important;
  height: auto;
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  background: #0a0c12b0;
  bottom: 0;
  left: 0;
  z-index: 9999;
}
#newcookies p {
  margin-bottom: 0;
  color: #fff;
}
#newcookies .btn {
  background-color: #fff;
  border-color: #fff;
  color: #000;
  margin-left: 1rem;
  padding: 0.15rem 0.5rem;
  cursor: pointer;
}
.social-links{
	padding-bottom: 1.5rem;
}
.social-links a i{
	    font-size: 24px;
    padding-right: 10px;
    padding-left: 10px;
}
.form-control{
	margin-top:15px;
}
section{
	padding:30px 0;
}
.container {
    max-width: 1400px;
    padding: 0px 80px;
margin: 0 auto;}

.section-title{
	height: 2px;
  background-color: black; 
  background-image: linear-gradient(90deg, white, black, white);
	position:relative;margin: 2rem;
}
.section-title span{
	position: absolute;
    left: 50%;
    top: 50%;
    background-color: #fff;
    transform: translate(-50%, -50%);
    padding: 0.5rem 1rem;
    font-size: 40px;
	font-family: "Inter", sans-serif;
}
.section-desc{
	text-align: center;
}
.casino-hero, .contact-hero{
	
    color: inherit;
    background-size: 100% 100%;
    max-width: 100vw; 
}
.contact-hero{
	
	 background-size: 100% 100%;
    max-width: 100vw; 
}
.about-hero{
	/*background:linear-gradient(180deg,#eeecea 70%,#fff 0);*/
	background-color:#eeecea;
}
.about-hero .top-heading{font-size:54px;}
.casino-hero .lead{
	max-width:100%;
	padding-bottom:10px;
}
.casino-hero .top-heading{
	font-size:64px;
}
.fill-image{
	position: relative;
    height: 100%;
    width: 100%;
}
.fill-image img{
	position: absolute;
    height: 100%;
    width: 100%;
	top:0;
	left:0;
	    object-fit: cover;
}
.casino-hero .casino-box{
margin-top:2.5rem;
margin-bottom:0;
}
.nagative-mt-5{
	margin-top:-40px;
}
.casino-box{
	margin-bottom: 2.5rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.casino-box p{
	font-size:16px; line-height:28px;
}
.casino-box p a{ font-weight: bold; color: #000; text-decoration: underline;}
.fill-text{
	padding:2.5rem 1rem;
}
.fill-text h3{
	font-family: 'bogart_trialbold';font-size: 2.25rem;
}
.fill-text h3 span{
	font-family: "Inter", sans-serif;
    display: block;
    color: #025bde;
    font-size: 1rem;
    padding-bottom: 0.5rem;
}
.fill-text .wlcom-desc1{
	padding:.5rem 0;
}
.zigzag-section .fill-image{
	border-radius: 30px;
    overflow: hidden;
}
.zigzag-section .col-md-6{
	padding:2rem;
}
.contact-hero .contact-form{
	padding-right:10rem;
}
.contact-hero .contact-form .top-heading{
	font-size:48px;
}
.contact-hero .fill-image{
	border-radius:30px;overflow: hidden;
}
.h3, h3 {
	font-family: "Inter", sans-serif;
}
.list-wrapper .float-img{
	width: calc(48% - 4rem);
    margin: 1rem 2rem;

}
.list-wrapper .fill-text {
width: calc(100% - 48%);
padding: 1rem 2rem;
}



.gold-bg{
	background-color:#130a38;
}

#wlcom-desc1 strong{
	color:#edcd1f;
}
@media (max-width: 1140px){
	.contact-hero .contact-form{padding-right: 2.5rem;}
}
@media (max-width: 991px){
	.hero-casino img{
		width:100%;margin-bottom: 1.5rem;
	}
	.list-wrapper .fill-text, .list-wrapper .float-img{width:100%; margin:0;}
	.list-wrapper .fill-text{padding:1rem;}
	.contact-hero .fill-image{min-height:250px;}
	.container { padding: 0 20px;}
}

@media (max-width: 767px) {
  
  .top-heading{font-size:24px;}
  .fill-text {
    padding: 1rem 0rem 0.5rem;
}
  .section-title span {

    padding: 0.5rem 0.5rem;
    font-size: 24px;
    
    width: 80%;
  }
  section {
    padding: 30px 0;
}
.casino-hero .top-heading {
font-size: 36px;}
.fill-image{
	min-height:250px;
}
.nagative-mt-5 {
    margin-top: 0;
}
.about-hero .top-heading {
    font-size: 36px;
}
.zigzag-section .col-md-6 {
padding: 0 10px;}
.contact-hero .contact-form .top-heading {
font-size: 36px;}
.contact-hero .contact-form {
padding-right: 0rem;    padding-top: 2rem;}

.list-wrapper .float-img {
    float: none;
max-width: 100%;}

}

@media (min-width: 1200px){
.h3, h3 {
font-size: 1.5rem;
}
}

@media (min-width: 992px) {
  .row-reverse {
    flex-direction: row-reverse;
  }
}


