@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@100;400;500;600;700&display=swap');

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Urbanist', sans-serif;
    font-weight: 400;
    -webkit-overflow-scrolling: touch;
}

:focus {
    outline: none;
}

ul,
li,
ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
    -webkit-transition: 0.5s;
    color: #494949;
    transition: 0.5s;
}

input[type="button"],
input[type="submit"] {
    text-decoration: none;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

a:hover {
    color: #0072ca;
    text-decoration: none;
    outline: none;
}

a:focus {
    text-decoration: none;
    outline: none;
}

a img,
img {
    border: none;
    vertical-align: middle;
    max-width: 100%;
    width: auto
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
    margin: 0px;
    padding: 0px;
    color: #fff;
    margin-bottom: 15px;
    text-transform: capitalize;
}

h2 {
    font-size: 50px;
    line-height: 60px;
}

h3 {
    font-size: 30px;
    line-height: 40px;
}

h5 {
    font-size: 28px;
    line-height: 38px;
}

p {
    font-family: 'Urbanist', sans-serif;
    font-weight: 500;
    color: #fff;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 15px;
    text-transform: capitalize;
}

:before,
:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}


input,
button,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
    outline: none !important;
    text-decoration: none !important;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    padding: 0;
    border: 0;
}

input[type="checkbox"],
input[type="radio"] {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
}

input[type="search"],
input[type="text"],
textarea {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: textfield;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

table {
    border-spacing: 0;
    border-collapse: collapse;
}

.row:before,
.row:after {
    display: inline-block !important;
}

.container {
    max-width: 1260px;
    width: 100%;
    margin: 0 auto;
}

.container:before,
.container:after {
    display: table;
    content: "";
}

.container:after {
    clear: both;
}


a.menu-icon {
    display: none !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    transition: .5s all;
    width: 30px;
    height: 30px;
}

.cancel-menu {
    font-size: 30px;
    color: #fff;
    display: none;
    cursor: pointer;
}

a.menu-icon span {
    display: block;
    margin: 3px 0;
    background: #fff;
    height: 3px;
    width: 30px;
    transition: .5s all;
}


.section-title h1 {
	position: relative;
	text-align: center;
	font-size: 50px;
	color: #fff;
	margin: 0px;
	padding-bottom: 40px;
	font-weight: 600;
	text-transform: unset;
}


.content-title h1 {
    position: relative;
    text-transform: capitalize;
    font-size: 19px;
    color: #000;
    margin: 0px;
    padding-bottom: 36px;
}

.content-title h1::after {
    content: "";
    display: block;
    width: 90%;
    height: 1px;
    position: absolute;
    bottom: 25px;
    left: 0;
    background-color: #f15a29;
}


.bg {
	background: #ffffff10;
}




#header {}

@keyframes smoothScroll {
    0% {
        transform: translateY(-60px);
        opacity: 0;
    }

    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

#header.show {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 11;
    animation: smoothScroll 1s forwards;
    background-color: #332b3c;
}

#header .logo-box {
    max-width: 130px;
    width: 100%;
    display: inline-block;
}

#header .logo-box img {
    width: 100% !important;
    height: auto !important;
}

#header .main-nav {
	display: inline-block;
	margin-top: 25px;
	max-width: calc(85%);
	width: 100%;
	position: relative;
	float: right;
	text-align: left;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}


#header .header-block {
	padding: 10px 0px;
	z-index: 1111 !important;
	width: 100% !important;
	position: relative;
}

#header .header-block.isStuck {
    position: fixed !important;
    background: #fff !important;
    box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.2);
}

#nav {
	display: inline-block;
	padding: 15px 20px;
}

#header .header-block .button-box {
    display: inline-block;
    float: right;
}

#header .header-block .button-box .btn.btn-img:last-child {
	margin-left: 10px;
}

#header .header-block .button-box.mobile {
    display: none;
}

.bx-wrapper .bx-controls-direction a.disabled {
    display: block !important;
}

.pseudoStickyBlock {
    display: none !important;
}

#nav {}

#nav ul {}

#nav ul li {
    display: inline-block;
    position: relative;
    margin: 0px 10px;
    padding: 0px 10px;
}

#nav ul li a {
	font-size: 16px;
	color: #fff;
	text-transform: unset;
	font-family: 'Urbanist', sans-serif;
}

#nav ul li:first-child {
    margin-left: 0px;
    padding-left: 0px;
}

#nav ul li:last-child {
    margin-right: 0px;
    padding-right: 0px;
}

#slider {}

#slider ul li {
    width: 100% !important;
    height: 100vh !important;
    overflow: hidden;
    position: relative;
}

#slider ul li img {
    width: 100% !important;
    height: auto !important;
}

#slider .slider-content-blocks {
    position: absolute;
    width: 100%;
    height: 100%;
    display: table;
    top: 0px;
    left: 0;
}

#slider .slider-content-block {
    display: table-cell;
    vertical-align: middle;
}

#slider .slider-content-box h1 {
    font-size: 68px;
    color: #000;
    margin-bottom: 15px;
    max-width: 475px;
    line-height: 70px;
    font-weight: 900;
}

