@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Balsamiq+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');

:root {
    --primary: #e52121;
    --primary-dark: #9a1717;
    --primary-light: #fdc1d8;
    --primary-gradiant: ;
    --secondry: #82BB84;
    --secondry-dark: #619f63;
    --secondry-light: #b9e9bb;
    --second-primary-light: #c1d0ed;
    --light-green: #45c73e;
    --dark-green: #21831b;
    --color-black: #000;
    --color-white: #fff;
    --light-gray: #c6c6c6;
    --text-gray: #828282;
    --bg-light: #f7f7f7;
    --gray: #e0e0e0;
    --how-bg-1: #f7f7f7;
    --how-bg-2: #efefef;
    --how-bg-3: #e8e8e8;
    --how-bg-4: #e1e1e1;
    --how-bg-5: #dadada;
    --font-main: "Montserrat", sans-serif;
    --font-sub: "Montserrat", sans-serif;
    --font-sec: "Balsamiq Sans", sans-serif;
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Arial", sans-serif;
}

body {
    background: #0f0f0f;
    color: #fff;
    overflow-x: hidden;
}

/* ---------------- HEADER ---------------- */
.top-header {
    position: absolute;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 20;
    padding: 0 70px;
}

nav ul {
    display: flex;

}

nav ul li {
    list-style: none;
    font-size: 15px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    margin: 0 6px;
}

nav ul li.l-child {

    margin: 0 3px;
}

.menu-icons {
    display: flex;
    gap: 20px;
    font-size: 22px;
}

/* ---------------- HERO SECTION ---------------- */

.hero {
    position: relative;
    min-height: 115vh;
    width: 100%;
}

/* BACKGROUND SLIDER */
.slider .slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

/* DARK OVERLAY */
.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgb(0 0 0 / 65%), rgb(0 0 0 / 48%), transparent);
    z-index: 2;
}

/* LEFT CONTENT */
.hero-content {
    position: absolute;
    /* top: 20%; */
    left: 80px;
    z-index: 5;
    padding-top:125px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
        padding-right: 37%;
}

.digest {
    font-size: 14px;
    letter-spacing: 2px;
    opacity: 0.9;
}

.main-title {
    font-size: 64px;
    line-height: 1.15;
    font-weight: 800;
    margin: 20px 0;
}

.sub-text {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.8;
    margin-bottom: 25px;
}

.btn-red {
    display: inline-block;
    background: #e53935;
    padding: 14px 32px;
    border-radius: 35px;
    color: white;
    font-weight: bold;
    text-decoration: none;
    letter-spacing: 1px;
}

/* SCROLL DOWN */
.scroll-box {
    margin-top: 40px;
    opacity: 0.8;
}

.arrow {
    font-size: 22px;
    margin-top: 5px;
}

/* GIANT TEXT */
.giant-text {
    position: absolute;
    bottom: -40px;
    left: 0;
    font-size: 300px;
    font-weight: 900;
    opacity: 0.2;
    text-transform: lowercase;
    z-index: 4;
    color: #b3b3b3cc;
}

/* ---------------- RIGHT WIDGET ---------------- */

.right-post {
    position: absolute;
    top: 200px;
    right: 50px;
    width: 340px;
    z-index: 10;
}

.rp-title {
    font-size: 30px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 600;
}

.rp-img-box img {
   width: 300px;
    border-radius: 10px;
    height: 210px;
    object-fit: cover;
}

.rp-meta {
    margin-top: 10px;
    font-size: 14px;
    opacity: 0.9;
    color: #fff;
}

.trending {
    font-weight: bold;
}

.rp-heading {
    margin-top: 10px;
    font-size: 22px;
    line-height: 1.4;
    color: #fff;
    font-weight: 600;
}

.social-icons {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    font-size: 22px;
}

.social-icons span a {
    color: #fff;
}

/* FLOAT ICONS */
.float-icons {
    position: absolute;
    top: 280px;
    right: 10px;
}

.right-post p {
    font-size: 16px;
    color: #fff;
}

.ic {
    background: #e52121;
    padding: 14px;
    margin-bottom: 15px;
    border-radius: 8px;
    font-size: 20px;
    text-decoration: none;
}

.ic a {
    color: #fff;
}

.navbar-brand img {
    width: 100px;
}

.nav-menu li a {
    color: #fff;
    padding: 0 !important;
}

.hero-content h4 {
    color: #fff;
}

.hero-content h1 {
    color: #fff;
}

.hero-content p {
    color: #fff;
}

li a.nav-btn {
    background-color: #e52121;
    color: #fff;
    padding: 10px 15px !important;
    border-radius: 5px;
    border: 1px solid #e52121;
    white-space: nowrap;
}

.nav-menu li a:hover {
    color: var(--primary) !important;
}

.section-padding {
    padding: 70px 0;
}

.section-title {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align:center;

}

.section-title h2 {
    font-size: 45px;
    font-weight: 600;
    font-family: var(--font-sec);
 text-align: center;
}

.section-title p {
    font-size: 17px;
    text-align: center;
}

.match-card {
    width: 100%;
    padding: 25px 20px;
    text-align: center;
    font-family: Arial, sans-serif;
    transition: all 0.3s ease;
    /* opacity: 0; */
    transform: translateY(20px);
    /* padding-bottom: 0; */
}

/* Fade-in animation */
/* .fade-in {
    animation: fadeInUp 0.6s forwards ease-out;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
} */


.match-date {
    font-size: 15px;
    color: #555;
    margin-bottom: 15px;
}

.match-logos {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.match-logos img {
   width: 75px !important;
    height: 75px;
    object-fit: contain;
}

.team-logo {
    width: 70px;
    height: auto;
}

.match-score {
    font-size: 32px;
    font-weight: bold;
    color: #000;
}

.match-league {
    font-size: 16px;
    color: #444;
    margin-top: 5px;
}

.match-stadium {
    font-size: 15px;
    color: #7b7b7b;
    margin-top: 5px;
}

.match-carousel .item {
    padding: 2px;
}

.march-card-main {
    padding: 15px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 15px;

}

.march-card-main img.match-main-img {
    height: 200px;
    object-fit: cover;
    width: 100%;
    border-radius: 10px;
}

.match-card h3 {
    font-size: 19px;
    font-weight: 600;
    color: #000;
    font-family: var(--font-main);
}

.march-card-main a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60%;
    margin: 10px auto;
    padding: 7px 15px;
    border-radius: 5px;
    background-color: var(--primary);
    color: var(--color-white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: 0.5s;
}

.march-card-main a:hover {
    border-radius: 40px;
}

@media screen and (min-width:991px) {
    .container {
        max-width: 1400px !important;
    }
}

.bg-section-color {
    background-color: #540808;
    position: relative;
}

.bg-section-color .section-title h2,
.bg-section-color .section-title p {
    color: #fff;
}

.bg-section-color::before {
    content: '';
    width: 200px;
    height: 200px;
    border-radius: 0 50% 50% 0;
    background-color: #540808;
    position: absolute;
    top: -60px;
    left: 0;
}

.bg-section-color::after {
    content: '';
    width: 200px;
    height: 200px;
    border-radius: 50% 0 0 50%;
    background-color: #540808;
    position: absolute;
    top: -60px;
    right: 0;
}

.featured-team {
    padding: 20px;
    border-radius: 20px;
    background-color: #690e0e;
    /* background: rgba(255, 255, 255, 0.27);
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(5px);
-webkit-backdrop-filter: blur(5px) */
}

.featured-team-img {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 20px;
}

.featured-team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.featured-team h3 {
    font-size: 22px;
    text-align: center;
    font-weight: 600;
    color: var(--color-white);
    font-family: var(--font-main);
    margin: 10px 0;
}

.featured-team-location {
    display: flex;
    justify-content: center;
    align-items: center;
}

.featured-team-location span {
    font-weight: 500;
    color: #c9c9c9;
    font-size: 17px;
}

.featured-team a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    margin: 10px auto;
    padding: 7px 15px;
    border-radius: 5px;
    background-color: var(--color-white);
    color: #540808;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: 0.5s;
}


.news-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    padding: 20px;
    margin: auto;
}

.main-news {
    position: relative;
}

.main-news img {
    width: 100%;
    display: block;
    border-radius: 8px;
    height: 350px;
    object-fit: cover;
}

.main-news .label {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ffc107;
    color: #fff;
    font-weight: bold;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 12px;
    text-transform: uppercase;
}

.main-news .date {
    font-size: 14px;
    font-weight: bold;
    margin-top: 15px;
    color: #555;
}

.main-news h2 {
    margin: 10px 0;
    font-size: 24px;
}

