:root {
    --header-bg-color: #1f2328;
    --header-font-color: #fff;
    --primary-bg-color-update: #1D1D1D;
    --primary-font-color-update: #fff;
    --active-color-update: #FFE259;
    --active-font-color: #000;
    /* basic topbar Font size */
    --t-fs: calc(13px + 2 * ((100vw - 320px) / 1600));
    --b-fs: calc(14px + 2 * ((100vw - 425px) / 1600));
}


/* Fluid Space variables */

:root {
    --fluid-min-width: 320;
    --fluid-max-width: 1920;
    --fluid-screen: 100vw;
    --fluid-bp: calc((var(--fluid-screen) - var(--fluid-min-width) / 16 * 1rem) / (var(--fluid-max-width) - var(--fluid-min-width)));
}

:root {
    --fc-3xs-min: (var(--fc-s-min) * 0.25);
    --fc-3xs-max: (var(--fc-s-max) * 0.25);
    --fc-2xs-min: (var(--fc-s-min) * 0.5);
    --fc-2xs-max: (var(--fc-s-max) * 0.5);
    --fc-xs-min: (var(--fc-s-min) * 0.75);
    --fc-xs-max: (var(--fc-s-max) * 0.75);
    --fc-s-min: (var(--f-0-min, 10));
    --fc-s-max: (var(--f-0-max, 15));
    --fc-m-min: (var(--fc-s-min) * 1.5);
    --fc-m-max: (var(--fc-s-max) * 1.5);
    --fc-l-min: (var(--fc-s-min) * 2);
    --fc-l-max: (var(--fc-s-max) * 2);
    --fc-xl-min: (var(--fc-s-min) * 3);
    --fc-xl-max: (var(--fc-s-max) * 3);
    --fc-2xl-min: (var(--fc-s-min) * 4);
    --fc-2xl-max: (var(--fc-s-max) * 4);
    --fc-3xl-min: (var(--fc-s-min) * 6);
    --fc-3xl-max: (var(--fc-s-max) * 6);
    /* T-shirt sizes */
    --space-3xs: calc(((var(--fc-3xs-min) / 16) * 1rem) + (var(--fc-3xs-max) - var(--fc-3xs-min)) * var(--fluid-bp));
    --space-2xs: calc(((var(--fc-2xs-min) / 16) * 1rem) + (var(--fc-2xs-max) - var(--fc-2xs-min)) * var(--fluid-bp));
    --space-xs: calc(((var(--fc-xs-min) / 16) * 1rem) + (var(--fc-xs-max) - var(--fc-xs-min)) * var(--fluid-bp));
    --space-s: calc(((var(--fc-s-min) / 16) * 1rem) + (var(--fc-s-max) - var(--fc-s-min)) * var(--fluid-bp));
    --space-m: calc(((var(--fc-m-min) / 16) * 1rem) + (var(--fc-m-max) - var(--fc-m-min)) * var(--fluid-bp));
    --space-l: calc(((var(--fc-l-min) / 16) * 1rem) + (var(--fc-l-max) - var(--fc-l-min)) * var(--fluid-bp));
    --space-xl: calc(((var(--fc-xl-min) / 16) * 1rem) + (var(--fc-xl-max) - var(--fc-xl-min)) * var(--fluid-bp));
    --space-2xl: calc(((var(--fc-2xl-min) / 16) * 1rem) + (var(--fc-2xl-max) - var(--fc-2xl-min)) * var(--fluid-bp));
    --space-3xl: calc(((var(--fc-3xl-min) / 16) * 1rem) + (var(--fc-3xl-max) - var(--fc-3xl-min)) * var(--fluid-bp));
    /* One-up pairs */
    --space-3xs-2xs: calc(((var(--fc-3xs-min) / 16) * 1rem) + (var(--fc-2xs-max) - var(--fc-3xs-min)) * var(--fluid-bp));
    --space-2xs-xs: calc(((var(--fc-2xs-min) / 16) * 1rem) + (var(--fc-xs-max) - var(--fc-2xs-min)) * var(--fluid-bp));
    --space-xs-s: calc(((var(--fc-xs-min) / 16) * 1rem) + (var(--fc-s-max) - var(--fc-xs-min)) * var(--fluid-bp));
    --space-s-m: calc(((var(--fc-s-min) / 16) * 1rem) + (var(--fc-m-max) - var(--fc-s-min)) * var(--fluid-bp));
    --space-m-l: calc(((var(--fc-m-min) / 16) * 1rem) + (var(--fc-l-max) - var(--fc-m-min)) * var(--fluid-bp));
    --space-l-xl: calc(((var(--fc-l-min) / 16) * 1rem) + (var(--fc-xl-max) - var(--fc-l-min)) * var(--fluid-bp));
    --space-xl-2xl: calc(((var(--fc-xl-min) / 16) * 1rem) + (var(--fc-2xl-max) - var(--fc-xl-min)) * var(--fluid-bp));
    --space-2xl-3xl: calc(((var(--fc-2xl-min) / 16) * 1rem) + (var(--fc-3xl-max) - var(--fc-2xl-min)) * var(--fluid-bp));
    /* Custom pairs */
    --space-xs-m: calc(((var(--fc-xs-min) / 16) * 1rem) + (var(--fc-m-max) - var(--fc-xs-min)) * var(--fluid-bp));
}

