
@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');
 /* font-family: "Google Sans", sans-serif; */

 /* #C4C4C4 */
 
:root {
    --gradient: linear-gradient(90deg, rgba(138, 138, 138, 1) 0%, rgba(224, 224, 224, 1) 25%, rgba(255, 255, 255, 0.89) 50%, rgba(224, 224, 224, 1) 75%, rgba(138, 138, 138, 1) 100%);
}
body {
    margin: 0;
    padding: 0;
    font-size: 14px;
    letter-spacing: 0;
     font-family: "Google Sans", sans-serif;
    background-color: #000;
    color: #333333;
    width: 100%;
    position: relative;
}
body::before {
      content: "";
    position: fixed;
    inset: 0;
    min-height: 100vh;
    background: url(../img/theme-bg.png) center / cover no-repeat;
    z-index: -1;
    opacity: 0.3;
}

html {
    scroll-behavior: smooth;
}

a,
.btn {
    transition: all 0.3s ease-in-out;
}
li{
    list-style: none;
}

a:hover {
    text-decoration: none;
}

button,
input,
optgroup,
select,
textarea {
   letter-spacing: 0.5px;
}
 
input {
    letter-spacing: 0.5px;
    background: #000000;
    border: 1px solid #ccc;
}

p,h1,h2,h3,h4,h5,h6 {
    margin-bottom: 0
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

a {
    text-decoration: none;
}

.container {
    max-width: 1440px;
}

.header-sec {
    padding: 17px 0px;
    background: linear-gradient(160deg, #1f1f1f, #000000);
    position: relative;
    z-index: 99;
    color: #fff;
}

.header {
    display: flex;
    padding: 15px 16px;
    position: relative;
    z-index: 999;
    align-items: center;
    justify-content: space-between;
    background: #424242d6;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin: 30px 0 6px;
    border-radius: 8px;
}

.mobile-num-img img {
    filter: invert(1);
    width: 20px;
}

.whatsapp-num-img img {
    filter: invert(1);
     width: 20px;
}

.header .row {
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    width: 100%;
    padding-bottom: 0px;
}
.main-section {
    margin-top: 75px;
    margin-bottom: 80px;
}
.header-menu ul li a {
    font-size: 20px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
}

.header-menu ul li:hover a {
    color: #d91818;
}
.small-btn-bg {
    border: 2px solid #000 !important;
    color: #000 !important;
}

.small-btn-bg {
    border: 2px solid #000;
    color: #000;
}

.small-btn-bg img {
    filter: invert(1);
}

.small-btn-bg:hover img {
    filter: invert(1) !important;
}

.small-btn {
    font-size: 19px;
    display: inline-flex;
    padding: 11px 21px;
    color: #000 !important;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 6px;
    align-items: center;
    gap: 6px;
    position: relative;
    background-image: var(--gradient);
    overflow: hidden;
    z-index: 1;
    transition: transform 0.3s ease;
}

.small-btn::before,
.small-btn::after {
    content: "";
    position: absolute;
    top: -50px;
    transform: rotate(35deg);
    background: #fff;
    opacity: 0;
    transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
    pointer-events: none;
    z-index: 2;
    width: 37px;
    height: 199px;
}

.small-btn::before {
    left: -60%;
}

.small-btn::after {
    left: -100%;
}

.small-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.small-btn:hover::before {
    left: 120%;
    opacity: 0.3;
}

.small-btn:hover::after {
    left: 200%;
    opacity: 0.6;
}

.small-btn img {
    width: 22px;
    margin-right: 5px;
    filter: invert(1);
}
.download-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 10px 18px;
    color: #000;
    background-image: var(--gradient);
    border: 1px solid #858b91;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    overflow: hidden;
    transition: border-color 0.3s ease,box-shadow 0.3s ease;
    height: 46px;
    width: 200px;
    animation: buttonGlow 2.5s ease-in-out infinite;
        /* box-shadow: #fff 0px 0px 10px; */
}
@keyframes buttonGlow {
    0%, 100% {
        box-shadow: 0 0 4px rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow: 0 0 10px rgba(255,255,255,.6);
    }
}
.download-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.12);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.download-btn:hover {
    border-color: #666d74;
     background-image: var(--gradient);
     color: #000;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
}
.download-btn:hover::before {
    opacity: 1;
}
.scroll-down-icon {
    display: inline-block;
    color: #000;
    margin-right: 10px;
    animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
    0% {
        transform: translateY(0);
        opacity: 0;
    }
    25% {
        opacity: 1;
    }
    75% {
        opacity: 1;
    }
    100% {
        transform: translateY(8px);
        opacity: 0;
    }
}
.hero-text h1 {
    margin-bottom: 20px;
    color: #fff;
    font-size: 22px;
    line-height: 64px;
    font-weight: 500;
    text-transform: uppercase;
}
.hero-text h1 b {
    font-size: 64px;
}
.hero-text p {
    color: #adadad;
    font-size: 16px;
    width: 40%;
}
.hero-text p b {
    color: #d10117;
}
.hero-text .small-btn:hover {
    text-decoration: none;
    color: #000;
}
.hero-right-img img{
    position: absolute;
    top: -114px;
    right: 148px;
    width: 445px;
}
.game-rates,
.game-results-info,
.faqs-info {
    padding: 60px 0px 80px;
}
.future-card {
 border-radius: 6px;
    padding: 12px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    /* justify-content: space-around; */
    background: #26262696;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: linear-gradient(90deg, rgb(138 138 138 / 33%) 0%, rgb(224 224 224 / 30%) 25%, rgb(255 255 255 / 23%) 50%, rgb(224 224 224 / 30%) 75%, rgb(138 138 138 / 30%) 100%);
}
.future-sec {
    position: relative;
    margin-top: -50px;
    z-index: 1;
}
.future-content {
    color: #fff;
}
.future-content h3{
    font-size: 20px;
}
.future-content p{
    color: #adadad;

}
.faqs-info {
    background-position: center;
    background-size: cover;
    padding-top: 80px;
}