.main-news p {
    color: #666;
    margin-bottom: 10px;
}

.main-news .meta {
    color: #999;
    font-size: 12px;
}

.side-news {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.side-news-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.side-news-item img {
    width: 150px;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.side-news-item .info {
    display: flex;
    flex-direction: column;
}

.side-news-item .info span {
    font-size: 11px;
    color: #555;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.side-news-item .info h3 {
    font-size: 20px;
    font-weight: bold;
    color: #111;
    font-family: var(--font-main);
}

/* Responsive */
@media (max-width: 900px) {
    .news-container {
        grid-template-columns: 1fr;
    }

    .side-news {
        flex-direction: row;
        overflow-x: auto;
    }

    .side-news-item {
        flex: 0 0 auto;
        width: 200px;
    }
}

.main-news p {
    font-size: 17px;
    color: #414141;
    margin: 10px 0;
    text-align: justify;
}

.side-news-item p {
    font-size: 17px;
    color: #414141;
    margin: 10px 0;
}



.sponsor-img-box {
    height: 400px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;

}

.sponsor-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sponsor-box-overlay {
    position: absolute;
}

.sponsor-box-overlay {
    position: absolute;
    background: #000;
    background: linear-gradient(360deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.09) 100%);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    padding: 40px;
    gap: 15px;
}

.sponsor-box-overlay h5 {
    margin: 0;
    color: #fff;
    font-weight: 500;
    font-size: 65px;
    font-family: var(--font-sec);
}

.sponsor-box-overlay h6 {
    margin: 0;
    color: #fff;
    font-weight: 500;
    font-size: 22px;
    font-family: var(--font-main);
}

.sponsor-box-overlay p {
    color: #fff;
    margin: 20px 0;
}

.sponsor-box-overlay a {
    width: 200px;
    background-color: var(--primary);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 55px;
    border-radius: 5px;
    font-size: 16px;
    transition: 0.5s;
    text-decoration: none;
}

.sponsor-box-overlay a:hover {
    border-radius: 40px;
}

.sponsor-box-overlay span {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 10px;
    height: 10px;
    background-color: #fff;
    border-radius: 50%;
    opacity: 0;
}

.sponsor-img-box:hover img {
    transform: scale(1.1);
    transition: 0.5s;
    -webkit-filter: grayscale(100%);
    /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
}

.sponsor-img-box:hover .sponsor-box-overlay span {
    opacity: 1;
}

.news-letter-left {
    padding: 25px;
    border: 1px solid #ccc;
    border-radius: 15px;
    background: #fff;
}

.news-letter-left h3 {
    font-size: 35px;
    font-weight: 600;
    font-family: var(--font-sec);
}

.news-letter-left p {
    font-size: 20px;
}

.news-letter-left form {
    display: flex;
    justify-content: center;
    align-items: center;
}

.news-letter-left form input {
    height: 50px;
    border: 1px solid #919090;
    font-size: 15px;
    font-family: var(--font-main);
}

.news-letter-left form input::placeholder {
    font-size: 16px;
}

.news-letter-left form input:focus {
    border: 1px dashed var(--primary);
}

.news-letter-left form button {
    height: 50px;
    border: 0;
    background-color: var(--primary);
    color: var(--color-white);
    width: 180px;
    border-radius: 10px;
    margin-left: 10px;
}

.news-letter-left form button:hover {
    background-color: var(--primary-dark);
}

.newsletter-right img {
    width: 400px;
    margin-top: -60px;
}




.footer {
    padding: 50px 0;
    padding-bottom: 20px;
    background: #3c0202;

}

.footer-logo img {
    width: 140px;
}

.footer-top-contact ul {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 0;
    margin-top: 10px;
}

.footer-top-contact ul li {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.footer-top-contact ul li i {
    min-width: 30px;
    height: 30px;
    background-color: transparent;
    border: 1px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #fff;
    /* display: none; */
    font-size: 11px;
}

.footer-top-contact-box p {
    font-size: 12px;
    font-weight: 600;
    margin: 0;
    color: #fff;
}

.footer-top-contact-box a {
    font-size: 15px;
    color: #ccc !important;
    cursor:default;
    font-weight: 500;
    text-decoration: none;
}

.border-bottom-cs {
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
}

.footer-about h3 {
    font-size: 22px;
    color: var(--color-white);
    font-weight: 600;
    margin-bottom: 10px;
}

.footer-about p {
    font-size: 14px;
    margin: 0;
    font-family: var(--font-main);
    color: var(--how-bg-4);
    line-height: 25px;
}

.footer-widget,
.footer-about {
    padding: 10px;
}

.footer-widget {
    padding-left: 20px;
}

.footer-widget h3 {
    font-size: 22px;
    color: var(--color-white);
    font-weight: 600;
    margin-bottom: 10px;
}

.footer-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-left: 30px;
}

.footer-widget ul li {
    margin: 12px 0;
}

.footer-widget ul li a {
    text-decoration: none;
    color: #ccc;
    font-size: 16px;
}

.footer-widget ul li a:hover {
    color: var(--primary);
}

.footer-bottom {
    background: #440606;
    padding: 20px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--how-bg-4);
    margin: 0;
    text-align:center;
}

.footer-left-second h5 {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-white);
}

.footer-left-icons ul {
    margin: 0;
    list-style: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
    padding: 0;
}

.footer-left-icons ul li a {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: var(--color-white);
    border-radius: 5px;
    transition: 0.5s;
    border: 1px solid var(--color-white);
}

/* .footer-left-second{
    margin-top: 20px;
} */
.footer-left-icons ul li a:hover {
    background-color: var(--primary);
    color: var(--color-white);
    border-color: var(--primary);
}


.view-more-btn {
    width: 160px;
    height: 38px;
    border: 1px solid var(--primary);
    color: var(--primary);
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    margin-top: 30px;
    transition: 0.5s;
    text-decoration: none;
}

.view-more-btn:hover {
    border-radius: 40px;
    background-color: var(--primary-dark);
    color: var(--color-white);
}

.view-more-btn-2 {
    width: 160px;
    height: 38px;
    border: 1px solid var(--color-white);
    color: var(--color-white);
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    margin-top: 30px;
    transition: 0.5s;
    text-decoration: none;
}

.view-more-btn-2:hover {
    border-radius: 40px;
    background-color: var(--primary-dark);
    color: var(--color-white);
}


.pages-baner {
    width: 100%;
    height: 60vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 100px;
}

.pages-baner h2 {
    text-align: center;
    font-weight: 600;
    font-family: var(--font-sec);
    color: var(--color-white);
    font-size: 50px;
}
.pages-baner p{
     text-align: center;
    color: var(--color-white);
    font-size: 20px;
    margin:0;
}
.about-us-right {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}

.about-us-right h3 {
    color: var(--color-black);
    font-size: 40px;
    font-weight: 600;
    font-family: var(--font-sec);
}

.about-us-right p {
    font-size: 16.5px;
    margin: 10px 0;
    line-height: 27px;
}

.about-us-left img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 20px;
}

.about-mision-section {
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    background-attachment: fixed;
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.511) 0%, rgba(0, 0, 0, 0.538) 100%), url(../img/baner/2.jpg);
}

.mision-box {
    background: rgba(86, 86, 86, 0.27);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    /* height: 100%; */
    padding: 25px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.mision-box h3 {
    color: var(--color-white);
    font-size: 25px;
    font-weight: 600;
    font-family: var(--font-sec);
}

.mision-box p {
    font-size: 16px;
    color: #efefef;
    margin: 7px 0;
    line-height: 28px;
}



.our-goals-container {
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #fff;
    background-color: #fff;
    height: 100%;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.our-goals-container span {
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 3px solid var(--primary);
    color: var(--primary);
    font-size: 20px;
    border-radius: 50%;
}

.our-goals-container h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 10px 0;
    color: var(--color-black);
}

.our-goals-container p {
    margin: 0;
    font-size: 16px;
    line-height: 25px;
}

.our-goals-container:hover {
    background-color: var(--bg-light);
}

.our-goals-container ul li {
    margin: 5px 0;
}

.bg-light-cs {
    background-color: #f1f1f1;
}



.contact-widget {
    padding: 25px;
    border: 1px solid #ccc;
    border-radius: 20px;
    height: 100%;
    background-color: var(--color-white);
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.contact-widget h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-dark);
    font-family: var(--font-sec);
}

.contact-widget p {
    font-size: 17px;
    margin: 0;
    font-weight: 400;
}

.contactus-top {
    position: relative;
    top: -65px;
}


.contact-us-form {
    background-color: #fff;
    border-radius: 15px;
    border: 1px solid #ccc;
    padding: 25px;
}

