@import url('https://fonts.googleapis.com/css2?family=Antonio:wght@100..700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Exo:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --light: #e0e0e0;
    --dark: #202020;
    --primary: #E21C21;
    --secondary: #ffde5f;
    --tertiary: #07ac66;
    --white: #fff;
    --black: #000;
    --back: #111111;
}

body {
    background-color: var(--white);
    font-family: "Antonio", sans-serif;
    font-size: 16px;
    color: var(--black);
    line-height: 1.2;
}

main {
    min-height: calc(100vh - 466px);
}

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

ul, ol {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 0;
}

p {
    font-family: "Exo", sans-serif;
    margin-bottom: 0;
}

span {
    font-family: "Exo", sans-serif;
}

img {
    object-fit: cover;
}

svg:focus {
    outline: 0;
    border: 0;
}

.spaceing_top {
    padding-top: 80px;
}

.spaceing_bottom {
    padding-bottom: 80px;
}

.btn {
    display: inline-block;
    font-weight: 600;
    padding: 8px 32px;
    line-height: 1;
}

.primary_btn {
    border-radius: 5px;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 600;
    padding: 10px 32px;
    font-family: "Exo", sans-serif;
    font-size: 16px;
}

.primary_btn:hover {
    border: 2px solid var(--primary);
    color: var(--white);
    background: var(--primary);
}
@media(max-width: 991px){
    .primary_btn {
        padding: 8px 25px;
        font-size: 15px;
    }
}


/* nav */

nav.navbar {
    font-family: "Exo", sans-serif;
    background-color: var(--back) !important;
}

nav.navbar .navbar-brand {
    width: 85px;
}

nav.navbar .navbar-nav .nav-item {
    padding: 0 15px;
}

nav.navbar .navbar-nav .nav-item:last-child {
    padding-right: 0;
}

nav.navbar .navbar-nav .nav-link {
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    padding: 0;
}

nav.navbar .navbar-nav .nav-link.active,
nav.navbar .navbar-nav .nav-link.show {
    color: var(--primary);
}

nav.navbar .primary_btn{
    margin-left: 30px;
}


@media(max-width: 991px){
    nav.navbar .navbar-brand {
        width: 70px;
    }

    nav.navbar .navbar-nav .nav-item {
        padding: 10px;
    }
    
    nav.navbar .navbar-nav .nav-item:last-child {
        padding-bottom: 0;
        padding-right: 0;
    }
}




/* banner */

.banner {
    position: relative;
    overflow: hidden;
}

.banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.banner .banner_images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 0;
}

.banner_images img {
    width: 100%;
}

.banner_slider .banner_item .banner_text {
    position: relative;
    z-index: 2;
    width: 50%;
    min-height: 550px;
    display: flex;
    flex-flow: column;
    padding-top: 100px;
    color: var(--white);
}

.banner_slider .banner_item .banner_text span {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
    background: var(--primary);
    width: auto;
    margin-right: auto;
    padding: 4px 10px;
    text-transform: capitalize;
}

.banner_slider .banner_item .banner_text h1 {
    font-size: 60px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 15px;
}

.banner_slider .banner_item .banner_text p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 72px;
}

.banner_watermark {
    display: block;
    font-size: 450px;
    font-weight: 500;
    color: var(--white);
    opacity: 0.2;
    position: absolute;
    line-height: 220px;
    z-index: 1;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    letter-spacing: 0.4px;
    font-family: "Antonio", sans-serif;
}

@media(max-width: 1399px){
    .banner_slider .banner_item .banner_text {
        width: 80%;
    }
    .banner_watermark {
        font-size: 310px;
    }
}

@media(max-width: 1199px){
    .banner_slider .banner_item .banner_text {
        width: 80%;
    }
    .banner_watermark {
        font-size: 290px;
    }
}

@media(max-width: 991px){
    .banner_slider .banner_item .banner_text {
        width: 100%;
        min-height: 432px;
    }
    .banner_watermark {
        font-size: 260px;
    }
}