:root {
    --p-fs: calc(14px + 4 * ((100vw - 320px) / 1600));
    --subtext: calc(16px + 13 * ((100vw - 320px) / 1600));
    --subheading: calc(18px + 15 * ((100vw - 320px) / 1600))
}

html {
    scroll-behavior: smooth;
}

body,
* {
    font-family: Arial, sans-serif;
}

body {
    background: var(--primary-bg-color-update);
    color: var(--primary-font-color-update);
}

.gap-sm {
    gap: var(--space-s);
}

.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

a,
a:hover {
    color: inherit;
}

p {
    margin-bottom: 0;
    font-size: var(--subtext);
}

button {
    border: none;
}

button:hover {
    filter: brightness(95%) saturate(95%);
}

header {
    justify-content: space-between;
    align-items: center;
    height: 67px;
    width: 100%;
    color: var(--header-font-color);
    padding: 0;
}

.navbar-toggler {
    padding: 0;
}

.header-style {
    border-bottom: var(--lp-header-nav-border);
    background: var(--lp-header-nav-bg-color);
}

.mobile-navbar {
	position: relative;
	z-index: 9999;
}

header .container {
    padding: 0 !important;
}

.navbar-item {
    position: relative;
    right: 2.6rem;
    bottom: 1px;
}

.navbar-style {
    position: relative;
    right: 7rem;
}

.nav-font {
    font-family: 'Inter', sans-serif !important;
}

.auth-btn {
	box-shadow: var(--auth-btn-shadow);
    border-radius: 12px;
	background-color: #201515;
	font-weight: 500;
    font-family: 'Inter', sans-serif;
}

.lm-1 {
	margin-right: 1.1rem;
}

