body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    /* overflow-x: hidden; */
}


body.blockSite{
   overflow: hidden; 
}
body.blockSite:before{
    position: fixed;
    content: "";
    width: 100%;
    height: 100%;
    background: url(../images/banner1/text.png) no-repeat center;
    background-color: rgb(0 0 0 / 80%);
    left: 0;
    top: auto;
    z-index: 999;
    overflow: hidden;
}

.ovx-h {
    overflow-x: hidden;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

@font-face {
    font-family: "myfont";
    src: url(../Font/Roboto-Medium.ttf) format(truetype);
    font-style: normal;
    font-weight: 400;
}

@font-face {
    font-family: "myfont-1";
    src: url(../Font/Roboto-Light.ttf) format(truetype);
    font-style: normal;
    font-weight: 400;
}

@font-face {
    font-family: "myfont-bold";
    src: url(../Font/Roboto-Bold.ttf) format(truetype);
    font-style: normal;
    font-weight: 400;
}


:root {
    --primary-color: #B20017;
    --secondary-color: #707070;
    --white-color: #ffffff;
    --black-color: #000000;
    --danger-color: #dc3545;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block
}

ul, li {
    list-style: none;
    padding: 0;
    margin: 0;
}

a {
    margin: 0;
    padding: 0;
    vertical-align: baseline;
    background: transparent;
    text-decoration: none;
}

.section-title {
    text-align: center;
    font-family: 'myfont-bold';
    font-size: 32px;
    font-weight: 600;
    /* padding-top: 70px; */
    padding-bottom: 20px;
    letter-spacing: 1.28px;
}

.section-title h1 {
    color: var(--black-color);
    font-size: 45px;
    font-weight: 900;
}

.section-title p {
    text-align: center;
    font-family: 'myfont-1';
    color: var(--secondary-color);
    font-size: 16px;
    max-width: 600px;
    font-weight: 600;
    margin: 0 auto;
    padding-top: 16px;
}

.pt-30 {
    padding-top: 30px;
}

.pb-30 {
    padding-bottom: 30px !important;
}

.pt-50 {
    padding-top: 50px;
}

.pt-100 {
    padding-top: 100px;
}

.mt-100 {
    margin-top: 100px;
}

.mt-70 {
    margin-top: 70px;
}

.mt-50 {
    margin-top: 50px;
}

/*  */

.animate {
    will-change: transform, opacity;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}

textarea:focus, input:focus {
    outline: none;
}

textarea {
    resize: none;
}

img {
    max-width: 100%;
}


.container {
    max-width: 1140px;
    width: 100%;
    padding: 0 16px;
    margin: 0 auto;
}

@media (min-width:1600px) {
    .logo img {
        height: 72px;
    }
}

/* new hewder */




/* =========================
      home_banner & header      
   ========================*/

header.header {
    position: absolute;
    top: 0px;
    display: grid;
    grid-auto-flow: column;
    justify-content: space-between;
    align-items: center;
    padding: 16px 48px;
    left: 0;
    right: 0;
    z-index: 2;
    transition: .4s ease background-color;
}

header.header--inner {
    position: sticky;
    position: -webkit-sticky;
    box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
    top: 0;
    background-color: #000;

}

header.header.sticky-header {
    position: fixed;
    top: 0;
    background-color: #000;
    transition: .4s ease background-color;
    z-index: 999;
    /* width: 100%; */
}

.ham-menu {
    display: none;
}

.menu {
    display: grid;
    grid-auto-flow: column;
    align-items: center;
    justify-content: flex-end;
    grid-column-gap: 50px;
}

.menu a {
    font-family: 'myfont';
    font-size: 17px;
    font-weight: 400;
    line-height: normal;
    color: #fff;
    display: inline-block;
}


.menu a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    margin-top: 4px;
    background: #fff;
    transition: width .3s;
}

.menu a:hover::after {
    width: 100%;
    transition: width .3s;
}


.logo img {
    height: 50px;
}

.home-banner {
    position: relative;
}

.home-banner .home-banner__img {
    width: 100%;
}

/* sub-menu */