#slider .slider-content-box h1 span {
    color: #0058f0;
}

#slider .slider-content-box {
    max-width: 480px;
    padding-top: 120px;
}

#slider .slider-content-box p {
    font-size: 21px;
}

#slider .button_box {
    margin-top: 20px;
}

#banner {}

#banner .banner-block {
    padding: 60px 0px;
    width: 100%;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

#banner .banner-block h1 {
    color: #fff;
    text-transform: uppercase;
}


body {
	background-image: url("../images/bodyHome.png");
	background-size: 100% 100%;
	background-position: 100% 100%;
	background-repeat: no-repeat;
}

.btn.btn-img {
    background-image: url("../images/button.png");
}

.btn.btn-img {
	background-image: url("../images/button.png");
	background-size: 100% 100%;
	background-position: 100% 100%;
	background-repeat: no-repeat;
	padding: 12px 30px;
	font-size: 18px;
	color: #fff;
	font-family: 'Urbanist', sans-serif;
	font-weight: 600;
	text-transform: uppercase;
	border-radius: 15px;
	background: linear-gradient(230deg, rgba(253,174,143,1) 0%, rgba(252,28,104,1) 100%);
}




#homeBanner .homeBanner-box .row {
    align-items: center;
}

#homeBanner .button-box ul li {
    display: inline-block;
    padding-right: 15px;
}

#homeBanner .button-box ul li:last-child {
    padding-right: 0;
}

#homeBanner .homeBanner-content p {
    margin-bottom: 25px;
    margin-top: 15px;
}


#homeBanner.home {
	padding: 60px 0 60px;
	margin-top: 0;
}



#steps .steps-block {
	padding: 120px 0;
	background: linear-gradient(180deg, rgba(57,57,57,0.5018207966780462) 0%, rgba(225,95,197,0.1) 0%);
}

.steps-box {
    text-align: center;
}

.stepsNumber h3 {
    display: inline-block;
    background-color: #ffffff21;
    padding: 25px;
    margin-bottom: 15px;
    border-radius: 50%;
    line-height: 35px;
    color: #F81DFB;
    font-size: 32px;
}

.stepsName h4 {
    font-size: 26px;
    font-weight: 600;
    margin: 10px 0;
}



.stepsName p {
    max-width: 300px;
    margin: 0 auto;
}

.steps-boxs {
	position: relative;
	background-color: #ffffff10;
	border-radius: 30px;
	height: 100%;
	padding: 40px 20px;
	max-width: 320px;
}

#steps .col-md-4:nth-child(2) .steps-boxs {
	margin: 0 auto;
}

#steps .col-md-4:nth-child(3) .steps-boxs {
	margin-left: auto;
}

.steps-boxs .stepsNumber {
	display: none;
}

.col-md-4:first-child .steps-boxs::before {
    display: none;
}

.col-md-4:last-child .steps-boxs:after {
    display: none;
}

#steps .col-md-4:nth-child(2) .steps-boxs::after {
	background: url('../images/border2.png');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}

.steps-boxs::before {
	content: "";
	position: absolute;
	width: 10px;
	height: 10px;
	background-color: #fff;
	top: 49.2%;
	transform: rotate(50deg) translate(0, -50%);
	left: 16%;
	display: none;
}

.controlImg img {
	max-width: 130px;
	margin: 0 auto;
	display: block;
}

.control {
    padding: 60px 0;
}

.control-boxs {
	text-align: center;
	position: relative;
	border-radius: 25px;
	height: 100%;
	padding: 20px 20px;
}  

.controlContent h3 {
    margin: 15px 0;
    font-weight: 400;
}

#control {
	padding: 80px 0;
	position: relative;
	z-index: 111;
}

#control::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-image: url('../images/0003.png');
	background-repeat: no-repeat;
	z-index: -1;
	display: none;
}

.controlContent p {
    max-width: 340px;
    margin: 0 auto;
}




/* card css start */
#card ul li .box .img-box img {
    width: 100%;
}

#card ul {
    display: flex;
    align-items: center;
    column-gap: 60px;
    flex-wrap: wrap;
    row-gap: 20px;
}

#card ul li {
    width: calc(33.33% - 40px);
}

#card {
    padding: 80px 0;
}

/* card css end */


/* spins css start */
#spins.direction .box.box2 {
	padding: 40px;
	background: #ffffff10;
	border-radius: 30px;
}
#spins .box.box1 .img-box img {
	width: 100%;
	max-width: 500px;
}

#spins .row {
    align-items: center;
}

#spins {
	padding: 80px 0;
}

/* spins css end */


/* footer css start */
#footer {
    padding-top: 60px;
}

#footer .box.box1 .content-box .text-box p {
	color: #fff;
	margin-bottom: 20px;
}

#footer .box.box1 .content-box ul {
    display: flex;
    align-items: center;
    column-gap: 15px;
    row-gap: 10px;
    flex-wrap: wrap;
}

#footer .box.box1 .content-box ul li {
    margin-bottom: 0px;
}