.overlay {
	height: 0%;
	width: 100%;
	position: fixed;
	z-index: 1;
	top: 0;
	left: 0;
	background-image: url(/images/landing-page14/mobile-navbar-bg.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	overflow-y: hidden;
	transition: 0.5s;
	background-position: center top;
}
.overlay-content {
	position: relative;
	top: 30px;
	width: 100%;
	text-align: center;
	margin-top: 0;
}
.overlay a {
	padding: 8px;
	text-decoration: none;
	font-size: 20px;
	color: #818181;
	display: block;
	transition: 0.3s;
	line-height: 24px;
}
.overlay a:hover,
.overlay a:focus, .overlay a.active {
	color: #ffffff;
}
.overlay .closebtn {
	position: absolute;
	top: 6px;
	right: 0px;
	padding: 0;
}

.navbar-bottom-logo {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}

.navbar-bottom-logo img {
	max-height: 50px;
}

.nav-link:focus, .nav-link:hover {
    color: #ffffff;
}

a.nav-link {
	color: #A6AAB0;
	font-size: 21px;
}

a.nav-link:hover,
.navbar-nav .nav-link.active {
	color: #FFFFFF;
}

.navbar-brand img {
    max-height: 80px;
}

.header-logo-style {
    margin-left: 3.1rem;
}

.navbar-brand {
    position: relative;
    left: 0;
    padding: 0;
    margin: 0;
}

.navbar-brand img {
    max-height: 50px;
}

.footer-logo img {
    max-height: 80px;
}

.footer-logo {
    padding: 0;
    margin: 0;
}

.footer-logo img {
    max-height: 50px;
}

.mobile-login-reg{
	display: none;
}

.navbar{
    padding: 0.5rem 0;
}

.mobile-login-reg a.nav-link {
    color: #A6AAB0;
    font-size: 18px;
    font-family: 'Inter', sans-serif;
}

.mobile-login-reg a.nav-link {
    padding: 0;
}

.mobile-login-reg a.nav-link:hover {
    color: #FFFFFF;
}

.mobile-login-reg .nav-link {
    display: inline-block;
    margin-right: 15px;
}

.logo-img {
    max-height: 80%;
    max-width: 30vw;
}

.s-padding {
    padding: var(--space-m-l);
}

.h-buttons button {
    background: rgb(255, 242, 163);
    background: linear-gradient(90deg, rgba(255, 242, 163, 1) 0%, rgba(186, 131, 23, 1) 100%);
    color: #000;
    min-width: 110px;
    padding: 3px var(--space-s-m);
    border-radius: 0.25rem;
    font-size: calc(14px + 4 * ((100vw - 320px) / 1600));
}


/* Main Menu  */

.main-menu {
    display: flex;
    width: 100%;
    max-width: 100%;
    overflow: auto;
    padding: var(--space-xs);
    background: #151515;
}

.main-menu .nav-link {
    white-space: nowrap;
    padding: 0.25rem 1rem;
    color: #fff;
    font-family: Arial, sans-serif;
}

.main-menu .nav-item+.nav-item {
    margin-left: calc(10px + 60 * ((100vw - 320px) / 1600));
}

.main-menu .nav-link.active {
    border-bottom: 4px solid var(--active-color-update);
}


/* About Section  */

.s-heading {
    position: relative;
    font-size: calc(20px + 40 * ((100vw - 320px) / 1600));
    text-transform: uppercase;
    display: inline-block;
    margin-inline: auto;
    font-family: 'Arial Black', sans-serif;
    background: linear-gradient(180deg, #BD871C 0%, #FEEF9F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
}

.underline {
    margin-bottom: 3rem;
}

.underline::after {
    content: '';
    position: absolute;
    top: 110%;
    left: 0;
    width: 50%;
    border-top: 3px solid var(--active-color-update);
}

.gold-text {
    color: var(--active-color-update);
}

.about p {
    line-height: 1.35;
    margin-bottom: var(--space-l-xl);
}


/* partners section   */

.part-row {
    display: flex;
    flex-wrap: wrap;
}

.part-col {
    flex: 20%;
    max-width: 20%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.part-col img {
    max-width: 80%;
    height: auto;
    margin-bottom: 1.5rem;
}


/* Games  */

.game {
    position: relative;
    background: rgb(0, 0, 0, 0.7);
}

.game::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("/images/landing-page8/game-bg.png") no-repeat center;
    background-size: cover;
    background-attachment: fixed;
    z-index: -1;
}

.game h1 {
    margin-bottom: calc(50px + 50 * ((100vw - 320px) / 1600));
}

.game .game-row {
    display: flex;
    flex-wrap: wrap;
}

.game-col {
    flex: 25%;
    max-width: 25%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.game-col img {
    max-width: 90%;
    height: auto;
    max-height: 40vh;
    margin-bottom: 1.5rem;
}

/* USP */

.usp-list {
    font-size: var(--subtext);
    list-style-type: decimal;
}

.usp-list li {
    margin-bottom: 0.5rem;
}


/* Download */

.download .s-heading {
    text-transform: capitalize;
    margin-inline: 0;
    margin-bottom: 0;
}

.big-button {
    padding: var(--space-xs-s) var(--space-m-l);
    background: linear-gradient(90deg, #FFF2A3 0%, #BA8317 100%);
    border-radius: 5px;
    color: #000;
    font-size: calc(16px + 15 * ((100vw - 320px) / 1600));
    font-weight: 600;
    font-family: Arial, Helvetica, sans-serif;
    white-space: nowrap;
}

.big-button:hover {
    color: #000;
}


/* Withdawal */

.withdraw {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.withdraw h1 {
    line-height: 1.5;
    font-size: calc(20px + 20 * ((100vw - 320px) / 1600));
}

.withdraw img {
    flex: 30%;
    max-width: 30%;
}


/* Follow */

.social-block {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    border-radius: 100vw;
    line-height: 1;
    padding: var(--space-xs-s) var(--space-l-xl);
    height: 100%;
    font-size: calc(18px + 10 * ((100vw - 320px) / 1600));
}

.social-block img {
    width: calc(30px + 20 * ((100vw - 320px) / 1600));
    margin-right: 1rem;
}

.social-block.wa {
    background: linear-gradient(90deg, #1D976C 0%, #93F9B9 100%);
}

.social-block.ig {
    background: linear-gradient(90deg, #C84E89 0%, #F15F79 100%);
}

.social-block.fb {
    background: linear-gradient(90deg, #091E3A 0%, #2F80ED 50%, #2D9EE0 100%);
}

.social-block.tg {
    background: linear-gradient(90deg, #1FA2FF 0%, #12D8FA 50%, #A6FFCB 100%);
}

.ss-links {
    position: fixed;
    bottom: 15%;
    right: 2%;
    display: flex;
    flex-direction: column;
}

.ss-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background: #262626;
    margin-bottom: 0.5rem;
}


/* info */

.info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.info>* {
    flex: 50%;
    max-width: 50%;
}

.video-cont {
    width: 100%;
    padding: var(--space-s);
}

.video-cont iframe {
    width: 100%;
    max-width: 100%;
}


/* testimonials section */

.testimonials {
    min-height: 35vh;
    position: relative;
    display: flex;
    flex-direction: column;
    padding-left: 40px;
    padding-right: 40px;
}

.s-padding {
    padding: var(--space-l-xl);
}

.testimonial-carousel img {
    width: 100%;
}

.testimonial-video-carousel video {
    width: 100%;
}


/* Register Section  */

.sub-head {
    text-transform: uppercase;
    font-size: var(--subheading);
}

.step-ul li {
    font-size: var(--subtext);
}


/* Contact Section  */

.contact {
    font-size: var(--subtext);
}

.contact img {
    height: calc(30px + 20 * ((100vw - 320px) / 1600));
    margin-right: 1rem;
}


/* Payment */

.fl-row,
.fp-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.fl-row>div {
    flex: 40%;
    max-width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.fp-row>img {
    flex: 21%;
    max-width: 21%;
    margin-bottom: 1rem;
}

.fp-para {
    margin-top: 1rem;
    font-size: calc(20px + 20 * ((100vw - 320px) / 1600));
    text-transform: capitalize;
    font-family: 'Do Gothic Lt', sans-serif;
}

.p-girl {
    max-height: 400px;
}


/* Animation */

section {
    overflow: hidden;
}

.animate-bottom,
.animate-left,
.animate-top,
.animate-right {
    transition: all 0.3s ease;
}

.tt-5 {
    transition-duration: 500ms !important;
}

.tt-6 {
    transition-duration: 600ms !important;
}

.tt-7 {
    transition-duration: 700ms !important;
}

.tt-8 {
    transition-duration: 800ms !important;
}

.tt-9 {
    transition-duration: 900ms !important;
}

.animate .d-1 {
    transition-delay: 100ms !important;
}

.animate .d-2 {
    transition-delay: 200ms !important;
}

.animate .d-3 {
    transition-delay: 300ms !important;
}

.animate .d-4 {
    transition-delay: 400ms !important;
}

.animate .d-5 {
    transition-delay: 500ms !important;
}

.animate .d-6 {
    transition-delay: 600ms !important;
}

.animate .d-7 {
    transition-delay: 700ms !important;
}

.animate .d-8 {
    transition-delay: 800ms !important;
}

.animate .d-9 {
    transition-delay: 900ms !important;
}

.animate .d-10 {
    transition-delay: 1000ms !important;
}

.animate .d-11 {
    transition-delay: 1100ms !important;
}

.animate .d-12 {
    transition-delay: 1200ms !important;
}

.animate .d-13 {
    transition-delay: 1300ms !important;
}

.animate .d-14 {
    transition-delay: 1400ms !important;
}

.animate .d-15 {
    transition-delay: 1500ms !important;
}

.animate-bottom {
    opacity: 0;
    transform: translateY(200px);
}

.animate-top {
    opacity: 0;
    transform: translateY(-200px);
}

.animate-left {
    opacity: 0;
    transform: translateX(-200px);
}

.animate-right {
    opacity: 0;
    transform: translateX(200px);
}

.animate-scale {
    transform: scale(0);
}

.animate .animate-bottom,
.animate .animate-left,
.animate .animate-top,
.animate .animate-right,
.animate .animate-scale {
    transition: all 0.5s ease-in-out;
}

.animate .animate-bottom,
.animate .animate-left,
.animate .animate-top,
.animate .animate-right {
    opacity: 1;
    transform: translate(0, 0);
}

.animate .animate-scale {
    transform: scale(1);
}

.animate .animate-float {
    animation: float 2s linear infinite alternate;
    -webkit-animation: float 2s linear infinite alternate;
}

.animate .animate-float.d1 {
    animation-delay: 600ms;
}

.animate .animate-float.d2 {
    animation-delay: 900ms;
}

.animate .animate-float.d3 {
    animation-delay: 1000ms;
}

.animate .animate-float.d4 {
    animation-delay: 1000ms;
}

.animate .animate-float.d5 {
    animation-delay: 1100ms;
}

.animate .animate-float.d6 {
    animation-delay: 1200ms;
}

@keyframes float {
    0% {
        transform: translateY(-5px);
    }
    50% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(5px);
    }
}

@-webkit-keyframes float {
    0% {
        transform: translateY(-5px);
    }
    50% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(5px);
    }
}

@media screen and (min-width: 1920px) {
    :root {
       --fluid-screen: calc(var(--fluid-max-width) * 1px);
   }
}

@media screen and (max-width: 1466px) {
    .navbar-style {
        position: relative;
        right: 0;
    }
    .header-logo-style {
        margin-left: 0;
    }
}

@media screen and (max-width: 1346px) {
    .navbar-item {
        position: relative;
        right: 0.8rem;
        bottom: 5px;
    }
}

@media screen and (max-width: 1200px) {
    .part-col {
        flex: 25%;
        max-width: 25%;
    }
}

@media screen and (max-width: 1024px) {
    .header-logo-style {
        margin-left: 0 !important;
    }
    .navbar-item {
        position: relative;
        right: 0 !important;
        bottom: 1px;
    }
}

@media screen and (max-width: 991px) {
    .part-col,
    .game-col {
        flex: 33.33%;
        max-width: 33.33%;
    }
    header .container{
        width: 100%;
        max-width: 100%;
        min-width: 100%;
    }
    .hide-mobile-auth-btn{
		display:none;
	}
    .mobile-login-reg {
		display: block;
		position: absolute;
		right: 36px;
	}
    /* .navbar-brand {
        position: relative;
        left: 0;
        padding: 0;
        margin: 0;
    } */
}

@media screen and (max-width: 768px) {
    .link-svg {
        width: 25px;
        height: 25px;
    }
}

@media screen and (max-width: 767px) {
    .info>* {
        flex: 100%;
        max-width: 100%;
    }
    .fl-row>div {
        flex: 100%;
        max-width: 100%;
    }
    .p-girl {
        max-height: 250px;
    }
}

@media screen and (max-width: 575px) {
    .h-buttons button {
        min-width: 80px;
    }
    .part-col {
        flex: 50%;
        max-width: 50%;
    }
    .game-col {
        flex: 100%;
        max-width: 100%;
    }
    .game-col img {
        max-height: 30vh;
    }
    .withdraw img {
        flex: 50%;
        max-width: 50%;
        margin-top: 2rem;
    }
}

@media screen and (max-width: 479px) {
    .lm-1 {
        margin-right: 0.8rem;
    }
    .navbar-brand img {
        width: 100px;
    }
}

@media screen and (max-height: 450px) {
	.overlay {
		overflow-y: auto;
	}
	.overlay .closebtn {
		top: 6px;
	    right: 0px;
		z-index: 9;
	}
}