.menu li {
    padding: 5px;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-menu-1 {
    display: none;
    position: absolute;
    /* background: linear-gradient(90deg, #431010 1.41%, #230505e0 100%); */
    background: #431010;
    width: 150px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    padding: 12px 16px;
    z-index: 1;
    /* top: 35px; */
    top: 60px;
    transition: 1s;
}

.dropdown:hover .dropdown-menu-1 {
    display: block;
    top: 35px;
    transition: 1s;
}

.dropbtn {
    background-color: transparent;
    color: white;
    font-size: 16px;
    border: none;

}

.dropdown {
    position: relative;
    display: inline-block;
    transition: all 0.1s ease-in-out;
}

.dropdown i {
    color: #fff;
}

.dropdown a {
    padding-right: 5px;
}



.dropdown a:hover i {
    transform: rotate(180deg);
}



.dropdown-content {
    display: none;
    top: 40px;
    position: absolute;
    background: linear-gradient(90deg, #431010 1.41%, rgba(35, 5, 5, 0.88) 100%);
    width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    color: var(--white-color);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown:hover .dropdown-content {
    display: block;

}

/* .home-banner .home-banner__img.home-banner__img--desktop {
    display: block;
} */

/* .home-banner .home-banner__img.home-banner__img--mobile {
    display: none;
} */
.mobile {
    display: none;
}

.desktop {
    display: block;
}

.resp-how-to-play {
    display: block;
}

.home-banner__data img {
    width: initial;
}

.home-banner__data {
    position: absolute;
    left: 10%;
    top: 70%;
    transform: translateY(-70%);
}

.home-banner__data__title {
    margin: 0;
    font-family: 'myfont-1';
    font-size: 42px;
    font-weight: 600;
    letter-spacing: 40;
    color: #fff;
    margin-bottom: 32px;
    max-width: 560px;
    line-height: 60px;
}

.color-change {
    color: #FBD530;
    font-family: 'myfont-1';
    font-size: 42px;
    font-weight: 400;
    letter-spacing: 40;
    margin-bottom: 15px;
    max-width: 560px;
    line-height: 60px;
}

.krishna-banner {
    position: absolute;
    right: 20%;
    bottom: 0%;
    transform: translateY(-0%)
}

.krishna-banner img {
    height: 330px;
}

.home-banner__data p {
    font-family: 'myfont-1';
    font-weight: 600;
    font-size: 12px;
    color: var(--white-color);
}

.txtField {
    float: left;
    position: relative;
    width: 320px;
    background: linear-gradient(to right, #A7A6A6, #C0C0C0);
    padding: 1px;
    border-radius: 5px;
    margin-right: 10px;
}

.txtField span {
    border-right: 1px solid #d5d5d5;
    color: var(--black-color);
    font-family: 'myfont', sans-serif;
    font-size: 18px;
    left: 0;
    position: absolute;
    text-align: center;
    top: 0px;
    width: 40px;
    line-height: 20px;
    z-index: 2;
    bottom: 0;
    margin: auto 0;
    height: 20px;
}

.txtField input {
    border-radius: 5px;
    background-color: var(--white-color);

    border: none;
    box-sizing: border-box;
    font-family: 'myfont', sans-serif;
    color: #a8a8a8;
    font-weight: normal;
    float: left;
    font-size: 18px;
    height: 40px;
    position: relative;
    padding: 7% 5% 7% 15%;
    width: 100%;
    z-index: 1;
    line-height: 1.3;
    outline: 0;
    border-radius: 5px;
}

.submitBox {
    background: linear-gradient(to right, #BFFFD1, #FFFFFF, #BFFFD1);

    border-radius: 5px;
    display: inline;
}

.getAppBtn {
    border-radius: 5px;
    background: rgb(16, 158, 56);
    background: radial-gradient(circle, rgba(16, 158, 56, 1) 0%, rgba(9, 84, 30, 0.8870141806722689) 100%);
    color: #ffffff;
    float: left;
    font-family: 'myfont-1', sans-serif;
    height: 40px;
    line-height: 40px;

    text-align: center;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    padding: 0 15px;
    width: 132px;
}

.scan-qr {
    display: inline;
}

/* my team11 css  */
.top_banner {
    background-size: cover;
    background-position: top center;
    padding-top: 128px;
    position: relative;
}

.top_banner:before {
    /* background: rgba(0,0,0,.1); */
    /* border-top: 1px solid rgba(255,255,255,.1); */
    width: calc(50% + 400px);
    content: "";
    height: 70px;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
}

.top_banner.new_ff_top_banner .imageblock .banner_bottom_border_line img{
    max-width: 95%;
}

.top_banner .container {
    display: flex;
    -webkit-display: flex;
    align-items: flex-end;
    justify-content: space-around;
}

.top_banner h1 {
    color: var(--white-color);
    font-family: 'myfont-1';
    /* font-size: 48px; */
    font-size: 40px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.92px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.sub-text {
    color: var(--white-color);
    font-family: 'myfont-1';
    /* font-size: 48px; */
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: .5px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.top_banner h1 span {
    font-family: 'myfont-bold';
    font-size: 42px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.92px;
    color: #FBD530;
    text-transform: uppercase;
}

.top_banner .imageblock {
    width: auto;
    position: relative;
    z-index: 0;
}

.download_with {
    display: flex;
    -webkit-display: flex;
    align-items: center;
    /* align-items: flex-end; */
    justify-content: space-between;
    max-width: 650px;
}

.get_apk {
    width: 400px;
}

.get_apk p {
    color: var(--white-color);
    font-family: 'myfont-1';
    font-size: 12px;
    font-weight: 400;
    margin: 0 0 5px;
    letter-spacing: 0.48px;
}

.get_apk form {
    position: relative;
}

.get_apk .formblock {
    display: flex;
    -webkit-display: flex;
    position: relative;
}

.get_apk .telcode {
    position: absolute;
    left: 8px;
    top: 12px;
    font-family: 'myfont';
    letter-spacing: 0.8px;
    color: var(--black-color);
    font-weight: 600;
    pointer-events: none;
}

.get_apk input {
    width: calc(100% - 140px);
    border: none;
    font-size: 16px;
    font-family: 'myfont';
    font-weight: 400;
    height: 44px;
    color: #707070;
    border-radius: 4px;
    padding: 5px 10px 5px 40px;
}

.get_apk .btn {
    font-size: 16px;
    min-width: 130px;
    font-family: 'myfont';
    margin-left: 10px;
    color: var(--white-color);
    background-color: #C9A100;
    border: none;
}

.get_apk p#moberror, .get_apk p#moberrorrummy {
    color: red;
    font-weight: 500;
    margin-top: 5px;
    font-size: 14px;
    position: absolute;
    bottom: -30px;
    left: 0;
}

.get_apk p#mobgreen, .get_apk p#mobgreenrummy {
    color: #47ba38;
    font-weight: 500;
    margin-top: 5px;
    font-size: 14px;
    left: 0;
}

.qr_scaner {
    width: 240px;
    border-left: 1px dashed rgba(255, 255, 255, .5);
    padding-left: 10px;
    margin-left: 10px;
    display: flex;
    -webkit-display: flex;
    align-items: center;
}

.qr_scaner {
    width: 240px;
    border-left: 1px solid var(--white-color);
    padding-left: 20px;
    margin-left: 20px;
    display: flex;
    -webkit-display: flex;
    align-items: center;
}

.qr_scaner p {
    color: var(--white-color);
    font-family: 'myfont';
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.64px;
    padding-left: 10px;
    margin-bottom: 0;
}

/* .smsText, .top_banner .textblock>p {
    color: #fff;
    font-size: 12px;
    margin-top: 3px;
    margin-bottom: 10px;
} */
.top_banner.new_ff_top_banner .container {
    display: flex;
    -webkit-display: flex;
    align-items: flex-end;
    justify-content: space-around;
}

.top_banner.new_ff_top_banner {
    background-size: cover;
    background-position: top center;
    padding-top: 128px;
    position: relative;
    height: 100vh;
    max-height: 670px;
    overflow: hidden;
}

.top_banner.new_ff_top_banner .textblock {
    width: 50%;
    position: relative;
    padding-bottom: 0px;
}

.top_banner.new_ff_top_banner .imageblock {
    width: 50%;
    position: relative;
    z-index: 0;
}

.top_banner.new_ff_top_banner .bannerPartner img {
    max-width: 60%;
    height: auto;
    margin-bottom: 20px;
}

.top_banner.new_ff_top_banner .bannerText img {
    max-width: 75%;
    height: auto;
    padding: 20px 0;
}

.top_banner.new_ff_top_banner .bannerQr img {
    max-width: 55%;
    height: auto;
    padding: 10px 0 50px;
}

.top_banner.new_ff_top_banner .imageblock img {
    max-width: 82%;
    height: auto;
    margin: 0 auto;
}

.top_banner.new_ff_top_banner .banner_bottom_border_line {
    position: absolute;
    left: 7px;
    border: 0;
    z-index: 10;
    width: 100%;
    bottom: 25px;
}

.fix-banner-mobile{
    background: #590000;
    overflow: hidden;
}

.fix-banner-mobile .sec-body{
    background: #a40303 url(../images/banner1/banner_mobile_bg.jpg) no-repeat center center;
    background-size: cover;
    justify-content: flex-start;
    /*height: 100vh;*/
    height: calc(100vh -65px);
}

.fix-banner-mobile .new-data {
    position: relative;
    bottom: 0%;
    margin-top: 96px;
    margin-bottom: 0px;
    z-index: 99;
}

.fix-banner-mobile .mob_banner{
    position: absolute;
    max-width: 350px;
    text-align: center;
    height: calc(70% - 65px);
    top: 30%;
    left: 50%;
    transform: translate(-50%, -0%);
    width: 100%;
    z-index: 1;
}

.fix-banner-mobile .mob_banner img {
    vertical-align: middle;
    height: auto;
    max-height: 95%;
    position: absolute;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    bottom: 0px;
    left: 50%;
    z-index: 1;
    width: 95%;
}

.fix-banner-mobile .new-data .heading img {
    max-width: 300px;
}

.fix-banner-mobile .mob_banner .bottom_img img{
    width: auto;
    max-width: 500px;
    bottom: 15px;
    max-height: 55px;
}

.fix-banner-mobile .sec-body::after {
    
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #040000 35%);
}

.fix-banner-mobile header.header {
    padding: 5px 15px;
}

.fix-banner-mobile header.header img{
    height: auto !important;
    max-width: 150px;
}

.speciality {
    display: flex;
    -webkit-display: flex;
    position: absolute;
    left: 0;
    bottom: 5px;
    z-index: 0;
}

.speciality li:first-of-type {
    border-left: none;
    margin-left: 0;
    padding-left: 45px;
}

.speciality li:first-of-type span.icon {
    left: 10px;
}

.speciality span.icon svg {
    width: 100%;
    height: 100%;
}

.speciality a {
    width: 100%;
    display: inline-block;
}

.speciality p {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
}

.speciality p small {
    display: block;
    font-size: 14px;
    text-transform: capitalize;
    font-weight: 400;
}

.speciality li {
    list-style: none;
    padding: 5px 0 5px 65px;
    position: relative;
    color: #fff;
    border-left: 1px solid var(--white-color);
    margin-left: 25px;
}

.speciality span.icon {
    width: 28px;
    height: 28px;
    position: absolute;
    left: 25px;
    top: 15px;
}

.speciality p {
    font-family: 'myfont-1';
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
}

.top_banner .textblock {
    width: calc(100% - 465px);
    padding-bottom: 100px;
    position: relative;
}

/*  */



.section-title h2 {
    font-family: 'myfont-bold', sans-serif;
    font-size: 32px;
    font-weight: 600;
    padding-top: 70px;
    padding-bottom: 16px;
    letter-spacing: 1.28px;
    color: var(--black-color);
    margin: 0;
}

.section-title span {
    color: var(--primary-color);
}

/*  */

.banner-bottom-logo__slider {
    padding-top: 48px;
    /* display: grid;
    grid-auto-flow: column;
    grid-column-gap: 16px; */
}

.shadow img {
    filter: drop-shadow(30px 30px 5px red);
}

/* ==========================
how to play? section
=============================*/

.how-to-play-bg {
    background: #F8F8F8;
}

.how-to-play-left-right-section {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    position: relative;
}

.how-to-play-step-two .section-text {
    /* width: 55%; */
    /* padding-right: 29px; */
    max-width: 280px;
    /* margin: 0 0 0 auto; */
}

.how-to-play-step-two .section-text li {
    /* margin-bottom: 13px !important; */
    /* margin-top: 0 !important; */
    /* margin-bottom: 30px; */
    cursor: pointer;
}

/* .how-to-play-inner-section li span {
    display: block;
    color: #1F1F3980;
    font-weight: 400;
    margin-top: 4px;
} */

.body-section li:after {
    content: "";
    background: #707070;
    width: 30px;
    height: 30px;
    text-align: center;
    color: var(--white-color);
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    top: 10px;
    left: 0;
}

.body-section .point-1 li:after {
    content: "1";
    background: #707070;
    width: 28px;
    height: 28px;
    text-align: center;
    color: var(--white-color);
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    top: 0px;
    left: 285px;
    padding-top: 1px;
}

.body-section .point-2 li:after {
    content: "2";
    background: #707070;
    width: 28px;
    height: 28px;
    text-align: center;
    color: var(--white-color);
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    top: 0px;
    left: 285px;
    padding-top: 1px;
}

.body-section .point-3 li:after {
    content: "3";
    background: #707070;
    width: 28px;
    height: 28px;
    text-align: center;
    color: var(--white-color);
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    top: 0px;
    left: 285px;
    padding-top: 1px;
}

.body-section .point-4 li:after {
    content: "4";
    background: #707070;
    width: 28px;
    height: 28px;
    text-align: center;
    color: var(--white-color);
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    top: 0px;
    left: -20%;
    padding-top: 1px;
}

.body-section .point-5 li:after {
    content: "5";
    background: #707070;
    width: 28px;
    height: 28px;
    text-align: center;
    color: var(--white-color);
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    top: 0px;
    left: -20%;
    padding-top: 1px;
}

.body-section .point-6 li:after {
    content: "6";
    background: #707070;
    width: 28px;
    height: 28px;
    text-align: center;
    color: var(--white-color);
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    top: 0px;
    left: 85%;
    padding-top: 1px;
}

.body-section .point-1 li.active:after {
    background: transparent linear-gradient(180deg, #FE585B 0%, #E01317 100%) 0% 0% no-repeat padding-box;
}

.body-section .point-2 li.active:after {
    background: transparent linear-gradient(180deg, #FE585B 0%, #E01317 100%) 0% 0% no-repeat padding-box;
}

.body-section .point-3 li.active:after {
    background: transparent linear-gradient(180deg, #FE585B 0%, #E01317 100%) 0% 0% no-repeat padding-box;
}

.body-section .point-4 li.active:after {
    background: transparent linear-gradient(180deg, #FE585B 0%, #E01317 100%) 0% 0% no-repeat padding-box;
}

.body-section .point-5 li.active:after {
    background: transparent linear-gradient(180deg, #FE585B 0%, #E01317 100%) 0% 0% no-repeat padding-box;
}

.body-section .point-6 li.active:after {
    background: transparent linear-gradient(180deg, #FE585B 0%, #E01317 100%) 0% 0% no-repeat padding-box;
}

/* .body-section .how-to-play-step-two li.active:after {
    background:  transparent linear-gradient(180deg, #FE585B 0%, #E01317 100%) 0% 0% no-repeat padding-box;
} */

.body-section li {
    font-size: 17px;
    line-height: 26px;
    color: #22223dad;
    font-family: 'myfont-1', sans-serif;
    font-weight: 400;
    padding-left: 0;
    /* padding-left: 24px; */
}



.how-to-play-step-two .img-section {
    width: 100%;
    /* width: 45%; */
    text-align: center;
}

.how-to-play-step-two .img-section img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -0%);
    /* max-width: 313px; */
    max-width: 210px;
    margin: 0 auto;
    display: block;
    /* padding-left: 20px; */
}

.img-center {
    padding-bottom: 10px;
}

.how-to-play-left-right-section img {
    width: 100%;
    max-width: 100%;
}

.evenly {
    justify-content: space-evenly;
    width: 94%;
    margin: 0 auto;
}

.feature_card .media-left {
    padding-right: 20px;
    padding-top: 5px;
}

.featuer_icon {
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    text-align: center;
    line-height: 50px;
    /* box-shadow: rgba(237, 32, 36, 0.3) 0px 18px 18px;
    background: rgb(255, 91, 94); */
    box-shadow: rgba(237, 32, 36, 0.3) 0px 0px 12px 8px;
    background: -moz-linear-gradient(top, rgba(255, 91, 94, 1) 0%, rgba(237, 32, 36, 1) 100%);
    background: -webkit-linear-gradient(top, rgba(255, 91, 94, 1) 0%, rgba(237, 32, 36, 1) 100%);
    /* background: linear-gradient(to bottom, rgba(255, 91, 94, 1) 0%, rgba(237, 32, 36, 1) 100%); */
    background: linear-gradient(277deg, rgb(103, 0, 13) 0%, rgb(178, 0, 25) 100%) 0% 0% no-repeat padding-box padding-box transparent;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5b5e', endColorstr='#ed2024', GradientType=0);
}

.top-game {
    padding: 0 8px;
}

.games-sec {
    display: flex;
}

.game-box {
    width: 180px;
    margin: 8px;
    border-radius: 8px;
    background: #f4f2f6;
    gap: 5px;
    /* padding-bottom: 12px; */
}

.game-name {
    padding: 0 12px;
}

.game-name p {
    margin-top: 8px;
    text-align: left;
    color: #230046;
    font-size: 20px;
    line-height: 28px;
}

.point-1 {
    max-width: 280px;
    position: absolute;
    top: 30PX;
    left: 0px;
}

.point-2 {
    max-width: 280px;
    position: absolute;
    top: 150px;
    left: 0;
}

.point-3 {
    max-width: 280px;
    position: absolute;
    top: 340px;
    left: 0;
}

.point-4 {
    max-width: 280px;
    position: absolute;
    top: 110px;
    right: 0;
}

.point-5 {
    max-width: 280px;
    position: absolute;
    top: 270px;
    right: 0%;
}

.point-6 {
    max-width: 280px;
    position: absolute;
    top: 375px;
    left: 0;
}

.section-text h3 {
    font-family: 'myfont';
    font-weight: 700;
    font-size: 19px;
    color: var(--black-color);
    margin-bottom: 13px;
    margin-top: 0;
    cursor: pointer;
}

.section-text li {
    font-family: 'myfont-1';
    font-weight: 600;
    font-size: 16px;
    color: var(--secondary-color);
}

/*  */

.mid-banner-section {
    padding-top: 615px;
}


.mid-banner {
    background: url(../images/mid_banneer.png);
    height: auto;
    background-size: cover;
    position: relative;
}

.layer {
    background-color: #67000d8f;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.mid-banner-p {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
}

.mid-banner-text {
    max-width: 660px;
}

.mid-banner-text h2 {
    color: var(--white-color);
    font-family: 'myfont-bold';
    font-size: 48px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.92px;
    margin-bottom: 15px;
}

.mid-banner-text p {
    color: var(--white-color);
    font-family: 'myfont-1';
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.64px;
    margin-bottom: 15px;
}

.mid-banner-text span {
    font-family: 'myfont-bold';
    font-size: 42px;
    font-weight: 700;
    color: #FBD530;
}

.apk img {
    height: 60px;
    margin-left: 16px;
}

.mid-banner-screen img {
    margin-top: -100px;
}

.welcome-to-ff-trxt-area strong {
    font-family: 'myfont-1';
    font-weight: 600;
    font-size: 20px;
    /* letter-spacing: 0.42px; */
    color: var(--black-color);
}

.welcome-to-ff-trxt-area p {
    font-family: 'myfont-1';
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.42px;
    /* color: #222222; */
    color: #3f3c3c;
    text-align: justify;
}

.point-change h3 {
    font-family: 'myfont';
    font-weight: 600;
    font-size: 25px;
    /* letter-spacing: 0.42px; */
    color: var(--black-color);
}

.welcome-to-ff-trxt-area li {
    margin-bottom: 5px;
    /* max-width: 524px; */
}

.welcome-to-ff-trxt-area li {
    font-family: 'myfont-1';
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.42px;
    color: #3f3c3c;
    padding-left: 24px;
    position: relative;
}

.welcome-to-ff-trxt-area li:after {
    content: "";
    width: 8px;
    height: 8px;
    text-align: center;
    color: var(--white-color);
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    top: 6px;
    left: 0;
}

.welcome-to-ff-trxt-area li:after {
    border: 1px solid var(--primary-color);
}

.media-body h3 {
    color: var(--black-color);
    font-family: 'myfont';
    font-size: 22px;
    letter-spacing: 0;
    font-weight: 600;
}

.media-body P {
    font-family: 'myfont-1';
    color: var(--secondary-color);
    font-size: 16px;
    letter-spacing: 0.64px;
    letter-spacing: 0;
    font-weight: 600;
}

#scrollImage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: top 0.3s ease-out;
}

#social-float {
    position: fixed;
    bottom: 10px;
    right: 0px;
    height: 80%;
    padding: 10px 5px;
    /* display: none; */
}

.wrapperdiv {
    height: 900px;
}

#stickyimg {
    position: sticky;
    /* position: -webkit-sticky; */
    position: -webkit-sticky;
    /* background: #f83d23; */
    width: 100%;
    height: auto;
    top: 100px;
    display: block;
    /* bottom: 0; */
    right: 0;
    /* bottom: 0; */
}

.p-k {
    background: url('../images/prasidh-krishna-bg.png') no-repeat 87% 70%;
    /* background-position: right; */
    background-attachment: fixed;
    /* background-size: 30% 87%; */
    /* background-size: auto; */
    background-size: 23%;
}

@media only screen and (max-width: 12652px) and (min-width: 1800px) {
    .p-k {
        background: url(../images/prasidh-krishna-bg.png) no-repeat;
        background-position: right;
    }
}

.top-game-section {
    margin-top: 0px;
    background: #F8F8F8;
}

.top-games-ff {
    padding-bottom: 60px;
    margin-bottom: 70px;
}

.spoets-game img {
    width: 190px;
    /* transition: all 0.5s; */
    /* display: block; */
}

/* .spoets-game img:hover {
    transform: scale(1.2);
} */

.spoets-game a {
    /* margin-top: 60px; */
    /* width: 190px; */
    transition: all 0.5s;
    display: block;
}

.spoets-game a:hover {
    /* margin-top: 60px; */
    /* width: 190px; */
    /* display: block; */
    transform: scale(1.2);
}


.spoets-game p {
    font-family: 'myfont-1' !important;
    font-size: 20px !important;
    color: #838383 !important;
    /* color: #000000 !important; */
    font-weight: 600;
    padding-top: 15px;
    text-align: center !important;
    /* padding-bottom: 60px; */
    transition: color 0.3s
}

.spoets-game p p:hover {
    color: #b20019;
}

/* faq */

.app-download-section {
    background: #987ABF1A;
}

.faq-accordion .accordion {
    list-style-type: none;
    padding-left: 0;
    /* margin: 0 auto;
    max-width: 560px; */
}

.faq-accordion .accordion .accordion-item {
    display: block;
    /* -webkit-box-shadow:  0px 15px 60px #006DAE1A; ; */
    /* box-shadow: 0px 15px 60px #006DAE1Al;*/
    /* background: #ffffff; */
    margin-bottom: 15px;
    border: 1px solid #D6D6D6;
    border-radius: 10px;
    font-family: 'myfont-1';
    /* box-shadow: 6px 8px 13px 2px #00000029; */
    box-shadow: 6px 8px 13px 2px #006DAE1A;

}

.accordion-item h3 {
    /* padding: 20px 25px 17px 60px; */
    /* color: #221638; */
    text-decoration: none;
    position: relative;
    display: block;
    /* font-size: 18px; */
    font-weight: 600;
    font-family: 'myfont-1';
    font-size: 20px;
    letter-spacing: 0px;
    color: #222222;
    margin: 0;
}

.faq-accordion .accordion .accordion-title {
    padding: 20px;
    /* padding: 20px 25px 17px 60px; */
    /* color: #221638; */
    font-family: 'myfont-1';
    text-decoration: none;
    position: relative;
    display: block;
    /* font-size: 18px; */
    /* font-weight: 800; */
    font-size: 18px;
    letter-spacing: 0px;
    color: #222A41;
    /* border: 1px solid #D6D6D6;
    border-radius: 10px; */
}

.faq-accordion .accordion .accordion-content.show {
    display: block;

}

.accordion-content p {
    font-family: 'myfont-1';
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.42px;
    color: #3f3c3c;
}

.faq-accordion .accordion .accordion-content {
    display: none;
    position: relative;
    margin-top: -5px;
    padding-bottom: 20px;
    padding-right: 20px;
    padding-left: 20px;
    /* box-shadow: 0px 15px 60px #006DAE1A; */
}

.faq-accordion .accordion .accordion-title.active i {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.faq-accordion .accordion .accordion-title i {
    position: absolute;
    right: 23px;
    top: 23px;
    font-size: 16px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    /* border: 1px solid #000; */
}

/* ezy-game */


.game-text {
    font-family: 'myfont-1';
    font-size: 16px;
    letter-spacing: 0px;
    color: #222A41;
    padding-top: 32px;
}

.about-games {
    padding-top: 40px;
}

.game-list-container {
    margin-bottom: 32px;
}

.game-list {
    max-width: 388px;
}

.game-img {
    margin-right: 23px;
}

.game-title {
    padding: 0 25px 0 0;

}

.game-title h4 {
    font-family: 'myfont-1';
    font-size: 18px;
    letter-spacing: 0.32px;
    color: #21203C;
    margin-bottom: 12px;
}

.game-title p {
    font-family: 'myfont-1';
    font-size: 14px;
    letter-spacing: 0px;
    color: #21203C;
    margin-bottom: 8px;
}

.game-title a {
    font-family: 'myfont-1';
    font-size: 14px;
    letter-spacing: 0px;
    color: #3E1475;
    text-transform: capitalize;
    margin-bottom: 10px;
}

/* cta btn */

.sticky-btns.hide-btn {
    display: none;
}



.jumbotron {
    padding: 0 !important;
}


.page-scrolled .link-btn {
    display: block;
    position: fixed;
    bottom: 0;
    z-index: 1;
    left: 0;
    width: 100%;
    /* background: #fff; */
}

.link-btn {
    display: none;
}

.sticky-btns {
    bottom: 1px;
    position: sticky;
    /* background: #fff; */
    /* background: transparent linear-gradient(277deg, #67000D 0%, #B20019 100%) 0% 0% no-repeat padding-box; */
    background: transparent linear-gradient(277deg, #1c1c1c 0%, #0a0a0a 100%) 0% 0% no-repeat padding-box;
    /* background: #000; */
    max-width: 387px;
    margin: 0 auto;
    /* border: 1px solid #edeff5; */
    padding: 10px 10px 10px 10px;
    border-radius: 8px;
    z-index: 6;
}

.btnbox {
    display: flex;
    flex-direction: row;
    /* justify-content: space-around; */
    justify-content: center;
    align-items: center;
    gap: 10px;

}

.btnbox img {
    width: 100%;
    height: auto;
    max-width: 215px;
}
.sticky-btns-wrapper {
    padding: 0 !important;
    bottom: 0 !important;
    background: transparent !important;
}
.android-ios_apk-wrapper {
    display: none;
}

@media screen and (max-width: 380px) {
    .sticky-btns {
        bottom: 1px;
        position: sticky;
        /* background: #fff; */
        max-width: 387px;
        margin: 0 auto;
        /* border: 1px solid #edeff5; */
        padding: 10px 10px 10px 10px;
        border-radius: 8px;
        z-index: 6;
    }


    .btnbox {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        gap: 10px;

    }

    .btnbox img {
        width: 100%;
        height: auto;
        max-width: 215px;
    }
}

@media screen and (max-width: 768px) {
    .sticky-btns {
        max-width: 335px;
        /* background: #fff; */
        margin: 0 auto;
        padding: 5px;
    }
    .btnbox {
        display: none;
    }
    .android-ios_bg {
        position: sticky;
        bottom: 0px !important;
        width: 100% !important;
        margin: 0 auto;
        border-radius: 8px;
    }
    .android-ios_apk-wrapper {
        bottom: 0% !important;
        padding: 0% !important;
        display: block;
    }

    .sticky-btns img {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 500px) {
    .sticky-btns {
        /* max-width: 280px; */
        max-width: 100%;
        border-radius: 0;
    }

    .android-app {
        height: 42px;

    }

    .ios-app {
        height: 42px;
    }
}

/*  */

.why-batball-11-section .top-text-section {
    text-align: center;
    max-width: 754px;
    margin: 0 auto 100px;
}

.why-batball-11-section .top-text-section h2 {
    margin-bottom: 36px;
}

.features-section {
    position: relative;
    border-radius: 25px;
    background: transparent linear-gradient(277deg, #67000D 0%, #B20019 100%) 0% 0% no-repeat padding-box;
}

/* .features-section:after {
    content: "";
    background: transparent linear-gradient(277deg, #67000D 0%, #B20019 100%) 0% 0% no-repeat padding-box;
    width: 100%;
    height: 63%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 25px;
} */

.features-inner-section {
    position: relative;
    z-index: 1;
    padding: 100px 15px 164px;
    max-width: 995px;
    margin: 0 auto;
}

.features-inner-section .top-section-text {
    text-align: center;
}

.features-inner-section .top-section-text {
    text-align: center;
    max-width: 675px;
    /* margin: 0 auto 100px; */
    margin: 0 auto 0px;
}

.features-inner-section .top-section-text h2 {
    font-family: 'myfont';
    font-size: 36px;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: var(--white-color);
    margin-bottom: 8px;
}

.top-section-text p {
    font-family: 'myfont-1';
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 0.36px;
    color: var(--white-color);
}

.features-inner-card h4 {
    font-family: 'myfont';
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.col-12 {
    width: 100%;
}

.col-6 {
    width: 50%;
}

.col-4 {
    width: 33.33%;
}

.features-inner-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
    margin: 0 -16px;
}

.features-inner-card {
    background: #fff;
    border: 2px solid #efc8c9;
    border-radius: 20px;
    padding: 32px 15px 31px;
    text-align: center;
}

.features-card {
    padding: 16px;
}

.features-inner-card p {
    font-size: 16px;
    line-height: 22px;
    color: #1F1F39;
    font-weight: 400;
    font-family: 'myfont-1', sans-serif;
}

.features-inner-card img {
    margin-bottom: 12px;
    /* max-height: 32px; */
    max-height: 50px;
}

.features-section .features-inner-section {
    padding-bottom: 30px;
}

/* .features-section.features-section:after {
    content: "";
    height: 950px;
} */
.support-system .achievement-section .features-inner-section a {
    font-family: 'myfont';
    font-weight: 600;
    font-size: 24px;
    color: var(--primary-color);
    text-decoration: none;
}

@media screen and (max-width: 1550px) {
    .support-system .achievement-section.features-section:after {
        height: 380px;
    }
}

.support-system .achievement-section .features-inner-section .features-inner-card:hover {
    transform: scale(1.1);
}

.support-system .achievement-section .features-inner-section .features-inner-card {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

/* footer */

.social-media {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: baseline;
}

.social-media img:hover {
    fill: #b20017;
}

.footer-bottom__curve-img {
    width: 100%;
    margin-top: -5px;
}

.footer-top {
    max-width: 1136px;
    margin: 0 auto;
    background-color: #B20017;
    border-radius: 10px 10px 0 0;
    padding: 32px 40px;
    font-family: 'myfont-1';
    display: grid;
    grid-auto-flow: column;
    justify-content: space-around;
    align-items: center;
    grid-column-gap: 100px;
}

.footer-top__left__img {
    width: 136px;
    height: 136px;
    background-color: #333;
}

.footer-top__left {
    display: grid;
    grid-auto-flow: column;
    align-items: center;
    grid-column-gap: 16px;
}

.footer-top__left__det p {
    margin: 0;
    line-height: 28px;
    color: #fff;
    font-weight: 600;
}

.footer-top__left__det__row {
    display: flex;
    grid-gap: 16px;
}

.footer-top__left__det .footer-top__left__det__row p {
    font-size: 18px;
}

.footer-top__left__det .footer-top__left__det__row p a {
    color: #fff;
}

.footer-top__left__det p.footer-top__left__det__title {
    font-family: 'myfont-bold';
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 16px;
}

footer.footer-bottom {
    background-color: #000;
}

.footer-bottom__top {
    display: grid;
    grid-auto-flow: column;
    grid-column-gap: 25px;
    font-family: 'myfont-1';
}

.footer-bottom__top__list {
    /* text-align: center; */
    text-align: left;
}

.footer-bottom__top__list img {
    margin-top: 40px;
}

.footer-bottom__top__list:last-child p {
    display: none;
}


.footer-bottom__top__list__img-div {
    display: flex;
    justify-content: center;
}

.footer-bottom__top__list__img-div img {
    min-width: 153px;
    min-height: 130px;
}

.footer-bottom__top p, .footer-bottom__top a {
    color: rgb(255 255 255 / 0.7);
}

.footer-bottom__top p.footer-bottom__top__list__title {
    color: #fff;
    font-weight: bold;
}

.footer-bottom__bottom {
    font-family: 'myfont-1';
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    border-top: 1px solid #2F2F31;
    margin-top: 10px;
}

.footer-bottom__bottom-2 {
    font-family: 'myfont-1';
    text-align: center;
    padding-top: 5px;
    padding-bottom: 5px;
    /* border-top: 1px solid #2F2F31; */
    margin-top: 5px;

}

.footer-bottom__bottom-2 p {
    font-size: 12px;
    color: rgba(255, 255, 255, .7);
    margin: 0;
}

.footer-bottom__bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, .7);
    margin: 0;
}

/* new footer changea */

.footer-logo-section {
    margin-bottom: 40px;
    width: 27%;
    padding-right: 30px;
}

.footer-logo-section img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 150px;
    margin-bottom: 12px;
}

.green-btn {
    padding: 14px 28px;
    background-color: #39AD5E;
    /* background: transparent linear-gradient(277deg, #67000D 0%, #B20019 100%) 0% 0% no-repeat padding-box; */
    font-family: 'myfont';
    text-align: center;
    border-radius: 5px;
    color: #fff;
    font-weight: 500;
    display: inline-block;
}

.green-btn:hover {
    color: var(--white-color);
    text-decoration: none;
}

/* The Modal (background) */
.query-modal {
    display: none;
    position: fixed;
    z-index: 2;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
    place-items: center;
}

.modal-content {
    background-color: #fefefe;
    /* margin: 15% auto;  */
    /* padding: 20px; */
    border: 1px solid #888;
    width: 90%;
    max-width: 400px;
    position: relative;
    border-radius: 14px;
}

.modal-content__header {
    padding: 32px 32px 16px;
    border-bottom: 1px solid #707070;
}

.modal-content__body {
    padding: 24px 32px 32px;
}

h1.modal-content__header__title {
    margin: 0;
    text-align: center;
    font-size: 24px;
}

.modal-content__body input[type="text"], .modal-content__body select {
    width: 100%;
    height: 40px;
    background-color: transparent;
    border: 1px solid #9F9F9F;
    border-radius: 4px;
    margin-bottom: 12px;
    font-size: 14px;
    padding: 0 12px;
}

.modal-content__body textarea {
    width: 100%;
    height: 80px;
    resize: none;
    border: 1px solid #9F9F9F;
    border-radius: 4px;
    font-size: 14px;
    padding: 12px;
}

.modal-content__body input[type="submit"] {
    margin: 0 auto;
    display: flex;
    margin-top: 32px;
    width: 140px;
    height: 45px;
    align-items: center;
    justify-content: center;
    border: none;
    /* background-color: #39AD5E; */
    background: linear-gradient(277deg, rgb(103, 0, 13) 0%, rgb(178, 0, 25) 100%) 0% 0% no-repeat padding-box padding-box transparent;
    border-radius: 4px;
    font-size: 16px;
    color: #fff;
    font-weight: 500;
}

.close {
    width: 40px;
    height: 40px;
    /* background-color: #B20017; */
    background: linear-gradient(277deg, rgb(103, 0, 13) 0%, rgb(178, 0, 25) 100%) 0% 0% no-repeat padding-box padding-box transparent;
    border-radius: 40px;
    position: absolute;
    top: -20px;
    right: -20px;
    display: grid;
    place-items: center;
}

.close:before {
    position: absolute;
    content: '';
    width: 20px;
    height: 2px;
    background-color: #fff;
    transform: rotate(45deg);
}

.close:after {
    position: absolute;
    content: '';
    height: 20px;
    width: 2px;
    background-color: #fff;
    transform: rotate(-135deg);
}

/* APK BTN */
.android-ios_apk {
    display: none;
}

.resp-apk {
    display: none;
}

.how-to-play-slider {
    display: none;
}

.how-to-play-bg {
    display: block;
}

/* ============================================= fantasy_game ========================================== */

.fantas-game .container {
    /* flex-direction: row-reverse; */
    align-items: flex-end;
    justify-content: space-around
}

.fantasy-sports-taext-area {
    padding-top: 100px;
    /* padding-bottom: 75px; */
}

.fantasy-sports h2 {
    color: var(--black-color);
    font-family: 'myfont-1';
    font-weight: 600;
    font-size: 30px;
    margin-top: 5px;
    margin-bottom: 10px;
}

.fantasy-sports h3 {
    color: var(--black-color);
    font-family: 'myfont-1';
    font-weight: 600;
    font-size: 22px;
    margin-top: 20px;
    margin-bottom: 0px;
}

.fantasy-sports p {
    color: #222222;
    font-family: 'myfont-1';
    font-weight: 400;
    font-size: 16px;
    margin-top: 5px;
    margin-bottom: 10px;
    text-align: justify;
}


/* ##################*********
    POINT SYSTEM PAGE START
**********#################### */
.point-system {
    padding-top: 55px;
    font-family: 'myfont-1';
}

.point-system .title {
    font-family: 'myfont-bold';
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    margin: 0;
    color: var(--black-color);
}

.point-system span {
    color: var(--primary-color) !important;
}

.point-system__table {
    max-width: 1100px;
    margin: 0 auto;
    margin-top: 64px;
}

.point-system__table__header {
    box-shadow: 0px 3px 6px #00000029;
    margin-bottom: 40px;
    position: sticky;
    position: -webkit-sticky;
    top: 86px;
    background-color: #fff;
    border-radius: 10px;
    z-index: 1;
    overflow-x: scroll;
    box-shadow: 4px 5px 6px 3px #00000029;
}

.point-system__table__header::-webkit-scrollbar {
    display: none;
}

.point-system__table__header__sports, .point-system__table__header__sports__format {
    display: flex;
    height: 60px;
    align-items: center;
}

.point-system__table__header__sports__format {
    display: none;
}

.point-system__table__header__sports__format.point-system__table__header__sports__format--show {
    display: flex;
}

.point-system__table__header__sports>a, .point-system__table__header__sports__format>a {
    flex: 1;
    text-align: center;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid #7C7C7C;
    font-size: 16px;
    font-weight: 600;
    color: #000;
}

.point-system__table__header__sports a {
    padding: 0 12px;
    /* font-size: 12px; */
    flex-direction: column;
}

.point-system__table__header__sports a svg {
    display: block;
    height: 24px;
    margin-bottom: 4px;
}

.point-system__table__header__sports a.active {
    color: #B20617;
}

.point-system__table__header__sports a.active svg circle {
    fill: #B20617;
}

.point-system__table__header__sports a.active[data-id="basketball"] svg circle {
    fill: inherit;
}

.point-system__table__header__sports a.active[data-id="basketball"] svg path {
    fill: #B20617;
}

.point-system__table__header__sports__format>a {
    font-weight: 400;
    border-bottom: none
}

.point-system__table__header__sports>a.active, .point-system__table__header__sports__format>a.active {
    border-bottom: 2px solid #B20617;
    font-weight: 600;
    color: #B20617;
}

.point-system__table__body__data {
    display: none;
}

.point-system__table__body__data.point-system__table__body__data--show {
    display: block;
}

.point-system__table__body__data__box__ans {
    display: none;
}

.point-system__table__body__data__box--show .point-system__table__body__data__box__ans {
    display: block;
}

.point-system__table__body__data__box--show a.point-system__table__body__data__box__que:after {
    transform: rotate(-135deg);
    margin-top: 8px;
    transition: .2s transform ease-in;
}

video {
    max-width: 100%;
    display: block;
    margin: 48px auto;
}

.point-system__table__body__data__box {
    /* box-shadow: 0px 3px 6px rgba(0, 0, 0, .1); */
    box-shadow: 6px 8px 13px 2px #00000029;
    ;
    margin-bottom: 20px;
    border-radius: 10px;
}

.point-system__table__body__data__format {
    display: none;
}

.point-system__table__body__data__format.point-system__table__body__data__format--show {
    display: block;
}

.point-system__table__body__data__box__img {
    display: none;
}

a.point-system__table__body__data__box__que {
    height: 56px;
    display: flex;
    align-items: center;
    border-bottom: 2px solid rgba(178, 0, 23, 0.3);
    padding: 20px 40px 20px 20px;
    color: #000000;
    font-size: 15px;
    font-weight: 600;
    position: relative;
    border-radius: 10px;
    text-transform: uppercase;
    /* box-shadow: 6px 8px 13px 2px #00000029; */
}

a.point-system__table__body__data__box__que:after {
    position: absolute;
    content: '';
    right: 20px;
    width: 10px;
    height: 10px;
    border-right: 2px solid #707070;
    border-bottom: 2px solid #707070;
    transform: rotate(45deg);
    transition: .2s transform ease-in;
}

.point-system__table__body__data__box__row {
    display: flex;
    padding: 0 20px;
    justify-content: space-between;
    height: 56px;
    align-items: center;
    padding-right: 0;
    gap: 5px;
}

.point-system__table__body__data__box__row p:nth-child(2) {
    height: 56px;
    width: 56px;
    display: grid;
    place-items: center;
    /* background-color: #fd4848; */
    background-color: #FEE4D6;
    color: #fd7c37;
}

.point-system__table__body__data__box__row p:nth-child(1) {
    flex: 1;
}

.point-system__table__body__data__box__row:nth-child(even) {
    background-color: #f2f2f2
}

.point-system__table__body__data__box__row p {
    margin: 0;
    color: #000;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    /* line-height: 1.5; */
}

.point-system__table__body__data__box__row__right {
    display: flex;
    align-items: center;
    /* width: 25%; */
}

.point-system__table__body__data__box__row .point-system__table__body__data__box__row__right p {
    width: 56px;
    background-color: #FEE4D6;
    height: 56px;
    display: grid;
    place-items: center;
    color: #fd7c37;
}

.green-bg {
    /* background-color: #8cdb8c !important; */
    background-color: #DFF7E7 !important;
    color: #3fcb6e !important;
}

/* ##################*********
POINT SYSTEM PAGE END
**********#################### */

.welcome-to-ff-trxt-area li a {
    font-size: 16px;
    /* line-height: 26px; */
    color: #222222;
    font-family: 'myfont-1';
    font-weight: 400;
    /* padding-left: 24px; */
    position: relative;
}

.faq {
    background: #FFFFFF;
    box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.06);
    border-radius: 4px;
}

.faq .card {
    border: none;
    background: none;
    border-bottom: 1px dashed #CEE1F8;
}

.faq .card .card-header {
    padding: 0px;
    border: none;
    background: none;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.faq .card .card-header:hover {
    background: rgba(233, 30, 99, 0.1);
    padding-left: 10px;
}

.faq .card .card-header .faq-title {
    width: 100%;
    text-align: left;
    padding: 0px;
    padding-left: 30px;
    padding-right: 30px;
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 1px;
    color: #3B566E;
    text-decoration: none !important;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    cursor: pointer;
    padding-top: 20px;
    padding-bottom: 20px;
}

.faq .card .card-header .faq-title .badge {
    display: inline-block;
    width: 20px;
    height: 20px;
    line-height: 14px;
    float: left;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
    text-align: center;
    background: #E91E63;
    color: #fff;
    font-size: 12px;
    margin-right: 20px;
}

.faq .card .card-body {
    padding: 30px;
    padding-left: 35px;
    padding-bottom: 16px;
    font-weight: 400;
    font-size: 16px;
    color: #6F8BA4;
    line-height: 28px;
    letter-spacing: 1px;
    border-top: 1px solid #F3F8FF;
}

.faq .card .card-body p {
    margin-bottom: 14px;
}

@media (max-width: 991px) {
    .faq {
        margin-bottom: 30px;
    }

    .faq .card .card-header .faq-title {
        line-height: 26px;
        margin-top: 10px;
    }
}

.steps li {
    list-style-type: square;
    /* font-family: 'myfont-1';  */
}

.tab-content {
    font-family: 'myfont-1';
}

/* play-responsibly-text-area */



.play-responsibly-text-area {
    padding-top: 70px;
    text-align: justify;
}

.play-responsibly-text-area h1 {
    font-family: 'myfont';
    color: var(--black-color);
    font-size: 25px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.5;
}

.play-responsibly-text-area h2 {
    font-family: 'myfont';
    font-size: 20px;
    color: var(--black-color);
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.5;
}

.play-responsibly-text-area p {
    font-family: 'myfont-1';
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.42px;
    color: #3f3c3c;
    /* text-transform: uppercase; */
    /* line-height: 1.5; */
}

.play-responsibly {
    font-size: 14px !important;
}



/* ENd play-responsibly-text-area */

/* fantasy sports */
.top_banner .cricket_h1 {
    color: var(--white-color);
    font-family: 'myfont-1';
    font-size: 30px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.top_banner .cricket_h1 span {
    font-family: 'myfont-bold';
    font-size: 51px;
    font-weight: bolder;
    line-height: normal;
    letter-spacing: 3.4px;
    color: #FBD530;
}

.top_banner .baseball_h1 {
    color: var(--white-color);
    font-family: 'myfont-1';
    font-size: 25px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.top_banner .baseball_h1 span {
    font-family: 'myfont-bold';
    font-size: 78px;
    font-weight: bolder;
    line-height: normal;
    letter-spacing: 3.4px;
    color: #FBD530;
}

.top_banner .kabaddi_h1 {
    color: var(--white-color);
    font-family: 'myfont-1';
    font-size: 23px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.top_banner .kabaddi_h1 span {
    font-family: 'myfont-bold';
    font-size: 57px;
    font-weight: bolder;
    line-height: normal;
    letter-spacing: 3.4px;
    color: #FBD530;
}

.bottom-spacing {
    margin-bottom: 10px;
}

.remove-line {
    padding-top: 20px;
    position: relative !important;
}

.remove-line li {
    border-left: none;
}

.remove-line li:first-of-type {
    padding-left: 0 !important;

}

.remove-line li {
    padding-left: 0 !important;
}

.qr_scaner svg {
    height: 60px;
    width: 60px;
}

/* ##################*********
    TERMS PAGE START
**********#################### */
.terms-cont {
    /* padding-top: 55px; */
    padding-bottom: 70px;
    font-family: 'myfont-1';
}

.terms-cont .title {
    text-align: center;
    font-size: 60px;
    font-weight: bold;
    margin: 0;
}

.terms-cont__data {
    max-width: 1100px;
    margin: 0 auto;
}

.terms-cont__data p {
    margin: 0;
    font-family: 'myfont-1';
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.42px;
    color: #3f3c3c;
}

.point-system__table__body__data__box__extra p {
    margin: 0;
    font-size: 12px;
    font-weight: 600;
    padding: 0 24px;
    padding-top: 16px;
    line-height: 1.5;
}

.point-system__table__body__data__box__extra p:last-child {
    padding-bottom: 16px;
}

.terms-cont__data .terms-cont__data__title {
    font-size: 18px;
    font-weight: 600;
    margin-top: 32px;
    margin-bottom: 20px;
    color: #000;
    text-transform: uppercase;
}

.terms-cont__data__row {
    margin-top: 30px;
    display: flex;
    align-items: flex-start;
}

.terms-cont__data table, .terms-cont__data td, .terms-cont__data th {
    border: 1px solid #000;
    border-spacing: 0;
    text-align: left;
    font-family: 'myfont-1';
    font-weight: 600;
    border-collapse: collapse;
    padding: 6px;
    font-size: 14px;
    margin-top: 16px;
}

.terms-cont__data table.fixed-table {
    table-layout: fixed;
}

.terms-cont__data table.fixed-table td {
    width: 33.33%;
    vertical-align: top;
}

.terms-cont__data__row span {
    font-weight: 600;
    padding-right: 8px;
    color: #000;
}

.terms-cont__data ul {
    list-style: disc;
    padding-inline-start: 40px;
}

.terms-cont__data li {
    list-style: disc;
    font-family: 'myfont-1';
    font-weight: 400;
    margin-top: 20px;
    font-size: 16px;
    color: #3f3c3c;
    line-height: 1.5;
}

.terms-cont__data li::marker {
    font-weight: 600;
    padding-right: 8px;
}

.terms-cont__data {
    font-family: 'myfont-1';
    font-weight: 400;
    font-size: 16px;
    color: #000;
}

/* ##################*********
    TERMS PAGE END
**********#################### */

.our-feature .our-feature__sub-title {
    font-size: 16px;
    text-align: center;
    line-height: 30px;
    margin: 0;
}

.our-feature .our-feature__title {
    text-align: center;
    font-size: 60px;
    font-weight: bold;
    margin: 0;
    line-height: 70px;
    margin-bottom: 16px;
}

.our-feature__cont {
    margin-top: 96px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 48px;
    text-align: center;
    margin-bottom: 70px;
}

.our-feature__cont__list p {
    font-size: 16px;
    line-height: 30px;
    margin: 0;
}

.our-feature__cont__list .our-feature__cont__list__title {
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 16px;
    margin-top: 42px;
}


/* TOP GAME */

.top_banner .ludo_game_h1 {
    color: var(--white-color);
    font-family: 'myfont-1';
    font-size: 40px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.top_banner .ludo_game_h1 span {
    font-family: 'myfont-bold';
    font-size: 50px;
    font-weight: bolder;
    line-height: normal;
    letter-spacing: 3.4px;
    color: #FBD530;
}

/* LUDO GAME */

.game-sec-title {
    position: relative;
    /* text-align: center; */
    font-family: 'myfont-bold';
    font-size: 32px;
    font-weight: 600;
    /* padding-top: 70px; */
    padding-bottom: 20px;
    letter-spacing: 1.28px;
}

.game-sec-title h2 {
    font-size: 32px;
    font-weight: 600;
    padding-top: 70px;
    padding-bottom: 30px;
    letter-spacing: 1.28px;
    color: #000;
    margin: 0;
}

.ludo_game_h2 {
    color: var(--black-color) !important;
    font-family: 'myfont-1';
    font-size: 40px !important;
    font-weight: 600 !important;
    line-height: normal !important;
    letter-spacing: 1.2px !important;
    text-transform: uppercase !important;
    margin-bottom: 15px !important;
}

.ludo_game_h2 span {
    font-family: 'myfont-bold' !important;
    font-size: 50px !important;
    font-weight: bolder !important;
    line-height: normal !important;
    letter-spacing: 3.4px !important;
    color: #b20017 !important;
}

.game-sec-title h3 {
    font-size: 24px;
    font-weight: 600;
    padding-top: 20px;
    padding-bottom: 10px;
    letter-spacing: .2px;
    color: #222222;
    margin: 0;
}

.game-sec-title p {
    font-family: 'myfont-1';
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.42px;
    color: #3f3c3c;
    text-align: justify;
}

.game-bg {
    background: #F8F8F8;
}


.dice-text {
    font-family: 'myfont-bold' !important;
    color: var(--secondary-color) !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    font-size: 18px !important;
    font-weight: 600 !important;
}

.game-krishna {
    height: 450px !important;
    margin: 0 auto;
    display: block;
}

/* animation */

.game-sec-title .shape-img2 {
    top: 3%;
    /* bottom: 25%; */
    left: -3%;
}

.shape-img2 {
    position: absolute;
    left: 10%;
    top: 3%;
    z-index: -1;
}

.shape-img2 img {
    -webkit-animation-name: halavo;
    animation-name: halavo;
    -webkit-animation-duration: 10s;
    animation-duration: 10s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

.game-sec-title .shape-img2 {
    top: 3%;
    /* bottom: 25%; */
    left: -3%;
}

.shape-img2 {
    position: absolute;
    left: 10%;
    top: 3%;
    z-index: -1;
}

.shape-img2 img {
    -webkit-animation-name: halavo;
    animation-name: halavo;
    -webkit-animation-duration: 10s;
    animation-duration: 10s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

/*  */

.game-sec-title .shape-img1 {
    top: 24%;
    /* bottom: 25%; */
    right: 2%;
}

.shape-img1 {
    position: absolute;
    right: 2%;
    top: 24%;
    z-index: -1;
}

.shape-img1 img {
    -webkit-animation-name: halavo;
    animation-name: halavo;
    -webkit-animation-duration: 10s;
    animation-duration: 10s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

.game-sec-title .shape-img1 {
    top: 24%;
    /* bottom: 25%; */
    right: 2%;
}

.shape-img1 {
    position: absolute;
    right: 2%;
    top: 24%;
    z-index: -1;
}

.shape-img1 img {
    -webkit-animation-name: kukariroteat;
    animation-name: kukariroteat;
    -webkit-animation-duration: 10s;
    animation-duration: 10s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

/*  */
.game-sec-title .shape-img3 {
    bottom: 15%;
    /* bottom: 25%; */
    right: -3%;
}

.shape-img3 {
    position: absolute;
    right: -3%;
    bottom: 15%;
    z-index: 0;
}

.shape-img3 img {
    -webkit-animation-name: halavo;
    animation-name: halavo;
    -webkit-animation-duration: 10s;
    animation-duration: 10s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

.game-sec-title .shape-img3 {
    bottom: 15%;
    /* bottom: 25%; */
    right: -3%;
}

.shape-img3 {
    position: absolute;
    right: -3%;
    bottom: 15%;
    z-index: 0;
}

.shape-img3 img {
    -webkit-animation-name: halavo;
    animation-name: halavo;
    -webkit-animation-duration: 10s;
    animation-duration: 10s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

/*  */
.game-sec-title .shape-img4 {
    top: 10%;
    /* bottom: 25%; */
    left: -2%;
}

.shape-img4 {
    position: absolute;
    left: -2%;
    top: 10%;
    z-index: 0;
}


.game-sec-title .shape-img4 {
    top: 10%;
    /* bottom: 25%; */
    left: -2%;
}

.shape-img4 {
    position: absolute;
    left: -2%;
    top: 10%;
    z-index: 0;
}

.shape-img4 img {
    -webkit-animation-name: kukariroteat;
    animation-name: kukariroteat;
    -webkit-animation-duration: 10s;
    animation-duration: 10s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

/*  */
.game-sec-title .shape-img5 {
    top: 10%;
    /* bottom: 25%; */
    left: -2%;
}

.shape-img5 {
    position: absolute;
    left: 0%;
    top: 10%;
    z-index: 0;
}


.game-sec-title .shape-img5 {
    top: 10%;
    /* bottom: 25%; */
    left: 0%;
}

.shape-img5 {
    position: absolute;
    left: 0%;
    top: 10%;
    z-index: 0;
}

.shape-img5 img {
    -webkit-animation-name: kukariroteat;
    animation-name: kukariroteat;
    -webkit-animation-duration: 10s;
    animation-duration: 10s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

/*  */
.game-sec-title .shape-img6 {
    top: 45%;
    /* bottom: 25%; */
    right: 0%;
}

.shape-img6 {
    position: absolute;
    right: 0%;
    top: 45%;
    z-index: 0;
}


.game-sec-title .shape-img6 {
    top: 45%;
    /* bottom: 25%; */
    right: 0%;
}

.shape-img6 {
    position: absolute;
    right: 0%;
    top: 45%;
    z-index: 0;
}

.shape-img6 img {
    -webkit-animation-name: kukariroteat;
    animation-name: kukariroteat;
    -webkit-animation-duration: 10s;
    animation-duration: 10s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

/*  */
.game-sec-title .shape-img7 {
    bottom: 20%;
    /* bottom: 25%; */
    left: 0%;
}

.shape-img7 {
    position: absolute;
    left: 0%;
    bottom: 20%;
    z-index: 0;
}


.game-sec-title .shape-img7 {
    bottom: 20%;
    /* bottom: 25%; */
    left: 0%;
}

.shape-img7 {
    position: absolute;
    left: 0%;
    bottom: 20%;
    z-index: 0;
}

.shape-img7 img {
    -webkit-animation-name: kukariroteat;
    animation-name: kukariroteat;
    -webkit-animation-duration: 10s;
    animation-duration: 10s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}


/* sheep fight */

#svgCloud {
    position: relative;
    height: 100px;
    width: 120px;
    animation: move 20s linear infinite;
    margin-left: 50vw;
    margin-top: -6vh;
    transform: translateX(-50%) translateY(-50%);
}

.top_banner .sheepfight_game_h1 {
    color: var(--white-color);
    font-family: 'myfont-1';
    font-size: 40px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.top_banner .sheepfight_game_h1 span {
    font-family: 'myfont-bold';
    font-size: 50px;
    font-weight: bolder;
    line-height: normal;
    letter-spacing: 3.4px;
    color: #c18bf5;
}


@keyframes move {
    50% {
        transform: translateX(50vw) translateY(-50%);
    }

    50.001% {
        transform: translateX(-60vw) translateY(-50%);
    }
}

@keyframes halavo {
    0% {
        transform: rotate(0);
    }

    50% {
        transform: rotate(45deg);
    }
}

@keyframes kukariroteat {
    0% {
        transform: rotate(0);
    }

    50% {
        transform: rotate(-40deg);
    }
}

.coming-soon {
    background-image: url(../images/coming-soon.png);
    background-size: 400px;
    height: 500px;
    background-repeat: no-repeat;
    background-position: center;
    margin-top: 150px;
}

.not-found {
    background-image: url(../images/page-not-found.png);
    background-size: 500px;
    height: 555px;
    background-repeat: no-repeat;
    background-position: center;
    margin-top: 0px;
    position: relative;
}

.not-found-img {
    position: absolute;
    bottom: 46px;
    /* left: 46%; */
    text-align: center;
    left: 50%;
    transform: translate(-50%, -0%);
}

/* top casual game */
.game-container {
    max-width: 800px;
    width: 100%;
    padding: 0 16px;
    margin: 0 auto;
}

.row-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    mix-blend-mode: normal;
    border-radius: 24px;
}

.logo-div {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    line-height: 140%;
    color: var(--secondary-color);
}

.other-games img {
    border-radius: 20px;
}

/* call-break */

.game-sec-title .game-card-1 {
    top: 3%;
    /* bottom: 25%; */
    left: -3%;
}

.game-card-1 {
    position: absolute;
    left: 10%;
    top: 3%;
    z-index: -1;
}

.game-card-1 img {
    -webkit-animation-name: fadin-out;
    animation-name: fadin-out;
    -webkit-animation-duration: 5s;
    animation-duration: 5s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

.game-sec-title .game-card-1 {
    top: 3%;
    /* bottom: 25%; */
    left: -3%;
}

.game-card-1 {
    position: absolute;
    left: 10%;
    top: 3%;
    z-index: -1;
}

.game-card-1 img {
    -webkit-animation-name: fadin-out;
    animation-name: fadin-out;
    -webkit-animation-duration: 5s;
    animation-duration: 4s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

/* 2 */

.game-sec-title .game-card-2 {
    top: 15%;
    right: -6%;
}

.game-card-2 {
    position: absolute;
    top: 15%;
    right: -6%;
    z-index: 0;
}

.game-card-2 img {
    -webkit-animation-name: fadin-out;
    animation-name: fadin-out;
    -webkit-animation-duration: 5s;
    animation-duration: 5s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

.game-sec-title .game-card-2 {
    top: 15%;
    right: -6%;
}

.game-card-2 {
    position: absolute;
    top: 15%;
    right: -6%;
    z-index: 0;
}

.game-card-2 img {
    -webkit-animation-name: fadin-out;
    animation-name: fadin-out;
    -webkit-animation-duration: 5s;
    animation-duration: 5s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

/* 3 */

.game-sec-title .game-card-3 {
    top: 15%;
    right: -3%;
}

.game-card-3 {
    position: absolute;
    top: 15%;
    right: -3%;
    z-index: 0;
}

.game-card-2 img {
    -webkit-animation-name: fadin-out;
    animation-name: fadin-out;
    -webkit-animation-duration: 5s;
    animation-duration: 5s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

.game-sec-title .game-card-3 {
    top: 15%;
    right: -3%;
}

.game-card-3 {
    position: absolute;
    top: 15%;
    right: -3%;
    z-index: 0;
}

.game-card-3 img {
    -webkit-animation-name: fadin-out;
    animation-name: fadin-out;
    -webkit-animation-duration: 5s;
    animation-duration: 5s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}


@keyframes fadin-out {
    from {
        opacity: 1;
        transform: scale(0);
    }

    to {
        opacity: 0;
        transform: scale(2);
    }
}

.upcoming {
    float: left;
    position: relative;
}

.upcoming-img {
    position: absolute;
    bottom: 0;
    left: 0;
    max-width: 150px;
    border-radius: 0 !important;
}

.games img {
    padding-bottom: 15px;
}


.all-games {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
    box-shadow: rgba(0, 0, 0, 0.16) 6px 6px 10px 8px;
    /* margin-bottom: 40px; */
    /* position: sticky; */
    /* position: -webkit-sticky; */
    /* top: 86px; */
    background-color: #fff;
    padding-top: 15px;
    /* margin-bottom: 15px; */
    z-index: 1;
    border-radius: 10px;
}

.games-details {
    margin-top: 70px;
}

.ludo-btn {
    background: none;
    color: #000;
    width: 50%;
    font-size: 16px !important;
    font-weight: 600 !important;
}
.ludo-btn:hover,
.ludo-btn:focus {
    color: #B20617 !important;
}

.line {
    color: #B20617;
    border-bottom: 2px solid #B20617 !important;
}

/* =/================================ */

/*=========================
     download-ff page
  ========================== */
.sec-body {
    height: 100vh;
    /* font-family: Poppins, sans-serif; */
    font-size: 14px;
    background: #0d3491 url('../images/Popup-banner.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    -webkit-display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    flex-direction: column;
    overflow-y: hidden;
    overflow-x: hidden;
}

.sec-body::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 45%;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000;
    /* background: -moz-linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 1) 100%); */
    /* background: -webkit-linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 1) 100%); */
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #431010de  26%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#000000", GradientType=1);
}

.mob_banner {
    height: auto;
    margin: 0 auto;
}

.mob_banner img {
    height: auto;
    height: 450px;
    vertical-align: middle;
    height: 50%;
    position: absolute;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    bottom: 35%;
    left: 50%;
}
.new-data {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    bottom: 1%;
    margin-bottom: 80px;
    z-index: 99;
}

.heading {
    text-align: center;
    /* background: #0000009f; */
    padding-left: 10px;
    padding-right: 10px;
}

.heading h1 {
    color: #e6d31a;
    font-family: 'myfont-bold';
    font-size: 28px;
    line-height: 32px;
    margin: 10px 0 15px 0;
    font-weight: bold;
    /* background: #0000009e; */
}

.heading span {
    color: #fff;
    font-family: 'myfont-1';
    font-size: 28px;
    line-height: 40px;

}
.no-gst-box {
    max-width: 450px;
    display: flex;
    flex-wrap: wrap;
    background: rgba(0, 0, 0, 40%);
    justify-content: center;
    border: 1px solid #FFDE17;
    border-radius: 10px;
    z-index: 9;
}
.gstfree {
    width: calc(50% - 20px); 
    height: auto; 
    display: flex;
    align-items: center;
    gap: 5px;
}
.gstfree img {
    max-height: 35px;
} 
.gstfree p {
   color: #fff;
   font-size: 20px;
   font-family: 'myfont-bold';
   margin: 5px 0 5px 0;
}
.gstfree:first-child {
    border-right: 1px solid #FFDE17;
    border-bottom: 1px solid #FFDE17;
    margin-top: 7px;
    padding-bottom: 7px;
}.gstfree:nth-child(2) {
    border-bottom: 1px solid #FFDE17;
    justify-content: flex-start;
    padding-left: 10px;
}
.gstfree:nth-child(3)  {
    border-right: 1px solid #FFDE17;
    margin-bottom: 7px;
}
.gstfree:last-child {
    justify-content: flex-start;
    padding-left: 10px;
}


.android-ios_apk_ a {
    background: #0f833d;
    /* background: transparent linear-gradient(277deg, #67000D 0%, #B20019 100%) 0% 0% no-repeat padding-box; */
    bottom: 0px;
    font-family: 'myfont-1';
    color: #ffffff;
    width: 100%;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 24px;
    text-align: center;
    text-decoration: none;
    padding: 20px 15px;
    display: block;
    position: fixed;
    z-index: 5;
    left: 50%;
    max-width: 590px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}

.android-ios_apk_ a svg {
    width: 20px;
    vertical-align: -11%;
}

@media (max-width: 500px) {


.no-gst-box {
    max-width: 350px;
 }
}

@media (max-width: 800px) {
    .sec-body {
        height: 100vh;
        /* font-family: Poppins, sans-serif; */
        font-size: 14px;
        background: #0d3491 url('../images/Popup-banner.jpg') no-repeat center center;
        background-size: cover;
        display: flex;
        -webkit-display: flex;
        align-items: center;
        -webkit-align-items: center;
        justify-content: center;
        flex-direction: column;
        overflow-y: hidden;
        overflow-x: hidden;
    }
 
    .gstfree img {
        max-height: 30px;
    } 
    .gstfree p {
        font-size:16px;
    }
    .heading h1 {
        font-size: 26px;
    }

    .android-ios_apk_ a {
        background: #0f833d;
        /* background: transparent linear-gradient(277deg, #67000D 0%, #B20019 100%) 0% 0% no-repeat padding-box; */
        bottom: 0px;
        color: #ffffff;
        width: 100%;
        font-weight: 700;
        text-transform: uppercase;
        font-size: 24px;
        text-align: center;
        text-decoration: none;
        padding: 20px 15px;
        display: block;
        position: fixed;
        z-index: 5;
        left: 50%;
        max-width: 590px;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
    }

    .android-ios_apk_ a svg {
        width: 20px;
        vertical-align: -11%;
    }

}
.iso {
    display: flex;
    justify-content: space-evenly;
}
.iso img {
    margin-top: 20px;
}

/* ===========
    TradeX page
  ============*/

  .tradex img {
    height: 120px;
  }

  .top-opinion-section {
    padding-top: 120px;
    text-align: center;
    max-width: 1200px;
    font-size: 70px;
    margin: 0 auto;
    line-height: 82px;
    color: #1F1F39;
}

.top-opinion-section h1 {
    color: #000;
    font-family: 'Roboto', sans-serif;
    font-size: 35px;
    font-weight: 600;
    padding-bottom: 30px;
    text-align: inherit;
}

.top-opinion-section span {
    color: #b20017;
    font-family: 'Roboto', sans-serif;
    font-size: 50px;
    font-weight: 600;
    padding-bottom: 30px;
    text-align: inherit;
}

.top-opinion-section p {
    color: #222A41;
    font-family: 'Roboto', sans-serif;
    font: normal normal normal 16px/24px Roboto;
    padding-bottom: 11px;
    text-align: inherit;
}

.how-to-play-trade {
    text-align: center;
    max-width: 1200px;
    font-size: 70px;
    margin: 0 auto;
    line-height: 82px;
    color: #1F1F39;
    padding: 15px;
}

.how-to-play-trade h2 {
    color: #000;
    font-family: 'Roboto', sans-serif;
    font-size: 30px;
    padding-bottom: 20px;
    padding-top: 20px;
    /* text-align: left; */
}

.how-to-play-trade p {
    color: #222A41;
    font-family: 'Roboto', sans-serif;
    font: normal normal normal 16px/24px Roboto;
    padding-bottom: 0px;
    text-align: inherit;
    padding-bottom: 15px;
}

.flex-container {
    padding: 0;
    margin: 0;
    list-style: none;
    /* border: 1px solid silver; */
    -ms-box-orient: horizontal;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -moz-flex;
    display: -webkit-flex;
    display: flex;
}

.how-to-play-trade-game {
    /* padding-top: 59px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap; */
    /* gap: 10px; */

    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.trade-points {
    width: 25%;
    height: auto;
    /* display: flex; */
}

.point-1 img {
    max-width: 100%;
    height: auto;
}

.point-2 {
    max-width: 200px;
}

.play-trade {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    padding-bottom: 50px;
}

.card {
    width: 250px;
    background-color: transparent !important;
    /* border-radius: 5px; */
    /* background-clip: border-box; */
    border: none !important;
    /* border-radius: 0.25rem; */
}

.card-img {
    width: 100%;
    height: auto;
    border-radius: 5px 5px 0 0;
    box-shadow: 3px 4px 5px 2px #4d51534d;
}

.card-img {
    width: 100%;
    height: auto;
    border-radius: 5px 5px 0 0;
    transition: transform 0.3s ease;
}

.card-img:hover {
    transform: scale(1.1);
}

.card-content {
    padding: 15px;
}

.card h3 {
    text-align: left;
    font: normal normal 600 16px/30px Roboto;
    letter-spacing: 0.15px;
    color: #000000;
}

.card p {
    text-align: left;
    font: normal normal normal 14px/18px Roboto;
    letter-spacing: 0px;
    color: #707070;
}

.top-bg {
    background: #FCFCFC;
    padding-top: 20px;
    padding-bottom: 20px;
}
/* ================= poker game ====================== */

.poker-game-title {
    color: #19191B;
    font-family: 'Roboto', sans-serif;
    font-size: 32px;
    line-height: 70px;
    /* padding-bottom: 30px; */
    text-align: left;
    font-weight: 600;
}

.poker-h3 {
    text-align: left;
    font-size: 32px;
    line-height: 70px;
    letter-spacing: 0px;
    color: #19191B;
    font-weight: 600;
}

.poker-h4 {
    text-align: left;
    font-size: 32px;
    line-height: 70px;
    letter-spacing: 0px;
    color: #19191B;
    font-weight: 600;
}

.poker-flex-box {
    display: flex;
    justify-content: space-between;
    gap: 109px;

}

.poker-flex-box p {
    text-align: left;
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 0;
    color: #3B3B3B;
    margin-bottom: 64px;
}

.poker-game-play-section {
    display: flex;
    gap: 20px;
    align-items: center;
}

.swap {
    flex-direction: row-reverse;
}

.poker-text-box {
    width: 70%;
}

.poker-text-box p {
    text-align: left;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 10px;
    letter-spacing: 0;
    color: #3B3B3B;
}

.poker-img-box {
    width: 30%;
}

.poker-img-box img {
    width: 100%;
    height: auto;
    padding: 20px;
}

.poker-rule-section-text {
    width: 55%;
}

.poker-rule-section-text p {
    text-align: left;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0;
    color: #3B3B3B;
    margin-bottom: 15px;
}

.poker-rule-img-section {
    width: 45%;
}

.poker-rule-img-section img {
    width: 100%;
    height: auto;
}

.poker-rule-img-section img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 65%;
}

.poker-rule-section-text p {
    text-align: left;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0;
    color: #3B3B3B;
    margin-bottom: 15px;
}

.poker-rule-img-section p {
    text-align: left;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0;
    color: #3B3B3B;
    margin-bottom: 15px;
}

.poker-full-box-text p {
    text-align: left;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0;
    color: #3B3B3B;
    margin-bottom: 10px;
}

.hand-ranking {
    display: flex;
    align-items: center;
    gap: 109px;
    width: 80%;
    margin-top: 15px;
    margin-bottom: 15px;
}

.hand-ranking img {
    max-width: 215px;
    width: 100%;
    height: auto;
}

.hand-ranking-title {
    font-size: 20px;
    line-height: 70px;
    letter-spacing: 0;
    color: #19191B;
    font-weight: 600;
}

.hand-ranking-text p {
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0;
    color: #3B3B3B;
    margin-bottom: 10px;
}

.ml-2 {
    margin-left: 13%;
}

@media screen and (max-width: 767px) {
    .poker-flex-box {
        flex-direction: column;
        gap: 0;
    }

    .hand-ranking {
        width: 100%;
        gap: 30px;
    }

    .hand-ranking img {
        /* width: 150px; */
        width: 100%;
        height: auto;
    }

    .ml-2 {
        margin-left: 0%;
    }

    .poker-game-play-section {
        flex-direction: column;
    }

    .poker-rule-img-section {
        width: 100%;
    }

    .poker-rule-section-text {
        width: 100%;
    }

    .poker-text-box {
        width: 100%;
    }

    .poker-img-box {
        width: 100%;
    }

    .poker-img-box img {
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .poker-rule-img-section img {
        width: 100%;
    }

}

@media screen and (max-width: 500px) {
    .poker-game-title {
        font-size: 28px;
        line-height: 40px;
        margin-bottom: 8px;
    }

    .poker-h3 {
        font-size: 28px;
        line-height: 40px;
        margin-bottom: 8px;
    }

    .poker-h4 {
        font-size: 28px;
        line-height: 40px;
        margin-bottom: 8px;
    }

    .hand-ranking {
        flex-direction: column;
    }
    .resp-win {
        width: 100%;
    }

    .faq-accordion .accordion .accordion-content {
        padding-left: 40px;
        padding-right: 20px;
    }

    .faq-accordion .accordion .accordion-title i {
        /* left: 10px; */
        font-size: 16px;
    }

    .faq-accordion .accordion .accordion-title {
        padding: 20px 25px 17px 40px;
    }
}

.lichange li {
    color: #3B3B3B;
    margin-bottom: 10px;
}


/*=================
     Rummy Game
================= */

.rummy-zig-zag-section {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 40px;
}

.rummy-img-sec {
    width: 45%;
    text-align: center;
}

.rummy-img-sec img {
    max-width: 430px;
}


.rummy-text-sec{
    width: 55%;
    padding-left: 29px;
    max-width: 523px;
}

.zig-zag-swap {
    flex-direction: row-reverse;
}

.rummy-point-table {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x));
    justify-content: space-around;
    margin-bottom: 70px;
}

.rummy-table {
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
}

.rummy-table-header {
    background: #b2001730 0% 0% no-repeat padding-box;
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 17px;
    width: 100%;
    padding: 10px;
    text-align: center;
}
.rummy-table-header h4 {
    margin: 0;
}

.rummy-table-descrpction {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 3px 3px 6px #00000029;
    border-radius: 17px;
    width: 100%;
    height: 100%;
    text-align: center;
    margin-top: 19px;
    padding: 10px;
}
.rummy-table-descrpction p {
    text-align: center;
}

@media (max-width: 767px) {
    .rummy-zig-zag-section {
        flex-direction: column;
    }
    .rummy-text-sec {
        width: 100%;
    }
    .rummy-img-sec{
        width: 100%;
    }
    .rummy-img-sec img {
        width: 100%;
    }
    .rummy-table-header h4 {
        font-size: 20px;
        margin: 0;
    }
    .rummy-table {
        flex-direction: column;
        align-items: center;
    }

    .rummy-table-header {
        margin-top: 20px;
    }
}