/* CSS Document */
body, html{
    height: 100%;
    overflow-x: hidden !important;
}
body {
    background: #fff;
    font-size: 12rem;
}



h1, h2, h3, h4, h5, h6, p, a, ul, li{
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

a {
    text-decoration: none !important;
    transition: all 0.5s;
}
.carousel-item img {
    width: 100%;
}
ul {
    margin: 0;
    padding: 0;
}
li {
    list-style: none;
}

div#navbarCollapse {
    flex-direction: row-reverse;
}


.container{
    max-width: 1170px;
}

/* #fadeHeading {
  white-space: nowrap; Prevent wrapping
} */

#fadeHeading span {
    opacity: 0; /* Initially set opacity to 0 */
    animation: fade 1.5s linear forwards; /* Animation for fading */
    display: inline-block; /* Display words in a line */
}

body::-webkit-scrollbar {
    width: 7px;
    border-right: 5px;
}


body::-webkit-scrollbar-track {
    background-color: #00B9FF;
}


body::-webkit-scrollbar-thumb {
    background: #fff;
    border-radius: 10px;
}


body::-webkit-scrollbar-thumb:hover {
    background: #fff;
}


/* Animation keyframes */
@keyframes fade {
    0% { opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { opacity: 0; }
}

section.banner {
    background-image: url(../images/banner-bg.jpg);
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 150px 0 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* .datepicker {
    position: absolute;
    transform: translate(160px, 420px);
} */
header {
    position: fixed;
    right: 0;
    left: 0;
    width: 100%;
    padding: 30px 0;
    z-index: 99999;
    background-color: transparent;
    transition: all 0.5s;
}

header .collapse {
    justify-content: flex-end;
}

header ul.navbar-nav {
    margin: 0 40px 0 0 !important;
}

header .navbar-nav li a {
    color: var(--Style, #FFF) !important;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 20px */
    text-transform: capitalize;
}
header .navbar-nav li a.active{
    color: #00b9ff !important;
}

header a.navbar-brand img {
    width: 70%;
}
header a.navbar-brand {
    position: absolute;
    top: 0px;
    bottom: 0;
    z-index: 99;
}
header a.navbar-brand img{
    height: 200px;
    width: auto;
}
#navbarSupportedContent {
    margin-top: 20px;
}
header a.contact-us {
    display: flex;
    padding: 12px 50px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: var(--Style, linear-gradient(137deg, #00B9FF 11.18%, #005D7C 91.63%));
    color: var(--white, #FFF);
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%; /* 20px */
    text-transform: capitalize;
    transition: all 0.5s;
    margin-top: 20px;
}

header nav {
    padding: 0 !important;
}

header a.navbar-brand {
    padding: 0 !important;
    margin: 0;
    outline: unset;
}

.banner-title {
    text-align: center;
    position: relative;
    z-index: 999;
}

.banner-title h1 {
    color: var(--white, #FFF);
    text-align: center;
    font-family: Poppins;
    font-size: 44px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: -1.4px;
    text-transform: capitalize;
    /* margin: 30px 0 0 0; */
}
.banner-title h3 {
    color: var(--white, #FFF);
    text-align: center;
    font-family: Poppins;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: -1.4px;
    text-transform: capitalize;
    margin: 10px 0 0 0;
}
.banner-title h2 {
    color: var(--white, #FFF);
    text-align: center;
    font-family: Poppins;
    font-size: clamp(60px, 10vw, 150px);
    font-style: normal;
    font-weight: 400;
    line-height: 80%; /* 244px */
    text-transform: uppercase;
    margin: 150px 0 0;
}

.players {
    position: absolute;
    top: 280px;
    left: 0px;
    right: 0;
    display: flex;
    justify-content: center;
    height: 100%;
    z-index: -1;
}

.players img:nth-child(1) {
    width: 21%;
    position: absolute;
    opacity: 1 !important;
    left: 370px;
    top: 39px;
    animation: fadeLeft 1.5s forwards;
    height: auto;
}

.players img:nth-child(2) {
    width: 18%;
    position: absolute;
    left: 8px;
    right: 0;
    margin: 0 auto;
    animation: zoomIn 1.5s forwards;
    top: -8px;
    z-index: 1;
}

.players img:nth-child(3) {
    width: 22%;
    position: absolute;
    right: 296px;
    top: -36px;
    z-index: 0;
    animation: fadeRight 1.5s forwards;
}


.players img {
    opacity: 1 !important;
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.banner-title svg {
    position: absolute;
    top: 200px;
    left: 0;
    right: 0;
    /* top: 80px; */
    margin: 0 auto;
    width: 400px;
    z-index: -1;
    height: 100%;
}

@keyframes fadeLeft {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeRight {
    0% {
        opacity: 0;
        transform: translateX(-100%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes zoomIn02 {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes zoomIn2 {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}


.banner-bottom h5 {
    color: var(--white, #FFF);
    font-family: Poppins;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 24px */
    text-transform: capitalize;
    text-align: center;
    margin: 0;
}

.banner-bottom-card.red-one {
    background-image: url(../images/red1.png);
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0px 30px 70px 0px rgba(0, 0, 0, 0.20);
}

.banner-bottom-card.red-two {
    background-image: url(../images/red2.png);
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0px 30px 70px 0px rgba(0, 0, 0, 0.20);
}

.banner-bottom-card.blue-two {
    background-image: url(../images/blue2.png);
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0px 30px 70px 0px rgba(0, 0, 0, 0.20);
}

.banner-bottom-card.blue-one {
    background-image: url(../images/blue1.png);
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0px 30px 70px 0px rgba(0, 0, 0, 0.20);
}

section.banner-bottom {
    position: relative;
    z-index: 999;
    top: -32px;
    overflow: hidden;
    padding: 0 0 130px;
}

.banner-bottom-card p {
    color: var(--white, #FFF);
    font-family: Poppins;
    font-size: 11px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    text-transform: capitalize;
}

.banner-bottom-card {
    padding: 20px 15px;
}


.batsman-img img {
    max-height: 220px;
    width: 100%;
    object-fit: cover;
}

.cash-img img {
    max-height: 220px;
    width: 100%;
    object-fit: cover;
}

.sport-img img {
    width: 100%;
    min-height: 300px;
    object-fit: contain;
}

.cash-img {
    margin-top: 22px;
}

.the-final-score-content h5 {
    color: var(--sky-blue, #00B9FF);
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 20px */
    text-transform: uppercase;
    margin: 0;
}

.the-final-score-content h3 {
    color: var(--dark-blue, #031C26);
    font-family: Poppins;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 50px */
    text-transform: capitalize;
    margin: 15px 0 15px;
}

.the-final-score-content p {
    color: #717171;
    font-family: Poppins;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 22.4px */
    /* text-transform: capitalize; */
}

.the-final-score-content p:nth-child(3) {
    margin-bottom: 20px;
}

.the-final-score-content a {
    display: inline-block;
    padding: 16px 30px;
    color: var(--white, #FFF);
    font-family: Poppins;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    text-transform: capitalize;
    background: var(--Linear, linear-gradient(137deg, #ED2131 11.18%, #AD121F 91.63%));
}

.the-final-score-content {padding: 0;}

section.the-final-score .row {
    align-items: center;
}

section.the-final-score {
    padding: 0 0 100px;
    position: relative;
    margin: 50px 0 0;
    display: flex;
}

.scrollll {
    background-color: #031a259c;
    transition: all 0.5s;
    box-shadow: 0 0px 3px 0 white;
    padding: 0px 0px 70px 0;
}

.counter {
    display: flex;
    justify-content: center;
}

.counter-content {
    text-align: left;
}

section.counter-cta {
    margin-bottom: 100px;
}


.counter-cta-bg{
    background-image: url(../images/counter-bg.png);
    width: 100%;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    position: relative;
    box-shadow: 0px 30px 70px 0px rgba(0, 0, 0, 0.20);
    padding: 30px 0;
}

.counter-content h3 {
    color: var(--sky-blue, #00B9FF);
    text-align: center;
    font-family: Poppins;
    font-size: 45px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 60px */
    text-transform: capitalize;
    margin: 0 0 15px;
}

.counter-content p {
    color: var(--white, #FFF);
    text-align: center;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%; /* 24px */
    margin: 0;
}

section.counter-cta .row {
    justify-content: center;
}

.how-it-works-left h5 {
    color: var(--sky-blue, #00B9FF);
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    text-transform: uppercase;
    margin: 0;
}

.how-it-works-left h2 {
    color: var(--dark-blue, #031C26);
    font-family: Poppins;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    text-transform: capitalize;
    margin: 15px 0 5px;
}

.how-it-works-left P {
    color: #717171;
    font-family: Poppins;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    /* text-transform: capitalize; */
    margin: 0;
}

.how-it-works-accordian .accordion-item {
    border: unset !important;
}

.how-it-works-left button.accordion-button {
    background-color: #D9D9D9 !important;
    color: var(--dark-blue, #031C26);
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    /* text-transform: capitalize; */
    height: 70px;
    outline: unset !important;
}


.how-it-works-left .accordion-item:last-of-type .accordion-button.collapsed {
    border-radius: unset !important;
}

.how-it-works-left .accordion-item:first-of-type .accordion-button {
    border-radius: unset !important;
}

.how-it-works-left .accordion-button::after {
    flex-shrink: 0;
    width: var(--bs-accordion-btn-icon-width);
    height: var(--bs-accordion-btn-icon-width);
    margin-left: auto;
    content: "";
    background-image: url(../images/caret-right.png) !important;
    background-repeat: no-repeat;
    background-size: var(--bs-accordion-btn-icon-width);
    transition: var(--bs-accordion-btn-icon-transition);
    width: 8px;
    height: 14px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}


.how-it-works-left .accordion-button:not(.collapsed)::after {
    background-image: var(--bs-accordion-btn-active-icon);
    transform: rotate(90deg);
}


.how-it-works-left .accordion-button:focus {
    z-index: 3;
    border-color: unset !important;
    outline: 0;
    box-shadow: unset !important;
}

.how-it-works-right .row .col-md-6 {
    padding: 0;
}

.football-red-img img {
    width: 100%;
    height: 530px;
    object-fit: cover;
}

.football-red {
    background: var(--red-gradient, linear-gradient(137deg, #ED2131 11.18%, #AD121F 91.63%));
    height: 94px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.football-red h4 {
    margin: 0;
    color: var(--white, #FFF);
    text-align: center;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 30px */
    text-transform: capitalize;
}

.baseball.football-red {
    background: var(--blue-gradient, linear-gradient(137deg, #00B9FF 11.18%, #005D7C 91.63%));
    margin: 0px 0px 0px;
}

.how-it-works-right .row .col-md-6:nth-child(2) {
    margin-top: 35px;
}

section.how-it-works {
    padding-bottom: 100px;
    position: relative;
}

.final-score-title {
    text-align: center;
    margin: 0 0 40px;
}

.final-score-title h3 {
    color: #fff;
    font-family: Poppins;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    text-transform: capitalize;
}


.final-score-main{
    background-image: url(../images/final-score-bg.png);
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 56px 0;
    box-shadow: 0px 30px 70px 0px rgba(0, 0, 0, 0.20);
}

section.how-it-works .row {
    align-items: center;
}

section.how-it-works .row {
    align-items: center;
}

.final-score-card {
    background-color: #fff;
    padding: 10px 30px;
    display: flex;
    flex-direction: column;
    align-items: baseline;
    width: 495px;
    height: 300px;
}

.final-score-card svg {width: 75px;height: 75px;}

.final-score-card h5 {
    color: var(--dark-blue, #031C26);
    font-family: Poppins;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 30px */
    text-transform: capitalize;
    margin: 20px 0 15px;
}

.final-score-card p {
    color: #717171;
    font-family: Poppins;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    /* text-transform: capitalize; */
    margin: 0 0 15px;
}

.final-score-card a {
    display: inline-block;
    padding: 16px 30px;
    color: var(--white, #FFF);
    font-family: Poppins;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    text-transform: capitalize;
    background: var(--Linear, linear-gradient(137deg, #ED2131 11.18%, #AD121F 91.63%));
}

section.final-score .row {
    gap: 26px 0;
}

section.final-score .col-md-6:nth-child(1) .final-score-card {
    margin: 0 0 0 auto;
}


section.final-score .col-md-6:nth-child(3) .final-score-card {
    margin: 0 0 0 auto;
}

.final-score-card.blue a {
    background: var(--blue-gradient, linear-gradient(137deg, #00B9FF 11.18%, #005D7C 91.63%));
}

.testimonials-slide {
    text-align: center;
}

.testimonials-slide-head span {
    display: block;
    margin: 0 0 40px;
}

.testimonials-slide-body h4 {
    color: var(--dark-blue, #031C26);
    text-align: center;
    font-family: Poppins;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 50px */
    text-transform: capitalize;
    margin: 0 0 25px;
}

.testimonials-slide-body p {
    color: #717171;
    text-align: center;
    font-family: Poppins;
    font-size: 15px;
    font-style: italic;
    font-weight: 400;
    line-height: 180%; /* 36.8px */
    /* text-transform: capitalize; */
}

.testimonials-slide-footer {
    text-align: center;
    margin: 40px 0 0;
    position: relative;
}

.testimonials-slide-footer span {
    display: inline-block;
    margin: 0 auto 10px;
}

.testimonials-slide-footer h6 {
    text-align: center;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 18px */
    text-transform: capitalize;
    background: var(--red-gradient, linear-gradient(137deg, #ED2131 11.18%, #AD121F 91.63%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.testimonials-slide-footer p {
    color: var(--dark-blue, #031C26);
    text-align: center;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 18px */
    text-transform: capitalize;
}

section.testimonials {
    padding: 120px 0;
    position: relative;
}



.testimonials-slider-main .slick-dots li.slick-active button:before {
    opacity: 1;
    color: #ED2131;
}
.testimonials-slider-main .slick-dots li button:before {
    font-family: 'slick';
    font-size: 70px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: '.';
    text-align: center;
    opacity: 1;
    color: #031c26;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.testimonials-slider-main ul.slick-dots li {
    margin: 0 0;
}

.testimonials-slider-main .slick-dots{
    bottom: -40px;
}

.testimonials-images {
    position: relative;
}

.testimonials-images::after {
    content: '';
    background-image: url(../images/slider-img-left.png);
    width: 100px;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100px;
    position: absolute;
    z-index: 999;
}

.testimonials-images::before {
    content: '';
    background-image: url(../images/slider-img-right.png);
    width: 120px;
    top: 40px;
    right: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 120px;
    position: absolute;
    z-index: 999;
}

.testimonials-slide-body {
    width: 78%;
    margin: 0 auto;
}


.testimonials-images-two::after {
    content: '';
    background-image: url(../images/slider-btm-left.png);
    width: 200px;
    bottom: -70px;
    left: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 200px;
    position: absolute;
    z-index: 999;
}

.testimonials-images-two::before {
    content: '';
    background-image: url(../images/slider-btm-right.png);
    width: 101px;
    bottom: -60px;
    right: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 101px;
    position: absolute;
    z-index: 999;
}



.testimonials-images-two{
    position: relative;
}

.get-in-touch-title {
    text-align: center;
}

.get-in-touch-title h3 {
    font-family: 'Poppins';
    color: var(--dark-blue, #031C26);
    text-align: center;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 50px */
    text-transform: capitalize;
    margin: 0 0 20px;
}

.get-in-touch-title p {
    color: #717171;
    text-align: center;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 22.4px */
    /* text-transform: capitalize; */
}

.get-in-touch-content input {
    background: #D9D9D9;
    width: 100%;
    border: unset;
    outline: unset;
    margin: 0 0 0;
    height: 55px;
    padding: 0 0 0 20px;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 16px */
    text-transform: capitalize;
}

.get-in-touch-content .row {
    gap: 30px 0;
}

.get-in-touch-content textarea {
    resize: none;
    background: #D9D9D9;
    width: 100%;
    border: unset;
    outline: unset;
    margin: 0 0 0;
    padding: 20px 0 0 20px;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    height: 185px;
    text-transform: capitalize;
}

.get-in-touch-content button {
    display: flex;
    padding: 16px 30px;
    color: var(--white, #FFF);
    font-family: Poppins;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    text-transform: capitalize;
    background: var(--Linear, linear-gradient(137deg, #ED2131 11.18%, #AD121F 91.63%));
    border: unset;
    margin: 30px auto 0;
}

section.get-in-touch {
    padding: 0 0 80px;
    position: relative;
}

.get-in-touch-content input::placeholder {
    color: #000;

}

.get-in-touch-content textarea::placeholder {
    color: #000;
}

footer {
    background-image: url(../images/footer-bg.png);
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 50px 0 0 0;
}

.footer-content span img {
    height: 150px;
}

.footer-content p {
    color: var(--white, #FFF);
    font-family: 'Poppins';
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 150%; /* 24px */
    text-transform: capitalize;
    margin: 0;
}

.footer-content span {
    display: block;
    margin: 0 0 20px;
}

.social-icons ul {
    padding: 0;
    margin: 0;
    display: flex;
}


.social-icons {
    margin: 30px 0 0;
}

.footer-content h4 {
    color: var(--sky-blue, #00B9FF);
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal; /* 26px */
    margin: 0;
}

.footer-content ul {
    padding: 15px 0 0;
    margin: 0;
    /* display: flex; */
    /* flex-direction: column; */
    /* gap: 19px 0; */
}

.footer-content ul li a {
    color: var(--Style, #FFF);
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 20px */
    text-transform: capitalize;
    transition: all 0.5s;
    margin: 0 15px;
}

.footer-content ul li {
    color: var(--Style, #FFF);
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
}

.social-icons ul {
    display: flex;
    flex-direction: row;
    padding: 0;
    justify-content: center;
}


.footer-content input {
    border: 1px solid #ffffff9c;
    background-color: transparent;
    width: 100%;
    height: 40px;
    padding: 0 0 0 15px;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 16px */
    text-transform: capitalize;
    margin: 20px 0 0;
}

.footer-content button {
    display: block;
    padding: 14px 40px;
    color: var(--white, #FFF);
    font-family: Poppins;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    text-transform: capitalize;
    background: var(--Linear, linear-gradient(137deg, #ED2131 11.18%, #AD121F 91.63%));
    border: unset;
    margin: 20px 0 0;
    transition: all 0.5s;
}

.social-icons ul li {
    margin-right: 30px;
}

.social-icons ul li svg {
    width: 30px;
    height: 30px;
    transition: all 0.4s;
}

.copy-right {
    text-align: center;
}

.copy-right {
    margin: 0;
    padding: 34px 0 0;
}

.copy-right a {
    color: #fff;
    font-weight: 700;
}

.copy-right p {
    color: var(--white, #FFF);
    text-align: center;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 150%; /* 24px */
    margin: 0;
    text-transform: capitalize;
}

.footer-content ul li a:hover {
    color: #ba1523;
}

section.the-final-score p {
    color: #717171;
    font-family: Poppins;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    /* text-transform: capitalize; */
}

section.the-final-score .row {
    margin-bottom: 15px;
}

.inner-page {
    background-image: url(../images/inner-bg.png);
    padding: 0;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

section.get-in-touch.innerr {
    padding: 70px 0;
}

section.testimonials.innerr {
    padding: 70px 0 100px;
}

.the-final-score-content a:hover {
    background: var(--Linear, linear-gradient(-137deg, #ED2131 11.18%, #AD121F 91.63%));
}

header a.contact-us:hover {
    background: var(--Style, linear-gradient(-137deg, #00B9FF 11.18%, #005D7C 91.63%));
}

.final-score-card a:hover {
    background: var(--Linear, linear-gradient(-137deg, #ED2131 11.18%, #AD121F 91.63%));
}

.final-score-card.blue a:hover {
    background: var(--Style, linear-gradient(-137deg, #00B9FF 11.18%, #005D7C 91.63%));
}

.get-in-touch-content button:hover {
    background: var(--Linear, linear-gradient(-137deg, #ED2131 11.18%, #AD121F 91.63%));
}

.footer-content button:hover {
    background: var(--Linear, linear-gradient(-137deg, #ED2131 11.18%, #AD121F 91.63%));
}

.social-icons ul li:hover svg {
    transform: scale(1.2);
}

section.banner-bottom::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 100px;
    background-image: url(../images/red-arc.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 70px;
    height: 68px;
}

section.final-score {
    position: relative;
    padding-bottom: 100px !important;
}



.footer-content ul li.none a {
    text-transform: none;
}


section.the-final-score.innerr {
    margin: 0;
    padding: 70px 0;
}

header .navbar-nav li a:hover {
    color: #00b9ff !important;
}


.final-score-main .col-md-6:nth-child(1) .final-score-card {
    background-image: url(../images/final-bg1.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.final-score-main .col-md-6:nth-child(2) .final-score-card {
    background-image: url(../images/final-bg2.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.final-score-main .col-md-6:nth-child(3) .final-score-card {
    background-image: url(../images/final-bg3.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.final-score-main .col-md-6:nth-child(4) .final-score-card {
    background-image: url(../images/final-bg4.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

section.banner.login {
    background-image: url(../images/banner-bg.png);
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 0;
    /* height: 100vh; */
}

.logoin-main {
    width: 50%;
    margin: 0 auto;
}

.login-title h1 {
    color: var(--Style, #FFF);
    font-family: Poppins;
    font-size: 35px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 51.796px */
    margin: 0;
    text-transform: uppercase;
}

.login-title {
    text-align: center;
    margin: 0 0 40px;
}

.login-content {
    border-radius: 30px;
    background: #FFF;
    box-shadow: 0px -20px 30px 0px rgba(0, 0, 0, 0.20);
    height: 450px;
    text-align: center;
    padding: 49px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.login-content h3 {
    color: #1B1D1F;
    text-align: center;
    font-family: Inter;
    font-size: clamp(22px, 5vw, 45px);
    font-style: normal;
    font-weight: 600;
    line-height: 34px; /* 42.5% */
    letter-spacing: -0.569px;
    margin: 0 0 14px;
}

.login-content p {
    color: #91949C;
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 22.764px; /* 113.822% */
    letter-spacing: -0.569px;
}

.login-content p a {
    color: #ED2131;
    text-decoration: underline !important;
}

.login-content ul {
    margin: 25px 0 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 26px;
}

.login-content ul li img {
    width: 50px;
    filter: drop-shadow(0px 4px 15px rgba(0, 0, 0, 0.10));
    transition: all 0.1s;
}

.login-content .input-group {
    align-items: center;
    position: relative;
    border-bottom: 1px solid #D1D1D1;
    width: 100%;
    margin: 0 auto 28px;
    padding: 0 0 14px;
}

.login-content .input-group input {
    color: #000;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 34.449px;
    letter-spacing: -0.861px;
    outline: unset;
    border: unset;
    padding: 0 0 0 30px;
}

.login-content .input-group span:first-child {
    left: 0;
    display: flex;
    align-items: center;
}

.login-content .input-group span:first-child img {
    position: absolute;
    width: 24px;
    left: 0;
}

.login-content .input-group a#button-addon2 {
    padding: 0;
    color: #00B9FF;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 34.449px; /* 133.333% */
    letter-spacing: -0.861px;
    border: unset;
    background: transparent;
    margin-left: 10px;
}

.login-content form {
    margin-top: 35px;
    position: relative;
}

.login-content .form-control:focus {
    box-shadow: unset;
}

.login-content .input-group a#button-addon2:hover {
    background-color: transparent;
}


.login-content .input-group .disabled {
    visibility: hidden;
    opacity: 0;
    cursor: unset;
}


.login-content .input-group input::placeholder {
    color: #91949C;

}

.login-content button.login-btn {
    border-radius: 500px;
    background: var(--Linear, linear-gradient(137deg, #ED2131 11.18%, #AD121F 91.63%));
    color: #FFF;
    text-align: center;
    font-family: Inter;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 30.713px; /* 133.333% */
    letter-spacing: -0.768px;
    border: unset;
    width: 68%;
}


@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.login-btn {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}

.rotate-image {
    display: none;
    width: 22px;
    height: 22px;
    margin: auto;
    margin-top: 0;
    animation: rotate 2s linear infinite;
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
}

.login-content ul li img:hover {
    box-shadow: 0px 0px 6px 0px black;
    border-radius: 7px;
}


section.banner.login.forgot .login-content {
    height: 320px;
}

.login-button {
    height: 51px;
}

form#loginForm span:last-child {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
}

section.banner.login.createaccount .login-content p a {
    color: #00B9FF;
}

section.banner.login.createaccount .logoin-main {
    width: 100%;
    margin: 0 auto;
}

section.banner.login.createaccount .logoin-main .input-group {
    margin: 0;
    width: 100%;
    justify-content: start;
}

/*section.banner.login.createaccount form .row {*/
/*    gap: 50px 0px;*/
/*}*/

section.banner.login.forgot {
    height: 100vh;
}

section.banner.login.createaccount .login-content {
    height: 100%;
}

section.banner.login.createaccount .login-button {
    margin: 60px 0 0;
}

section.banner.login.createaccount .login-button .login-btn {
    width: 30%;
}

.dashboard-one-left {
    background: var(--Style, linear-gradient(123deg, #00B9FF 11.18%, #005D7C 91.63%));
    height: 133vh;
    padding: 0 18px;
}


section.dashboard-one .column1 {
    max-width: 0px;
    padding: 0;
}

section.dashboard-one .column2 {
    flex: 1;
    padding: 0;
}

.top-bar {border-bottom: 1px solid #c9c9c959;display: flex;align-items: center;justify-content: space-between;flex-direction: row-reverse;padding: 15px 30px;flex-wrap: wrap;}

.top-bar .btn-secondary {
    background-color: transparent;
    padding: 0;
    border: unset;
}

.top-bar .btn-secondary:hover {
    color: unset;
    background-color: unset;
    border-color: unset;
}


.top-bar .btn.show{
    background-color: transparent !important;
}
.topbar-options ul{
    margin: 0px;
}
.topbar-options > ul > li {
    display: inline-block;
}
#team-filter-form > div > div {
    width: 100%;
}
#team-filter-form > div{
    gap: 20px;
}
.upcoming-badges .active{
    background-color: red !important;
}
.topbar-options .live-chat button{
    color: red;
    background-color: transparent;
    border: none;
    border: 1px solid;
    border-radius: 10px;
}

.bell img {
    width: 18px;
}

.bell {
    margin-right: 15px;
}

.top-bar .btn-secondary img {
    width: 40px;
}

.top-bar .dropdown-toggle::after {
    border-top: .3em solid #000;
}
.dash-logo img {
    width: 160px;
}

.dash-logo {
    text-align: center;
    /* padding: 30px 0 0; */
}

.naviagtion {
    /* margin: 50px 0 0; */
    padding: 30px 0;
}

.naviagtion ul {
    margin: 0;
    padding: 0;
}

.naviagtion ul li {
    padding: 0 0 20px;
    color: #FFF;
    font-family: Inter;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 34px; /* 141.667% */
    letter-spacing: -0.569px;
    cursor: pointer;
}

.naviagtion ul li img {width: 37px;margin-right: 10px;}
.dashboard-one-left .naviagtion ul li a {
    color: white !important;
}
.dash-back-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 0;
}

.dash-back-bar h2 {
    margin: 0;
    color: #000;
    font-family: Inter;
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    /* 141.667% */
    letter-spacing: -1.128px;
}

.dashboard-one-right {
    padding: 0 30px 60px;
}

.dash-back-bar a {
    color: #000;
    text-align: right;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    /* 166.902% */
    letter-spacing: -0.838px;
}

.dash-back-bar a i {font-size: 12px;margin-right: 8px;}

.different-battings ul {
    display: flex;
    margin: 0;
    padding: 0;
    align-items: center;
}

.different-battings ul li img {width: 32px;height: 32px;}

.different-battings ul li a {
    color: #D3D3D3;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 30.132px;
    letter-spacing: -1.076px;
    cursor: pointer;
    padding-right: 30px;
}


.different-battings {
    margin: 30px 0 0;
    border-bottom: 1px solid #c9c9c959;
    padding: 0 0 20px;
}

.batting-card {
    border-radius: 18px;
    padding: 22px 34px;
    background: #FFF;
    box-shadow: 0px 0 20px 0px rgba(0, 0, 0, 0.10);
}

.batting-card.red{
    background: var(--Linear, linear-gradient(137deg, #ED2131 11.18%, #AD121F 91.63%));
}

.batting-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 25px;
    flex-wrap: wrap;
    gap: 20px;
}

.batting-card-head h4 {
    margin: 0;
    color: #000;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    /* 100% */
    letter-spacing: -0.838px;
}

.teams h4 {
    color: #000;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    letter-spacing: -0.838px;
    margin: 0px 0 0 10px;
}

.teams {
    display: flex;
    align-items: center;
}

.teams img {
    width: 45px;
}

.teams h4 span {
    display: block;
    font-family: Inter;
    font-size: 13px;
    color: #625F5F;
    font-style: normal;
    font-weight: 300;
    line-height: 30px;
    letter-spacing: -0.838px;
}

.winner {
    margin: 25px 0 0;
    text-align: center;
    border-radius: 8px;
    background: #FFF;
    padding: 8px 0;
}

.winner h4 {
    color: #272525;
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    margin: 0;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: -0.838px;
}

.batting-card-main {
    margin: 40px 0 0;
}
.batting-card-main > a {
    position: relative;
}

.live-label {
    position: absolute;
    z-index: 1;
    left: -10px;
    color: white;
    background: green;
    padding: 0px;
    border-radius: 5px;
    width: 50px;
    text-align: center;
    transform: rotate(-90deg);
    top: 13px;
}
.batting-card-main a:hover .batting-card{ background:#bc1623;}
.batting-card-main a:hover .batting-card h4{ color:#fff;}
.batting-card {
    margin: 0 0 30px;
    transition: all 0.6s;
    position: relative;
}

.batting-card.red .batting-card-head h4 {
    color: #fff;
}

.batting-card.red .teams h4 {
    color: #fff;
}

.batting-card.red .teams h4 span {
    color: #fff;
}

.batting-card-head h4:nth-child(2) {color: #C81826;}


section.dashboard-one {
    overflow: hidden;
    height: 130vh;
}

/*.dash-scoll {
    box-shadow: 5px -1px 6px 0 black;
    transition: all 0.8s;

}*/

section.dashboard-one.dashboard-two .batting-card-main {
    margin-top: 0;
}

.score-red {
    border-radius: 16px;
    background: var(--Style, linear-gradient(137deg, #00B9FF 11.18%, #005D7C 91.63%));
}


.score-blue {
    border-radius: 18px;
    background: var(--Linear, linear-gradient(137deg, #ED2131 11.18%, #AD121F 91.63%));
}

.score-red h2, .score-blue h2{
    color: white;
    text-align: center;
}

.score-board {
    margin: 0 0 0;
}

.score-board .col-md-6 .row .col-md-4 {
    padding: 0;
}

.score {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px 0;
}

.score h5 {
    color: #FFF;
    text-align: center;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px; /* 100% */
    letter-spacing: -0.838px;
    margin: 0;
}

.score h5:first-child {
    margin: 0 0 10px;
}

.score-board .col-md-6 .row .col-md-4:nth-child(1) {border-right: 1px solid #fff;}

.score-board .col-md-6 .row .col-md-4:nth-child(2) {
    border-right: 1px solid #fff;
}

.score-board .col-md-6 .row .col-md-3:nth-child(1) {
    border-right: 1px solid #fff;
}

.score-board .col-md-6 .row .col-md-3:nth-child(2) {
    border-right: 1px solid #fff;
}

.score-board .col-md-6 .row .col-md-3:nth-child(3) {
    border-right: 1px solid #fff;
}

.score-board .col-md-6 .row .col-md-3 {
    padding: 0;
}

.search-team {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px 0 20px;
}

.search-team h4 {
    color: #ACACAC;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px; /* 150% */
    letter-spacing: -0.838px;
    margin: 0;
}

.search-team .input-group {
    width: unset;
    border-radius: 6px;
    border: 1px solid #DEDEDE;
    background: #FFF;
}

.search-team .input-group input {
    border: unset;
    outline: unset;
    font-family: poppins;
}

.search-team .input-group span {
    border: unset;
    background-color: transparent;
}

.search-team .input-group span i {
    color: #0092C7;
}

.search-team .input-group .form-control:focus {box-shadow: unset;}

.players-list table {
    table-layout: auto;
    width: 100%;
    display: table;
}

.players-list {
    border-radius: 18px;
    background: #FFF;
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.10);
    border: 1px solid #DEDEDE;
    margin-bottom: 20px;
}


.players-list thead tr th {
    background: #0092C7;
    width: 25%;
    padding: 12px 0;
    border-left: 1px solid #dedede99;
}

.players-list thead tr th h4 {
    color: #FFF;
    text-align: center;
    font-family: Inter;
    font-size: 17px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px; /* 125% */
    letter-spacing: -0.838px;
    margin: 0;
    padding: 8px 0;
}


.players-list thead tr th:first-child {
    border-radius: 14px 0 0px 0px;
    border-right: 1px solid #dedede99;
    border-left: unset;
}

.players-list thead tr th:last-child {
    border-radius: 0 14px 0px 0px;
    border-right: unset;
}


.players-list tbody td {border: 1px solid #DEDEDE;padding: 20px 10px;}

.players-list tbody td h4 {
    color: #ACACAC;
    font-family: Inter;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: -0.838px;
    text-align: center;
    margin: 0;
    padding: 2px 0;
}

.players-list tbody tr:nth-child(even) {
    background: #F5F5F5;
}


.players-detail-main {
    padding: 0 0 130px;
}

.players-list  tr.last {
    background-color: transparent !important;
}

.players-list tr.last td {border-right: unset;border-left: unset;}


.players-list tr.last td h4 {
    color: #000;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px; /* 125% */
    letter-spacing: -0.838px;
    text-transform: capitalize;
}

.players-list tbody tr td:first-child {
    border-left: unset;
    padding: 20px 30px;
}

.players-list tbody tr td:last-child {
    border-right: unset;
}

.players-list tr.last:last-child td {
    border-bottom: unset;
}

.players-list.betss thead tr th {
    width: 18%;
    padding: 0;
    background-color: #2C2C2C;
    border-radius: unset;
}

.players-list.betss thead tr th h4 {
    padding: 5px 29px;
    font-size: 15px;
}

.players-list.betss h6 {
    border-radius: 18px 18px 0px 0px;
    background: #DA1C2B;
    color: #FFF;
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px; /* 125% */
    letter-spacing: -0.838px;
    margin: 0;
    padding: 12px 0;
}

.players-list.betss select {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    border: unset;
    color: #000;
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px; /* 150% */
    letter-spacing: -0.838px;
    padding: 8px 0;
    outline: unset;
}

section.the-final-score::after {
    content: '';
    position: absolute;
    bottom: 0;
    background-image: url(../images/blue-crecent.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 60px;
    top: 0;
    height: 120px;
    margin-top: auto;
    margin-bottom: auto;
    left: 0;
}


section.how-it-works::after {
    content: '';
    position: absolute;
    bottom: 0;
    background-image: url(../images/blue-crecent.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 60px;
    top: 0;
    right: 0;
    transform: rotate(180deg);
    height: 120px;
}


section.how-it-works::before {
    content: '';
    position: absolute;
    background-image: url(../images/red-crecent.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 60px;
    bottom: 0;
    left: 0;
    transform: rotate(180deg);
    height: 120px;
}



section.final-score::after {
    content: '';
    position: absolute;
    bottom: 0;
    background-image: url(../images/red-crecent.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 60px;
    top: 0;
    height: 120px;
    margin-top: auto;
    margin-bottom: auto;
    right: 0;
}


section.testimonials::after {
    content: '';
    position: absolute;
    bottom: 0;
    background-image: url(../images/blue-crecent.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 60px;
    top: 0;
    height: 120px;
    left: 0;
}


section.get-in-touch::before {
    content: '';
    position: absolute;
    bottom: 0;
    background-image: url(../images/blue-crecent.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 60px;
    transform: rotate(180deg);
    top: 0;
    height: 120px;
    margin-bottom: auto;
    right: 0;
}


section.get-in-touch::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    background-image: url(../images/red-arc.png);
    background-size: contain;
    background-position: center;
    transform: rotate(180deg);
    background-repeat: no-repeat;
    width: 70px;
    height: 68px;
}


section.the-final-score.innerr::after {
    background-image: url(../images/red-arc.png);
    right: 0;
    left: unset;
    bottom: unset;
    width: 70px;
    height: 68px;
}

/* section.the-final-score.innerr::before {
    content: '';
    position: absolute;
    bottom: 0;
    background-image: url(../images/blue-crecent.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 60px;
    top: 0;
    height: 120px;
    margin-bottom: auto;
    left: 0;
    margin-top: auto;
} */


section.final-score.innerr.sporrt::after {
    margin: 0;
    right: 0;
    background-image: url(../images/red-arc.png);
    width: 70px;
    height: 68px;
}


section.final-score.sporrt::before {
    content: '';
    position: absolute;
    bottom: 0;
    background-image: url(../images/blue-crecent.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 60px;
    top: 0;
    height: 120px;
    margin-top: auto;
    margin-bottom: auto;
    left: 0;
}

section.sport-main::after {
    content: '';
    position: absolute;
    bottom: 0;
    background-image: url(../images/blue-arc.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 60px;
    bottom: -30px;
    height: 120px;
    right: 0;
    transform: rotate(90deg);
}

section.sport-main{
    padding: 70px 0;
    position: relative;
}


section.testimonials.innerr.testimonialsss::after {
    right: 0;
    left: unset;
    background-image: url(../images/red-arc.png);
    width: 70px;
    height: 68px;
}

.football-player {
    position: absolute;
    right: 0px;
    top: 0;
    z-index: 9;
}

.football-player img {
    width: 190px;
}

section.the-final-score.innerr .football-player {
    top: 110px;
}

section.final-score.innerr.sporrt .football-player {
    top: 120px;
}

.timer {
    position: absolute;
    right: 34px;
    top: 47px;
    z-index: 9;
    width: 95px;
}

.time-label {
    display: flex;
    align-items: center;
    background-color: #00a7e5;
    justify-content: space-around;
    padding: 0 0 7px;
    border-radius: 0 0 4px 4px;
}

.timing {
    display: flex;
    align-items: center;
    justify-content: space-around;
    background-color: #00a7e5;
    color: #fff;
    padding: 8px 0 0;
}

.timer h6 {
    color: #fff;
    font-size: 11px;
    font-family: poppins;
    letter-spacing: -0.5px;
    margin: 0;
    background: #AD121F;
    text-align: center;
    padding: 8px 0;
    border-radius: 4px 4px 0 0px;
}

.timing span {
    font-family: 'Poppins';
    color: #fff;
    font-size: 26px;
    font-weight: 500;
    padding: 0 6px;
    line-height: 26px;

}

.time-label p {
    margin: 0;
    color: #fff;
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 12px;
}

.batting-card.red .timer h6 {
    color: #c81826;
    background-color: #fff;
}

.winner-main {
    display: flex;
    align-items: center;
    gap: 10px;
}

.winner-main .winner {
    width: 33%;
}

.players-list h4.redd {
    color: #da1c2b;
    text-decoration: underline;
}

.first-modall .modal-header {
    justify-content: center;
    border: unset;
}

.first-modall .modal-header h3 {
    color: #272525;
    text-align: center;
    font-family: Inter;
    font-size: 35px;
    font-style: normal;
    font-weight: 600;
    line-height: 72px; /* 125% */
    letter-spacing: -2.011px;
}

.first-modall .modal-dialog {
    max-width: 60%;
    margin: 0 auto;
    height: 100%;
}

.teamm {display: flex;align-items: center;border-radius: 20px;padding: 10px 100px 10px 20px;border: 1px solid transparent;}

.teamm h3 {
    color: #000;
    font-family: Inter;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px; /* 150% */
    letter-spacing: -1.319px;
    margin: 0 0 0 15px;
}

.teamm h3 span {
    color: #000;
    font-family: Inter;
    font-size: 15px;
    font-style: normal;
    font-weight: 300;
    /* 200% */
    letter-spacing: -1.319px;
    display: block;
}

.team-select {
    display: flex;
    align-items: center;
    gap: 30px;
}

.first-modall .modal-content {
    padding: 0px 30px 40px;
}

.teamm img {
    width: 55px;
}

.teamm.selected {
    border-color: #D11A29;
}

.select-player {
    margin: 30px 0 0;
}

.select-player select {
    color: #000;
    font-family: Inter;
    font-size: 21px;
    font-style: normal;
    border: unset;
    font-weight: 600;
    width: 100%;
    line-height: 47.225px; /* 150% */
    letter-spacing: -1.319px;
}

.first-modall .modal-footer {
    border: unset;
    display: block;
    padding: 20px 0 0 0;
}

.first-modall .modal-body {
    border-bottom: 1px solid #00000078;
    padding-left: 0;
    padding-right: 0;
}

.place-bet h5 {
    font-family: Inter;
    font-size: 21px;
    font-style: normal;
    border: unset;
    font-weight: 600;
    width: 100%;
    letter-spacing: -1.319px;
}

.bet-select {
    display: flex;
    align-items: center;
    margin: 15px 0 0;
}

.bet-select div {
    color: #272525;
    font-family: Inter;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px; /* 133.333% */
    letter-spacing: -1.034px;
    margin-left: 15px;
    display: flex;
}

.bet-select input {
    margin-right: 6px;
}

.bet-select div:first-child {
    margin: 0;
    display: flex;
    flex-direction: row-reverse;
}

.first-modall .modal-footer button {
    border-radius: 8px;
    background: #DF1D2D;
    color: #FFF;
    text-align: center;
    font-family: Inter;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    /* 125% */
    letter-spacing: -0.838px;
    border: unset;
    width: 42%;
    margin: 30px 0 0;
    padding: 10px 0;
}

/* Basic styling for radio buttons */
.bet-select input[type="radio"] {
    display: none; /* Hide the default radio button */
}

/* Style for the custom radio button container */
.bet-select div {
    display: flex;
    margin-right: 10px;
    align-items: center;
}

.bet-select div label {
    display: inline-block;
    border-radius: 2px;
    background: #D9D9D9;
    cursor: pointer;
    height: 22px;
    width: 22px;
    margin-right: 6px;
}

/* Style for the checked radio button */
.bet-select input[type="radio"]:checked + label {
    background: #0D6EFD;
    color: white;
}


.second-modall .modal-body {
    border: unset;
    padding-bottom: 0;
}

.second-modall .modal-body h5 {
    color: #272525;
    text-align: center;
    font-family: Inter;
    font-size: 35px;
    font-style: normal;
    font-weight: 600;
    line-height: 45px;
    letter-spacing: -2.011px;
    margin: 0;
}

.second-modall .modal-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding-top: 0;
}

.second-modall .modal-footer button {
    width: 23%;
    background: #D9D9D9;
    color: #000;
}

.second-modall .modal-footer button.btn {background: #DF1D2D !important;color: #fff !important;}

.second-modall .modal-content {
    padding: 30px 0 55px;
}

.different-battings .nav-link.active a {
    color: #232471;
}

.different-battings .nav-link.active {
    border: unset;
}

.different-battings ul.nav-tabs {
    border: unset;
}

.different-battings button.nav-link {
    border: unset;
}

.dashboard-one-right .tab-content {
    /* overflow-y: scroll; */
}


.dashboard-one-right .tab-content::-webkit-scrollbar {
    width: 7px;
    border-right: 5px;
}


.dashboard-one-right .tab-content::-webkit-scrollbar-track {
    background-color: #00A4E1;
}


.dashboard-one-right .tab-content::-webkit-scrollbar-thumb {
    background: #D9D9D9;
    border-radius: 10px;
    height: 10px;
}

.footer-content input::placeholder {
    color: #fff;
    font-family: poppins;

}

nav.mobile-header{
    display: none;
}

.flexx {
    display: flex;
    align-items: center;
    gap: 0 30px;
    position: relative;
    justify-content: space-between;
    width: 100%;
    position: relative;
}

.hamburger-mobile {
    background: var(--Style, linear-gradient(-137deg, #00B9FF 11.18%, #005D7C 91.63%));
    padding: 8px 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    position: relative;
    top: 50px;
    /* width: 100%; */
}


/* Set initial styles for the animated element */
.navbar-brand {
    opacity: 0;
    transform: translateY(0%);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-out;
}

/* Define keyframes for the animation */
@keyframes reloadAnimation {
    20% {
        transform: translateY(-100%);
    }
    50% {
        transform: translateY(-50%);
    }
    100% {
        transform: translateY(0);
    }
}

/* Add the reload-animation class to trigger the animation on reload */
.reload-animation {
    animation: reloadAnimation 0.5s ease-out;
    opacity: 1;
}

.hamburger-mobile-nav {
    position: absolute;
    top: -100%;
    background-color: #fff;
    left: 0px;
    /* width: 400px; */
    padding: 10px;
    padding-top: 22px;
    padding-left: 18px;
    display: none;
    transition: top 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hamburger-mobile-nav ul {
    padding: 0;
    margin: 0;
}

.hamburger-mobile-nav ul li a {
    font-family: 'Poppins';
    color: #000;
    text-transform: capitalize;
    font-size: 14px;
    margin-bottom: 14px;
    display: block;
}


.hamburger-mobile-nav.active {
    top: 50px;
    opacity: 1;
    display: block;
    width: 200px;
}
.terms-list .list-item h5 {
    color: var(--dark-blue, #031C26);
    font-family: Poppins;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    text-transform: capitalize;
    margin: 20px 0 15px;
}
.terms-list .list-item li  {
    color: #717171;
    font-family: Poppins;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    /* text-transform: capitalize; */
}
.terms-main p{
    color: #717171;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    /* text-transform: capitalize; */
}
.login-logo  img{
    width: 200px;
}

.preview-video video{
    width: 80%;
    height: 100%;
    object-fit: contain; /* Ensure the video fills the container */

}
.first-button{
    padding: 14px 40px;
    color: var(--white, #FFF);
    font-family: Poppins;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    text-transform: capitalize;
    background: var(--Linear, linear-gradient(137deg, #ED2131 11.18%, #AD121F 91.63%));
    border: unset;
    margin: 20px 0 0;
    transition: all 0.5s;
}
.first-button:hover {
    background: var(--Linear, linear-gradient(-137deg, #ED2131 11.18%, #AD121F 91.63%));
}
.banner-links .contact-us{
    padding: 12px 50px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: var(--Style, linear-gradient(137deg, #00B9FF 11.18%, #005D7C 91.63%));
    color: var(--white, #FFF);
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    text-transform: capitalize;
    transition: all 0.5s;
    margin-top: 20px;

}
.banner-links .contact-us:hover{

    background: var(--Style, linear-gradient(-137deg, #00B9FF 11.18%, #005D7C 91.63%));

}
.steps-content{
    position: relative;
}
.steps-main-heading{
    font-family: Poppins;
    font-size: 50px;
    font-weight: 700;
    line-height: 60px;
    text-align: left;
    color: black;
}
.steps-content h5{
    font-family: Poppins;
    font-size: 42.01px;
    font-weight: 600;
    line-height: 42.01px;
    text-align: left;
    color: black;

}
.steps-content p{
    font-size: 20px !important;
    font-weight: 400;
    line-height: 30px;
    margin-top: 10px;
}
.stepper .steps-content .number{
    color: white;
    background: var(--Linear, linear-gradient(137deg, #ED2131 11.18%, #AD121F 91.63%));
    border-radius: 50%;
    position: absolute;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Poppins;
    font-size: 50px;
    font-weight: 600;
    line-height: 60px;
    text-align: center;
    opacity: 0;
}
.stepper:nth-child(1) .steps-content .number , .stepper:nth-child(3) .steps-content .number {
    top: -15px;
    left: -80px;
}
.stepper:nth-child(2) .steps-content .number , .stepper:nth-child(4) .steps-content .number{
    top: -15px;
    right: 350px;
}
.steps-content ul {
    list-style: none;
}
.steps-content ul li{
    font-family: Poppins;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    color: #5E5D5D;
    margin-top: 10px;
}
.second-heading{
    font-family: Poppins;
    font-size: 50px;
    font-weight: 700;
    line-height: 60px;
    text-align: center;
    color: black;
    margin: 0 auto;
    width: 70%;
    margin-bottom: 54px;
}
.statement{
    font-family: Poppins;
    font-size: 27.21px;
    font-weight: 600;
    line-height: 35.37px;
    text-align: center;
    color: black;
}

.news-content h6{
    font-family: Poppins;
    font-size: clamp(17px, 2vw, 25px);
    font-weight: 600;
    line-height: clamp(23px, 2.5vw, 36px);
    text-align: left;
    margin-top: 15px;
    color: black;
    margin-bottom: 20px;
}
.news-content  p{
    font-family: Poppins;
    font-size: 20px;
    font-weight: 400;
    line-height: 20px;
    text-align: left;
    color:
            #5E5D5D;
}
.second-para{
    font-family: Poppins;
    font-size: 15px;
    font-weight: 400;
    line-height: 19.5px;
    text-align: center;
    margin-top: 20px;
}
.why-best{
    height: 250px;
}
.best-content h6{
    font-family: Poppins;
    font-size: 16px;
    /* font-weight: 600; */
    line-height: 1px;
}
.best-content P{
    font-family: Poppins;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    color: #5E5D5D;
    margin-top: 20px;
    overflow-x: hidden;
    height: 156px;
}
.footer-heading{
    font-family: Poppins;
    font-size: 25.53px;
    font-weight: 700;
    line-height: 25.53px;
    text-align: center;
    color: white;
    text-transform: uppercase;
}
.footer-para p{
    font-family: Poppins;
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    text-align: center;
    color: white;
}
.last-red-strip{
    background: #DC1D2C;
    padding: 20px 0 ;
    margin-top: 30px;
}
.last-red-strip p{
    font-family: Poppins;
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    text-align: center;
    color: white;
}
.last-red-strip p span{
    font-weight: 700;
}
.steps-img{
    position:relative;}
.steps-img video{
    width: 90%;
    height: 50%;
}
.steps-img i{
    font-size: 30px;
    color: #DC1D2C;
    position: absolute;
    top: 50%;
    right: -5px;
}
.banner-links {
    flex-wrap: wrap;
}
.tawk-bubble-container {
    cursor: pointer;
    position: relative;
    height: 100%;
    display: none !important;
}
.inner-banner {
    padding-top:230px !important;
}

.form-group label {display: table;margin-bottom: 10px;}

.form-group span {
    text-align: left !important;
    display: block !important;
}
h5.steps-main-heading.text-center span {
    font-size: 23px;
    background: #00000054;
    border-left: 11px solid #ac1420;
    padding: 20px 0;
}
.low-balance {
    background-color: #ff4d4f;
    color: white;
    padding: 20px 40px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
    animation: pulse 1.5s infinite;
    width: 16%;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px rgba(255, 0, 0, 0.8);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
    }
}


.sidebar {

    width: 250px;
    background-color: #2c3e50;
    color: white;
    transition: width 0.3s;
    overflow-x: hidden;
}

.sidebar.collapsed {
    width: 100px;
}


.toggle-btn {
    background-color: #b21320;
    color: white;
    border: none;
    padding: 10px 15px;
    width: 100%;
    text-align: left;
    font-size: 16px;
    cursor: pointer;
}

.collapsed .naviagtion span,
.collapsed .dash-logo {
    /* display: none; */
    font-size: 11px;
    display: block;
}

.sidebar.collapsed .dash-logo img {
    display: none;
}

.naviagtion ul {
    margin: 0;
    padding: 0;
    height: 670px;
    overflow-y: scroll;
    overflow-x: hidden;
    scrollbar-width: thin; /* Firefox support */
    scrollbar-color: var(--Style, linear-gradient(123deg, #00B9FF 11.18%, #005D7C 91.63%)); /* Thumb and track */
    padding: 0 10px;
}

/* For WebKit Browsers */
.naviagtion ul::-webkit-scrollbar {
    width: 6px;
}

.naviagtion ul::-webkit-scrollbar-track {
    background: transparent; /* removes white strip */
}

.naviagtion ul::-webkit-scrollbar-thumb {
    background-color: #bf3030;
    border-radius: 10px;
    border: 2px solid transparent; /* creates some space around thumb */
    background-clip: content-box;
}

.naviagtion ul::-webkit-scrollbar-thumb:hover {
    background-color: #a62828; /* slightly darker on hover */
}


/* Base layout for sidebar and main content */
.col {
    transition: all 0.3s ease;
}

/* Sidebar expanded */
.dashboard-wrapper .column2 {
    margin-left: 20%;
    transition: margin-left 0.3s ease;
}

.dashboard-wrapper.collapsed .column2 {
    margin-left: 0 !important;
}

/* Sidebar collapsed */
.sidebar.collapsed {
    width: 100px;
}

/* Content area */
.column2 {
    margin-left: 250px;
    transition: all 0.3s ease;
}

/* When sidebar is collapsed, shift content left */
.sidebar.collapsed ~ .column2 {
    margin-left: 70px;
}

.sidebar {
    width: 250px;
    transition: width 0.3s ease;
}
.sidebar.collapsed {
    width: 92px;
}
.column2 {
    transition: margin-left 0.3s ease;
}
/* Ensures the table scrolls on small screens */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
span.select2.select2-container.select2-container--default {
    width: 100% !important;
}
.naviagtion ul {
    margin: 0;
    /* padding: 0 10px; */
    height: 955px;
    overflow-y: scroll;
    overflow-x: hidden;

    /* Firefox */
    scrollbar-width: none; /* hides scrollbar in Firefox */
    scrollbar-color: transparent transparent;
    padding: 0;
}

/* Chrome, Safari, Edge */
.naviagtion ul::-webkit-scrollbar {
    width: 0px; /* hide scrollbar entirely */
    height: 0px;
}

.naviagtion ul::-webkit-scrollbar-track {
    background: transparent; /* remove track background */
}

.naviagtion ul::-webkit-scrollbar-thumb {
    background: transparent; /* remove thumb (icon) */
}
.align-content-center.col-md-12.d-flex.justify-content-around {
    flex-wrap: wrap;
}
.players-list.betss table {
    /* display: block; */
    /* overflow-x: auto; */
    /* white-space: nowrap; */
}

/* Make sure the datepicker fits on mobile */
/* .datepicker-dropdown {
    max-width: 100vw;
    width: auto;
    overflow-x: auto;
    font-size: 14px;
    z-index: 9999 !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
} */

/* Handle overflow of calendar inside small devices */
/* .datepicker-dropdown table {
    min-width: 300px;
    width: 100%;
} */

/* Ensure table cells don't break */
/* .datepicker-dropdown td,
.datepicker-dropdown th {
    text-align: center;
    padding: 6px;
    min-width: 32px;
    font-size: 13px;
    white-space: nowrap;
} */

/* Prevent calendar from going off screen */
@media (max-width: 575.98px) {
    /* .datepicker-dropdown {
        left: 10px !important;
        right: 10px !important;

    } */
}


.logoin-main {
    width: 50%;
    margin: 0 auto;
}

@media (max-width: 991px) {
    .logoin-main {
        width: 70%;
    }
}

@media (max-width: 767px) {
    .logoin-main {
        width: 90%;
    }
}

@media (max-width: 480px) {
    .logoin-main {
        width: 95%;
    }
}




/* Core Form Wrapper */
.logoin-main {
    width: 50%;
    margin: 0 auto;
}

@media (max-width: 991px) {
    .logoin-main {
        width: 70%;
    }
}

@media (max-width: 767px) {
    .logoin-main {
        width: 90%;
    }
}

@media (max-width: 480px) {
    .logoin-main {
        width: 100%;
        padding: 0 15px;
    }
}

/* Headings */
.login-content h3 {
    font-size: clamp(24px, 5vw, 36px);
    text-align: center;
    margin-bottom: 10px;
}

.login-content p {
    font-size: clamp(14px, 3vw, 18px);
    text-align: center;
    margin-bottom: 20px;
}

.login-content p a {
    color: #007bff;
    text-decoration: none;
}

/* Inputs and Fields */
.form-control {
    width: 100%;
    font-size: 1rem;
    padding: 10px 12px;
}

.input-group {
    position: relative;
}

.toggle-password {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
    color: #999;
}

/* Submit Button */
.login-btn {
    width: 100%;
    background-color: #007bff;
    border: none;
    padding: 12px;
    color: white;
    font-size: 1rem;
    border-radius: 5px;
    transition: 0.3s ease;
}

.login-btn:hover {
    background-color: #0056b3;
}

/* Error messages */
.invalid-feedback {
    font-size: 0.9rem;
    color: red;
}

/* Logo styling */
.login-logo img {
    max-width: 200px;
    height: auto;
    display: block;
    margin: 0 auto 20px;
}

@media (max-width: 576px) {
    .login-logo img {
        max-width: 160px;
    }
}


section.banner.inner-page .banner-title {
      bottom: -140px;
}

   