@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("/css/swiper-bundle.min.css");

@font-face {
    font-family: "gothamblack";
    src: url("/fonts/gotham_black-webfont.woff") format("woff2"), url("/fonts/gotham_black-webfont.woff2") format("woff");
    font-weight: normal;
    font-style: normal;
}

:root {
    --main_font: "Inter", sans-serif;
    --head_font: "gothamblack";
    --header_bg: #fff;
    --main_color: #E3000F;
    --main_color_dark: #b30914;
    --main_text: #fff;
    --text_dark: #1F232A;
    --text_light: #374151;
    --light_bg: #E3000F0D;
    --input_bg: #F7F7F7;
}

body {
    font-family: var(--main_font);
    margin: 0;
    padding: 0;
}

header {
    background-color: var(--header_bg);
    height: 112px;
    border-bottom: 1px solid #D0CCC8;
}

@media (max-width: 767px) {
    header {
        height: 80px;
    }
}

header .logo {
    height: 70px;
}

@media (max-width: 767px) {
    header .logo {
        height: 40px;
    }
}

.btn {
    border-radius: 20px;
    font-size: 14px;
    --bs-btn-padding-x: 25px;
    --bs-btn-padding-y: 8px;
}

@media (max-width: 767px) {
    .btn {
        padding: 6px 15px;
    }
}

.btn.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--main_color);
    --bs-btn-border-color: var(--main_color);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--main_color_dark);
    --bs-btn-hover-border-color: var(--main_color_dark);
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--main_color_dark);
    --bs-btn-active-border-color: var(--main_color_dark);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: var(--main_color);
    --bs-btn-disabled-border-color: var(--main_color);
}

.btn.btn-outline-primary {
    --bs-btn-color: var(--main_color);
    --bs-btn-border-color: var(--main_color);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--main_color);
    --bs-btn-hover-border-color: var(--main_color);
    --bs-btn-focus-shadow-rgb: 13, 110, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--main_color);
    --bs-btn-active-border-color: var(--main_color);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: var(--main_color);
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: var(--main_color);
    --bs-gradient: none;
}

.btn.btn-lg {
    padding: 13px 37px;
    font-size: 18px;
    border-radius: 50px;
}

@media (max-width: 767px) {
    .btn.btn-lg {
        padding: 10px 30px;
        font-size: 14px;
    }
}