.contact-us-form h3 {
    font-size: 25px;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
    font-family: var(--font-sec);
}

.contact-field label {
    color: #000;
    font-size: 14px;
    margin-bottom: 5px;
    font-family: var(--font-main);
    font-weight: 500;
}

.contact-field input {
    height: 50px;
    font-family: var(--font-main);
    font-size: 14px;
    border: 1px solid #ccc;
}

.contact-field .form-phone {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.contact-field .form-phone span {
    height: 45px;
    background-color: #f1f1f1;
    width: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    color: var(--color-black);
    font-weight: 500;
    border-radius: 4px 0 0 4px;
}

.contact-field .form-phone input {
    border-left: 0;
    border-radius: 0 4px 4px 0;
}


.contact-field textarea {
    height: 150px !important;
    border: 1px solid #ccc;
}

.contact-field input:focus,
.contact-field textarea:focus {
    border: 1px dashed var(--primary-dark);
}

.contact-btn {
    width: 180px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 0;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: 0.5s;
    background-color: var(--primary);
    margin: 10px auto;
    border-radius: 5px;
}

.contact-btn:hover {
    border-radius: 40px;
    background-color: var(--primary-dark);
}

.contact-map {
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 15px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.teams-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border: 1px solid #aeaeae;
    border-radius: 15px;
    padding: 15px;
}

.teams-container img.tm-img {
    width: 35%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
}

.team-logo img {
    width: 70px;
}

.teams-container div {
    padding-left: 20px;
    width: 65%;
}

.teams-container h3 {
    font-size: 25px;
    font-weight: 600;
    font-family: var(--font-main);
    margin: 0;
}

.teams-container ul {
    margin: 0;
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 25px;
    padding-left: 10px;
    margin: 5px 0;
}

.teams-container ul li {
    position: relative;
    font-size: 15px;
    font-weight: 600;
    color: #414141;
    font-family: var(--font-sub);
}

.teams-container ul li::before {
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    position: absolute;
    top: 6px;
    left: -12px;
    content: '';
}

.teams-container p {
    font-size: 15px;
}

.newsletter-section.bg-light-news {
    background-color: #f1f1f1;
}

.news-updates-sec p {
    font-size: 20px;
    text-align: center;
}

.news-update-section-img {
    width: 100%;
    height: 350px;
    border-radius: 2px;
    overflow: hidden;
}

.news-update-section-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-update-section h3 {
    font-size: 23px;
    font-weight: 600;
    font-family: var(--font-main);
    margin: 10px 0;
    color: #000;
}

.news-update-section p {
    font-size: 16px;
    line-height: 25px;
}

.news-update-section:hover img {
    transform: scale(1.1);
    transition: 0.5s;
}

.upcoming-event-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
}

.upcoming-event-right ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.upcoming-event-right ul li {
    margin: 25px 0;
    padding-left: 20px;
    font-size: 18px;
    font-weight: 600;
    font-family: var(--font-main);
    position: relative;
}

.upcoming-event-right {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.upcoming-event-right ul li::before {
    width: 13px;
    height: 13px;
    background-color: var(--primary);
    position: absolute;
    top: 7px;
    left: -5px;
    content: '';
    rotate: 50deg;
}

/* .match-card-container img.match-main-img{
    height: 350px;
} */

.date-filter {
    padding-bottom: 10px;
}

.date-filter label {
    font-size: 15px;
    font-family: var(--font-main);
    font-weight: 600;
    color: #000;
}

.date-filter input {
    height: 50px;
    border: 1px solid #5d5d5d;
    font-family: var(--font-main);
}

.sponsor-right-img {
    width: 100%;
    height: 650px;
}

.sponsor-right-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.sponsor-right ul {
    margin: 0;
    padding: 0;
    list-style: none;
    padding-left: 25px;
    padding-top: 15px;

}

.sponsor-right ul li {
    margin: 15px 0;
    padding: 10px 0;
    border-bottom: 1px solid #ccc;
    font-size: 16px;
}

.sponsor-right ul li h3 {
    font-weight: 600;
    font-size: 20px;
    font-family: var(--font-main);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.sponsor-right ul li h3 span {
    min-width: 35px;
    min-height: 35px;
    background-color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-white);
    border-radius: 50%;
}

.sponsor-widget {
    padding: 20px;
    padding-top: 35px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 20px;
    background-color: #fff;
    height: 100%;
    position: relative;
}

.sponsor-widget img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
}

.sponsor-widget h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 10px 0;
}

.sponsor-widget ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.sponsor-widget ul li {
    padding-left: 15px;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    margin: 10px 0;
}

.sponsor-widget ul li::before {
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    position: absolute;
    top: 7px;
    left: -1px;
    content: '';
    rotate: 50deg;
}

.sponsor-widget i {
    color: #21831b;
    font-size: 45px;
    position: absolute;
    top: -20px;
    left: 40%;
    opacity: .5;
}

.cricket-card-uniq {
    width: 100%;
    background: #6e1f17;
    color: #fff;
    border-radius: 20px;
    padding: 20px;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    height:100%;
}

/* Header */
.cricket-card-uniq .cc-header {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
}

.cricket-card-uniq .cc-sport {
    background: #00000033;
    padding: 4px 10px;
    border-radius: 6px;
}

.cricket-card-uniq .cc-country {
    opacity: 0.9;
}

/* Player Image */
.cricket-card-uniq .cc-player-img {
    text-align: center;
    margin: 20px 0;
}

.cricket-card-uniq .cc-player-img img {
    width: 200px;
    border-radius: 12px;
    border: 4px solid white;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
}

/* Player Name */
.cricket-card-uniq .cc-player-name {
    text-align: center;
    font-size: 24px;
    margin-bottom: 15px;
}

/* Stats Section */
.cricket-card-uniq .cc-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.cricket-card-uniq .cc-stat {
    text-align: center;
}

.cricket-card-uniq .cc-value {
    display: block;
    font-size: 22px;
    font-weight: bold;
}

.cricket-card-uniq .cc-label {
    font-size: 12px;
}

/* Details */
.cricket-card-uniq .cc-details p {
    margin: 5px 0;
    font-size: 14px;
}

/* Jersey Number */
.cricket-card-uniq .cc-jersey {
    position: absolute;
    bottom: 15px;
    right: 20px;
    font-size: 48px;
    font-weight: bold;
    opacity: 0.2;
}


.cms-container {
    background-color: var(--color-white);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 20px;
    padding: 40px;
}

.cms-container h2 {
    font-size: 20px;
    font-weight: 600;
    font-family: var(--font-sec);
}

.cms-container p {
    font-size: 16px;
    margin: 10px 0;
    padding-left:13px;
}

.cms-container h3 {
    margin-top: 15px;
    font-size: 20px;
    font-weight: 600;
    font-family: var(--font-main);
}

.terms-contact p {
    color: #000;
    margin: 0;
}

.terms-contact a {
    color: #000;
}

.match-details-baner h3 {
    font-size: 25px;
    font-weight: 600;
    color: #fff;
    text-align: center;
}

.match-details-left {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 25px;
}

.match-details-left h3 {
    font-size: 25px;
    font-family:var(--font-sec);
    font-weight: 600;

}

.match-details-left p {
    font-size: 17px;
}
.match-details-left p.text-success{
      font-family:var(--font-sec);
}
.match-details-left .match-logos img {
    width: 90px !important;
}

.match-details-left h4 {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin: 0;
}

.recent-matches {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.recent-matches ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0;
    margin: 0;
    list-style: none;
    gap: 5px;
    padding-top: 20px;
}

.recent-matches ul li {
    font-size: 17px;
    font-weight: 600;
    color: #000;
}

.recent-matches ul li span.w {
    width: 30px;
    height: 30px;
    background-color: #21831b;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 14px;
}

.recent-matches ul li span.l {
    width: 30px;
    height: 30px;
    background-color: #a71010;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 14px;
}