.chart-btn:hover {
    color: #000;
    transform: translate(0, -5px);
}
.sec-title {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 69px;
    position: relative;
    text-align: center;
}
.sec-title::before {
      content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url("../img/title-bg.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;

    z-index: 0;
}

.sec-title h2 {
      position: relative;
    z-index: 1;
    font-size: 34px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 600;
    display: inline-block;
    padding: 12px 20px;
}

.mobile-num:hover {
    color: #ffff;
}

.whatsapp-info:hover {
    color: #fff;
}

.hero-text .small-btn:active {
    box-shadow: 4px 4px 6px 0 rgba(255, 255, 255, .3),
        -4px -4px 6px 0 rgba(116, 125, 136, .2),
        inset -4px -4px 6px 0 rgba(255, 255, 255, .2),
        inset 4px 4px 6px 0 rgba(0, 0, 0, .2);
}

.game-results-info {
    background-position: center;
    background-size: cover;
}

.contact {
    display: flex;
    text-align: center;
    margin: auto;
    column-gap: 17px;
    margin-top: 0px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
    justify-content: left;
}

.mobile-num {
  transition: 0.3s;
    display: flex;
    color: #fff;
    height: 54px;
    font-size: 18px;
    font-weight: 500;
    padding: 10px 14px;
    background-color: #2978d83b;
    border: 1px solid #2978d894;
    border-radius: 4px;
    align-items: center;
    box-shadow: #2978d894 0px 0px 10px;
}

.mobile-num-img {
    position: relative;
    color: #fff;
    justify-content: center;
    align-items: center;
    display: flex;
    border-radius: 4px;
    margin-right: 10px;
    width: 40px;
    height: 40px;
    background: #2978d8e6;
}

.whatsapp-info {
       transition: 0.3s;
       display: flex;
       color: #fff;
       height: 54px;
       font-size: 18px;
       font-weight: 500;
       padding: 10px 14px;
       background-color: #25d36652;
       border: 1px solid #25d36675;
       border-radius: 4px;
       align-items: center;
       box-shadow: #25d366bf 0 0 10px;
}

.whatsapp-num-img {
    position: relative;
    justify-content: center;
    align-items: center;
    display: flex;
    border-radius: 6px;
    margin-right: 10px;
    width: 40px;
    height: 40px;
    background: #1bd470c9;
}

.contact span {
    color: #ffc842;
    font-weight: 600;
    margin-right: 15px;
}

.section-title {
    text-align: center;
}

.header-menu ul {
    display: flex;
    align-items: center;
}

.header-menu ul li {
    display: inline-block;
    margin-right: 10px;
}
.header-menu ul li.head-home {
    margin-right: 20px;
    padding-right: 20px;
    border-right: 2px solid  #ffffff70;;
}
.hero-text h5 {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #fff;
    border: 1px solid #f1103b73;
    border-radius: 4px;
    padding: 6px 16px;
    width: max-content;
}
.hero-text h5 b {
    color: #ff0022;
}
 .hero-img-inner {
  position: relative;
  text-align: center;
  z-index: 1;
}
.small-container{
    max-width: 1700px;
    padding: 0px 30px;
    margin: auto;
}
.hero-img-inner img {
  max-width:473px;
  position: relative;
  z-index: 2;
}
.logo img {
       width: 140px;
}
.hero-text{
    text-align: left;
}
.hero-text-sec .row {
    align-items: center;
    width: 100%;
    justify-content:center;
}
.hero-text-sec {
    padding: 80px 45px 128px;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    display: flex;
    background: #26262696;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    position: relative;
    background: url(../img/banner-bg.png);
    background-position: 100%;
    background-repeat: no-repeat;
    background-size: cover;
}

a.burger,
a.closebtn {
    display: none;
}
.hero-section {
  position: relative;
  padding: 240px 0 0;
  z-index: 1;
}
.game-rates {
    padding: 140px  0 80px;
    position: relative;
    z-index: 0;
    overflow: hidden;
}
.top-shape {
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-rates-box p {
    font-size: 18px;
    color: #ADADAD;
}
.game-rates-box p b{
    font-size: 20px;
    color: #fff;
}
.game-rates-box {
    background: url('../img/sec-theme.png');
    background-size: cover;
    width: 100%;
    background-position: center;
    padding: 50px 20px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    height: 100%;
    z-index: 1;
    color: #fff;
    gap: 12px;
        border-radius: 35px;

}
.choose-us-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}
.card-content h3 {
    font-size: 50px;
    color: #fff;
    margin-bottom: 20px;
}
.card-content p {
    color: #adadad;
    width: 84%;
    font-size: 16px;
}
.card-content h3 small{
    font-size: 22px;
}
.choose-us-section {
     background: url('../img/choose-bg.png');
    background-size: cover;
     background-position: center;
     background-repeat: no-repeat;
     width: 100%;
      padding: 80px 20px;
        text-align: left;
}
.game-rates-box:hover {
    box-shadow: 0 0 15px rgb(255 255 255 / 15%);
    transform: scale(1.02);
}

.game-rates-info .row {
    row-gap: 19px;
        position: relative;
    z-index: 111;
}
.game-results .row {
    row-gap: 20px;
}
.game-results-box {
    padding: 12px 20px;
    text-align: left;
    background: #dbdbdb17;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.game-results-box:hover {
    box-shadow: 0 0 15px rgb(255 255 255 / 15%);
    transform: scale(1.02);
}

.game-results-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    width: 100%;
    top: 0;
    font-weight: 600;
    color: #fff;
    padding-bottom: 20px;
}