@media(max-width: 767px){
    .banner_slider .banner_item .banner_text {
        min-height: 320px;
        padding-top: 65px;
    }
    .banner_watermark {
        font-size: 180px;
        line-height: 170px;
    }

    .banner_slider .banner_item .banner_text h1 {
        font-size: 45px;
    }

    .banner_slider .banner_item .banner_text p {
        font-size: 15px;
    }
}

@media(max-width: 575px){
    .banner_slider .banner_item .banner_text {
        min-height: 280px;
        padding-top: 55px;
    }
    .banner_watermark {
        font-size: 145px;
        line-height: 140px;
    }

    .banner_slider .banner_item .banner_text h1 {
        font-size: 35px;
    }

    .banner_slider .banner_item .banner_text p {
        font-size: 15px;
    }
    .banner_slider .banner_item .banner_text span {
        font-size: 14px;
        margin-bottom: 15px;
    }
}

@media(max-width: 499px){
    .banner_slider .banner_item .banner_text {
        min-height: 222px;
        padding-top: 45px;
    }
    .banner_slider .banner_item .banner_text h1 {
        font-size: 30px;
    }
    .banner_slider .banner_item .banner_text p {
        font-size: 12px;
    }
    .banner_watermark {
        font-size: 130px;
        line-height: 124px;
    }
}

@media(max-width: 400px){
    .banner_images img {
        width: 100%;
        min-height: 222px;
    }

    .banner_watermark {
        font-size: 100px;
        line-height: 95px;
    }
}



/* about */

.about {
    background: var(--light);
    color: var(--black);
}

.about_text {
    padding-left: 30px;
}

.about h2 {
    font-size: 45px;
    font-weight: 600;
    margin-bottom: 20px;
}

.about p {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.5;
}

.about img {
    border-radius: 15px;
}

.about img.aimg1 {
    aspect-ratio: 16/18;
}

.about img.aimg2 {
    aspect-ratio: 16/20;
}

@media(max-width:991px){
    .about_text {
        padding-left: 0;
    }

    .about h2 {
        font-size: 32px;
    }
    .about p {
        font-size: 15px;
    }
}

@media(max-width: 575px){
    .about h2 {
        font-size: 25px;
    }
}

/* services */

.services {
    background: var(--back);
    color: var(--white);
}

.services h2 {
    font-size: 45px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 25px;
}


.services_box {
    position: relative;
}

.services_box .services_in {
    width: 100%;
    height: 350px;
    position: relative;
}

.services_box .services_in::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), #000);
}

.services_box img {
    width: 100%;
    height: 100%;
}

.services_box .box_text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    padding: 25px;
    display: flex;
    flex-flow: column;
    justify-content: end;
}

.services_box .services_in .box_text h3 {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 0;
}

.services_box .services_in .time {
    display: block;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 25px;
}

.services_box .services_in .services_link {
    display: block;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    color: var(--white);
}

.services_box .overly {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--white);
    color: var(--black);
    z-index: 9;
    transition: .5s ease;
    opacity: 0;
    width: 100%;
    height: 100%;
    padding: 25px;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
}

.services_box:hover .overly {
    opacity: 1;
}

.services_box .overly h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.services_box .overly p {
    font-size: 15px;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 55px;
}

.services_box .overly .top h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: "Exo", sans-serif;
}

.services_box .overly .top h4 span{
    font-size: 16px;
    font-weight: 500;
    margin-right: 12px;
}

.services_box .overly .time {
    display: block;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 25px;
    color: var(--black);
}

.services_box .overly .services_link {
    display: block;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    color: var(--black);
}

.services_box.style1 .overly {
    opacity: 1;
}

@media(max-width:991px){
    .services h2 {
        font-size: 32px;
        margin-bottom: 15px;
    }    
}

@media(max-width: 575px){
    .services h2 {
        font-size: 25px;
    }
}


/* news */

.news {
    background: #eeeeee;
}

.news h2 {
    font-size: 45px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0;
}

.news_top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news_box {
    cursor: pointer;
}

.news_box img {
    border-radius: 10px;
    aspect-ratio: 12 / 8;
}

.news_box .box_text {
    padding: 20px 10px;
    color: var(--black);
}