.match-details-left .match-score {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.match-details-left .match-score span {
    font-size: 15px;
}

.match-dt-img {
    width: 100%;
    height: 350px;
    margin-top: 20px;

}

.match-dt-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.recent-match-htoh ul {
    margin: 0;
    padding: 0;
    list-style: none;

}

.recent-match-htoh ul li {
    margin: 10px 0;
    padding: 10px 0;
    border-bottom: 1px solid #ccc;
}

.match-detail-right {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 25px;
}

.match-detail-right h3 {
    font-size: 18px;
    font-weight: 600;
}

.team-squad-container ul.nav-tabs {
    border: 0;
    justify-content: space-between !important;
}

.team-squad-container ul.nav-tabs li {
    width: 49%;
}

.team-squad-container ul.nav-tabs li button {
    width: 100%;
    border: 1px solid #ccc !important;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    color: #000;
}

.team-squad-container ul.nav-tabs li button.active {
    background-color: var(--primary);
    color: #fff;
    border-color: var(--primary) !important;
}

.team-squad-container ul.nav-tabs li button:hover {
    background-color: var(--primary-dark);
    color: #fff;
    border-color: var(--primary-dark) !important;
}

.player-card {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.player-card img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.player-info h3 {
    margin: 0;
    font-size: 16px;
    font-family: var(--font-main);
    font-weight: 700;
}

.player-info span.role {
    color: gray;
    font-size: 14px;
}

.stats {
    margin-top: 5px;
    color: #333;
    font-size: 13px;
}

.player-card-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.header-cover {
    background-color: #540808;
    height: 120px;
}

.bg-logo-light {
    background-color: #f7f7f7;
}

.t-registraion-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 25px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.t-registraion-container ul.nav-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border: 0;
}

.t-registraion-container ul.nav-tabs li button {
    width: 180px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    border: 1px solid #a3a3a300;
    color: #000;
    font-weight: 500;
    background-color: #ffcfcf;
    font-family: var(--font-main);
}

.t-registraion-container ul.nav-tabs li button.active {
    background-color: var(--primary);
    color: var(--color-white);
    border-color: var(--primary);
}

.t-registraion-container ul.nav-tabs li button:hover {
    background-color: var(--primary-dark);
    color: var(--color-white);
    border-color: var(--primary-dark);
}

.t-registraion-container .tab-content {
    padding-top: 25px;
}

.t-registraion-container label {
    font-size: 14px;
    font-weight: 500;
    color: #000;
    font-family: var(--font-main);


}

.t-registraion-container input,
.t-registraion-container select {
    height: 45px;
    border: 1px solid #c9c9c9;
    border-radius: 7px;
    color: #000;
    font-size: 14px;
    font-family: var(--font-main);
}

.t-registraion-container textarea {
    height: 100px;
    border: 1px solid #c9c9c9;
    border-radius: 7px;
    color: #000;
    font-size: 14px;
    font-family: var(--font-main);
}

.t-registraion-container input::file-selector-button {
    height: 45px;
}

.t-registraion-container input:focus,
.t-registraion-container select:focus,
.t-registraion-container textarea:focus {
    border: 1px dashed #c85c5c;
}

.form-terms {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
    padding-top: 10px;
}

.form-terms input {
    width: 23px;
    height: 23px;
}

.form-terms label {
    font-size: 16px;
}

.form-terms label a {
    color: var(--primary);
}

.signup-btn {
    width: 200px;
    height: 45px;
    background-color: var(--primary-dark);
    color: var(--color-white);
    border-radius: 5px;
    border: 1px solid var(--primary-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px auto;
    font-size: 16px;
    font-weight: 500;
    transition: 0.5s;
}

.signup-btn:hover {
    border-radius: 40px;
    color: var(--primary-dark);
    background-color: transparent;
}

.t-registraion-container h5 {
    font-size: 18px;
    font-weight: 600;
    margin: 10px 0;
    color: #a73131;
    font-family: var(--font-sec);
}

.bg-logo-ligh2 {
    background-color: #ffdbdb;
}

.profile-view-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 25px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.profile-view-container img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-view-container ul.nav-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border: 0;
}

.profile-view-container ul.nav-tabs li button {
    width: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    border: 1px solid #a3a3a3f2;
    color: #000;
    font-weight: 500;
    font-family: var(--font-main);
    padding: 7px 15px;
    border-radius: 40px;
    font-size: 14px;
}

.profile-view-container ul.nav-tabs li button.active {
    background-color: var(--primary);
    color: var(--color-white);
    border-color: var(--primary);
}

.profile-view-container ul.nav-tabs li button:hover {
    background-color: var(--primary-dark);
    color: var(--color-white);
    border-color: var(--primary-dark);
}

.profile-view-container ul.nav-tabs a {
    padding: 5px 15px;
    background-color: #21831b;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 40px;
    text-decoration: none;
    width: 100px;
    margin-left: auto;
    gap: 5px;
    font-size: 15px;
}

.profileviewDetails {
    padding: 10px 0;
    padding-top: 25px;
}

.profileviewDetails h3 {
    font-size: 25px;
    font-family: var(--font-sec);
}

.profileviewDetails-inner {
    background-color: #f1f1f1;
    height: 100%;
    padding: 20px;
    border-radius: 15px;
}

.profileviewDetails-inner ul {
    padding: 0;
    margin: 0;
    list-style: none;

}

.profileviewDetails-inner ul li {
    margin: 10px 0;
    font-weight: 500;
    color: #000;
    font-family: var(--font-main);
    font-size: 15px;
}

.profileviewDetails-inner ul li:first-child {
    margin-top: 0;
}

.profileviewDetails-inner ul li:last-child {
    margin-bottom: 0;
}

.profileviewDetails-inner p {
    font-weight: 500;
    color: #000;
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 27px;
}

.profileviewDetails-inner h6 {
    font-weight: 700;
    font-size: 16px;
    color: #000;
    font-family: var(--font-main);
}



.sign-drop-down {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: fit-content;
    padding: 2px 5px;
    border-radius: 40px;
    border: 1px solid #fff;
    font-size: 14px;
    font-weight: 500;
    gap: 15px;
    cursor: pointer;
    position: relative;
    width: 45px;
    height: 45px;
}

.sign-drop-down span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0px;
}

.sign-drop-down span i {
    font-size: 15px;
}

.sign-drop-down span.signbtn-arrow i {
    color: #fff;
    font-size: 9px !important;
}

.sign-drop-down span p {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-white);
}

.sign-drop-down img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 3px dashed #fff;
    object-fit: cover;
}

.sign-drop-down i {
    color: var(--color-white);
}

.sign-drop-menu {
    background-color: #fff;
    position: absolute;
    bottom: -80px;
    right: 20%;
    width: fit-content;
    padding: 11px;
    border-radius: 10px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    z-index: 1;
    display: none;

}

.sign-drop-menu ul {
    padding: 0;
    margin: 0;
    list-style: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: unset;
}

.sign-drop-menu ul li {

    margin: 10px 0;
    width: 100%;
}

.sign-drop-menu ul li:first-child {
    margin-top: 0;
}

.sign-drop-menu ul li:last-child {
    margin-bottom: 0;
}

.sign-drop-menu ul li a {
    white-space: nowrap;
    font-size: 14px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    padding: 7px 15px;
    transition: 0.5s;
    width: 100%;
    border-radius: 3px;
    color: var(--color-black);
    text-decoration: none;
}

.sign-drop-menu ul li a i {
    color: var(--color-black);
}

.sign-drop-menu ul li a:hover {
    background-color: var(--primary-dark);
    color: #fff;
}

.sign-drop-menu ul li a:hover i {
    color: var(--color-white);
}

.drop-block-sign .sign-drop-menu {
    display: block;
}











/* -------------------------ABOUT CMS LATEST------------------------------------- */







li a.nav-btn:hover {
    background-color: transparent;
    border-radius: 40px;

}

li.hover-menu {
    position: relative;
}
li.hover-menu-2 {
    position: relative;
}

.hovermenu-list-box {
    position: absolute;
    top: 100%;
    left: 0;
    height: 0;
    overflow: hidden;
}

.hovermenu-list-box-2 {
    position: absolute;
    bottom: 100%;
    left: 100%;
    height: 0;
    overflow: hidden;
}
li.hover-menu:hover .hovermenu-list-box {
    height: 100%;
    overflow: unset;
    transition: 0.5s;
}
li.hover-menu-2:hover .hovermenu-list-box-2 {
    height: 100%;
    overflow: unset;
    transition: 0.5s;
}