.game-results-head i {
    color: #ffd7d7;
    cursor: pointer;
    font-size: 18px;
}

.game-results-head span {
    font-size: 12px;
    padding: 3px 9px;
    border-radius: 4px;
    text-transform: uppercase;
}

.text-red {
     background: #d7000e19;
        color: #ff2737;
    border: 1px solid #d7001073;
}

.text-green {
  background: #0066172e !important;
    color: #00d12f;
    border: 1px solid #0066175e;
}

.game-results-body {
    text-align: center;
    padding-top: 0px;
    color: #eee;
}

.results-name {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.results-num {
   font-size: 41px;
    font-weight: 500;
    color: #ffffff;
}

.small-btn.chart-btn {
    padding: 6px 13px;
    font-size: 13px;
    border-radius: 4px;
}

.game-results-bottom {
   display: flex;
    justify-content: center;
    gap: 12px;
    padding: 10px 15px;
    background: #ebebeb21;
    border-radius: 5px;
}

.accordion-item {
    margin-bottom: 10px;
    border: none;
    background-color: #ffffff00;
}

.accordion-button:not(.collapsed) {
    color: #ffffff;
    box-shadow:none;
    background: linear-gradient(90deg, rgb(90 90 90) 0%, rgb(224 224 224 / 72%) 25%, rgb(255 255 255 / 54%) 50%, rgb(224 224 224 / 73%) 75%, rgb(90 90 90) 100%);
}

.btn-close:focus {
    outline: 0;
    box-shadow: none;
    opacity: 1;
}

.accordion-button:focus {
    z-index: 3;
    border-color: transparent;
    outline: 0;
    box-shadow: none;
}

.accordion-button {
    font-size: 17px;
    font-weight: 500;
    padding: 20px 25px;
    background: #1a1a1a;
    color: #ffffffd4;
}

.accordion-body {
     font-size: 18px;
    padding: 19px 25px;
    background: #1a1a1a;
    color: #ffffffb0;
    font-weight: 200;
}
.accordion-button::after {
    opacity: 0.6;
    filter: brightness(0) saturate(100%) invert(100%) sepia(1%) saturate(1510%) hue-rotate(179deg) brightness(116%) contrast(100%);
}
.accordion-button:not(.collapsed)::after {
    opacity:1;

}
.copy-right {
    text-align: center;
    padding: 80px 0px 40px;
    background: linear-gradient(160deg, #0000003b, #1a1a1a);
    color: #fff;
    position: relative;
    font-size: 16px;
    letter-spacing: 0.5px;
    z-index: 1;
}
.modal {
     background: #000000a3;
}
.footer-middle-sec {
    border-top: 1px solid #ffffff61;
    position: relative;
    margin: 60px 0;
    padding: 40px 20px;
}
.footer-middle-sec::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
   background: linear-gradient(90deg, rgb(255 255 255 / 23%) 0%, rgb(230 11 11 / 56%) 50%, rgb(255 255 255 / 23%) 100%);
}
.footer-border {
    border-left: 1px solid #ffffff70;
    border-right: 1px solid #ffffff70;
}
.footer-middle {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
}
.copy-right-text {
    font-size: 16px;
    color: #ffffff94 !important;
}
.copy-right-text span {
    display: block;
    margin-bottom: 12px;
    font-size: 18px;
    letter-spacing: 1px;
}
.copy-right-text  b {
    color: #d10117;
}
.copy-right-img p {
    font-size: 15px;
    margin-top: 12px;
    color: #fff !important;
}

.mobile-logo {
    display: none !important;
}
/* ========jodi chart========== */
.panel-heading h3 {
    font-size: 19px;
    color: #fff;
    text-shadow: 0px 0px;
    margin: 0px;
    padding: 12px;
}

.panel-heading {
    background-color: #3f51b5;
}
.time-chart-info table {
    min-width: 0;
}

table,
th,
td {
    border: 1px solid #ffffff40;
}
thead {
    background: #fff;
    color: #000;
    font-weight: bold;
    text-align: center;
    background: linear-gradient(90deg, rgba(138, 138, 138, 1) 0%, rgba(224, 224, 224, 1) 25%, rgb(255 255 255 / 66%) 50%, rgba(224, 224, 224, 1) 75%, rgba(138, 138, 138, 1) 100%);
}
.main-sec {
    padding-top:70px;
    width: 100%;
    margin-top: -162px;
}
.hero-left-content{
    display: flex;
    gap: 50px;
    align-items:flex-start;
}
.chart-title {
    text-align: center;
}
.title-flex {
    display: flex;
    align-items: center;
    justify-content: center;
}
.chart-title h2 {
    display: inline-block;
    margin: 0;
    padding: 0 20px;
    font-size: 34px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    z-index: 1;
}
.chart-title .line-left,
.chart-title .line-right {
    width: 140px;
    height: 2px;
    display: inline-block;
}
.chart-title .line-left {
    background: linear-gradient(90deg,transparent 0%,#ffffff5c 70%,#ff0000b5 100%);
}
.chart-title .line-right {
    background: linear-gradient(90deg,#ff0000b5 0%,#ffffff5c 30%,transparent 100%);
}
.chart-title p {
    margin-top: 16px;
    color: #ffffffd2;
}

/* table-start */
.chart-table-data {
    background-color: #000;
    overflow-x: auto;
}
table {
    width: 100%;
    border-collapse: collapse;
    color: #fff;
    background-color: #000;
    overflow-x: auto;
}
thead th {
    padding: 10px;
    font-size: 17px;
    font-weight: 500;
    color: #000;
}
table tbody td {
    font-size: 15px;
    text-align: center;
    border: 1px solid #333 !important;
    background-color: #111;
    color: #fff;
    padding: 10px;
}
table tbody tr:nth-child(odd) td {
    background-color: #1a1a1a;
}
.time-chart-info table tbody tr:nth-child(odd)td {
    background-color: #1a1a1a;
}

table tbody tr:hover {
    background-color: #222;
}
table {
    min-width: 1000px;
    margin-top: 20px;
}
/* table-end */

.scroll-info {
    margin-top: 50px;
    text-align: center;
    justify-content: center;
    display: flex;
    gap: 12px;
}

.small-btn.scroll-btn {
    border: 1px solid #000000a8;
    font-weight: 500;
    font-size: 15px;
    justify-content: center;
    display: flex;
    width: 162px;
    padding: 10px 14px;
}

.modal-body.time-chart-info tbody td {
    font-size: 15px;
    font-weight: 400;
    padding: 12px;
}

.modal-body.time-chart-info th {
    text-transform: uppercase;
    padding: 9px;
    border: 1px solid #333333;
}

table .text-red,
table .text-green {
    border: none;
}

/* =======panel chart===== */
.tbl-font {
    font-size: 14px;
    display: block;
    width: 100%;
}

.tbl-td {
    padding: 4px !important;
    vertical-align: middle !important;
    line-height: 1.65;
}

.modal-header {
    padding: 8px 15px;
    border-radius: 6px 6px 0px 0px;
    background: #272626;
    border-bottom: 1px solid #b32e2473;
}

.modal-title {
    color: #fff;
}

.modal-content {
    border: 2px solid #222;
    border-radius: 10px;
}
.modal-header .btn-close {
    filter: brightness(0) saturate(100%) invert(87%) sepia(100%) saturate(1%) hue-rotate(180deg) brightness(110%) contrast(97%);
}
.modal-body {
    background: #111111;
    border-radius: 0px 0px 7px 7px;
    padding: 0px 16px 16px;
}
/* =====all chart======== */
.all-chart-data {
    background: linear-gradient(90deg, rgba(138, 138, 138, 1) 0%, rgba(224, 224, 224, 1) 25%, rgba(255, 255, 255, 0.619) 50%, rgba(224, 224, 224, 1) 75%, rgba(138, 138, 138, 1) 100%);
    border-radius: 6px;
    padding: 18px 10px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    z-index: 1;
    color: #000;
    cursor: pointer;
    
}
.all-chart-data:hover {
    transform: scale(1.02);
}
.all-chart-data:hover h3{
    color: #d91818;
}
.all-card-box h3 {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    text-align: center;
}
.all-card-box {
    position: relative;
    z-index: 11;
}

.chart-title.all-chart-title {
    margin-bottom: 48px;
    margin-top: 88px;
}

.all-chart-info {
    width: 100%;
    padding-top: 0px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    max-width: 900px;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 11px;
    margin: auto;
}

/*privacy policy*/

.privacy-info {
    padding: 20px;
    margin-bottom: 60px !important;
    width: 85%;
    margin: auto;
    box-shadow: 0px 1px 8px 9px #00000014;
    border-radius: 10px;
}

.privacy-title h1 {
    text-align: center;
    font-size: 28px;
    color: #dbbf73;
    text-shadow: 2px 3px 2px #633215;
    margin-bottom: 21px;
}

.privacy-info a {
    color: #dbbf73;
}

.privacy-info p {
    font-size: 15px;
    margin: 10px 0px;
    color: #d8d5d5;
    font-weight: 400;
}

.privacy-info h2 {
    font-size: 21px;
    margin-top: 22px;
    color: #dbbf73;
}

.privacy-info h3 {
    color: #fff;
    font-size: 18px;
    margin: 10px 0px;
    font-weight: 400;
}

.privacy-info ul li {
    list-style: disc;
    color: #d8d5d5;
}

.privacy-info ul {
    padding-left: 30px;
}

/* ============all-starline-pana============= */

.scroll-info.footer {
    margin-bottom: 59px;
}
.game-results-box h3{
    font-size: 22px;
    color: #ADADAD;
}
@media (max-width:1500px) {
    .small-container{
        padding: 0px 46px;
    }
    .container{
        padding: 0px 40px;
    }
}
@media (max-width:1430px) {
    .game-rates-box {
         border-top: 5px solid #ffffffa3;
        border-bottom: 5px solid #ffffffa3;
            padding: 18px 18px;
    }
}
@media (max-width:1400px) {
.future-sec   .container {
        max-width: 1336px;
    }
    .sec-title h2::before,
    .sec-title h2::after {
        width: 300px;
    }
    .game-rates-box  img {
        width: 80px;
    }
    .chart-title h2::before, .chart-title h2::after{
        width: 300px;
    }
    .hero-text h1 {
        font-size: 20px;
        line-height: 57px;
    }
    .mobile-num , .whatsapp-info{
        font-size: 16px;
        padding: 8px 12px;
    }
    .mobile-num-img img {
    width: 16px;
}
.mobile-num-img, .whatsapp-num-img {     
    width: 32px;
    height: 32px;
}
.sec-title h2 {
    font-size: 28px;
}
    .contact{
            margin-top: 36px;
    }
    .container{
        max-width: 1140px;
    }
    .future-content h3 {
    font-size: 17px;
}
.hero-text-sec {
    padding: 50px 45px 100px;
}
.hero-text h1 b {
    font-size: 50px;
}
.card-right img{
    width: 100%;
}
.logo img {
    width: 100px;
}
.header-menu ul li a { 
    font-size: 17px;
}
.chart-title h2 {
    font-size: 30px;
}
}

@media (max-width: 1300px) {
    #sidebar {
        left: -300px;
    }
      .whatsapp-info ,.mobile-num{
        height: auto;
        font-size: 12px;
        padding: 8px 10px;
    }
    .user-img img {
        width: 188px;
    }
    .hero-img-inner img {
        max-width: 380px;
    }
    .sec-title h2::before,
    .sec-title h2::after {
        width: 200px;
    }
    .chart-title h2::before, .chart-title h2::after{
        width: 200px;
    }
      .hero-text h1 {
            font-size: 31px;
            line-height: 41px;
    }
    .hero-left-content{
            gap: 24px;
    }
    .chart-title.all-chart-title {
    margin-top: 50px;
}
.logo img {
    width: 100px;
}
}
@media (max-width: 1200px) {
    .hero-text-sec{
            align-items: end;
    }
    .hero-right-img img {
    width: 386px;
}
}
@media (max-width: 1100px) {
    .hero-img-inner {
        display: none;
    }
    .game-results-box h3 {
    font-size: 18px;
    }
    .game-results-bottom {
        padding: 10px;
    }
    .results-num {
    font-size: 30px;
}
    .future-sec {
        margin-top: 50px;
    }
      .future-sec .row {
        row-gap: 12px;
    }
    .game-rates{
            padding: 42px 0;
    }
    .sec-title {
        margin-bottom: 36px;
    }
    .hero-right-img img {
        top: 20px;
    right: 64px;
    width: 322px;
    }
    .hero-text p  {
            width: 48%;
    }
    .hero-text h5 {
        font-size: 13px;
    }
        .hero-section {
        padding: 105px 0 0;
    }
        .container {
        max-width: 1140px;
        padding: 0px 38px;
    }
}
@media (max-width: 991px) {
    .navbar .container-fluid {
        display: flex;
        flex-wrap: nowrap;
    }
    .hero-right-img img {
        top: 22px;
        right: 26px;
        width: 260px;
    }
        .hero-text p {
        width: 58%;
        font-size: 14px;
    }
    .container{
        max-width: 960px;
    }
    .text-box h3 {
        font-size: 34px;
    }
    .sec-title h2::before,
    .sec-title h2::after {
        display: none;
    }
    .copy-right-img img {
        width: 150px;
    }
    .chart-title h2::before, .chart-title h2::after{
        display: none;
    }
    li.mobile-logo img {
        width: 93px;
    }
    .text-box ol li {
        font-size: 18px;
    }

    .hero-text h1 {
        font-size: 16px;
        line-height: 40px;
    }
    .hero-text h1 b {
        font-size: 44px;
    }
    .hero-img-inner img {
        max-width: 300px;
    }
    .hero-text-sec {
        padding: 30px 25px 62px;
    }
    .mobile-logo {
        display: block !important;
    }
    .slider-testimonial {
        max-width: 100%;
    }
    .header-menu img {
        width: 40px;
    }
    .header-menu {
        background: #ffffffa6;
        border-radius: 5px;
        padding: 0px;
    }
    .small-btn img {
        width: 23px !important;
    }
    .text-box p {
        font-size: 14px;
        font-weight: 500;
        line-height: 22px;
    }
    .logo img {
        width: 104px;
    }
    .header-menu ul li a {
        font-size: 13px;
    }
    .header-menu ul li {
        padding: 0px 11px;
    }
    li.mobile-logo {
        padding-top: 0px !important;
    }
    #mob-menu {
        height: 100%;
        position: fixed;
        z-index: 1;
        top: -30px;
        left: -250px;
        background-color: #fff;
        overflow-x: hidden;
        transition: 0.5s;
        padding-top: 14px;
        display: block;
        height: 100vh;
        border-right: 1px solid #f1f1f14f;
        box-shadow: 0px 4px 8px 0px rgb(247 247 247 / 35%);
        transition: all 0.5s;
    }

    #mob-menu .closebtn {
        position: absolute;
        top: 2px;
        right: 14px;
        font-size: 36px;
        margin-left: 50px;
        color: #fff;
    }

    .menu.open #mob-menu {
          width: 250px;
        margin-left: 0px;
        display: block;
        text-align: left;
        left: -21px;
        transition: all 0.5s;
        background-color: #000;
    }

    .header-menu ul {
        display: block;
        margin: 0;
        padding: 0px 20px;
    }

    div#menu-1 {
        z-index: 99;
        position: relative;
    }

    .menu.open .overlay-1 {
        display: block;
    }

    .header {
        align-items: flex-start;
        align-items: center;
    }