#footer .box .content-box .text-box h4 {
    color: #F5FBF2;
    font-size: 24px;
    margin-bottom: 25px;
}

#footer .box .content-box ul li a {
	color: #fff;
	font-size: 18px;
}

#footer .box.box2 .content-box ul li,
#footer .box.box3 .content-box ul li {
    margin-bottom: 20px;
}

#footer .box .content-box ul li:last-child {
    margin-bottom: 0px;
}

#footer .box.box4 .content-box ul {
    display: flex;
    flex-wrap: wrap;
    column-gap: 10px;
    row-gap: 10px;
}

#footer .box.box4 .content-box ul li img {
    width: 100%;
    border-radius: 10px;
}

#footer .box.box5 .content-box .text-box p {
	color: #fff;
	margin-bottom: 0;
}

#footer .box.box4 .content-box ul li {
    width: calc(33.33% - 7px);
}

#footer .box.box2,
#footer .box.box3 {
    display: flex;
    justify-content: center;
}

#footer .box.box5 .content-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 10px;
    margin: 40px 0 0 0;
    border-top: 1px solid #ffffff30;
    padding: 30px 0;
}

#footer .box.box5 .content-box .right-box ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 10px;
}

#footer .box.box5 .content-box .right-box ul li {
    display: inline-block;
}

#footer .box.box5 .content-box .right-box ul li a {
	color: #fff;
	margin-right: 10px;
	padding-right: 10px;
	border-right: 2px solid #fff;
	line-height: 1;
}

#footer .box.box5 .content-box .right-box ul li:last-child a {
    margin-right: 0;
    padding-right: 0;
    border: none;
}

/* footer css end */

.swiper-slide.swiper-slide-active {
    transform: scale(1) translateZ(0) !important;
    opacity: 1;
}

.swiper-slide {
	transition: all 200ms linear;
	transform: scale(0.8) translateZ(0) !important;
	opacity: .6;
}

.swiper-slide .img-box img {
    width: 100%;
}

#banner .text-box {
    background-color: #FFFFFF10;
}

#banner .text-box {
	text-align: center;
	padding: 60px;
	border-radius: 25px;
	background: linear-gradient(230deg, rgba(253,174,143,1) 0%, rgba(252,28,104,1) 100%);
}

#banner .text-box h2 {
    margin-bottom: 0;
}

#content .content-box {
    margin-top: 40px;
}

#content .content-box:first-child {
    margin-top: 0;
}

#content .content-box p {
    margin-bottom: 20px;
}

#content {
    padding-bottom: 60px;
}

#content .content-box ol li:last-child p {
    margin-bottom: 0;
}

#content .content-box ol li {
    list-style: circle;
}

#homeBanner.innerpage {
    padding-bottom: 30px;
}

#content .contentBoxs {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom:1px solid #e15fc5;
}

#content .contentBoxs.RewardsImg {
    text-align: center;
}

#content .rewards-box {
    margin-bottom: 25px;
}

#content .rewards-content {
    margin-top: 15px;
}

#content .contentBoxs.RewardsImg p {
    text-align: left;
}

#content .contentBoxs ul li {
    padding-left: 15px;
    position: relative;
}

#content .contentBoxs ul li::after {
    content: "";
    width: 6px;
    height: 6px;
    position: absolute;
    top: 10px;
    left: 0;
    background: #fff;
    border-radius: 50%;
}

#content .content-box ol {
    padding-left: 30px;
}

.content-box h5 a {
    color: #fff;
}

#content.HowtoPlay .content-box ol li:last-child p {
    margin-bottom: 20px;
}

#content .bannerContent .boarderdata li {
    padding-left: 25px;
    position: relative;
}

#content .bannerContent .boarderdata li::after {
    content: "";
    width: 8px;
    height: 8px;
    background: #fff;
    position: absolute;
    top: 10px;
    left: 0;
    border-radius: 50%;
}

.mt-35 {
    margin-top: 35px;
}

.bannerContent.last .boarderdata:hover {
    transform: rotate(0deg);

}

.boarderdata:hover {
    transform: rotate(-2deg);
}

.bannerContent.last .boarderdata {
    border: none;
}

.boarderdata {
    transition: .5s;
    border: 1px solid #921f9485;
    padding: 15px;
}

.bannerContent {
    margin-bottom: 35px;
}

.content-box h2 {
    margin-bottom: 15px;
}

#footer .box.box6 .text-box p {
	color: #fff;
	margin-bottom: 20px;
	font-weight: 400;
}
#footer .box.box6 .text-box p b.textC {
	font-family: 'Urbanist', sans-serif;
	color: #fc1c68;
}

#myModal .modal-content {background-color: #fc1c68;}
#myModal .modal-body p b {font-weight: 600;}
#myModal .modal-body p{font-weight: 400;}
#myModal .modal-title {	font-weight: 600;}

.choose-box .row {
    align-items: center;
  }
  #choose {
    padding: 60px 0;
  }

  .choose-img img {
	max-width: 70%;
	margin: 0 auto;
	display: block;
}

#game {
	padding: 80px 0;
}