.hovermenu-list {
    background-color: #fff;
    border-radius: 5px;
    padding: 10px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.hovermenu-list ul {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 0;
}

.hovermenu-list ul li a,
.hovermenu-list ul li {
    color: #000;
    width: 100%;
    white-space: nowrap;
}

.hovermenu-list ul li {
    margin: 3px 0;
}

.hovermenu-list ul li a {
    padding: 5px 10px !important;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 7px;
    border-radius: 5px;
    transition: 0.5s;
    padding-left: 5px !important;
}

.hovermenu-list ul li a:hover {
    background-color: #e52121;
    color: #fff !important;
}

.about-mission-title {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    height: 100%;
    padding-right: 40px;
}

.about-mission-title h3 {
    color: #fff;
    font-size: 50px;
    font-weight: 600;
    font-family: var(--font-sec);
}

.about-mission-title p {
    color: #fff;
    font-size: 17px;
    margin: 10px 0;
}

.about-join-image img {
    width: 100%;
    height: 450px;
    border-radius: 20px;
    object-fit: cover;
}

.about-box-bottom {
    padding: 30px;
    background-color: #f7f7f7;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    border: 1px solid #ccc;

}

.about-box-bottom h3 {
    font-size: 28px;
    font-weight: 600;
    font-family: var(--font-sec);
    color: #000;
}

.about-box-bottom p {
    font-size: 17px;
    margin: 0;
}

.about-founder-img-box {
    width: 100%;
    height: 450px;
    border-radius: 7px;
    overflow: hidden;

}

.about-founder-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-founder-image:hover img {
    transform: scale(1.1);
    transition: 0.5s;
}

.about-founder-image h5 {
    font-size: 25px;
    font-weight: 600;
    font-family: var(--font-sec);
    color: #000;
    margin: 10px 0;
}

.about-founder-image p {
    font-size: 17px;
}

.organiser-committee-left img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
}

.organiser-committee-left h3 {
    font-size: 25px;
    margin: 10px 0;
    font-weight: 600;
    font-family: var(--font-sec);
    margin-bottom: 7px;

}

.organiser-committee-left p {
    font-size: 16px;
    margin: 0;
}

.organiser-committee-right ul li {
    margin: 17px 0;
    font-size: 17px;
}

.organiser-committee-right ul li h3 {
    font-size: 20px;
    font-weight: 600;
    font-family: var(--font-sec);
    margin: 0;
    margin-bottom: 5px;
}

.organiser-committee-right {
    padding-left: 10px;
    border-left: 1px solid #222;
    margin-left: 10px;
    height: 100%;
    margin-top: -15px;
}

.organiser-committee-right p {
    color: #222;
    font-size: 16px;
    padding-left: 10px;
}

.advisor-container-left img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 5px;
}

.advisor-container-right p {
    font-size: 16.5px;
    margin: 0;
}

.advisor-container-right h2 {
    font-size: 30px;
    font-family: var(--font-sec);
    margin: 10px 0;
    margin-top: 15px;
}

.advisor-container-right ul li {
    margin: 17px 0;
    font-size: 17px;
}

.advisor-container-right ul li h3 {
    font-size: 20px;
    font-weight: 600;
    font-family: var(--font-sec);
    margin: 0;
    margin-bottom: 5px;
}

.advisory-box h3 {
    font-size: 20px;

}

.advisory-box-bottom {
    padding: 30px;
    border: 1px solid #222;
    border-radius: 10px;
    height: 100%;
}

.advisory-box-bottom h3 {
    font-size: 25px;
    font-family: var(--font-sec);
    margin-bottom: 2px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #222;
}

.advisory-box-bottom p {
    margin: 0;
    font-size: 16.5px;
}

.advisory-box-bottom ul {
    margin: 0;
}

.advisory-box-bottom ul li {
    margin: 12px 0;
    font-weight: 500;
    font-size: 16px;
}

.advisory-box-bottom-img img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 10px;
}

.section-title-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.team-about-left img {
    width: 100%;
    height: 410px;
    object-fit: cover;
    border-radius: 4px;
}

.team-about-right h2 {
    font-size: 30px;
    font-weight: 600;
    font-family: var(--font-sec);
}

.team-about-right p {
    font-size: 16.5px;
    margin: 0;
}

.team-about-right ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.team-about-right ul li {
    padding: 12px 20px;
    background-color: #f9cfcf;
    border: 1px solid #ccc;
    border-radius: 12px;
    margin: 10px 0;
    font-weight: 600;
    color: #141414;

}

.team-about-widget {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    height: 100%;
}

.team-about-widget img {
    width: 100%;
    height: 300px;
    border-radius: 5px;
    object-fit: cover;

}

.team-about-widget h3 {
    margin: 12px 0;
    font-family: var(--font-sec);
    color: #000;
    font-weight: 600;
    font-size: 25px;
    margin-bottom: 5px;

}

.team-about-widget p {
    font-size: 16px;
    margin: 0;
}

.team-about-widget ul {
    margin: 0;
}

.team-about-widget ul li {
    margin: 14px 0;
    font-size: 16px;
}

.about-box-bottom-2 img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.about-box-bottom-2 {
    border: 0;
    box-shadow: none;
    padding: 15px;
    background-color: transparent;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}

.img-mentors-top img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 10px;
}

.mentors-top-box {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    margin-top: -150px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.mentors-top-box h2 {
    font-size: 30px;
}

.mentors-top-box ul {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 15px 0;
    list-style: none;
    padding: 0;
    gap: 10px;

}

.mentors-top-box ul li {
    padding: 10px;
    background-color: #f7f7f7;
    border: 1px solid #ccc;
    width: 25%;
    min-height: 8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    text-align: center;
    font-size: 16.5px;
    font-weight: 500;
}

.mentors-top-box p {
    margin: 0;
}

.mentor-sec-img img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 5px;
}

/* .mentor-sec-right{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
} */

.mentor-sec-right h2 {
    font-size: 30px;
    font-family: var(--font-sec);
    margin: 10px 0;
    margin-top: 15px;
}

.mentor-sec-right ul li {
    margin: 17px 0;
    font-size: 17px;
}

.mentor-sec-right ul li h3 {
    font-size: 20px;
    font-weight: 600;
    font-family: var(--font-sec);
    margin: 0;
    margin-bottom: 5px;
}

.sponsor-about-right ul li h3 {
    font-size: 20px;
    font-family: var(--font-sec);
    font-weight: 600;
    margin: 0;
    color: #000;
    margin-bottom: 5px;
}

.sponsor-about-right ul li {
    color: #303030;
    font-weight: 400;
    font-size: 17px;
    padding: 20px;
}


.partner-price-section {
    /* padding: 70px 20px; */
    background: #f9fafc;
    font-family: Arial, sans-serif;
}

.partner-price-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.partner-price-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #222;
}

.partner-price-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 50px;
}

.partner-price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.partner-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.partner-icon {
    font-size: 42px;
    margin-bottom: 15px;
}

.partner-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #222;
    font-family: var(--font-sec);
}

.partner-price {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.partner-card p {
    font-size: 17px;
    color: #555;
    line-height: 1.6;
}

/* Color Accents */
.platinum-card {
    border-top: 5px solid #e52121;
}

.gold-card {
    border-top: 5px solid #e52121;
}

.silver-card {
    border-top: 5px solid #e52121;
}

.supporter-card {
    border-top: 5px solid #e52121;
}

/* Mobile Optimization */
@media (max-width: 600px) {
    .partner-price-title {
        font-size: 28px;
    }

    .partner-card {
        padding: 30px 20px;
    }
}


.f-sponser-left {
    position: sticky;
    top: 20px;
}

.f-sponser-left img {
    height: 600px;
}

.f-sponser-right {
    padding-left: 40px;
    border: 1px solid #adadad;
    padding: 25px !important;
    border-radius: 10px;
    background-color: #f7f7f7;
    margin-bottom: 15px;
}

.f-sponser-right h2 {
    margin-top: 0;
}

.footer-top-contact ul {
    padding-left: 0 !important;
}

.ftp-last {
    padding-left: 0 !important;
}

.baner-btns {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
}

.baner-btns a {
    background-color: #e52121;
    border: 1px solid #e52121;
    transition: 0.5s;

}

.baner-btns a:hover {
    background-color: transparent;
    color: #e52121;
}

.home-section-second-left img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 5px;
}

.home-section-second-right {
    background-color: #f2f2f2;
    padding: 40px;
    margin-left: -150px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    margin-top: 40px;
}

.home-section-second-right h3 {
    font-size: 30px;
    font-weight: 600;
    color: #000;
    font-family: var(--font-sec);
}

.home-section-second-right p {
    font-size: 17px;
    margin: 0;
}



.home-why-choose-second {
    width: 100%;
    /* padding: 5px; */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
}

.home-why-choose-second span {
    min-width: 80px;
    min-height: 80px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    color: var(--color-white);
    font-weight: 600;
    position: relative;

}

.home-why-choose-second span::before {
    width: 2px;
    height: 20px;
    content: '';
    background-color: var(--primary);
    position: absolute;
    top: 100%;
    left: 50%;
}