.card-right img {
    width: 400px;
}
.card-content p {
    width: 100%;
    font-size: 14px;
}
.card-content h3 {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}
.choose-us-section {
        padding: 30px 20px;
}
    .header-menu ul li {
           padding: 8px 10px;
        display: block;
        margin-bottom: 18px;
        border-radius: 0;
        text-align: center;
        border-bottom: 1px solid #ffffff69;
    }
   .header-menu ul li.mobile-logo {
        text-align: start;
    }
.header-menu ul li.head-home {
    border-right: none;
}
    .header-menu ul li:last-child,
    .header-menu ul li:first-child {
        border: none;
    }


    a.burger {
        display: block;
        text-align: end;
    }

    a.burger,
    a.closebtn {
        display: block;
    }

    .overlay-1 {
        display: none;
    }

    .chart-title h2 {
        font-size: 24px;
    }

    .overlay-1:after {
        content: "";
        position: fixed;
        width: 100%;
        height: 100%;
        background-color: #0000005e;
        right: 0;
        left: 0;
        top: 0;
    }

    .chart-btn {
        padding: 7px 8px;
    }

    .game-results-bottom {
        display: flex;
        padding: 6px;
    }

    .game-results-body .results-name {
        font-size: 21px;
    }

    .game-results-body .results-num {
        font-size: 25px;
    }

    .game-results-info {
        padding: 30px;
    }
    table{
            min-width: 0;
    margin-top: 20px;
    overflow-x: auto;
    white-space: nowrap;
    }
    .panel-body{
       padding:  0px 12px;
    }
    .all-card-box h3 {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .main-section  {
        margin-top: 50px;
        margin-bottom: 30px;
    }
    .play-rates {
        padding: 35px 0px;
    }
    .game-rates-box p {
        font-size: 14px;
    }
    .game-rates-box p b {
    font-size: 18px;
    }
    .choose-us-main {
        grid-template-columns: 1fr;
    }
    .card-right {
        display: none;
    }
    .hero-text-sec{
        flex-direction: column-reverse;
        row-gap: 20px;
        height: 71%;
        padding: 16px 40px;
        align-items: center;
    }
    .hero-right-img img {
               position: static;
    }
    .hero-text {
        text-align: center;
        margin-top: 10px;
    }
    .contact{
        justify-content: center;
            margin-top: 27px;
    }
        .card-right {
            display: none;
        }
.small-container ,.future-sec .container ,.container{
    max-width: 720px;
}

    img.bg-shape {
        display: none;
    }

    .how-to-play-img img {
        display: none;
    }

    .overlay-1 {
        display: none;
    }
    .hero-text h5 {
        margin: auto;
    }
    .hero-text-sec .row {
        row-gap: 50px;
        margin: 0;
    }

    .header .row {
        margin: 0;
    }

    .text-box ol li {
        font-size: 18px;
        margin-bottom: 5px;
        text-align: left;

    }

    .text-box ol {
        margin-top: 25px;
        margin-bottom: 30px;
    }

    .hero-img-inner {
        text-align: center;
    }

    .m_top {
        margin-top: 0;
    }

    .privacy-info {
        width: 100%;
        padding: 10px;
    }

    .privacy-info ul {
        padding-left: 21px;
    }

    .privacy-info h2 {
        font-size: 18px;
        margin-top: 16px;
    }

    .privacy-info h3 {
        color: #6e6e6e;
        font-size: 16px;
        margin: 7px 0px;
    }

    .privacy-info ul li {
        list-style: disc;
        font-size: 13px;
    }

    .privacy-info p {
        font-size: 13px;
        margin: 6px 0px;
    }

    .privacy-title h1 {
        margin-bottom: 11px;
        font-size: 23px;
    }


    .mb15 {
        margin-bottom: 15px;
    }

    .mt10 {
        margin-top: 0;
    }

    .how-to-play .row {
        row-gap: 40px;
    }

    .text-box h3 {
        font-size: 28px;
    }

    .chart-btn {
        padding: 7px 11px;
    }

    .all-chart-info {
        margin-bottom: 19px;
        padding-top: 10px;
    }

    .hero-img-inner img {
        max-width: 150px;
        margin-bottom: 14px;
    }

    .hero-text-sec .row {
        row-gap: 0;
        flex-direction: column-reverse;
    }

    table tbody td{
            font-size: 10px;
    }
    .tbl-font{
        font-size: 13px;
    }
    .main-section{
        padding-top: 0px;
    }
    .chart-title.all-chart-title {
    margin-bottom: 20px;
           margin-top: 40px;
}
    .hero-text p {
        width: 100%;
        font-size: 14px;
    }
.main-section {
    margin-top: 46px;
}
.all-chart-data{
    width: 100%;
    padding: 14px 10px;
}
    .game-rates-box img {
        width: 56px;
    }
    .players-img img , .footer-logos img {
        height: auto;
        width: 100px;
    }
    .players-img img  {
        width: 88px;

    }
    .footer-middle-sec {
            margin: 35px 0;
    padding: 34px 10px;
    }
    .copy-right-text span {
        font-size: 16px;
    }
    .copy-right-text {
        font-size: 14px;
        padding: 0 16px;
    }
}