.news_box .box_text h3 {
    font-size: 24px;
    color: var(--black);
    font-weight: 700;
}

.news_box .box_text .time {
    font-size: 16px;
    color: var(--back);
    font-weight: 500;
    margin-bottom: 10px;
    font-family: "Antonio", sans-serif;
    display: block;
}

.news_top .news_btn {
    color: var(--black);
    font-size: 16px;
    font-weight: 600;
    font-family: "Exo", sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.news_top .news_btn svg {
    fill: var(--primary) !important;
    width: 25px;
    height: 25px;
}

.news_top .news_btn span {
    line-height: 1;
}


@media(max-width:991px){
    .news h2 {
        font-size: 32px;
    }
    
    .news_box .box_text h3 {
        font-size: 20px;
    }
}

@media(max-width: 575px){
    .news h2 {
        font-size: 25px;
    }

    .news_top .news_btn svg {
        width: 20px;
        height: 20px;
    }
    .news_top .news_btn {
        font-size: 14px;
    }
}


/* footer */

footer{
    background: var(--back);
    padding: 60px 0 0;
}

.foot_logo{
    padding-right: 40px;
}

.foot_logo img{
    margin-bottom: 20px;
}

.foot_logo p{
    color: var(--light);
    font-size: 15px;
}

footer h5{
    font-size: 20px;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 20px;
}

.foot_list li{
    margin-bottom: 10px;
}

.foot_list .foot_link{
    color: var(--light);
    font-size: 14px;
    font-family: "Exo", sans-serif;
    line-height: 1;
}



.foot_list .foot_link svg{
    width: 18px;
    height: 18px;
    margin-right: 5px;
}

.foot_col{
    border-left: 1px solid #424242;
    padding-left: 20px;
    height: 100%;
}

.row [class*="col-"]:first-child .foot_col{
    border-left: 0;
    padding-left: 0;
}

.copyright_text{
    border-top: 1px solid #424242;
    padding: 20px 0;
    margin-top: 50px;
}

.copyright_text p{
    font-size: 15px;
    color: var(--light);
    text-align: center;
}


@media(max-width:991px){
    .copyright_text {
        margin-top: 20px;
    }
}








/* --------About page-------- */


.inner_banner{
    background: var(--light);
    padding: 65px 0;
    color: var(--black);
}

.inner_banner h1{
    font-size: 45px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 25px;
}

.inner_list {
    display: flex;
    justify-content: center;
    align-items: center;
}

.inner_item{
    margin-right: 12px;
    position: relative;
    font-size: 18px;
    padding-right: 18px;
    line-height: 1;
}
.inner_item::after{
    content: ">";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    font-size: 18px;
    font-weight: 500;
    color: var(--black);
}

.inner_item:last-child{
    margin-right: 0;
    padding-right: 0;
}
.inner_item:last-child::after{
    display: none;
}

.inner_link{
    color: var(--primary);
    line-height: 1;
}

.about.inner_about{
    background: var(--white);
}

.about_text.center_text{
    margin-top: 80px;
}

.about_ol_list{
    padding-left: 20px;
    list-style: decimal;
    margin-bottom: 30px;
}

.about_ol_list li {
    font-family: "Exo", sans-serif;
    margin-bottom: 10px;
}

.about_ol_list li span{
    font-family: "Antonio", sans-serif;
    margin-right: 10px;
    margin-left: 12px;
    font-weight: 800;
}

.about_ul_list{
    padding-left: 20px;
    list-style: disc;
    margin-bottom: 30px;
}

.about_ul_list li {
    font-family: "Exo", sans-serif;
    margin-bottom: 10px;
}





/* ---------Contact-------- */

.contact img{
    width: 100%;
    border-radius: 15px;
}

.contact h2 {
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 25px;
}

.contact .form-control{
    min-height: 48px;
    font-family: "Exo", sans-serif;
}

.contact .form-control::placeholder{
    font-size: 15px;
}

.contact .col-form-label {
    padding-top: 0;
    padding-bottom: 12px;
    line-height: 1;
    font-weight: 700;
    font-size: 17px;
}

.con_info{
    background: var(--light);
}

.con_info h2 {
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 25px;
}

.info_box {
    display: flex;
    align-items: center;
    background: var(--dark);
    padding: 30px;
    border-radius: 15px;
    height: 100%;
}

.info_box .info_left {
    margin-right: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.info_box .info_left svg {
    color: var(--white);
}

.info_right {
    width: calc(100% - 70px);
}

.info_right h3{
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white);
}

.info_right span {
    font-weight: 500;
    color: var(--white);
}


@media(max-width: 1199px){
    .info_right span {
        font-size: 15px;
    }
}

@media(max-width: 991px){
    .contact h2 {
        font-size: 32px;
    }

    .con_info h2 {
        font-size: 32px;
    }
}

@media(max-width: 575px){
    .contact h2 {
        font-size: 25px;
    }

    .con_info h2 {
        font-size: 25px;
    }
}





/* --------Result-------- */


.result_box{
    margin-bottom: 30px;
}

.result_box .form-select{
    min-height: 48px;
    font-family: "Exo", sans-serif;
    font-size: 15px;
}

.result_in{
    border: 1px solid var(--light);
    padding: 20px;
    margin-bottom: 20px;
}

.result_in:last-child{
    margin-bottom: 0;
}

.result_top {
    display: flex;
    justify-content: center;
    align-items: start;
    /* border-bottom: 1px solid var(--light);
    padding-bottom: 20px; */
    margin-bottom: 10px;
}

.result_left, .result_right{
    display: flex;
    width: 40%;
}

li.result_left {
    justify-content: end;
}

.result_image {
    width: 70px;
}

.result_top li {
    margin: 0 20px;
}

.result_image img {
    object-fit: cover;
    max-width: 100%;
    height: auto;
}

.result_text {
    display: flex;
    flex-flow: column;
}

.result_left .result_text {
    align-items: end;
    margin-right: 20px;
}

.result_right .result_text {
    align-items: start;
    margin-left: 20px;
}

.result_text span.heading {
    font-family: "Antonio", sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1;
    letter-spacing: 1px;
}

.result_text span.winner{
    color: var(--primary);
    font-size: 15px;
    font-weight: 500;
}

.result_mid{
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    width: 20%;
    text-align: center;
}

.result_bottom{
    display: flex;
    flex-flow: column;
    align-items: center;
}

.result_list {
    display: flex;
    flex-flow: column;
    font-family: 'Antonio';
    font-size: 14px;
    font-weight: 500;
    align-items: center;
    margin-bottom: 20px;
}

.result_list li{
    margin-bottom: 8px;
}

.result_list li:last-child{
    margin-bottom: 0;
}



/* -------schedule------- */

/* .schedule_full{
    margin-bottom: 30px;
} */

.schedule_full .form-select{
    min-height: 48px;
    font-family: "Exo", sans-serif;
    font-size: 15px;
}

.schedule_list {
    display: flex;
    justify-content: center;
    align-items: center;
    /* margin-bottom: 10px; */
}

.schedule_left, .schedule_right{
    display: flex;
    align-items: center;
}

.schedule_image {
    width: 50px;
}

.schedule_top li {
    margin: 0 20px;
}

.schedule_image img {
    object-fit: cover;
    max-width: 100%;
    height: auto;
}

.schedule_text {
    display: flex;
    flex-flow: column;
}

.schedule_left .schedule_text {
    align-items: end;
    margin-right: 10px;
}

.schedule_right .schedule_text {
    align-items: start;
    margin-left: 10px;
}

.schedule_text span.heading {
    font-weight: 500;
    line-height: 1;
    letter-spacing: 1px;
}

.schedule_mid{
    font-family: "Exo", sans-serif;
    font-weight: 500;
    font-weight: 600;
    line-height: 1;
    margin: 0 10px;
}

.schedule_table thead tr {
    height: 60px;
    vertical-align: middle;
}

.schedule_table thead tr th {
    font-size: 18px;
    font-weight: 400;
    text-wrap: nowrap;
}

.schedule_table tbody tr th, 
.schedule_table tbody tr td{
    vertical-align: middle;
    font-family: "Exo", sans-serif;
    font-size: 15px;
    font-weight: 500;
    text-wrap: nowrap;
}

.schedule_table thead tr th:last-child,
.schedule_table tbody tr th:last-child, 
.schedule_table tbody tr td:last-child{
    text-align: center;
}


.schedule_box{
    border: 1px solid var(--light);
    padding: 20px;
}

.schedule_box_top {
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid var(--light);
    padding: 12px;
    background: var(--dark);
    color: var(--white);
}

.schedule_box_top li{
    margin: 0 12px;
}

.schedule_box_top li:first-child{
    margin-left: 0;
}

.schedule_box_top li:last-child{
    margin-right: 0;
}

.schedule_box_top li img{
    max-width: 100%;
    width: 65px;
    height: auto;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 1 / 1;
}

.schedule_box_top li p{
    font-size: 18px;
    font-weight: 500;
    font-family: "Antonio", sans-serif;
    letter-spacing: 1px;
    text-align: center;
}

.schedule_box_list{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    border-bottom: 1px solid var(--light);
    padding-bottom: 15px;
}

.schedule_box_list:last-child{
    margin-top: 15px;
    border-bottom: 0;
    padding-bottom: 0;
}

.schedule_box_list .schedule_in_list{
    display: flex;
    align-items: center;
}

.schedule_box_list .schedule_in_list li{
    margin-right: 10px;
    padding-right: 16px;
    position: relative;
}

.schedule_box_list .schedule_in_list li:last-child{
    margin-right: 0;
    padding-right: 0;
}

.schedule_box_list .schedule_in_list li::after{
    content: "/";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--dark);
}

