@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,700;1,800;1,900&display=swap');

:root {
    --gray1: #323D47;
    --gray2: #636C73;
    --gray3: #949A9F;
    --gray4: #C6C9CC;
    --gray5: #F7F8F8;
    --white: #FFFFFF;
    --main: #1141C1;
    --main-light: #ECF5FF;
    --secondary: #000E1A;
    --alertGreen: #2B8C18;
    --alertOrange: #FF9700;
    --alertRed: #FF4444;
}

* {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    touch-action: manipulation;
    box-sizing: border-box;
}

*,
::after,
::before {
    box-sizing: border-box;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

* {
    box-sizing: border-box;
    outline: none;
}

html {
    scroll-behavior: smooth;
    -webkit-scroll-behavior: smooth;
}

/* width */
*::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

/* Track */
*::-webkit-scrollbar-track {
    background-color: transparent;
    padding: 0 0px;
}

/* Handle */
*::-webkit-scrollbar-thumb {
    background: var(--new, linear-gradient(180deg, rgba(10, 27, 86, 0.00) 0%, #F19D69 25%, #CD4CCF 50%, #1C49DA 75%, rgba(10, 27, 86, 0.00) 100%));
    border-radius: 5px;
}

img,
iframe {
    max-width: 100%;
    height: auto;
}

button,
input,
textarea,
select {
    font-family: 'Raleway', sans-serif;
}

strong {
    font-weight: 700;
}

b {
    font-weight: bold;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    width: 100%;
    border-spacing: 0;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-center {
    text-align: center;
}

p {
    margin: 10px 0px 15px;
}

body {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    color: var(--gray1);
    background: #E7E8EE;
    /* user-select:none; */
}

.animation {
    opacity: 0;
    transform: translate(0, 50px);
    transition: all 0.5s linear;
}

.animation.ani {
    opacity: 1;
    transform: translate(0, 0);
}

/*Header-CSS*/
.header {
    width: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 10;
    backdrop-filter: blur(4px);
}

.header:before {
    content: "";
    background: url(../images/header_bg2.svg) no-repeat center top;
    width: 100%;
    height: 125px;
    position: absolute;
    top: 0px;
    left: 0;
    pointer-events: none;
    z-index: 1;
    background-size: auto 140px;
}

.header .leftBox,
.header .rightBox {
    width: calc(50% - 170px);
}

.container {
    max-width: 1600px;
    margin: 0px auto;
    padding: 0px 15px;
}

.header .container {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.head_menu {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.rightBox .head_menu {
    justify-content: flex-end;
}

.head_menu>li {
    list-style: none;
    position: relative;
}

.head_menu>li>a {
    color: var(--gray5);
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    display: block;
    padding: 12px 13px;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.head_menu>li:hover>a {
    color: #E9D058;
}

.head_menu>li>a.defaultBtn {
    color: var(--secondary);
    font-size: 16px;
    font-weight: 800;
    padding: 11px 25px;
    margin-left: 15px;
}

/* .sub_menu { display: none; } */

@media (min-width:768px) {
    li.dropdown_menu>a:after {
        content: "";
        background: url(../images/menuArrow.svg) no-repeat center;
        width: 18px;
        height: 18px;
        display: inline-block;
        vertical-align: middle;
        margin-left: 5px;
    }

    .head_menu .sub_menu {
        position: absolute;
        top: 140%;
        opacity: 0;
        visibility: hidden;
        border-radius: 16px;
        background: linear-gradient(180deg, rgba(4, 11, 34, 0.70) 0%, rgba(2, 5, 17, 0.70) 100%);
        box-shadow: 0px 8px 50px 0px rgba(2, 5, 17, 0.30);
        backdrop-filter: blur(4px);
        padding: 20px;
        width: 200px;
        transition: all 0.5s ease;
        -webkit-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -ms-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
    }

    .head_menu .sub_menu li {
        list-style: none;
        margin-top: 15px;
    }

    .head_menu .sub_menu li:first-of-type {
        margin-top: 0px;
    }

    .head_menu .sub_menu li a {
        color: var(--gray5);
        text-decoration: none;
        display: flex;
        align-items: center;
    }

    .head_menu .sub_menu li a:hover {
        color: #E9D058;
    }

    .head_menu .sub_menu li span {
        width: 32px;
        height: 32px;
        margin-right: 10px;
        border: 1px solid rgba(255, 255, 255, 0.4);
        border-radius: 2px;
        -webkit-border-radius: 2px;
        -moz-border-radius: 2px;
        -ms-border-radius: 2px;
        -o-border-radius: 2px;
    }

    .head_menu .sub_menu li span img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
    }

    .head_menu li:hover .sub_menu {
        visibility: visible;
        opacity: 1;
        top: 115%;
    }
}

.logo {
    position: relative;
    top: 16px;
    padding: 1px 15px;
}

.logo svg {
    position: relative;
    width: 250px;
    height: 50px;
}

/*Top-Banner*/
.heorBanners {
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.mt11_banner {
    background: radial-gradient(44.39% 93.58% at 26.30% 60.57%, rgba(28, 73, 218, 0.40) 0%, rgba(123, 46, 124, 0.00) 100%), linear-gradient(180deg, #081645 0%, #020511 100%);
}

.rummy_banner {
    background: radial-gradient(44.39% 93.58% at 26.3% 60.57%, rgba(0, 0, 0, 0.40) 0%, rgba(102, 48, 51, 0.00) 100%), linear-gradient(180deg, #4F0F12 0%, #25070A 100%);
}

.heorBanners .container {
    display: flex;
    align-items: center;
}

.heorBanners .leftBox {
    width: 45%;
    text-align: center;
    position: relative;
    z-index: 1;
}

.mt11_banner .leftBox {
    padding-top: 50px;
}

.mt11_banner .imageBox {
    max-width: 510px;
}

.heorBanners .imageBox {
    position: relative;
    display: inline-block;
    bottom: -5px;
}

.rummy_banner .imageBox {
    max-width: 601px;
}

.heorBanners .levelUp_lottie {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
}

.heorBanners .leftBox img {
    vertical-align: bottom;
}

.mt11_banner .leftBox:before {

    background: url(../images/bgCircle.svg) no-repeat center center;
    background-size: 100% 100%;
    position: absolute;
    width: 100%;
    pointer-events: none;
    content: "";
    z-index: -1;
    height: 100%;
    left: 0px;
    bottom: 0px;
    animation: zoom-in-zoom-out 5s ease-out infinite;
    transform: scale(1.8);
    opacity: 0.4;
}

@keyframes zoom-in-zoom-out {
    0% {
        transform: scale(1.8);
    }

    50% {
        transform: scale(1.9);
    }

    100% {
        transform: scale(1.8);
    }
}

.heorBanners .rightBox {
    width: 55%;
    padding-left: 25px;
    position: relative;
    z-index: 1;
}

.heorBanners h1,
.heorBanners h2 {
    font-size: 52px;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    max-width: 750px;
    color: transparent;
    position: relative;
}

.heorBanners h2 {
    color: #fff;
}

.heorBanners h1:before {
    content: attr(data-name);
    background: linear-gradient(90deg, #FEF5F0 0%, #FAEDFA 51.04%, #E8EDFB 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: absolute;
    left: 0px;
    color: var(--white);
    top: 0px;
    z-index: 1;
}

.heorBanners h1:after {
    content: attr(data-name);
    background: linear-gradient(90deg, rgba(10, 27, 86, 0), rgba(241, 157, 105, 1), rgba(205, 76, 207, 1), rgba(28, 73, 218, 1), rgba(10, 27, 86, 0));
    -webkit-background-clip: text;
    -webkit-text-stroke: 4px transparent;
    position: absolute;
    left: 0px;
    color: var(--white);
    top: 0px;
    z-index: 0;
}

.heorBanners p.text {
    font-size: 28px;
    color: var(--white);
    line-height: 38px;
    max-width: 610px;
    font-weight: 500;
}

.getBonus p {
    color: #E9D058;
    font-size: 18px;
    font-weight: 600;
}

.getBonus p span {
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
}

.withMobile {
    display: flex;
    align-items: center;
}

.withMobile form {
    max-width: 430px;
}

.withMobile form>p {
    color: var(--white);
    font-size: 18px;
    font-weight: 400;
}

.withMobile .formblock {
    position: relative;
}

.withMobile .formblock .telcode {
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--white);
    font-size: 24px;
    position: absolute;
    top: 16px;
    left: 15px;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.withMobile .formblock input {
    background: #081645;
    border: 1px solid #3B4978;
    min-height: 60px;
    color: var(--white);
    font-size: 24px;
    width: 100%;
    padding: 10px 15px 10px 65px;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
    border-radius: 35px;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    -ms-border-radius: 35px;
    -o-border-radius: 35px;
}

.withMobile input::-webkit-input-placeholder {
    /* WebKit, Blink, Edge */
    color: var(--white);
    opacity: 0.5;
}

.withMobile input:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: var(--white);
    opacity: 0.5;
}

.withMobile input::placeholder {
    /* Most modern browsers support this now. */
    color: var(--white);
    opacity: 0.5;
}

.withMobile .formblock button[type="submit"] {
    background: linear-gradient(180deg, #82FF6A 0%, #1E7C0C 100%);
    color: var(--secondary);
    font-size: 18px;
    font-weight: 900;
    cursor: pointer;
    padding: 10px 30px;
    text-transform: uppercase;
    position: absolute;
    right: 0px;
    top: 0px;
    min-height: 60px;
    border-radius: 35px;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    -ms-border-radius: 35px;
    -o-border-radius: 35px;
}

.withMobile form>p.mobgreen {
    color: #47ba38;
    font-size: 14px;
    font-weight: 500;
}

.withMobile form>p.moberror {
    color: #FF4444;
    font-size: 14px;
    font-weight: 500;
}

.withMobile .or {
    margin: 0px 20px;
}

.qr_scaner {
    display: flex;
    align-items: center;
}

.qrscan_img {
    width: 120px;
    height: 120px;
    background: var(--white);
    position: relative;
    overflow: hidden;
    padding: 5px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.qrscan_img svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.qr_scaner p {
    color: var(--white);
    padding-left: 15px;
    font-size: 16px;
    font-weight: 500;
    max-width: 130px;
}


/*Games-Section*/
.topGames_sec {
    padding: 80px 0px 120px;
    position: relative;
}

.head {
    max-width: 640px;
    margin: 0px auto 20px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.head:before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 80px;
    height: 4px;
    margin-left: -40px;
    border-radius: 30px;
    background: linear-gradient(90deg, #0A1B56 0%, #F19D69 25%, #CD4CCF 50%, #1C49DA 75%, #0A1B56 100%);
}

.heading02 {
    font-size: 40px;
    text-transform: uppercase;
    font-weight: 900;
    color: var(--secondary);
}

.heading02 span {
    color: var(--main);
}

.heading02 span small {
    font-family: Arial, Helvetica, sans-serif;
}

.head p {
    font-size: 22px;
    font-weight: 600;
    color: var(--gray2);
}

.head.dark .heading02 {
    color: var(--white);
}

.head.dark p {
    color: var(--gray5);
}

.head.dark .heading02 span {
    color: #F19D69;
}

.head.dark:before {
    background: linear-gradient(90deg, #FFF 0%, #F19D69 25%, #CD4CCF 50%, #1C49DA 75%, #FFF 100%);
}

.ourGames {
    padding: 0px;
    display: flex;
    flex-wrap: wrap;
    margin-top: 150px;
}

.ourGames li {
    list-style: none;
    width: calc(100%/4 - 15px);
    text-align: center;
    margin-left: 20px;
    border-radius: 16px;
    z-index: 1;
    position: relative;
    background: linear-gradient(180deg, #6B0F26 0%, #020511 100%);
    padding: 0px 15px 0px;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
}

.ourGames li:hover {
    transform: scale(1.08);
    -webkit-transform: scale(1.08);
    -moz-transform: scale(1.08);
    -ms-transform: scale(1.08);
    -o-transform: scale(1.08);
}

.ourGames li:before {
    content: "";
    pointer-events: none;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: -1;
}

.ourGames li.rummy:before {
    background: url(../images/rummy_vector.png) no-repeat top center;
}

.ourGames li.callbrack {
    background: linear-gradient(180deg, #2B333E 0%, #020511 100%), linear-gradient(180deg, #6B0F26 0%, #020511 100%);
}

.ourGames li.callbrack:before {
    background: url(../images/callBreak_vector.png) no-repeat top center;
}

.ourGames li.ludo {
    background: linear-gradient(180deg, #102E5D 0%, #030814 100%);
}

.ourGames li.ludo:before {
    background: url(../images/ludo_vector.png) no-repeat top center;
}

.ourGames li.fantasy {
    background: linear-gradient(180deg, #1E1E86 0%, #020511 100%);
}

.ourGames li.fantasy:before {
    background: url(../images/poker_vector.png) no-repeat top center;
}

.ourGames li:first-of-type {
    margin-left: 0px;
}

.ourGames li .icon {
    max-width: 140px;
    position: relative;
    margin: -70px auto 40px;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.ourGames li .levelUp_lottie {
    position: absolute;
    opacity: 0;
    top: -2px;
    left: 0px;
    width: 100%;
    height: 100%;
}

.ourGames li:hover .levelUp_lottie {
    opacity: 1;
}

.ourGames li .icon:before {
    content: "";
    background: url(../images/icon_shade_bottom.svg) no-repeat center;
    width: 170px;
    height: 38px;
    position: absolute;
    left: 50%;
    margin-left: -85px;
    bottom: -30px;
}

.ourGames li:hover .icon {
    transform: rotate(15deg);
    -webkit-transform: rotate(15deg);
    -moz-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    -o-transform: rotate(15deg);
}

.ourGames li h3 {
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin: 15px auto;
}

.ourGames li p {
    color: var(--white);
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    margin-bottom: 20px;
}

.defaultBtn {
    background: linear-gradient(180deg, #82FF6A 0%, #1E7C0C 100%);
    color: var(--secondary);
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    display: inline-block;
    padding: 15px 30px;
    position: relative;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 35px;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    -ms-border-radius: 35px;
    -o-border-radius: 35px;
}

.ourGames li .defaultBtn {
    bottom: -26px;
    min-height: 52px;
}

.bannerBotStatus {
    width: 100%;
    border-radius: 16px;
    border: 8px solid #E7E8EE;
    max-width: 750px;
    position: absolute;
    z-index: 1;
    padding: 15px;
    display: flex;
    align-items: center;
    bottom: -52px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.myteamBannerBar {
    background: linear-gradient(180deg, #081645 0%, #020511 100%);
}

.rummyBannerBar {
    background: linear-gradient(180deg, #4F0F12 0%, #25070A 100%);
}

.bannerBotStatus:before {
    content: "";
    background: url(../images/barShape.svg) no-repeat;
    width: 24px;
    height: 24px;
    position: absolute;
    left: -30px;
    top: 22px;
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
}

.bannerBotStatus:after {
    content: "";
    background: url(../images/barShape.svg) no-repeat;
    width: 24px;
    height: 24px;
    position: absolute;
    right: -31px;
    top: 22px;
}

.bannerBotStatus>span.icon {
    width: 60px;
    height: 60px;
}

.bannerBotStatus span.icon img {
    width: 100%;
    height: 100%;
    vertical-align: middle;
}

.bannerBotStatus .barText {
    padding-left: 15px;
    width: calc(100% - 170px);
}

.barText p {
    color: var(--white);
    font-size: 24px;
    font-weight: 600;
    margin-top: 0px;
    margin-bottom: 7px;
}

.barText ul {
    display: flex;
}

.barText ul li {
    list-style: none;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--white);
    font-size: 16px;
    font-weight: 400;
    margin-left: 15px;
}

.barText ul li span.icon {
    display: inline-block;
    vertical-align: 2px;
}

.barText ul li span.icon svg {
    vertical-align: middle;
    width: 20px;
    height: 20px;
}

.barText ul li:nth-child(1) {
    margin-left: 0px;
}

.myteamBannerBar .barText ul li:nth-child(1) {
    color: #F9D8C3;

}

.myteamBannerBar .barText ul li:nth-child(2) {
    color: #EBB7EC;
}

.myteamBannerBar .barText ul li:nth-child(3) {
    color: #A4B6F0;
}

.availableOn {
    text-align: center;
    position: relative;
    width: 110px;
}

.availableOn:before {
    width: 2px;
    height: 58px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, rgba(255, 255, 255, 0.28) 52.60%, rgba(255, 255, 255, 0.00) 100%);
    content: "";
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.availableOn p {
    font-size: 18px;
    font-weight: 400;
    margin: 0px auto 10px;
    color: var(--white);
}

.availableOn p:last-of-type {
    margin-bottom: 0;
}

.availableOn a {
    display: inline-block;
    width: 24px;
    height: 24px;
    text-decoration: none;
    margin: 0px 5px;
}

.viewMore {
    width: 100%;
    max-width: 440px;
    background: #E7E8EE;
    padding: 24px;
    text-align: center;
    border-radius: 24px;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    -ms-border-radius: 24px;
    -o-border-radius: 24px;
    position: absolute;
    left: 50%;
    z-index: 1;
    bottom: -54px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.viewMore:before {
    content: "";
    background: url(../images/barShape.svg) no-repeat;
    width: 24px;
    height: 24px;
    position: absolute;
    left: -23px;
    bottom: 31px;
    transform: rotate(-180deg);
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
}

.viewMore:after {
    content: "";
    background: url(../images/barShape.svg) no-repeat;
    width: 24px;
    height: 24px;
    position: absolute;
    right: -23px;
    bottom: 31px;
    transform: rotate(80deg);
    -webkit-transform: rotate(80deg);
    -moz-transform: rotate(80deg);
    -ms-transform: rotate(80deg);
    -o-transform: rotate(80deg);
}


.blueBtn {
    border-radius: 8px;
    background: linear-gradient(180deg, #0A1B56 0%, #020511 100%);
    color: #E7E8EE;
    font-size: 24px;
    font-weight: 700;
    display: inline-block;
    text-decoration: none;
    text-transform: uppercase;
    padding: 15px 20px;
    min-width: 250px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.blueBtn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -200%;
    width: 200%;
    height: 100%;
    transform: skewX(-20deg);
    background-image: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.blueBtn:hover:before {
    transform: translateY(1px);
    left: 100%;
}

@-moz-keyframes shine {
    100% {
        left: 200%;
    }
}

@-webkit-keyframes shine {
    100% {
        left: 200%;
    }
}

@-o-keyframes shine {
    100% {
        left: 200%;
    }
}

@keyframes shine {
    100% {
        left: 200%;
    }
}


.millionsPlayers {
    padding: 100px 0px 20px;
    background: linear-gradient(180deg, #081645 0%, #020511 100%);
    position: relative;
}

.millionsPlayers:before {
    content: "";
    background: url(../images/millionsPlayers_bfr.png) no-repeat center center;
    width: 100%;
    height: 100%;
    background-size: cover;
    position: absolute;
    left: 0px;
    pointer-events: none;
    top: 0px;
}

.millionsPlayers .container {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.millionsPlayers .leftBox {
    width: calc(100% - 385px);
    padding-right: 25px;
}

.millionsPlayers .rightBox {
    width: 385px;
}

.platform_fetures {
    display: flex;
}

.platform_fetures li {
    background: linear-gradient(180deg, rgba(59, 73, 120, 0) 0%, rgba(6, 16, 52, 0) 100%);
    list-style: none;
    max-width: 335px;
    overflow: hidden;
    position: relative;
    border-radius: 24px;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    -ms-border-radius: 24px;
    -o-border-radius: 24px;
    text-align: center;
    width: calc(100%/3 - 10px);
    margin-left: 35px;
    padding: 24px 20px;
    transition: all 0.5s linear;
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
}

.platform_fetures li:hover {
    background: linear-gradient(180deg, rgba(59, 73, 120, 0.60) 0%, rgba(6, 16, 52, 0.60) 100%);
}

.platform_fetures li:first-of-type {
    margin-left: 0px;
}

.platform_fetures li .levelUp_lottie {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
}

.platform_fetures li:hover .levelUp_lottie {
    opacity: 1;
}

.platform_fetures .icon {
    width: 88px;
    height: 88px;
    display: block;
    margin: 0px auto 15px;
}

.platform_fetures h4 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--white);
}

.platform_fetures p {
    color: var(--gray4);
    font-size: 20px;
    line-height: 32px;
}

.winning_locations {
    background: url(../images/map_bg.png) no-repeat center center;
    background-size: auto 120%;
    padding: 100px 0px 50px;
    position: relative;
    overflow: hidden;
}

.winning_locations .container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.winning_locations .leftBox {
    width: 50%;
    text-align: center;
}

.winning_locations .rightBox {
    width: 50%;
    text-align: center;
}

.mapBox {
    display: inline-block;
    position: relative;
    max-width: 550px;
}

.mapBox .levelUp_lottie {
    position: absolute;
    top: -2px;
    left: -1px;
    width: 100%;
    height: 100%;
}

.mapData {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0;
}

.mapData .winners li {
    list-style: none;
    width: 50px;
    cursor: pointer;
    height: 66px;
    position: absolute;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.mapData .winners li:hover span {
    transform: scale(1.25);
    -webkit-transform: scale(1.25);
    -moz-transform: scale(1.25);
    -ms-transform: scale(1.25);
    -o-transform: scale(1.25);
    top: -8px;
    z-index: 2;
}

.mapData .winners li:before {
    width: 20px;
    height: 20px;
    position: absolute;
    left: 50%;
    margin-left: -10px;
    bottom: -5px;
    content: "";
    background: url(../images/dot.png) no-repeat;
}

.mapData .winners li span {
    background: var(--white);
    padding: 3px;
    width: 50px;
    position: relative;
    height: 50px;
    top: 0;
    display: block;
    margin: 0px auto;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.mapData .winners li span img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.mapData .winners li span:before {
    content: "";
    border-top: 10px solid var(--white);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-radius: 4px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -8px;
}

.mapData .winners li.item01 {
    left: 90.41px;
    top: 164.81px;
}

.mapData .winners li.item02 {
    left: 152.57px;
    top: 10.36px;
}

.mapData .winners li.item03 {
    left: 188.36px;
    top: 93.24px;
}

.mapData .winners li.item04 {
    left: 42.38px;
    top: 238.27px;
}

.mapData .winners li.item05 {
    left: 307.02px;
    top: 189.30px;
}

.mapData .winners li.item06 {
    left: 454.88px;
    top: 121.44px;
}

.mapData .winners li.item07 {
    left: 289.13px;
    top: 298.54px;
}

.mapData .winners li.item08 {
    left: 166.70px;
    top: 192.12px;
}

.mapData .winners li.item09 {
    left: 88.53px;
    top: 343.75px;
}

.mapData .winners li.item10 {
    left: 180.82px;
    top: 360.70px;
}

.mapData .winners li.item11 {
    left: 354.11px;
    top: 254.28px;
}

.mapData .winners li.item12 {
    left: 154.45px;
    top: 534.93px;
}

.mapData .winners li.item13 {
    left: 260.78px;
    top: 249.7px;
}

.mapData .winners li.item14 {
    left: 235.45px;
    top: 178.94px;
}

.mapData .winners li.item15 {
    left: 450px;
    top: 215.26px;
}

.mapData .winners li.item16 {
    left: 119.61px;
    top: 68.75px;
}

.mapData .winners li.item17 {
    left: 115.84px;
    top: 258.05px;
}

.mapData .winners li.item18 {
    left: 182.70px;
    top: 441.69px;
}


.winnerModal {
    display: none;
    position: fixed;
    left: 0px;
    top: 0px;
    height: 100%;
    width: 100%;
    z-index: 11;
}

.winnerModal .overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary);
    opacity: 0.75;
    z-index: 1;
}

.winnerModal .modal-content {
    border-radius: 15px;
    background: linear-gradient(180deg, #081645 0%, #020511 100%), #FFF;
    padding: 15px;
    width: 360px;
    margin: 50px auto auto;
    position: relative;
    z-index: 2;
}

.winnerModal .close {
    width: 32px;
    height: 32px;
    position: absolute;
    right: -16px;
    top: -16px;
    cursor: pointer;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    background: var(--white);
    text-align: center;
    line-height: 29px;
    font-size: 32px;
}

.winnerBox .image {
    max-width: 100%;
    margin: 0px auto;
    border-radius: 8px;
    overflow: hidden;
}

.sportsIcon {
    width: 105px;
    height: 105px;
    margin: -50px auto auto;
}

.winnerData {
    text-align: center;
    padding-top: 25px;
}

.winnerData h3 {
    background: linear-gradient(90deg, #B4602D 25%, #E09932 75%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 28px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
}

.winnerData h6 {
    color: var(--white);
    font-size: 20px;
    font-weight: 600;
}

.winnerData p {
    color: var(--gray4);
    font-size: 16px;
    font-style: italic;
    font-weight: 400;
    line-height: 26px;
}

.winnerSlider .slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0px;
}

.winnerSlider .slick-dots li {
    font-size: 0px;
    list-style: none;
    margin: 0px 2px;
}

.winnerSlider .slick-dots li button {
    display: inline-block;
    width: 4px;
    background: var(--gray2);
    height: 4px;
    font-size: 0px;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}

.winnerSlider .slick-dots li.slick-active button {
    width: 12px;
    background: var(--white);
}

.winnerBox {
    width: 100%;
    max-width: 360px;
    background: url(../images/winnerVector.png) no-repeat center top 65%;

}

.winning_locations .head {
    max-width: 630px;
}

.winning_locations .heading02 span {
    color: var(--alertOrange);
}

.ratingBox {
    margin-top: 50px;
}

.offers_section {
    background: radial-gradient(43.39% 81.00% at 50.03% 50.06%, rgba(28, 73, 218, 0.80) 0%, rgba(123, 46, 124, 0.00) 100%), linear-gradient(180deg, #081645 0%, #020511 100%);
    padding: 80px 0px;
    position: relative;
    z-index: 1;
}

.offers_section:before {
    content: "";
    background: url(../images/offerBg.png) no-repeat center bottom;
    background-size: auto 80%;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    pointer-events: none;
    z-index: -1;
}

.offerList {
    max-width: 1130px;
    margin: 80px auto auto;
    display: flex;
}

.offerList li {
    list-style: none;
    margin-left: 30px;
    width: calc(100%/4 - 20px);
    overflow: hidden;
    box-shadow: 0px 4px 10px 0px rgba(132, 132, 132, 0.15);
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.offerList li:hover {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}

.offerList li img {
    vertical-align: middle;
}

.offerList li:first-of-type {
    margin-left: 0px;
}

.viewOfferBtn {
    text-align: center;
    margin-top: 80px;
}

.viewOfferBtn .btn {
    border: 1px solid var(--white);
    padding: 12px 15px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    min-width: 220px;
    color: var(--white);
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.viewOfferBtn .btn:hover {
    background: var(--white);
    color: var(--secondary);
}

.howtoplay_section {
    background-color: #fff;
    padding: 120px 0px;
    overflow: hidden;
    position: relative;
}

.howtoplay_section .container {
    display: flex;
    align-items: center;
}

.howtoplay_section .leftBox {
    width: 40%;
    position: relative;
    z-index: 1;
}

.howtoplay_section .leftBox p {
    color: var(--gray2);
    font-size: 24px;
    font-weight: 500;
}

.howtoplay_section .rightBox {
    width: 60%;
}

.videoFrame {
    margin: 0px auto;
    max-width: 620px;
    position: relative;
    z-index: 1;

}

.videoFrame:before {
    content: "";
    width: 566px;
    height: 14px;
    opacity: 0.6000000238418579;
    background: var(--new, linear-gradient(90deg, rgba(10, 27, 86, 0.00) 0%, #F19D69 25%, #CD4CCF 50%, #1C49DA 75%, rgba(10, 27, 86, 0.00) 100%));
    filter: blur(12px);
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.videoFrame:after {
    content: "";
    background: url(../images/howtoplay_bghome.png) no-repeat center center;
    width: 150%;
    height: 150%;
    position: absolute;
    left: 50%;
    z-index: -1;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.videoFrame img {
    width: 100%;
    height: auto;
    vertical-align: middle;
    border-radius: 24px;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    -ms-border-radius: 24px;
    -o-border-radius: 24px;
}

.selectGames {
    position: relative;
    margin: 40px 0px 15px;
    display: flex;
}

.selectGames:before {
    content: "";
    position: absolute;
    left: 0;
    top: -20px;
    width: 80px;
    height: 4px;
    border-radius: 30px;
    background: linear-gradient(90deg, #0A1B56 0%, #F19D69 25%, #CD4CCF 50%, #1C49DA 75%, #0A1B56 100%);
}

.selectGames .selectBox,
.selectGames .btnBox {
    width: calc(100%/3 - 10px);
    margin-left: 15px;
}

.selectGames .selectBox:first-of-type {
    margin-left: 0px;
}

.selectGames .selectBox select {
    border: 1px solid var(--gray4);
    color: var(--secondary);
    font-size: 18px;
    min-height: 48px;
    width: 100%;
    background: none;
    padding: 10px;
    font-weight: bold;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.btnBox button {
    background: #CED1DD;
    width: 100%;
    cursor: pointer;
    font-size: 18px;
    text-align: center;
    font-weight: 700;
    color: var(--main);
    min-height: 48px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.btnBox button:hover {
    color: var(--white);
    background: var(--main);
}

.videos_sec {
    background: radial-gradient(46.44% 50.03% at 50.03% 46.44%, rgba(28, 73, 218, 0.80) 0%, rgba(123, 46, 124, 0.00) 100%), linear-gradient(180deg, #081645 0%, #020511 100%);
    padding: 80px 0px;
    position: relative;
    z-index: 1;
}

.videos_sec:before {
    content: "";
    background: url(../images/videsSection_bg.png) no-repeat center top 100px;
    background-size: auto 60%;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    pointer-events: none;
    z-index: -1;
}

.videosSlider {
    max-width: 1100px;
    margin: 0px auto;
}

.video-single {
    margin-bottom: 50px;
}

.slider.video-nav {
    min-height: 180px;
}

.videoBox {
    max-width: 730px;
    margin: 0px auto;
}

.video-single .videoBox img {
    width: 100%;
    vertical-align: middle;
    border-radius: 24px;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    -ms-border-radius: 24px;
    -o-border-radius: 24px;
    border: 1px solid var(--white);
}

.textWithVideo {
    display: flex;
    align-items: center;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    background: linear-gradient(90deg, rgba(10, 27, 86, 0.20) 0%, rgba(241, 157, 105, 0.20) 25%, rgba(205, 76, 207, 0.20) 50%, rgba(28, 73, 218, 0.20) 75%, rgba(10, 27, 86, 0.20) 100%);
    overflow: hidden;
    padding: 8px;
    margin: 0px 7.5px;
}

.textWithVideo .leftBox {
    width: 240px;
    overflow: hidden;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    transition: all 0.5s ease;
}

.textWithVideo .rightBox {
    padding-left: 15px;
    transition: all 0.5s ease;
}

.textWithVideo .rightBox h5 {
    color: var(--white);
    font-size: 16px;
    font-weight: 600px;
    margin-bottom: 10px;
}

.textWithVideo .time span {
    background: rgba(255, 255, 255, 0.10);
    color: var(--white);
    display: inline-block;
    padding: 5px 10px;
    font-size: 14px;
    font-family: Arial, Helvetica, sans-serif;
    border-radius: 8px;
}

.video-nav .slick-slide .rightBox {
    display: none;
}

.video-nav .slick-center .textWithVideo {
    width: 550px;
}

.video-nav .slick-center .rightBox {
    display: block;
}

.slick-center .textWithVideo .leftBox {
    width: 290px;
}

.slick-center .textWithVideo .rightBox {
    width: calc(100% - 290px);
}

.video-nav .slick-track {
    display: flex;
    align-items: center;
}

.video-nav .slick-slide {
    float: none;
    transition: all 0.5s ease;
}

.faq_section {
    padding: 80px 0px;
}

.faq_section .accordion {
    max-width: 830px;
    margin: 50px auto auto;
}

.faq_section .accordion-toggle {
    background: var(--white) url(../images/plus_icon.svg) no-repeat right 15px center;
    padding: 20px 50px 20px 20px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    margin-bottom: 20px;
    color: var(--secondary);
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
}

.accordion-content {
    display: none;
}

.faq_section .accordion-toggle.active {
    background: var(--white) url(../images/minus_icon.svg) no-repeat right 15px center;
    border-radius: 8px 8px 0px 0px;
    -webkit-border-radius: 8px 8px 0px 0px;
    -moz-border-radius: 8px 8px 0px 0px;
    -ms-border-radius: 8px 8px 0px 0px;
    -o-border-radius: 8px 8px 0px 0px;
    margin-bottom: 0px;
    border-bottom: 1px solid var(--gray5);
}

.faq_section .accordion-toggle.active:before {
    background: var(--new, linear-gradient(90deg, rgba(10, 27, 86, 0.00) 0%, #F19D69 25%, #CD4CCF 50%, #1C49DA 75%, rgba(10, 27, 86, 0.00) 100%));
    content: "";
    width: 80%;
    height: 1px;
    position: absolute;
    top: -1px;
    left: 10%;
}

.accordion-content {
    margin-bottom: 20px;
    background: var(--white);
    padding: 20px;
    border-radius: 0px 0px 8px 8px;
    -webkit-border-radius: 0px 0px 8px 8px;
    -moz-border-radius: 0px 0px 8px 8px;
    -ms-border-radius: 0px 0px 8px 8px;
    -o-border-radius: 0px 0px 8px 8px;
    position: relative;
}

.accordion-content:before {
    content: "";
    box-shadow: 0px 8px 15px 0px rgba(64, 123, 255, 0.15);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0;
    pointer-events: none;
}

.accordion-content:after {
    background: var(--new, linear-gradient(90deg, rgba(10, 27, 86, 0.00) 0%, #F19D69 25%, #CD4CCF 50%, #1C49DA 75%, rgba(10, 27, 86, 0.00) 100%));
    content: "";
    width: 80%;
    height: 1px;
    position: absolute;
    bottom: -1px;
    left: 10%;
}

.accordion-content p {
    font-size: 16px;
    font-family: Roboto, sans-serif;
    line-height: normal;
    font-weight: 400;
    color: var(--gray2);
    margin: 0px;
}

.stillBox {
    max-width: 680px;
    margin: 50px auto auto;
    text-align: center;
}

.stillBox h6 {
    color: var(--secondary);
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

.stillBox p {
    font-size: 15px;
    color: var(--gray2);
    margin-bottom: 25px;
}

.borderBtnBlack {
    display: inline-block;
    background: transparent;
    color: var(--secondary);
    font-size: 17px;
    font-weight: bold;
    padding: 15px 15px;
    min-width: 180px;
    text-decoration: none;
    border: 1px solid var(--secondary);
    text-align: center;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.borderBtnBlack:hover {
    background: var(--secondary);
    color: var(--white);
}

.footer {
    background: linear-gradient(180deg, #263238 0%, #000E1A 100%);
    padding: 50px 0px 0px;
}

.footerTabs>ul {
    display: flex;
    justify-content: center;
}

.footerTabs>ul li {
    list-style: none;
    margin: 0px 15px;
}

.footerTabs>ul li a {
    color: var(--white);
    font-size: 16px;
    font-weight: bold;
    padding: 10px 40px 10px 20px;
    position: relative;
    display: block;
    text-decoration: none;
    opacity: 0.5;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.footerTabs>ul li a:before {
    content: "";
    border-left: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    width: 10px;
    height: 10px;
    position: absolute;
    right: 20px;
    transform: rotate(-45deg);
    top: calc(50% - 7px);
    transition: 0.5s;
}

.footerTabs>ul li.active a:before {
    transform: rotate(135deg);
    top: calc(50% - 2px);
}

.footerTabs>ul li.active a {
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
}

.footerTabs>ul li.active a:after {
    content: "";
    border-top: 10px solid rgba(255, 255, 255, 0.1);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-radius: 4px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
}

.footerTabs .tab-content {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.footerMenu {
    margin-top: 15px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footerMenu li {
    list-style: none;
    margin: 0px 20px;
}

.footerMenu li a {
    color: var(--white);
    font-size: 14px;
    display: block;
    padding: 15px 15px;
    font-weight: 500;
    text-decoration: none;
}

.footer02 {
    margin: 25px auto;
    padding: 25px 0px;
    border-top: 1px solid rgba(50, 61, 71, 1);
    border-bottom: 1px solid rgba(50, 61, 71, 1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer02 .left{
    width: 50%;
    padding: 0px 25px;
}

.footer02 .right {
    width: 25%;
    padding: 0px 16px;
}

.footer02 ul {
    display: flex;
    justify-content: center;
}

.footer02 ul li {
    list-style: none;
    border: 1px solid rgba(255, 255, 255, 0.4);
    display: flex;
    padding: 10px 15px;
    margin: 0px 10px;
    align-items: center;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.footer02 ul li span.icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.footer02 ul li span.icon svg {
    display: block;
}

.footer02 ul li p {
    margin: 0px;
    line-height: 18px;
    white-space: nowrap;
}

.footer02 ul li p strong {
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    display: block;
    color: var(--white);
}

.footer02 ul li p small {
    font-size: 12px;
    color: var(--gray4);
}

.footer03 {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(50, 61, 71, 1);
}

.footer03 p {
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    margin: 0px 0px 10px;
}

.rounded_icons {
    display: flex;
    align-items: center;
}

.rounded_icons li {
    list-style: none;
    margin: 0px 5px;
}

.rounded_icons li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--white);
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.rounded_icons li a:hover {
    background: var(--gray4);
}

.supportMail {
    margin: 0px 50px;
    text-align: center;
}

.supportMail p a {
    color: var(--white);
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.supportMail p a:hover {
    text-decoration: none;
}

.footer04 {
    padding: 25px 0px 5px;
}

.footer04 p {
    color: var(--gray4);
    font-size: 14px;
    font-family: Arial, Helvetica, sans-serif;
    margin-bottom: 8px;
}

.footer04 p b {
    color: #fff;
    font-weight: bold;
}

.footer04 p:last-child {
    margin-bottom: 0;
}

.chatBtnSticky {
    position: fixed;
    z-index: 5;
    width: 72px;
    height: 72px;
    right: 10px;
    bottom: 10px;
}

.chatBtnSticky:before {
    content: "";
    background: linear-gradient(rgba(130, 255, 106, 1), rgba(30, 124, 12, 1));
    animation: blinker 1s cubic-bezier(.5, 0, 1, 1) infinite alternate;
    width: 12px;
    height: 12px;
    position: absolute;
    top: -2px;
    left: -2px;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
}

@keyframes blinker {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.bottomDownloadSticky {
    position: sticky;
    z-index: 5;
    left: 10px;
    bottom: -200px;
    padding: 20px;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(4, 11, 34, 0.70) 0%, rgba(2, 5, 17, 0.70) 100%);
    backdrop-filter: blur(4px);
    transition: all 0.5s ease;
    max-width: 660px;
    margin-bottom: 10px;
}

.bottomDownloadSticky.showDiv {
    bottom: 10px;
}

.bottomDownloadSticky:before {
    background: var(--new, linear-gradient(90deg, rgba(10, 27, 86, 0.00) 0%, #F19D69 25%, #CD4CCF 50%, #1C49DA 75%, rgba(10, 27, 86, 0.00) 100%));
    content: "";
    width: 80%;
    height: 1px;
    position: absolute;
    top: -1px;
    left: 10%;
}

.bottomDownloadSticky:after {
    background: var(--new, linear-gradient(90deg, rgba(10, 27, 86, 0.00) 0%, #F19D69 25%, #CD4CCF 50%, #1C49DA 75%, rgba(10, 27, 86, 0.00) 100%));
    content: "";
    width: 80%;
    height: 1px;
    position: absolute;
    bottom: -1px;
    left: 10%;
}

.bottomDownloadSticky .withMobile .formblock input {
    padding: 10px 15px 10px 20px;
}

.bottomDownloadSticky .close {
    width: 32px;
    height: 32px;
    position: absolute;
    right: -16px;
    top: -16px;
    cursor: pointer;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    background: var(--white);
    text-align: center;
    line-height: 29px;
    font-size: 32px;
}

/* Testmonial Card */
.testmonial {
    border-radius: 16px;
    border: 1px solid var(--grey5, #F7F8F8);
    background: var(--Color, #FFF);
    box-shadow: 0px 4px 10px 0px rgba(132, 132, 132, 0.15);
    padding: 24px 16px;
    margin: 32px 40px;
}

.testmonial .topRow {
    display: flex;
    align-items: center;
    justify-content: center;
}

.testmonial .topRow .userImage {
    width: 80px;
    height: 80px;
    border-radius: 100%;
    margin-right: 16px;
}

.testmonial .topRow .colum {
    width: 100%;
    text-align: left;
}

.testmonial .topRow .colum .name {
    color: var(--secondary, #000E1A);
    font-size: 16px;
    font-weight: 400;
}

.testmonial .topRow .colum span {
    color: var(--alertOrange, #FF9700);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-top: 10px;
}

.testmonial .topRow .rating {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--alertGreen, #2B8C18);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    font-weight: 700;
}

.testmonial .topRow .rating svg {
    width: 24px;
    height: 24px;
    margin-right: 4px;
}

.testmonial>p {
    color: var(--grey2, #636C73);
    text-align: center;
    font-size: 18px;
    font-style: italic;
    font-weight: 400;
    margin: 16px 0 0;
}

.testmonials {
    position: relative;
}

.testmonials>.slick-arrow {
    position: absolute;
    width: 32px;
    height: 32px;
    background-color: #FFF;
    border-radius: 100%;
    top: calc(50% - 16px);
    z-index: 2;
}

.testmonials>.slick-arrow.prevArr {
    left: 0;
}

.testmonials>.slick-arrow.nextArr {
    right: 0;
}

.testmonials>.slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.testmonials>.slick-dots li {
    width: 6px;
    height: 6px;
    list-style: none;
    border-radius: 100%;
    background-color: #C6C9CC;
    margin-right: 12px;
}

.testmonials>.slick-dots li.slick-active {
    background-color: #000E1A;
}


.testmonials>.slick-dots li>button {
    display: none;
}


.mt11hero .slide {
    position: relative;
}

.mt11hero {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.mt11hero .slick-list {
    overflow: visible;
}

.mt11hero .slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 52px;
}

.mt11hero .slick-dots li {
    list-style: none;
    display: block;
    margin-left: 2px;
    margin-right: 2px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #fff;
    transition: 0.5s;
}

.mt11hero .slick-dots li.slick-active {
    background: #0B1D57;
}

.mt11hero .slick-dots li button {
    display: none;
}

/* FAQs */
.faq {
    background: linear-gradient(180deg, #081645 0%, #020511 100%);
    overflow: hidden;
}

.faq .left .faq-img {
    position: relative;
}



.faq .left .faq-img::before {
    background: url(../images/faqs/faqback.svg) no-repeat center center;
    background-size: 100% 100%;
    position: absolute;
    z-index: 1;
    pointer-events: none;
    content: "";
    animation: zoom-in-zoom-out 5s ease-out infinite;
    transform: scale(1.8);
    opacity: 0.4;
    width: 600px;
    height: 600px;
    top: calc(50% - 300px);
    left: calc(50% - 300px);
}

.faq .left .faq-img img {
    position: relative;
    z-index: 2;
}

.faq .left .faq-content {
    position: relative;
    z-index: 2;
}

/* .faq .back-img {
    background: url(../images/faqs/faqback.svg);
    background-repeat: no-repeat;
    background-position: left;
} */

.faq-img {
    text-align: center;

}

.faq .left {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 0px;
}

.faq .faq-content h1 {
    font-size: 38px;
    font-style: italic;
    font-weight: 900;
    text-transform: uppercase;
    color: transparent;
    margin-bottom: 8px;
    position: relative;
}

.faq .faq-content h1:before {
    content: attr(data-name);
    background: linear-gradient(90deg, #FEF5F0 0%, #FAEDFA 51.04%, #E8EDFB 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: absolute;
    left: 0px;
    color: var(--white);
    top: 0px;
    z-index: 1;
}

.faq .faq-content h1:after {
    content: attr(data-name);
    background: linear-gradient(90deg, rgba(10, 27, 86, 0), rgba(241, 157, 105, 1), rgba(205, 76, 207, 1), rgba(28, 73, 218, 1), rgba(10, 27, 86, 0));
    -webkit-background-clip: text;
    -webkit-text-stroke: 4px transparent;
    position: absolute;
    left: 0px;
    color: var(--white);
    top: 0px;
    z-index: 0;
}

.faq .faq-content p {
    color: var(--white, #FFF);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    margin: 0;

}

/* gamemanu secation */

.gamemanu {
    background: rgba(247, 248, 248, 1);
    box-shadow: 0px 4px 16px rgba(148, 154, 159, 1);
}

.gamemanu ul li {
    list-style: none;
    display: inline-block;
}

.gamemanu ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gamemanu ul li a {
    padding: 16px 64px;
    text-decoration: none;
    position: relative;
    color: var(--grey3, #949A9F);
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    white-space: nowrap;
    line-height: normal;
    display: block;
}

.gamemanu ul li a.active::after, .gamemanu ul li a:hover::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--new, linear-gradient(90deg, rgba(10, 27, 86, 0.00) 0%, #F19D69 25%, #CD4CCF 50%, #1C49DA 75%, rgba(10, 27, 86, 0.00) 100%));
    left: 0;
    border-radius: 40px;
    bottom: 0px;
}

.gamemanu ul li .active,
.gamemanu ul li a:hover {
    color: var(--secondary, #000E1A);
    text-align: center;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

/* game-img secation */

.game-img {
    padding: 80px 0px;
}

.game-img .game-imgs .boxes {
    display: none;
    /* display: flex; */
    align-items: stretch;
    flex-wrap: wrap;
    justify-content: center;
}

.game-img .game-imgs .boxes.active {
    display: flex;
}

.titlehome {
    font-size: 24px;
    line-height: 24px;
    text-align: center;
    padding: 7px 15px 10px 15px;
    color: #000;
    font-weight: bold;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.titlehome span {
    color: #000;
    text-align: center;
    background: #fff;
    padding: 0 50px;
}

.titlehome:before {
    border-top: 1px solid transparent;
    border-image: linear-gradient(to left, rgba(10, 27, 86, 0), rgba(241, 157, 105, 1), rgba(205, 76, 207, 1), rgba(28, 73, 218, 1), rgba(10, 27, 86, 0));
    border-image-slice: 1;
    content: "";
    margin: 0 auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    z-index: -1;
}

.gameactive,
.gamebtn:hover {
    background: var(--Linear-new, linear-gradient(180deg, #081645 0%, #020511 100%));
    color: white;
    border-radius: 24px;
}

.titlehome:after {
    border-bottom: 1px solid transparent;
    border-image: linear-gradient(to left, rgba(10, 27, 86, 0), rgba(241, 157, 105, 1), rgba(205, 76, 207, 1), rgba(28, 73, 218, 1), rgba(10, 27, 86, 0));
    border-image-slice: 1;
    content: "";
    margin: 0 auto;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    z-index: -1;
}

.game-img .game-imgs .game1 {
    width: 360px;
    padding: 32px;
    margin: 16px;
    text-align: center;
}

.game-img .game-imgs .game1 a {
    text-decoration: none;
    display: block;
}

.game-img .game-imgs .game1:hover h3 {
    color: #fff;
}

.game-img .game-imgs .game1:hover p {
    color: #fff;
}

.mnpolk {
    color: #fff !important;
}

.mnpolk1 {
    color: #fff !important;
}

.game-img .game-imgs .game1 h3 {
    color: #000;
    text-align: center;
    padding: 16px 0px 0px;

    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.game-img .game-imgs .game1 p {
    color: #000000;
    text-align: center;

    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
}

/* FAQ-DEATILS CSS START */
.Genral {
    background: var(--grey5, #F7F8F8);
}

.Genral .container {
    text-align: center;
}

.Genral .contant {
    padding: 26px 0px;
}

.Genral .contant a {
    color: var(--main, #1141C1);
    text-align: center;
    text-decoration: none;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;

}

.Genral .contant a.findact {
    color: #000;

}

.Genral .contant span {
    color: #000;

}

/* FAQ-DEATILS CSS END */


/* find secation css */

.find {
    margin: 0px auto;
    padding: 80px 0px;
    text-align: center;
    background: linear-gradient(180deg, #081645 0%, #020511 100%);
    ;
}

.find .find-content h4 {
    font-size: 40px;
    font-weight: 700;
    color: #fff;

}

.find .find-content p {
    font-size: 24px;
    font-weight: normal;
    color: #fff;

}

.find .btnfind {
    display: inline-block;
    background: transparent;
    color: var(--white);
    font-size: 17px;
    font-weight: bold;
    padding: 15px 15px;
    min-width: 180px;
    text-decoration: none;
    border: 1px solid var(--main-light);
    text-align: center;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.find .container {
    position: relative;
}

.find .container::before {
    content: '';
    background: url(../images/faqs/Union2.png) no-repeat center center;
    width: 100%;
    height: 100%;
    background-size: cover;
    position: absolute;
    left: 0px;
    pointer-events: none;
    top: 50%;
}

/* ludo faq css */
.faq_section .ludofaq {
    font-size: 36px;
    color: #000e1a;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 16px
}

/* faq ol li css */
.accordion-content ol,
.accordion-content ul {
    padding-left: 24px;
    margin-bottom: 16px;
}

.accordion-content p {
    margin-bottom: 5px;
    line-height: 28px;
}

.accordion-content ol li,
.accordion-content ul li {
    margin: 12px 0px;
}

.accordion-content .arial {
    font-family: Arial, Helvetica, sans-serif;
}

.accordion-content .star {
    font-size: 20px;
}

.faq_section .headingteam {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
}

.accordion-content h4,
.accordion-content h5,
.accordion-content h6 {
    margin: 25px 0 15px;
    color: #000e1a;
    font-weight: 600;
    font-size: 22px;
}



.table-bordered {
    border: 1px solid #dee2e6;
}


.table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 1rem;
    background-color: transparent;
}

th {
    text-align: inherit;
}

.table td,
.table th {
    padding: .75rem;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
}

.table-bordered td,
.table-bordered th {
    border: 1px solid #dee2e6;
}

.table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #dee2e6;
}

.table-bordered thead td,
.table-bordered thead th {
    border-bottom-width: 2px;
}


.tableDefault {
    margin: 25px 0px;
}

.faq_section .tableDefault {
    background: rgba(0, 0, 0, 0.05);
    /* border-radius: 16px; */
}

.tableDefault table {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    overflow: hidden;
}

.tableDefault table th {
    font-weight: bold;
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.faq_section.tableDefault table th {
    color: #373737;
}

.faq_section .tableDefault table td,
.faq_section .tableDefault table th {
    border: 1px solid #CDC3C5;
}

.tableDefault table td {
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.faq_section .tableDefault table td {
    color: #292929;
}

.faq_section .tableDefault table td,
.faqSection .tableDefault table th {
    border: 1px solid #CDC3C5;
}

.faq_section .tableDefault table td {
    color: #292929;
}

.faq_section.tableDefault table td,
.faqSection .tableDefault table th {
    border: 1px solid #CDC3C5;
}
/* faq ol li css end */

/* footer css */

.footer02 .paymant-footer {
    width: 25%;
    padding: 0px 16px;
    text-align: center;
}

footer img {
    max-width: 100%;
    height: auto;
}

.footer_legal_img {
    aspect-ratio: 9.13 / 1;
}




/*Mobile Responsive*/
@media (max-width:1399px) {

    .logo svg {
        max-width: 240px;
    }

    .head_menu>li>a {
        font-size: 16px;
        padding: 18px 20px;
    }

    .heorBanners .imageBox {
        max-width: 417px;
    }

    .rummy_banner .imageBox {
        max-width: 500px;
    }

    .heorBanners h1,
    .heorBanners h2 {
        font-size: 42px;
    }

    .heorBanners p.text {
        font-size: 22px;
        line-height: 28px;
    }

    .withMobile form>p {
        font-size: 16px;
    }

    .withMobile .formblock .telcode {
        font-size: 20px;
    }

    .withMobile .formblock input {
        font-size: 20px;
        min-height: 52px;
    }

    .withMobile .formblock button[type="submit"] {
        font-size: 16px;
        padding: 10px 20px;
        min-height: 52px;
    }

    .getBonus p {
        font-size: 16px;
    }

    .qr_scaner p {
        font-size: 14px;
    }

    .qrscan_img {
        width: 90px;
        height: 90px;
    }

    .defaultBtn {
        font-size: 16px;
    }

    .millionsPlayers .rightBox {
        width: 315px;
    }

    .millionsPlayers .leftBox {
        width: calc(100% - 315px);
    }

    .platform_fetures li {
        padding: 17px 15px;
        margin-left: 10px;
        border-radius: 15px;
        -webkit-border-radius: 15px;
        -moz-border-radius: 15px;
        -ms-border-radius: 15px;
        -o-border-radius: 15px;
    }

    .platform_fetures .icon {
        width: 80px;
        height: 80px;
    }

    .platform_fetures h4 {
        font-size: 20px;
    }

    .platform_fetures p {
        font-size: 16px;
        line-height: 24px;
    }

    .footerMenu li {
        margin: 0px 10px;
    }

    .footer02 .left,
    .footer02 .right,
    .footer02 .paymant-footer{
        width: auto;
    }
}

@media (max-width:1199px) {
    .logo {
        padding: 1px 15px;
    }

    .head_menu>li>a {
        font-size: 14px;
        padding: 15px 15px;
    }

    .head_menu>li>a.defaultBtn {
        font-size: 14px;
        padding: 10px 20px;
        margin-left: 0px;
    }

    .header .leftBox,
    .header .rightBox {
        width: calc(50% - 115px);
    }

    .withMobile .or {
        margin: 0px 15px;
    }

    .qr_scaner p {
        max-width: 100px;
        font-size: 12px;
    }

    .qrscan_img {
        width: 70px;
        height: 70px;
        padding: 3px;
    }

    .heorBanners {
        padding-top: 120px;
    }

    .heorBanners .leftBox {
        width: 45%;
    }

    .heorBanners .rightBox {
        width: 55%;
    }

    .heorBanners .imageBox {
        max-width: 352.5px;
    }

    .rummy_banner .imageBox {
        max-width: 430px;
    }

    .heorBanners h1,
    .heorBanners h2 {
        font-size: 36px;
    }

    .ourGames {
        margin-top: 100px;
    }

    .ourGames li {
        width: calc(100%/4 - 11.25px);
        margin-left: 15px;
    }

    .ourGames li h3 {
        margin-top: 0px;
        font-size: 20px;
    }

    .ourGames li .icon {
        max-width: 100px;
        margin: -50px auto 20px;
    }

    .ourGames li p {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 0px;
    }

    .defaultBtn {
        font-size: 14px;
    }

    .ourGames li .defaultBtn {
        min-height: 48px;
        padding: 15px 20px;
    }

    .millionsPlayers .container {
        align-items: flex-end;
    }

    .millionsPlayers .rightBox {
        width: 250px;
    }

    .millionsPlayers .leftBox {
        width: calc(100% - 250px);
    }

    .millionsPlayers {
        padding: 50px 0px 20px;
    }

    .platform_fetures h4 {
        font-size: 18px;
    }

    .platform_fetures li {
        padding: 0px 10px;
    }

    .platform_fetures p {
        font-size: 14px;
        line-height: 22px;
    }

    .heading02 {
        font-size: 35px;
    }

    .winning_locations .leftBox {
        width: calc(100% - 550px);
        padding-right: 20px;
    }

    .winning_locations .rightBox {
        width: 550px;
    }

    .winning_locations {
        padding: 50px 0px 50px;
    }

    .offers_section {
        padding: 50px 0px;
    }

    .howtoplay_section .leftBox {
        width: 50%;
        padding-right: 30px;
    }

    .howtoplay_section .rightBox {
        width: 50%;
    }

    .howtoplay_section {
        padding: 80px 0px;
    }

    .videos_sec {
        padding: 50px 0px;
    }

    .video-nav .slick-center .textWithVideo {
        width: 470px;
    }

    .textWithVideo .leftBox {
        width: 210px;
    }

    .slick-center .textWithVideo .leftBox {
        width: 250px;
    }

    .slick-center .textWithVideo .rightBox {
        width: calc(100% - 250px);
    }

    .faq_section {
        padding: 50px 0px;
    }

    .footerMenu {
        flex-wrap: wrap;
    }

    .footerMenu li {
        margin: 0px 5px;
    }

    .footer02 .left,
    .footer02 .right {
        padding: 0px 10px;
    }

    .footer02 ul li {
        padding: 7px 10px;
        margin: 0px 5px;
    }

    .footer02 ul li span.icon {
        width: 20px;
        height: 20px;
        margin-right: 5px;
    }

    .footer02 ul li span.icon svg {
        width: 100%;
        height: 100%;
    }

    .footer02 ul li p {
        line-height: 15px;
    }

    .footer02 ul li p strong {
        font-size: 14px;
    }

    .footer02 ul li p small {
        font-size: 10px;
    }

    .bottomDownloadSticky {
        padding: 15px;
    }

    .gamemanu ul li a{
        padding: 16px 32px;
    }

    .game-img .game-imgs .game1 {
        width: 288px;
        padding: 16px;
    }


}

@media (max-width:991px) {

    .header .leftBox,
    .header .rightBox {
        display: none;
    }

    .header {
        backdrop-filter: blur(0px);
    }

    .header:before {
        height: 85px;
        background-size: auto 126px;
        top: -20px;
    }

    .header .container {
        justify-content: center;
    }

    .logo svg,
    .logo {
        top: 0;
    }

    .heorBanners .container {
        flex-wrap: wrap;
    }

    .heorBanners .leftBox {
        width: 100%;
    }

    .heorBanners .rightBox {
        width: 100%;
        padding: 0px;
    }

    .getApp {
        display: none;
    }

    .heorBanners .container {
        text-align: center;
        justify-content: center;

        flex-direction: column-reverse;
    }

    .heorBanners {
        padding-top: 100px;
    }

    .heorBanners h1,
    .heorBanners h2 {
        font-size: 32px;
        margin-left: auto;
        margin-right: auto;
    }

    .heorBanners p.text {
        font-size: 18px;
        line-height: 28px;
        margin-left: auto;
        margin-right: auto;
    }

    .heorBanners .leftBox {
        padding-top: 10px;
    }

    .heorBanners .imageBox {
        max-width: 360px;
    }

    .rummy_banner .imageBox {
        max-width: 392px;
    }

    .bannerBotStatus {
        max-width: 400px;
        padding: 8px;
        flex-wrap: wrap;
        bottom: -58px;
    }

    .mt11hero .slick-dots {
        margin-top: 62px;
    }


    .bannerBotStatus>span.icon {
        width: 40px;
        height: 40px;
    }

    .barText p {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .bannerBotStatus .barText {
        padding-left: 10px;
        width: calc(100% - 40px);
    }

    .barText ul li {
        width: auto;
        font-size: 10px;
        margin: 2px 7px;
    }

    .barText ul li span.icon {
        width: 16px;
        height: 16px;
    }

    .barText ul li span.icon svg {
        width: 100%;
        height: 100%;
    }

    .availableOn {
        width: 100%;
        margin-top: 7px;
        padding-top: 7px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .availableOn p {
        font-size: 12px;
        margin: 0px;
    }

    .availableOn a {
        width: 18px;
        height: 18px;
    }

    .availableOn a svg {
        width: 100%;
        height: 100%;
    }

    .ourGames {
        margin-top: 0px;
    }

    .ourGames li {
        width: calc(100%/2 - 10px);
        margin-left: 20px;
        margin-bottom: 60px;
        margin-top: 60px;
    }

    .ourGames li:nth-child(2n+1) {
        margin-left: 0px;
    }

    .topGames_sec {
        padding: 80px 0px 20px;
    }

    .millionsPlayers .rightBox {
        display: none;
    }

    .millionsPlayers .leftBox {
        width: 100%;
        padding-right: 0px;
    }

    .platform_fetures {
        flex-wrap: wrap;
        justify-content: center;
    }

    .platform_fetures li {
        padding: 0px 10px;
        width: 100%;
        max-width: 235px;
        min-width: 235px;
        margin: 20px 15px;
        min-height: 235px;
    }

    .winning_locations .leftBox {
        width: 100%;
        text-align: center;
        margin-bottom: 0px;
        padding-right: 0;
    }

    .winning_locations .rightBox {
        width: 100%;
    }

    .offersOuter {
        overflow: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0 -15px auto;
    }

    .offerList {
        padding-left: 15px;
        padding-right: 15px;
        margin: 40px 0 auto;
        padding-bottom: 20px;

    }

    .offerList li {
        margin-left: 15px;
        width: 230px;
        min-width: 230px;
    }

    .viewOfferBtn {
        margin-top: 40px;
    }

    .howtoplay_section .container {
        flex-wrap: wrap;
    }

    .howtoplay_section .leftBox {
        width: 100%;
        margin-bottom: 35px;
        text-align: center;
    }

    .howtoplay_section .rightBox {
        width: 100%;
    }

    .footerTabs>ul li {
        margin: 0px 7px;
    }

    .footerTabs>ul li a {
        font-size: 14px;
        padding: 10px 30px 10px 15px;
        white-space: nowrap;
    }

    .footerTabs>ul li a:before {
        width: 6px;
        height: 6px;
        right: 14px;
        top: calc(50% - 4px);
    }

    .footerMenu li a {
        font-size: 12px;
        padding: 10px 12px;
    }

    .footer02 {
        margin: 15px auto;
        padding: 15px 0px;
        flex-wrap: wrap;
    }

    .footer02 .left,
    .footer02 .right {
        width: 100%;
    }

    .footer02 .left,
    .footer02 .paymant-footer {
        margin-bottom: 15px;
    }

    .footer03 {
        flex-wrap: wrap;
    }

    .supportMail {
        width: 100%;
        margin: 25px auto;
    }

    .footer03 p {
        margin-bottom: 8px;
        font-size: 12px;
        text-align: center;
    }

    .supportMail p a {
        font-size: 20px;
    }

    .footer04 {
        padding-top: 15px;
    }

    .heorBanners {
        padding-top: 80px;
    }

    .gamemanu ul li a{
        padding: 16px 24px;
    }

    .gamemanu ul li a {
        font-size: 18px;
    }

    .game-img .game-imgs .game1 {
        margin: 0;
        width: calc(32% - 6px);
        margin-right: 12px;
        margin-bottom: 12px;
    }

    .game-img .game-imgs .game1 p {
        font-size: 16px;
        line-height: 24px;
        margin: 8px 0px 8px;
    }

    .game-img .game-imgs .game1 h3 {
        font-size: 18px;
        padding: 8px 0px 0px;
    }

        .logo svg {
        max-width: 200px;
    }
}

@media (max-width:767px) {


    
    .bannerBotStatus:after,
    .bannerBotStatus:before {
        display: none;
    }

    .bannerBotStatus {
        border-width: 4px;
    }

    .footerTabs>ul li {
        margin: 0;
    }

    .footerTabs>ul li a {
        font-size: 11px;
        padding: 8px 25px 8px 10px;
    }

    .footerTabs>ul li.active a:after {
        display: none;
    }

    .footerTabs>ul li a:before {
        width: 5px;
        height: 5px;
        right: 10px;
    }

    .footer02 ul {
        flex-wrap: wrap;
    }

    .footer02 ul li {
        padding: 4px 9px;
        margin: 5px;
        border-radius: 4px;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        -ms-border-radius: 4px;
        -o-border-radius: 4px;
    }

    .footer02 ul li span.icon {
        width: 16px;
        height: 16px;
    }

    .footer02 ul li p {
        line-height: 12px;
    }

    .footer02 ul li p strong {
        font-size: 12px;
    }

    .footer02 ul li p small {
        font-size: 8px;
    }

    .howtoplay_section .leftBox {
        padding-right: 0px;
    }

    .slider.video-nav {
        margin-left: -15px;
        margin-right: -15px;
    }

    .video-single {
        margin-bottom: 30px;
    }

    .testmonial {
        margin: 16px 32px;
    }

    .testmonials>.slick-arrow {
        width: 24px;
        height: 24px;
        top: calc(50% - 12px);
    }

    .gamemanu ul{
        justify-content: space-around;
    }

    .gamemanu ul li a {
        font-size: 14px;
        padding: 16px;
    }

    .faq .left {
        display: block;
    }

    .faq .faq-content h1,
    .faq .faq-content p {
        text-align: center;
    }

    .faq .left .faq-img {
        width: 50%;
        margin: 0px auto;
    }

    .game-img {
        padding: 40px 0px;
    }

    .game-img .game-imgs .game1 {
        padding: 8px;
    }

    .game-img .game-imgs .game1 {
        margin: 0;
        width: calc(50% - 4px);
        margin-right: 8px;
        margin-bottom: 8px;
    }

    .game-img .game-imgs .game1:nth-child(2n+2) {
        margin-right: 0;
    }

    .game-img .game-imgs .game1 h3 {
        padding: 8px 0px 0px;
        font-size: 16px;

    }

    .game-img .game-imgs .game1 p {
        font-size: 14px;
        line-height: 22px;
        padding: 4px 0px 4px;
        margin: 0px;
    }

    .game-img .game-imgs .game1 img {
        width: 50%;
    }

    .faq .left {
        padding: 60px 0px 20px;
    }

    .faq .faq-content h1:after {
        display: block;
        width: 100%;
        text-align: center;
    }

    .faq .faq-content h1::before {
        display: block;
        width: 100%;
        text-align: center;
    }

    .faq_section {
        padding: 30px 0px;
    }

    .heading02 {
        font-size: 26px;
    }

    .head p {
        font-size: 18px;
    }

    .faq_section .ludofaq {
        font-size: 26px;
        margin-bottom: 12px;
    }

}



@media (max-width:479px) {
    .logo {
        padding: 0px 10px;
    }

    .logo svg {
        max-width: 180px;
    }

    .header:before {
        height: 105px;
        background-size: auto 110px;
        top: -18px;
    }

    .heorBanners {
        padding-top: 90px;
    }

    .heorBanners h1,
    .heorBanners h2 {
        font-size: 28px;
    }

    .heorBanners p.text {
        font-size: 16px;
        line-height: 24px;
    }

    .bannerBotStatus {
        border-radius: 8px;
        -webkit-border-radius: 8px;
        -moz-border-radius: 8px;
        -ms-border-radius: 8px;
        -o-border-radius: 8px;
        max-width: 340px;
        padding: 5px;
        border-width: 2px;
    }

    .barText ul li {
        font-size: 8px;
        margin: 0px 5px;
    }

    .offerList li {
        border-radius: 8px;
        -webkit-border-radius: 8px;
        -moz-border-radius: 8px;
        -ms-border-radius: 8px;
        -o-border-radius: 8px;
    }

    .head {
        margin: 0px auto 20px;
    }

    .heading02 {
        font-size: 22px;
    }


    .ourGames li {
        width: 100%;
        margin-left: auto;
        border-radius: 8px;
        -webkit-border-radius: 8px;
        -moz-border-radius: 8px;
        -ms-border-radius: 8px;
        -o-border-radius: 8px;
    }

    .ourGames li .defaultBtn {
        min-width: 200px;
    }

    .ourGames li:hover,
    .offerList li:hover {
        transform: scale(1);
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
    }

    .platform_fetures li {
        margin: 10px 15px;
    }

    .winning_locations .leftBox {
        margin-bottom: 0px;
    }

    .howtoplay_section .leftBox p {
        font-size: 18px;
    }

    .selectGames {
        flex-wrap: wrap;
    }

    .selectGames .selectBox,
    .selectGames .btnBox {
        width: 100%;
        margin: 5px auto;
    }

    .videoFrame img,
    .video-single .videoBox img {
        border-radius: 8px;
        -webkit-border-radius: 8px;
        -moz-border-radius: 8px;
        -ms-border-radius: 8px;
        -o-border-radius: 8px;
    }

    .faq_section .accordion-toggle {
        font-size: 16px;
        padding: 15px 50px 15px 15px;
    }

    .borderBtnBlack {
        padding: 10px 15px;
    }

    .slider.video-nav {
        min-height: 80px;
    }

    .slick-center .textWithVideo .leftBox,
    .textWithVideo .leftBox {
        width: 100%;
    }

    .textWithVideo {
        padding: 4px;
        border-radius: 4px;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        -ms-border-radius: 4px;
        -o-border-radius: 4px;
    }

    .textWithVideo .leftBox {
        border-radius: 4px;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        -ms-border-radius: 4px;
        -o-border-radius: 4px;
    }

    .video-nav .slick-center .textWithVideo {
        width: 100%;
        margin: 0;
    }

    .slick-center .textWithVideo .rightBox {
        display: none;
    }

    .accordion-content {
        padding: 10px 15px;
    }

    .accordion-content p {
        font-size: 14px;
        line-height: 20px;
    }

    .footer {
        padding: 30px 0px 0px;
    }

    .footer04 p {
        font-size: 12px;
    }

    .chatBtnSticky {
        width: 48px;
        height: 48px;
    }

    .heorBanners.rummy_banner .leftBox {
        padding-top: 0;
    }

    .heorBanners.rummy_banner p.text {
        margin-bottom: 0;
    }

    .heorBanners .imageBox {
        max-width: 254px;
    }

    .rummy_banner .imageBox {
        max-width: 330px;
    }

    .faq .faq-content p {
        font-size: 16px;
        line-height: 22px;
        margin: 10px 0px 10px;
    }

    .faq .faq-content h1 {
        font-size: 24px;
        line-height: 30px;

    }

    .titlehome:before {
        width: 60%;
    }

    .titlehome::after {
        width: 60%;
    }

    .game-img .game-imgs .game1 h3 {
        padding: 8px 0px 0px;
        font-size: 16px;

    }

    .game-img .game-imgs .game1 p {
        font-size: 14px;
        line-height: 22px;
        padding: 4px 0px 4px;
        margin: 0px;
    }

    .game-img .game-imgs .game1 img {
        width: 50%;
    }

    .game-img .game-imgs .game1 {
        margin: 0;
        width: calc(50% - 4px);
        margin-right: 8px;
        margin-bottom: 8px;
    }

    .game-img .game-imgs .game1:nth-child(2n+2) {
        margin-right: 0;
    }

    .Genral .contant {
        padding: 16px 0px;
    }

    .Genral .contant a {
        font-size: 18px;
    }

    .faq_section {
        padding: 30px 0px;
    }

    .faq_section .ludofaq {
        font-size: 16px;
        margin-bottom: 8px;
    }
    .gamemanu ul li a{
        font-size: 12px;
        padding: 12px;
    }

}

@media (max-width:375px) {

    .heorBanners h1,
    .heorBanners h2 {
        font-size: 24px;
    }

    .heorBanners p.text {
        font-size: 14px;
        line-height: 20px;
    }

    .footer04 {
        padding-top: 10px;
    }

    .footerTabs>ul li a {
        font-size: 10px;
        padding: 8px 20px 8px 5px;
        border-radius: 4px;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        -ms-border-radius: 4px;
        -o-border-radius: 4px;
    }

    .footerTabs>ul li a:before {
        width: 4px;
        height: 4px;
        right: 8px;
    }

    .heading02 {
        font-size: 20px;
    }

    .head p {
        font-size: 14px;
    }
}

/*  */
.footer04 p {
    color: var(--gray4);
    font-size: 14px;
    font-family: Arial, Helvetica, sans-serif;
    margin-bottom: 8px;
}

.footer04 p:last-child {
    margin-bottom: 0;
}
.footer04 p strong {
    text-transform: uppercase;
    color: #ffbc1d;
    font-weight: 700s;
}

.footer_disc {
    text-align: center;
    background: #fff;
    padding: 10px 0;
    margin-top: 8px;
}

.footer_disc p {
    font-size: 14px;
    line-height: 22px;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}