/* Banner */
.banner {
    background-image: url("/img/banner_bg.png");
    min-height: calc(100vh - 112px);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media (max-width: 991px) {
    .banner {
        min-height: 450px;
        background-position: 30% 20%;
    }
}

.banner .banner_caption {
    padding: 100px 0;
}

@media (max-width: 991px) {
    .banner .banner_caption {
        padding: 20px;
    }
}

.banner .banner_caption .logo {
    height: 100px;
}

@media (max-width: 991px) {
    .banner .banner_caption .logo {
        height: 60px;
    }
}

.banner .banner_caption h1 {
    font-family: var(--head_font);
    color: var(--main_text);
    font-size: clamp(28px, 3.5vw, 70px);
    font-weight: bolder;
    text-transform: uppercase;
}

.banner .banner_caption .bg_no {
    background-color: var(--main_color);
    color: var(--main_text);
    font-size: clamp(14px, 3.5vw, 24px);
    padding: 7px 14px;
}

@media (max-width: 991px) {
    .banner .banner_caption .bg_no {
        padding: 5px 8px;
        margin-bottom: 5px;
    }
}

.banner .banner_caption p {
    font-size: clamp(12px, 3.5vw, 24px);
}

    .banner .banner_caption p .icon {
        height: 30px;
    }

@media (max-width: 767px) {
    .banner .banner_caption p .icon {
        height: 20px;
    }
}

.banner .banner_caption .date_info {
    margin: 40px 0;
}

@media (max-width: 992px) {
    .banner .banner_caption .date_info {
        margin: 16px 0;
    }
}

/* Info */
.info {
    padding: 50px 0;
}

@media (max-width: 768px) {
    .info {
        padding: 30px 0;
    }
}

.info h2 {
    font-size: clamp(30px, 3.5vw, 50px);
    color: var(--main_color);
    margin-bottom: 15px;
}

.info p {
    font-size: clamp(14px, 3.5vw, 18px);
    text-align: center;
    margin: 0;
    font-weight: 500;
    color: #000;
}

@media (min-width: 768px) {
    .info .col.border-lg-end {
        border-right: 1px solid #FFE5E1 !important;
    }
}

/* Middle Banner */
.mid_banner {
    background: linear-gradient(88.29deg, #E3000F -5.71%, #5858C0 127.91%);
    padding: 100px 0;
}

@media (max-width: 767px) {
    .mid_banner {
        padding: 40px 0;
    }
}

.mid_banner h2 {
    font-size: clamp(24px, 3.5vw, 60px);
    margin-bottom: 10px;
    font-family: var(--head_font);
    color: #fff;
}

.mid_banner p {
    font-size: clamp(14px, 3.5vw, 24px);
    color: #fff;
    margin: 0;
    font-weight: 300;
}

.text-primary {
    --bs-primary-rgb: var(--text_dark);
}

.text-main {
    color: var(--main_color) !important;
}

/* About */
.about {
    padding: 100px 0;
}

@media (max-width: 991px) {
    .about {
        padding: 50px 0;
    }
}

@media (min-width: 1200px) {
    .about .container-lg {
        padding: 0 110px;
    }
}

.about h2 {
    font-family: var(--head_font);
    font-size: clamp(24px, 3.5vw, 50px);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.about p {
    font-size: clamp(14px, 3.5vw, 16px);
    font-weight: 500;
}

.sub_heading {
    margin-top: 70px;
    position: relative;
}

@media (max-width: 991px) {
    .sub_heading {
        margin-top: 30px;
    }
}

.sub_heading::before {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #D0CCC8;
    position: absolute;
    left: 0;
    right: 0;
    top: 20px;
    z-index: 1;
}

.sub_heading h6 {
    text-transform: uppercase;
    font-size: clamp(18px, 3.5vw, 26px);
    position: relative;
    z-index: 2;
    background-color: #fff;
    display: table;
    margin: 0 auto;
    padding: 5px 30px;
}

.collage_card {
    margin-top: 50px;
}

@media (max-width: 991px) {
    .collage_card .img_card,
    .collage_card .img_sm_card {
        margin: 0 auto;
        display: table;
        margin-bottom: 30px;
    }
}

.collage_card .img_card .img,
.collage_card .img_sm_card .img {
    margin-bottom: 15px;
}

    .collage_card .img_card .img img,
    .collage_card .img_sm_card .img img {
        -o-object-fit: cover;
        object-fit: cover;
        border-radius: 30px;
    }

@media (max-width: 991px) {
    .collage_card .img_card .img img,
    .collage_card .img_sm_card .img img {
        height: 300px !important;
        width: 300px !important;
        margin: 0 auto;
    }
}

.collage_card .img_card h6,
.collage_card .img_sm_card h6 {
    font-size: clamp(16px, 3.5vw, 24px);
    margin-bottom: 5px;
    color: var(--text_light);
    white-space: nowrap;
}

.collage_card .img_card p,
.collage_card .img_sm_card p {
    color: var(--text_light);
    font-size: clamp(12px, 3.5vw, 14px);
    margin: 0;
}

.collage_card .img_sm_card .img img {
    min-width: 130px;
    max-width: 10vw !important;
}

@media (max-width: 991px) {
    .collage_card .img_sm_card .img img {
        max-width: 100% !important;
    }
}

.collage_card .counts {
    background-color: var(--light_bg);
    padding: 30px;
    border-radius: 30px;
}

@media (max-width: 991px) {
    .collage_card .counts {
        width: 300px !important;
        margin: 0 auto;
        text-align: center;
    }
}

.collage_card .counts h3 {
    font-size: clamp(50px, 3.5vw, 50px);
    color: var(--main_color);
}

.collage_card .counts p {
    font-size: clamp(14px, 3.5vw, 18px);
    margin: 0;
    color: var(--text_light);
}

.join {
    background-image: url("/img/join_bg.jpg");
    padding: 100px 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    min-height: 470px;
}

@media (max-width: 991px) {
    .join {
        min-height: auto;
    }
}

.join::before {
    content: "";
    position: absolute;
    background: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 1;
}

.join h6 {
    font-size: clamp(16px, 3.5vw, 24px);
    color: #fff;
    position: relative;
    z-index: 2;
}

.join h2 {
    font-size: clamp(30px, 3.5vw, 50px);
    font-family: var(--head_font);
    text-transform: uppercase;
    color: #fff;
    position: relative;
    z-index: 2;
}

.join .btn {
    position: relative;
    z-index: 2;
}

/* Our Partners*/
.our_partners {
    padding: 100px 0;
}

@media (max-width: 991px) {
    .our_partners {
        padding: 50px 0;
    }
}

.our_partners h2 {
    font-family: var(--head_font);
    font-size: clamp(30px, 3.5vw, 50px);
    text-transform: uppercase;
    text-align: center;
}

.swiper.reverse,
.swiper.marquee {
    margin-bottom: 30px;
}

    .swiper.reverse:after,
    .swiper.marquee:after {
        content: "";
        width: 100px;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        background: linear-gradient(88deg, #ffffff, transparent);
        z-index: 2;
    }

    .swiper.reverse:before,
    .swiper.marquee:before {
        content: "";
        width: 100px;
        height: 100%;
        position: absolute;
        right: 0;
        top: 0;
        background: linear-gradient(266deg, #ffffff, transparent);
        z-index: 2;
    }

.swiper-wrapper.marquee,
.swiper-wrapper.reverse {
    transition-timing-function: linear;
    align-items: center;
}

.swiper-slide.marquee-swiper {
    width: 350px;
    height: 188px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F5F7FF;
    border-radius: 10px;
}

    .swiper-slide.marquee-swiper .img {
        display: flex;
        align-items: end;
        justify-content: center;
        min-width: 220px;
        padding: 5px 40px;
        margin-bottom: 10px
    }

        .swiper-slide.marquee-swiper .img img {
            width: 100%;
            object-fit: contain;
            height: 80px;
        }

.fs-7 {
    font-size: 14px !important;
}

.past_highlights {
    background-color: #001740;
    padding: 100px 0;
}

@media (max-width: 991px) {
    .past_highlights {
        padding: 50px 0;
    }
}

.past_highlights .container-lg {
    padding: 0 110px;
}

@media (max-width: 991px) {
    .past_highlights .container-lg {
        padding: 0 35px;
    }
}

.past_highlights .container-lg h2 {
    font-family: var(--head_font);
    font-size: clamp(30px, 3.5vw, 50px);
    text-align: center;
    color: #fff;
    text-transform: uppercase;
}

.past_highlights .container-lg p {
    font-size: clamp(14px, 3.5vw, 16px);
    text-align: center;
    color: #fff;
}

.past_highlights .video_player {
    width: 1000px;
    margin: 0 auto;
    display: block;
    border-radius: 15px;
}

@media (max-width: 1199px) {
    .past_highlights .video_player {
        width: 100%;
    }
}

/* Registration */
.registration {
    padding: 100px 0;
    background-color: #F3F3F6;
}

@media (max-width: 991px) {
    .registration {
        padding: 50px 20px;
    }
}

.registration .main_content h2 {
    font-family: var(--head_font);
    font-size: clamp(30px, 3.5vw, 50px);
    color: var(--text_dark);
    text-transform: uppercase;
    margin-bottom: 5px;
}

.registration .main_content h5 {
    font-size: clamp(18px, 3.5vw, 30px);
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--text_dark);
}

.registration .main_content h6 {
    font-size: clamp(16px, 3.5vw, 20px);
    font-weight: 500;
    color: var(--main_color);
    margin-bottom: 10px;
}

@media (max-width: 991px) {
    .registration .card {
        margin-bottom: 20px;
        height: auto !important;
    }
}

.registration .card h3 {
    font-size: clamp(20px, 3.5vw, 38px);
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text_dark);
}

.registration .card h6 {
    font-size: clamp(14px, 3.5vw, 18px);
    font-weight: 700;
    color: var(--text_dark);
    margin-bottom: 0px;
}

.registration .card h4 {
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 700;
    color: var(--main_color);
    margin: 20px 0;
}

.registration .card h5 {
    font-size: clamp(20px, 3.5vw, 28px);
    font-weight: 600;
    color: var(--text_dark);
}

.text_main {
    color: var(--main_color) !important;
}

footer {
    padding: 70px 0;
    border-top: 1px solid #D0CCC8;
}

@media (max-width: 991px) {
    footer {
        padding: 30px 5px;
    }
}

footer .footer_list {
    display: flex;
    flex-wrap: wrap;
    gap: 0 50px;
    justify-content: end;
}

@media (max-width: 991px) {
    footer .footer_list {
        gap: 0 20px;
        justify-content: space-between;
    }

        footer .footer_list .item {
            flex: 46%;
        }
}

footer .footer_list h6 {
    color: rgba(27, 24, 25, 0.5019607843);
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
}

footer .footer_list ul {
    margin-top: 15px;
}

    footer .footer_list ul li a {
        color: var(--text_dark);
        font-size: 14px;
        text-decoration: none;
    }

footer .social_icon {
    display: flex;
    justify-content: end;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0 10px;
}

@media (max-width: 991px) {
    footer .social_icon {
        justify-content: center;
    }
}

footer .social_icon li a {
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.3);
    width: 32px;
    height: 32px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 991px) {
    footer p {
        max-width: 300px;
        margin: 20px 0;
    }
}

.footer_bottom {
    padding: 70px 0;
    background-color: var(--main_color);
    padding-bottom: 30px;
}

@media (max-width: 991px) {
    .footer_bottom {
        padding: 30px 5px;
    }

        .footer_bottom .btn {
            padding: 5px !important;
        }
}

.footer_bottom h5 {
    font-size: clamp(16px, 3.5vw, 24px);
    color: #fff;
    font-weight: 500;
}

.footer_bottom p {
    font-size: 12px;
    color: #fff;
    font-weight: 300;
}

.footer_bottom .email_input {
    display: flex;
    gap: 0 10px;
    align-items: center;
}

@media (max-width: 991px) {
    .footer_bottom .email_input {
        padding-right: 30px;
    }
}

.footer_bottom .email_input .form-control {
    min-width: 470px;
    border: 1px solid #fff;
    color: #fff;
    background-color: var(--main_color);
    font-size: 14px;
    height: 40px;
}

@media (max-width: 991px) {
    .footer_bottom .email_input .form-control {
        min-width: 100%;
    }
}

.footer_bottom .email_input .form-control::-moz-placeholder {
    color: #fff;
    font-weight: 200;
    font-size: 12px;
}

.footer_bottom .email_input .form-control::placeholder {
    color: #fff;
    font-weight: 200;
    font-size: 12px;
}

@media (min-width: 992px) {
    .py-lg-6 {
        padding: 100px 0 !important;
    }
}

.page_title {
    font-size: clamp(28px, 3.5vw, 50px);
    margin-bottom: 40px;
    text-transform: uppercase;
    font-family: var(--head_font);
}

@media (max-width: 991px) {
    .page_title {
        margin-bottom: 20px;
    }
}

.custom-radio {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
}

@media (max-width: 991px) {
    .custom-radio {
        font-size: 14px;
    }
}

.custom-radio input[type=radio] {
    display: none;
}

    .custom-radio input[type=radio]:checked + .radio-mark::after {
        content: "";
        position: absolute;
        top: 5px;
        left: 5px;
        width: 14px;
        height: 14px;
        background-color: #fff;
        border-radius: 50%;
    }

@media (max-width: 991px) {
    .custom-radio input[type=radio]:checked + .radio-mark::after {
        top: 6px;
        left: 6px;
        width: 12px;
        height: 12px;
    }
}

.custom-radio input[type=radio]:checked + .radio-mark {
    background-color: var(--main_color);
}

.custom-radio .radio-mark {
    height: 26px;
    width: 26px;
    min-width: 26px;
    border: 1px solid var(--main_color);
    border-radius: 50%;
    margin-right: 8px;
    position: relative;
}

@media (max-width: 991px) {
    .custom-radio .radio-mark {
        height: 25px;
        width: 25px;
        min-width: 25px;
    }
}

.custom-checkbox {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    font-family: sans-serif;
    font-size: 14px;
}

    .custom-checkbox input[type=checkbox] {
        display: none;
    }

        .custom-checkbox input[type=checkbox]:checked + .checkmark::after {
            content: "";
            position: absolute;
            left: 8px;
            top: 3px;
            width: 8px;
            height: 17px;
            border: solid var(--main_color);
            border-width: 0 4px 4px 0;
            transform: rotate(45deg);
        }

    .custom-checkbox .checkmark {
        width: 26px;
        min-width: 26px;
        height: 26px;
        background-color: #fff;
        border: 1px solid var(--main_color);
        border-radius: 7px;
        margin-right: 10px;
        position: relative;
    }

        .custom-checkbox .checkmark::after {
            content: "";
            position: absolute;
            display: none;
        }

    .custom-checkbox input[type=checkbox]:checked + .checkmark {
        background-color: #fff;
    }

        .custom-checkbox input[type=checkbox]:checked + .checkmark::after {
            display: block;
        }

.form-group label {
    font-size: clamp(14px, 3.5vw, 16px);
}

    .form-group label span {
        color: var(--main_color);
    }

.form-group .form-control {
    background-color: var(--input_bg);
    border: 1px solid #EFEFEF;
    height: 55px;
    font-size: clamp(14px, 3.5vw, 16px);
    caret-color: black;
    position: relative;
}

.form-group.rupees::before {
    content: "₹";
    position: absolute;
    bottom: 12px;
    left: 22px;
    color: var(--main_color);
    z-index: 1;
    font-size: 20px;
    font-weight: 600;
}

.form-group.rupees .form-control {
    padding-left: 35px;
}

.form-group input[type=number] {
    -moz-appearance: textfield;
}

    .form-group input[type=number]::-webkit-outer-spin-button, .form-group input[type=number]::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

.captcha {
    background-color: #F7F7F7;
    border: 1px solid #EFEFEF;
    border-radius: 6px;
    padding: 10px 20px;
}

.success_icon {
    height: 120px;
}

@media (max-width: 991px) {
    .success_icon {
        height: 80px;
    }
}

.card-table {
    background-color: #F7F7F7;
    border-radius: 8px;
    padding: 30px;
}

table {
    border-collapse: separate;
    border-spacing: 0px 2px;
    border-radius: 10px;
}

    table th,
    table td {
        padding: 15px;
        font-size: 14px;
        background-color: #fff;
    }

        table th .icon,
        table td .icon {
            height: 20px;
        }

    table th {
        font-weight: 500;
    }

        table th:first-child {
            border-top-left-radius: 8px;
        }

        table th:last-child {
            border-top-right-radius: 8px;
        }

.pagination {
    margin-top: 10px;
    align-items: center;
}

    .pagination .page-item .page-link {
        border: none;
        background-color: transparent;
        color: var(--text_dark);
        padding: 2px 10px;
        font-size: 14px;
        margin: 0 1px;
        display: flex;
        align-items: center;
    }

        .pagination .page-item .page-link .icon {
            height: 10px;
        }

    .pagination .page-item.active .page-link {
        background-color: var(--main_color);
        color: #fff;
        border-radius: 10px;
    }

    .pagination .page-item select {
        background-color: #fff;
        border: none;
        border-radius: 10px;
        padding: 5px 10px;
        font-size: 14px;
    }

@media (max-width: 767px) {
    .pagination .page-item select {
        padding: 5px;
    }
}

@media (max-width: 767px) {
    .pagination .page-item small {
        font-size: 10px;
    }
}

.text-danger {
    color: var(--main_color) !important;
}

.total_amount {
    border: 1px solid #D9D4D4;
    border-radius: 10px;
    padding: 20px;
    width: 450px;
}

@media (max-width: 767px) {
    .total_amount {
        width: 100%;
    }
}

/* Data table */
.dataTables_length {
    display: none;
}

.dataTables_filter {
    display: none;
}

.dataTables_info {
    display: none;
}

.row.dt-row + .row {
    display: none;
}

.dt-row {
    margin: 0;
}

    .dt-row .col-sm-12 {
        padding: 0;
    }
/*# sourceMappingURL=style.css.map */

body.coming-soon {
    font-family: "Inter", sans-serif;
    margin: 0;
    padding: 0;
}

.coming-soon header {
    padding: 20px 10vw;
    border-bottom: 1px solid #d0ccc8;
}

    .coming-soon header .logo {
        height: 70px;
    }

.coming-soon main {
    height: calc(100vh - 315px);
    display: flex;
    justify-content: center;
    padding-top: 200px;
}

@media (max-width: 767px) {
    .coming-soon main {
        padding-top: 20px;
    }
}

.coming-soon {
    text-align: center;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .coming-soon h3 {
        font-size: 30px;
        font-weight: 400;
        margin-top: 0;
    }

    .coming-soon h1 {
        font-size: 50px;
        font-weight: 700;
        color: #e3000f;
        margin: 0;
    }

    .coming-soon h2 {
        font-size: 30px;
        font-weight: 500;
        margin-top: 0;
    }

    .coming-soon p {
        font-size: 18px;
        font-weight: 400;
        margin: 0;
    }

.mid_banner h5 {
    font-size: clamp(22px, 3.5vw, 34px);
    margin-bottom: 10px;
    color: #fff;
}
.text-link{
    color:var(--main_color);
}