@media (max-width: 575px) {
    .download-app {
        text-align: center;
        margin-top: 26px;
    }
    .future-sec {
        margin-top: 10px;
    }
    .game-results .row {
    row-gap: 8px;
}
    .small-container ,.future-sec .container , .container{
        max-width: 540px;
    }
    .chart-title.all-chart-title {
        margin-bottom: 12px;
        margin-top: 43px;
    }
    .main-section{
        margin-top: 0px;
    }
    .copy-right-img img {
        width: 100px;
    }

    .modal-body {
        padding: 7px;
    }
    

    .chart-title h2{
        border-right: none;
        border-left: none;
    }
    .chart-title {
        text-align: center;
        margin-top: 34px;
        padding: 0px 10px;
    }

    .chart-btn {
        padding: 7px 11px;
    }

    .faqs-info h2 {
        text-align: center;
    }
 .main-section{
        padding-top: 10px;
    }
    .hero-section {
        padding-bottom: 90px;
        padding-top: 20px;
    }

    .faqs-info .sec-title h2::after {
        left: 134px;
        bottom: -12px;
    }

    .chart-table-data table tbody td {
        padding: 5px;
    }

    .all-card-box h3 {
        font-size: 18px;
    }

      .copy-right {
        padding-top: 20px;
    }

    .modal-body.time-chart-info tbody td {
        padding: 5px;
    }
    .game-results-box {
        margin-bottom: 9px;
    }

    .play-rates {
        padding-bottom: 0px;
    }

    .game-results-bottom {
        display: flex;
        padding-top: 10px !important;
    }
    .accordion-body {
    font-size: 16px;
    padding: 13px 15px;
    background: #1a1a1a;
    }
    .accordion-button{
        padding: 14px 15px;
    }
    .small-container ,.future-sec .container , .container{
        padding: 0px 14px;
    }

    .contact {
        flex-wrap: wrap;
        row-gap: 14px;
        border-radius: 0px;
    }

    .header .row {
        padding: 0px 16px;
        padding-top: 24px;
    }

    .small-btn {
        font-size: 15px;
        padding: 9px 19px;
    }

    .hero-img-inner img {
        max-width: 150px;
        margin-bottom: 14px;
    }

    .small-btn img {
        width: 21px;
    }

    .how-to-play-img img {
        display: none;
    }

    .section-title h2 {
        font-size: 24px;
    }

    .text-box h3 {
        font-size: 22px;
    }

    .p-60 {
        padding: 45px 0px;
    }

    .text-box ol li {
        font-size: 14px;
        margin-bottom: 1px;
    }

    .screenshot-sec {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .how-to-play.p-60 {
        margin: 20px 0px;
    }

    .result-inner-main {
        margin-top: 45px;
    }

    .today-result.p-60 {
        padding: 40px 0px 40px 0px;
    }
    .hero-text-sec .row {
        row-gap: 0;
        flex-direction: column-reverse;
    }

    .game-results-head {
        padding: 9px 12px 16px;
    }

    .game-results-body .results-name {
        font-size: 23px;
    }

    .accordion-button {
        font-size: 15px;
        font-weight: 500;
    }

    .copy-right-img p {
        font-size: 13px;
    }

    .game-results-body {
        padding: 11px 15px;
    }

    .game-results-body .results-num {
        font-size: 24px;
        font-weight: 600;
    }


    .game-rates,
    .game-results-info,
    .faqs-info {
        padding: 30px 0px;
    }

    .all-chart-data {
        padding: 11px 15px;
    }
    .chart-table-data table tbody td {
        font-size: 14px;
    }

    tbody td {
        font-size: 19px;
        padding: 1px;
    }

    .chart-table-data table th {
        font-size: 8px;
        padding:4px 10px;
    }

    .chart-table-data .tbl-font {
        font-size: 10px;
    }

    .scroll-info.footer {
        margin-bottom: 26px;
    }
    .chart-title h2 {
        font-size: 21px;
    }

    table th {
        padding: 4px;
        font-size: 13px;
    }
    .panel-body{
        padding: 0;
    }
    .scroll-info {
        margin-top: 28px;
    }
    .small-btn.scroll-btn {
               width: 133px;
        font-size: 13px;
            padding: 8px 7px;
    }

    .modal-header {
        padding: 6px 10px;
    }

    .header {
        padding: 10px 0px;
    }

    .modal-title {
        margin-bottom: 0;
        font-size: 17px;
    }
    .game-rates-box p {
        font-size: 17px;
        font-weight: 500;
        margin-top: 4px;
    }
    .header{
        padding: 18px 14px;
        position: relative;
        column-gap: 10px;
        flex-direction: row-reverse;
        justify-content: end;
    }
    .logo img {
        width: 78px;
        position: absolute;
        left: 12px;
                top: 22px;
    }
    .header .small-btn{
        font-size: 14px;
        padding: 8px 13px;
    }
    .sec-title h2 {
       font-size: 20px;
        padding: 4px 12px;
    }
    .mobile-num , .whatsapp-info{
        width: auto;
        height: 40px;
        font-size: 12px;
        padding: 8px 10px;
    }
    .game-rates-box img{
            width: 69px;
        }
    .hero-section{
      padding-bottom: 30px;
        padding-top: 20px;
    }
    .mobile-num-img, .whatsapp-num-img {
        width: 28px;
        height: 28px;
        margin-right: 5px;
    }
    .mobile-num-img img, .whatsapp-num-img img {
        width: 14px;
    }
    
    .game-rates-box {
        border-radius: 22px;
        padding: 20px 10px;
        border-top: 5px solid #ffffffbd;
        border-bottom: 5px solid #ffffffbd;
        border-left: none;
        border-right: none;
    }
    
    .btn-1 img {
        width: 19px;
        margin-right: 0px;
    }

    .btn-1 {
        font-size: 14px;
        padding: 10px 20px;
    }

    .hero-text h1 {
                margin-bottom: 2px;
        font-size: 14px;
        margin-top: 12px;
        line-height: 34px;
    }
    .hero-text h1 b{
        font-size: 32px;
    }

    .hero-text h5 {
              font-size: 12px;
        letter-spacing: 1px;
        margin-bottom: 4px;
        font-weight: 600;
        line-height: 14px;
    }
    
    .hero-text-sec {
                margin-top: 90px;
        padding: 16px 12px 12px;
    }

    .hero-right-img img {
        width: 100%;
        max-width: 186px;
    }
    .footer-logos img {
        width: 105px;
    }

    .footer-logos {
        margin: 6px 0px;
    }

    .inner-row {
        flex-wrap: wrap;
    }
    .login_text {
        width: 100%;
        max-width: 100%;
        height: 100vh;
        border-radius: 0px;
        padding: 15px;
    }

    .sec-title {
        margin-bottom: 16px;
    }
    .close_btn {
        font-size: 12px;
    }
    .header-menu img {
        width: 35px;
    }
    .text-box ol {
        margin-top: 14px;
        margin-bottom: 18px;
    }

    .navbar-light .navbar-nav .nav-link {
        padding: 15px 10px;
    }
}
@media (max-width: 425px) {
    .download-btn {
        gap: 2px;
        padding: 10px 6px;
        font-size: 10px;
        font-weight: 600;
        height: 36px;
        width: 130px;
    }
    .header-menu img {
        width: 30px;
    }
    .header {
    column-gap: 6px;
    }
    .logo img { 
        top: 16px;
    }
        .footer-logos img {
        width: 70px;
    }
        .players-img img {
        width: 54px;
    }
    /* .footer-middle {
        grid-template-columns: 1fr;
    }
    .footer-border {
        border-left: none;
        border-right: none;
        border-top: 1px solid #ffffff4a;
        border-bottom: 1px solid #ffffff4a;
        padding: 14px 0;
        margin: 14px 0;
    } */
        .copy-right-text span {
        font-size: 12px;
    }
    .copy-right-text {
        font-size: 10px;
    }
}