.home-why-choose-second-info {
    padding: 20px;
    background-color: var(--color-white);
    margin-top: 20px;
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.home-why-choose-second-info h4 {
    text-align: center;
    font-size: 19px;
    font-weight: 600;
    line-height: 30px;
    color: var(--color-black);
}

.home-why-choose-second-info p {
    font-size: 15px;
    line-height: 23px;
    font-weight: 300;
    text-align: center;
    hyphens: auto;
    /* word-break: break-all; */
    margin: 0;
    color: var(--color-black);
}


.home-process-box {
    background: rgba(141, 141, 141, 0.27);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 15px;
    overflow: hidden;
}

.home-process-box h3 {
    background: rgba(204, 204, 204, 0.158);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 20px;
    text-decoration: none;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #fff;
}

.home-process-box p {
    padding: 25px;
    color: #fff;
    text-align: center;
    font-size: 16px;
    line-height: 24px;
}



.btn-redirect {
    width: 250px;
    height: 55px;
    border: 1px solid #fff;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    transition: 0.5s;
    margin: 0px auto;
    text-decoration: none;
    margin-top: 25px;
    font-weight: 600;
    border-radius: 5px;
}

.btn-redirect:hover {
    border-radius: 40px;
    background-color: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.home-tournament-sec img {
    height: 365px;
}

.home-tournament-sec ul li {
    background-color: #f5f3f3;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.home-tournament-sec ul li:first-child {
    margin-top: 0;

}

.home-tournament-sec ul li:last-child {
    margin-bottom: 0;

}


.customer-container {
    background-color: #ffffff98;
    background: rgba(250, 250, 250, 0.811);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 15px;
    padding: 15px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    height: 100%;
    min-height: 200px;
}

.customer-box-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.customer-box-top-left {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.customer-box-top-left img {
    width: 45px !important;
    height: 45px !important;
    border-radius: 50%;
    object-fit: cover;
}

.customer-box-top-left h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0px;
    color: #000;

}

.customer-box-top-left h3 small {
    font-size: 14px !important;
    font-weight: 400;
}

.customer-box-top i {
    font-size: 30px;
    font-weight: 800;
    color: #b03030;
}

.customer-bottom {
    padding: 20px 0;
}

.customer-bottom p {
    font-size: 17px;
    /*text-align: center;*/
    line-height: 25px;
}


.impact-box {
    background: #ffffff;
    border-radius: 14px;
    padding: 35px 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    height: 100%;
}

.impact-box:hover {
    transform: translateY(-8px);
}

.impact-icon {
    font-size: 36px;
    color: #2563eb;
    margin-bottom: 12px;
}

.impact-box h3 {
    font-size: 38px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 8px;
}

.impact-box p {
    font-size: 17px;
    color: #334155;
    line-height: 1.4;
    text-align: center;
}

.impact-icon {
    width: 80px;
    height: 80px;
    background-color: #e52121;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin: 10px auto;
    font-size: 30px;
}

.impact-icon i {
    color: #fff;
}

h3.count-number {
    text-align: center;
    font-weight: 600;
    font-size: 35px;
    font-family: var(--font-sec);
}



.gallery-img-bx-1 {
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
    border-radius: 7px;
    overflow: hidden;
}

.gallery-img-bx-1 img,
.gallery-img-bx-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-img-bx-1 img:hover,
.gallery-img-bx-2 img:hover {
    transform: scale(1.1);
}

.gallery-img-bx-2 {
    height: 650px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
    border-radius: 7px;
    overflow: hidden;

}

.gallery-img-bx-1 a,
.gallery-img-bx-2 a {
    width: 100%;
    height: 100%;
}

.coach-sec-left img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 5px;
}

.coach-sec-right {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.coach-sec-right h3 {
    font-size: 35px;
    font-weight: 600;
    font-family: var(--font-sec);
}

.coach-sec-right p {
    font-size: 17px;
}

.coach-sec-right a{
    width: 160px;
    height: 45px;
    border: 1px solid var(--primary);
    color: var(--primary);
    font-weight: 600;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2px;
    transition: 0.5s;
    text-decoration: none;
}
.coach-sec-right a:hover{
    border-radius: 40px;
    background-color: #e53935;
    color: #fff;
}
.discover-sec h5{
    font-size: 25px;
    font-weight: 600;
    color: #e52121;
    font-family: var(--font-sec);
    margin-bottom: 4px;
    margin-top: 10px;
    text-align:center;
}
.discover-sec p{
    font-size: 20px;
    text-align:center;
}
.discover-btns{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding-top: 10px;
}
.discover-btns a{
    width: 150px;
    height: 45px;
     background-color: #e53935;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #e52121;
    transition: 0.5s;
}
.discover-btns a:hover{
    border-radius: 40px;
    background-color: transparent;
    color: #e52121;
}

.committe-box h3{
    font-size: 23px;
    color: #e52121;
}
.committe-box h2{
    font-size: 50px;
    font-weight: 600;
    font-family: var(--font-sec);
}
.committe-box p{
    font-size: 17px;
    margin: 10px 0;
}
.committie-image-box{
    padding: 25px;
    border-radius: 15px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    background-color: #fff;
    /* margin: 35px 0; */
    height: 100%;
}
.committie-image{
    background-color: #850a0a;
    padding: 10px;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.committie-image img{
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #fff;
    margin-top: -50px;
}
.committie-image-box h3{
    font-size: 21px;
    margin: 15px 0;
    text-align: center;
    font-family: var(--font-sec);
    font-weight: 600;
    margin-bottom: 5px;

}
.committie-image-box h6{
    font-size: 16px;
    text-align: center;
    font-size: 14px;
    color: #e52121;
}
.committie-image-box p{
    font-size: 16px;
    margin: 0;
    margin-top: 5px;
    text-align: center;
}
.cm-m-box{
    margin: 35px 0 !important;
}

.process-m-top{
    margin-top: 80px !important;
}

.process-step{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}
.process-step span{
    font-size: 18px;
    font-weight: 600;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #e52121;
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #e52121;
}
.process-step  h1{
    font-size: 150px;
    font-weight: 400;
    font-family: var(--font-sec);
}
.process-stage{
    padding: 25px;
    padding-top: 0;
}
.process-stage h3{
    font-size: 30px;
    font-weight: 600;
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.process-stage h6{
    color: #e52121;
    font-weight: 600;
}
.process-stage p{
    font-size: 18px;
    line-height: 30px;
}
.process-stage li{
     font-size: 18px;
    line-height: 30px;
    margin: 5px 0;
}
.process-img img{
    width: 250px;
}

.trail-content-widget{
    padding: 25px;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    border-radius: 15px;
    height: 100%;
}
.trail-content-widget span{
    width: 80px;
    height: 80px;
    background-color: rgb(50, 132, 50);
    color: #fff;
    border-radius: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px auto;
    margin-top: -50px;
    font-family: var(--font-sec);
    font-size: 30px;

}
.mb-trail{
    margin-bottom: 35px;
}
.trail-content-widget h3{
    font-size: 25px !important;
   font-family: var(--font-sec);
    font-weight: 600;
   text-align: center;
   margin: 10px auto;

}
.trail-content-widget p{
    margin: 0;
    text-align: center;
    font-size: 17px;
}
.trail-content-widget-cs p{
margin: 0;
    text-align: center;
    font-size: 17px;
}
.trail-register-content h3{
    font-size: 40px;
    font-weight: 600;
    color: #000;
    font-family: var(--font-sec);
    text-align: center;

}
.trail-register-content p{
    font-size: 20px;
    text-align: center;
}
.trail-register-content a{
    font-size: 18px;
    background-color: #e52121;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    width: 250px;
    height: 55px;
    border-radius: 5px;
    text-decoration: none;
    margin: 10px auto;
    transition: 0.5s;
    font-weight: 600;
}
.trail-register-content a:hover{
    border-radius: 40px;

}
.trail-state-right{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
}
.trail-state-right h3{
    font-size: 35px;
    font-weight: 600;
    color:#000;
    font-family: var(--font-sec);

}
.trail-state-right p{
    font-size: 20px;
}
.trail-state-left {
    display: flex;
    justify-content: center;
    align-items: center;
}
.trail-state-left img{
    width: 300px;
}
.trail-video-iframe iframe{
width: 100%;
height: 280px;
border-radius: 10px;
}

.st-legue-left img{
    width: 100%;
    height: 410px;
    object-fit: cover;
}

.st-legue-right{
    padding: 25px;
    
}
.st-legue-right h3{
    font-size: 30px;
    font-family: var(--font-sec);
    font-weight: 600;
}
.st-legue-right p{
    font-size: 17px;
}
.st-legue-right h4{
    font-size: 18px;
    font-weight: 600;
    color: #e52121;
    margin-bottom: 5px;
    font-family: var(--font-sec);

}
.st-league-left-sec img{
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    position: sticky;
    top: 20px;
}
.st-league-left-sec {
    height: 100%;
}
.st-league-right-sec{
    padding: 0 40px;
}
.st-league-right-sec h3{
    font-size: 35px;
    font-weight: 600;
    font-family: var(--font-sec);
    margin: 0;
}
.st-league-right-sec p{
    font-size: 16px;
    margin: 5px 0;
}
.st-league-right-sec ul li{
    margin: 10px 0;
}
.st-league-right-sec h4{
   font-size: 18px;
    font-weight: 600;
    color: #e52121;
    margin-bottom: 5px;
    font-family: var(--font-sec);
    margin: 7px 0;
}

.st-league-right-sec a{
    width: 150px;
    height: 45px;
    background-color: #e52121;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 15px !important;
    transition: 0.5s;
}
.st-league-right-sec a:hover{
    border-radius: 40px;
}
.st-iframe-video iframe{
    width: 100%;
    height:500px;
    border-radius: 5px;
}
.st-iframe-video-2 {
    margin-bottom: 20px;
}
.st-iframe-video-2 iframe{
    width: 100%;
    height:238px;
    border-radius: 5px;
}
.ggcl-nationals-img img{
    width: 100%;
    border-radius: 10px;
}
.season-carousel img{
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    border: 10px solid #fff;
}

.s-ga-img-height{
    width: 100%;
    height: 510px;
    margin-bottom: 10px;
}
.s-ga-img-height img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.s-ga-img-height-2{
    height: 250px;
    margin-bottom: 10px;
}
.s-ga-img-height-2 img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.Celebrity-right img{
    width: 100%;
    height: 400px;
    object-fit: cover;
    border: 2px solid #e52121;
}
.Celebrity-left{
    padding-right: 30px;
}
.Celebrity-left h3{
    font-size: 30px;
    font-weight: 600;
    color: #000;
    font-family: var(--font-sec);
    margin: 0;
}
.Celebrity-left small{
    font-size: 18px;
    color: #e52121;
}
.Celebrity-left p{
    margin: 8px 0;
    font-size: 17px;
}



.t-registraion-container{
  background-color: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    background: rgb(255 255 255 / 29%);
    /* border-radius: 16px; */
    /* box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); */
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.reg-btn{
    width: 180px;
    height: 42px;
    background-color: var(--primary-dark);
    color: var(--color-white);
    border-radius: 5px;
    border: 1px solid var(--primary-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px auto;
    font-size: 16px;
    font-weight: 500;
    transition: 0.5s;
    text-decoration: none;
}
.reg-btn:hover{
    border-radius: 40px;
    /*color: var(--primary-dark);*/
    /*background-color: transparent;*/
}
.t-registraion-container h5{
      font-size: 25px;
    font-weight: 600;
    margin: 2px 0;
    color: #dddddd;
    font-family: var(--font-sec);
}

.t-registraion-bg{
    width:100%;
    background-position:center;
    background-size:cover;
    background-repeat:no-repeat;
    
}

.t-registraion-container .mb-3{
    margin-bottom:5px !important;
}

.t-registraion-container  small.text-muted{
    color:#ccc !important;
}


.t-registraion-container label{
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    font-family: var(--font-main);


}
.t-registraion-container input,.t-registraion-container select{
    height: 45px;
    border: 1px solid #c9c9c9;
    border-radius: 7px;
    color: #000;
    font-size: 14px;
     font-family: var(--font-main);
}
.t-registraion-container textarea{
     height: 100px;
    border: 1px solid #c9c9c9;
    border-radius: 7px;
    color: #000;
    font-size: 14px;
     font-family: var(--font-main);
}
.t-registraion-container input::file-selector-button{
    height: 45px;
}
.t-registraion-container input:focus,.t-registraion-container select:focus,.t-registraion-container textarea:focus{
    border: 1px dashed #c85c5c;
}
.t-registraion-logo {
    display: flex;
    justify-content: center;
    align-items: center;

}
.t-registraion-logo img{
    width: 100px;
}
.t-registraion-step{
     background-color: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    background: rgb(255 255 255 / 29%);
    /* border-radius: 16px; */
    /* box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); */
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin: 10px 0;
}
.t-registraion-step ul{
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: 20px;
}
.t-registraion-step ul li{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    color: #fff;
}
.t-registraion-step ul li span{
    width: 50px;
    height: 50px;
    background-color: #fff !important;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #e52121 !important;
    font-family: var(--font-sec);
    font-size: 18px;
}
.t-registraion-step ul li.active{
    color: #e52121;
}
.t-registraion-step ul li.active span{
    background-color: #e52121 !important;
    color: #fff !important;
}
.t-flex-btns{
        display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 0px;
    gap: 10px;
}
.t-flex-btns a{
    margin: 0;
}


a.t-bk-btn{
    width: 200px;
    height: 45px;
    background-color: #3f4110;
    color:#fff;
    border-radius: 5px;
    border: 1px solid #3f4110;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    transition: 0.5s;
    text-decoration: none;
}
a.t-bk-btn:hover{
    border-radius: 40px;
    /*color: var(--primary-dark);*/
    /*background-color: transparent;*/
}

.t-reg-terms ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
.t-reg-terms ul li{
    padding: 25px;
    background-color: #ffffffd4;
    border-radius: 10px;
    margin: 10px 0;
}
.t-reg-terms ul li h3{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: #222;
    margin: 0;
}
.t-reg-terms ul li h3 input{
    width: 20px;
    height: 20px;
    margin-right: 5px;
}
.t-reg-terms ul li p{
    margin: 0;
    font-size: 15px;
    padding-left: 25px;
}



.pop-content-modal .modal-header{
    padding: 10px;
    border: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 0;
}
.modal-header .close-modal{
    width: 35px;
    height: 35px;
    background-color: #999999;
    color: #fff;
    border-radius: 50%;
    border: 0;
    padding-top: 6px;
}
.modal-header .close-modal:hover{
    background-color: var(--theme-color);
    color: #fff;
}
.pop-content-modal{
    border-radius: 15px;
}


.checkmark {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: #089748;
    stroke-miterlimit: 10;
    box-shadow: inset 0px 0px 0px #089748;
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
    position:relative;
    top: 5px;
    right: 5px;
   margin: 0 auto;
}
.checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #089748;
    fill: #fff;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
 
}

.checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes scale {
    0%, 100% {
        transform: none;
    }

    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

@keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 30px #089748;
    }
}

.modal-success-note h3{
        font-size: 26px;
    text-align: center;
    margin: 10px 0;
    margin-top: 21px;
    font-weight: 500;
    margin-bottom: 4px;
}
.modal-success-note p{
font-size: 16px;
    text-align: center;
    margin: 3px 0;
    font-weight: 500;
    margin-bottom: 15px;
    color: #5c5959;
}
.modal-success-note a{
    background-color: var(--primary-dark);
    color: #fff;
    padding: 7px 25px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    border-radius: 40px;
    text-decoration: none;
}

.t-registraion-step-2{
     background-color: #fff;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.t-registraion-step-2{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.t-registraion-step-2 h3{
    font-size: 18px;
}
.t-registraion-step-2  h2{
    font-family: var(--font-sec);
    font-weight: 600;
    color: var(--primary-dark);
}
.t-registraion-step-2 p{
    font-size: 16px;
    margin: 0;
}
.basecamp-field{
    background-color: #fff;
    padding: 20px;
    border-radius: 15px;
}
.basecamp-field label{
    font-size: 16px;
    color: #000;
}
.basecamp-field input{
    border: 1px solid #222;
}
.basecamp-field  .flex-b-btns {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;

}
.basecamp-field  .flex-b-btns button{
    min-width: 40px;
    height: 40px;
    background-color: var(--primary-dark);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 1px solid var(--primary-dark);
}
.basecamp-field  .flex-b-btns  input{
    width: 100px;
}
.b-label{
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.basecamp-add-dlt{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 5px;
}
.basecamp-add-dlt button{
    width: 120px;
    height: 40px;
    background-color: #12b012;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 0;
    border-radius: 5px;
    transition: 0.5s;
    font-weight: 500;
    
}
.basecamp-add-dlt button:last-child{
    background-color: red;

}
.basecamp-add-dlt button:hover{
    border-radius: 40px;
}
.base-pay-img{
    display: flex;
    justify-content: center;
    align-items: center;
}
.base-pay-img img{
    width: 400px;
    border-radius: 10px;
}

.highlights-container ul{
    border-bottom: 1px solid #e8e8e8 !important;
    display: flex;
    justify-content: center;
    gap: 5px;
}
.highlights-container ul li button{
    width: 170px;
    height: 50px;
    background-color: #f1f1f1;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 2px 2px 0 0 !important;
    font-weight: 500;
    color: #222;
    transition: 0.5s;
}
.highlights-container ul li button.active{
    background-color: var(--primary-dark) !important;
    color: #fff !important;
    border-radius: 25px 25px 0 0 !important;
}
.highlights-container ul li button:hover{
     background-color: var(--primary) !important;
    color: #fff !important;
    border-radius: 25px 25px 0 0 !important;
}
.highlights-container .tab-content{
    padding-top: 40px;
}
.gal-box img{
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
}

.highlight-inner-container {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 35px;
}
.highlight-inner-container ul.nav-tabs{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 20%;
}
.highlight-inner-container ul.nav-tabs li{
    width: 100%;
    
}
.highlight-inner-container ul.nav-tabs li button{
    width: 100%;
    border: 1px solid #e0e0e0;
    font-weight: 500;
}
.highlight-inner-container ul.nav-tabs li button.active,.highlight-inner-container ul.nav-tabs li button:hover{
    border-radius: 5px !important;
}
.highlight-inner-container .tab-content{
    width: 80% !important;
    padding-top: 0 !important;
    padding-left: 25px !important;
}

.crick-training-left img{
    height: 550px;
}
.crick-training-right a{
    width: 150px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary);
    color: var(--color-white);
    margin-top: 10px;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.5s;
    border:0 !important;
}
.crick-training-right a:hover{
    border-radius: 40px;
}

.careers-img img{
    width: 100%;
    height: 450px;
    border-radius: 20px;
    object-fit: cover;
    margin-top: 10px;
}
.careers-box{
    padding: 25px;
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    background-color: #f7f7f7;
    border: 1px solid #ccc;
}
.careers-box h3{
    font-size: 25px;
    font-weight: 600;
    font-family: var(--font-sec);
}
.careers-box p{
    font-size: 16px;
    margin: 0;
}
.apply-form{
    background-color: #eeeeee;
    border: 1px solid #ccc;
    padding: 15px;
    border-radius: 10px;
}
.apply-form h3{
    font-size: 18px;
    margin: 5px 0;
    margin-bottom: 15px;
    font-weight: 600;
    font-family: var(--font-sec);
}
.apply-form label{
    font-weight: 500;
    font-size: 15px;
}
.apply-form input,.apply-form select{
    height: 50px;
    border-radius: 10px;
    border: 1px solid #ccc;
}
.apply-form input::file-selector-button{
    height: 51px;
}
.apply-form button{
    margin-top: 25px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 45px;
    background-color: var(--primary);
    border-radius: 5px;
    border: 0;
    color: #fff;
    font-size: 17px;
    transition: 0.5s;
    margin-bottom: 20px;
}
.apply-form button:hover{
    border-radius: 40px;
    background-color: var(--primary-dark);
}

.signup-container{
  background-color: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    background: rgb(255 255 255 / 29%);
    /* border-radius: 16px; */
    /* box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); */
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.signup-container ul.nav-tabs{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border: 0;
}
.signup-container ul.nav-tabs li button{
    width: fit-content;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    border: 1px solid #a3a3a300;
    color: #000;
    font-weight: 500;
    background-color: #ffcfcf;
     font-family: var(--font-main);
}
.signup-container ul.nav-tabs li button.active{
    background-color: var(--primary);
    color: var(--color-white);
    border-color: var(--primary);
}
.signup-container ul.nav-tabs li button:hover{
    background-color: var(--primary-dark);
    color: var(--color-white);
    border-color: var(--primary-dark);
}
.signup-container .tab-content{
    padding-top: 25px;
}
.signup-container label{
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    font-family: var(--font-main);


}
.signup-container input,.signup-container select{
    height: 45px;
    border: 1px solid #c9c9c9;
    border-radius: 7px;
    color: #000;
    font-size: 14px;
     font-family: var(--font-main);
}
.signup-container textarea{
     height: 100px;
    border: 1px solid #c9c9c9;
    border-radius: 7px;
    color: #000;
    font-size: 14px;
     font-family: var(--font-main);
}
.signup-container input::file-selector-button{
    height: 45px;
}
.signup-container input:focus,.signup-container select:focus,.signup-container textarea:focus{
    border: 1px dashed #c85c5c;
}
.form-terms{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
    padding-top: 10px;
}
.form-terms input{
    width: 23px;
    height: 23px;
}
.form-terms label{
    font-size: 16px;
}
.form-terms label a{
    color: #fff;
}
.signup-btn{
    width: 200px;
    height: 45px;
    background-color: var(--primary-dark);
    color: var(--color-white);
    border-radius: 5px;
    border: 1px solid var(--primary-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px auto;
    font-size: 16px;
    font-weight: 500;
    transition: 0.5s;
}
.signup-btn:hover{
    border-radius: 40px;
    /*color: var(--primary-dark);*/
    /*background-color: transparent;*/
}
.signup-container h5{
      font-size: 18px;
    font-weight: 600;
    margin: 2px 0;
    color: #e59b9b;
    font-family: var(--font-sec);
}

.auth-bg-image{
    width:100%;
    background-position:center;
    background-size:cover;
    background-repeat:no-repeat;
    
}

.signup-container .mb-3{
    margin-bottom:5px !important;
}

.signup-container  small.text-muted{
    color:#ccc !important;
}

.navbar-nav .nav-link.active{
    color: #e52121 !important;
}
.upcoming-slider-nav{
    display:flex;
    justify-content:flex-start;
    align-items:center;
    gap:5px
}
.upcoming-slider-nav button{
    width:40px;
    height:40px;
    border-radius:50%;
        background-color: #e52121;
    border: 1px solid #e52121;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
}
.upcoming-slider-nav button:hover{
    color:#e52121;
    background-color:transparent;
}


.teams-container a.view-btn{
       width: fit-content;
    padding: 9px 15px;
    background-color: var(--primary);
    color: var(--color-white);
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 7px;
    transition:0.5s;
}

.teams-container a.view-btn:hover{
    border-radius:40px;
}
.team-main-left-logo{
    width:100%;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    background-color:#fff;
    border-radius:15px;
    padding:25px;
}

.team-main-left-logo img{
    width:250px;
}


.team-main-left-logo h2{
    font-size:18px;
    font-weight:600;
}

.team-main-right,.recent-match-section{
    width:100%;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    background-color:#fff;
    border-radius:15px;
    padding:25px;
}
.team-filter label{
    font-size:14px;
    
}

.team-filter select{
    height:45px;
    border-radius:5px;
    font-size:15px;
}
.table-team{
    margin-top:20px;
}
.table-team tr th{
    background-color: var(--primary);
    color: var(--color-white);padding:15px 15px;
    font-size:17px;
    font-weight:600;
    width:50%;
}
.table-team tr td{
    padding:15px 15px;
      font-size:17px;
    font-weight:500;
    width:50%;
}

.recent-match-section h4{
    font-weight:600;
    font-size:20px;
}

.match-filter{
      box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    background: rgb(253 253 253 / 57%);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(5px);
    padding: 25px;
    margin-top: -150px;
}
.match-filter label{
    color:#222 !important;
    font-size:16px;
}

.match-filter input,.match-filter select{
    height:45px;
    font-size:15px;
    outline:0 !Important;
    border:0 !important;
    border:1px solid #2222226b !important;
}
.filter-box-btns{
    display:flex;
    justify-content:center;
    align-items:Center;
    gap:10px;
    padding-bottom:10px;
}
.filter-box-btns button,.filter-box-btns a{
    width:200px;
    height:45px;
    background-color: var(--primary);
    color: var(--color-white);
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border-radius: 7px;
    transition:0.5s;
    border:0;
}
.filter-box-btns a{
    background-color:#888787;
}
.filter-box-btns button:hover,.filter-box-btns a:hover{
    border-radius:40px;
}

.match-result-and-date {
    height: 50px;
}



.result-section .alert-success{
        background: #bff0bd;
    border: 1px solid #5ba6598f;
    border-radius: 12px;
}
.result-section .alert-success h5{
        font-size: 19px;
    font-family: var(--font-sec);
    font-weight: 600;
}



.result-section .alert-info{
          background: #bcd5f8;
    border: 1px solid #60708675;
    border-radius: 12px;

}

.result-section .alert-info h5{
        font-size: 19px;
    font-family: var(--font-sec);
    font-weight: 600;
}

.match-info-section h4,.scorecard-section h4,h4.title-show{
    color:#9b3030;
      font-family: var(--font-sec);
    font-weight: 600;
     font-size: 19px;
     margin:10px 0;
}

.page-header-content nav{
    display:flex;
    justify-content:center;
    align-items:center;
}
.news-card-image{
    height:300px !important;
}

.cl-none-nav .owl-nav{
    display:none !important;
}












