@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
/* Custom Font: Moon Walk */
@font-face {
    font-family: 'Moon Walk';
    src: url('../fonts/Moon Walk.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --main-color: #175884;
    --alter-color: #99cc00;
    --text-color: #153c66;
    --main-font: 'Montserrat', sans-serif;
    --para-font: 'Montserrat', sans-serif;
    --logo-font: 'Moon Walk'
}

body {
    font-family: var(--main-font);
    color: var(--text-color);

    margin: 0;
    padding: 0;
}

/* Headings */
h1, h2, h3, h4, h5, h6, a {
    font-family: var(--main-font);
    color: var(--main-color);
}

/* Paragraphs */
p {
    font-family: var(--para-font);
    font-size: 1rem;
    line-height: 1.6;
}

.logo-font{
    font-family: var(--logo-font);
}

a{
    text-decoration: none;
    transition: all 0.3s ease;
}

.main-menu-desktop{
    list-style: none;
}

.main-menu-desktop a {
    color: var(--main-color);
    font-size: 18px;
    margin-right: 40px;
    font-weight: 600;
}

.main-menu-desktop a:hover {
    color: var(--alter-color);
}

header{
    /* position: sticky; */
    background-color: #fff;
    top: 0;
    z-index: 1000;
    padding: 25px 0;
}

.banner-content h1 {
    font-size: 60px;
    color: var(--text-color);
    font-weight: 200;
}

.theme-btn {
    background: var(--alter-color);
    border-radius: 50px;
    padding: 3px 30px;
    color: var(--text-color);
    font-size: 18px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: max-content;
}

.theme-btn i{
    margin-left: 10px;
    font-size: 30px;
    transition: all 0.3s ease;

}

.theme-btn:hover, .theme-btn:focus{
    transform: translateX(5px);
    background-color: var(--alter-color);
}

.theme-btn:hover i, .theme-btn:focus i{
    transform: translateX(5px);

}

.banner-content .theme-btn {
    margin-top: 50px;
}

.dna-bg {
    position: absolute;
    right: 0;
    top: 25%;
    z-index: -1;
}

.bg-green{
    background-color: var(--alter-color);
}

.bg-theme-blue{
    background-color: var(--main-color);
}

.text-green {
    color: var(--alter-color);
}

.main-title{
    font-size: 50px;
    font-weight: 600;

}

.about-section {
    border-radius: 0 246px 0 0;
    padding: 75px 76px !important;
}

section p.special-para{
    color: #fff;
    font-weight: 200;
    font-style: italic;
    text-align: justify;
    width: 70%;
    margin: 0;
}


.floating-col{
    display: flex;
    flex-direction: column;
    align-items: anchor-center;
    height: 100%;
    justify-content: center;
}

.wc-section{
    padding: 50px 0;
    background-color: var(--main-color);
}

.wc-ico {
    background: #fff;
    width: max-content;
    margin: 0 auto;
    padding: 20px;
    border-radius: 25px;
    box-shadow: 0 23px 29px -11px #072e49;
}


.wc-main {
    text-align: center;
}


.wcslider-nav .swiper-button-next, .wcslider-nav .swiper-button-prev{
        position: static;
    }

    .wcslider-nav .swiper-button-next:after, .wcslider-nav .swiper-button-prev:after{
        display: none;
    }

    .wcslider-nav{
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .wcslider-nav .swiper-button-next{
        margin-left: 20px;
    }

    .wcslider-nav i {
        color: var(--alter-color);
        font-size: 100px;
        display: block;
        /* margin: 0 20px; */
    }


    .wcslider-nav .swiper-button-prev.swiper-button-disabled, .wcslider-nav .swiper-button-next.swiper-button-disabled  {
        display: none;
    }

    .about-section {
        border-radius: 0 246px 0 0;
        padding: 49px 76px !important;
        min-height: 400px;
    }

    .special-heading{
        width: 100%;
        border-radius: 50px;
        font-size: 20px;
        font-weight: 700;
    }

    .about-section.course-section{
        padding-top: 79px !important;
        /* padding-right: 200px !important; */
        border-radius: 0 0 0 246px ;
    }
    .bowl-img {
        position: absolute;
        bottom: -4px;
        left: 10%;
    }

    .campus-section{
        padding: 86px 76px !important;
        display: flex;
        align-items: end;
        flex-direction: column;
    }

    .float-campus{
        align-items: unset !important;
        display: inline-block;
    }

    .footer-section{
        padding: 70px 0;
        background-color: #D9D9D9;
    }

    .footer-menu h3{
        margin-bottom: 30px;
    }
    .footer-menu ul{
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-menu ul li{
        margin-bottom: 30px;
    }

    .footer-menu ul li a{
        font-weight: 600;
    }

    .text-blue{
        color: var(--main-color);
    }

    .ham-menu span{
        display: block;
        width: 25px;
        height: 2px;
        background-color: #000;
    }

    .ham-menu span:nth-child(2){
        margin: 5px 0;
    }