.schedule_box_list .schedule_in_list li:last-child::after{
    display: none;
}

.schedule_box_list .heading{
    font-size: 16px;
    font-weight: 600;
}

.schedule_box_list .schedule_in_list span{
    font-size: 15px;
    font-weight: 500;
}




/* -------LeaderBoard------- */

.leaderboard_full .form-select{
    min-height: 48px;
    font-family: "Exo", sans-serif;
    font-size: 15px;
}

.leaderboard_box{
    border: 1px solid var(--light);
    padding: 40px 20px 0;
    border-radius: 10px;
}

.leaderboard_box h2{
    font-size: 35px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 20px;
    color: var(--black);
    text-align: center;
}

.leaderboard_table{
    margin-bottom: 0;
}

.leaderboard_table .table_logo{
    width: 65px;
    object-fit: cover;
}

.leaderboard_table tbody tr th, 
.leaderboard_table tbody tr td{
    vertical-align: middle;
    font-family: "Exo", sans-serif;
    /* font-size: 15px; */
    font-weight: 500;
    text-wrap: nowrap;
}

.leaderboard_table thead tr {
    height: 50px;
    vertical-align: middle;
}

.leaderboard_table tbody tr:last-child {
    border-bottom: 1px solid transparent;
}

.login_form .form-control,
.login_form .form-select{
    min-height: 48px;
    font-family: "Exo", sans-serif;
    font-size: 15px;
}

.login_form .form-control::placeholder{
    font-size: 15px;
}

.login_form .col-form-label {
    padding-top: 0;
    padding-bottom: 12px;
    line-height: 1;
    font-weight: 700;
    font-size: 17px;
}

.forget_para,
.forget_para a{
    text-align: end;
    font-family: "Exo", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--dark);
}

.sign_para a,
.sign_para {
    text-align: center;
    font-family: "Exo", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--dark);
}

.sign_para a{
    color: var(--primary);
    margin-left: 5px;
}

.sign_para a:hover{
    color: #818181;
}


.red_star{
    color: var(--primary);
}

.registration_form .form-control,
.registration_form .form-select{
    min-height: 48px;
    font-family: "Exo", sans-serif;
    font-size: 15px;
}

.registration_form .form-control::placeholder{
    font-size: 15px;
}

.registration_form .col-form-label {
    padding-top: 0;
    padding-bottom: 12px;
    line-height: 1;
    font-weight: 700;
    font-size: 17px;
}