@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Courgette&family=Kavoon&display=swap');

:root {
    --primary-color: #418e61;
    --primary-font: 'Montserrat', sans-serif;
    --secondary-font: 'Poppins', sans-serif;
    --fancy-font: 'Courgette', cursive;


    --primary-shadow: 0 2px 8px hsla(220, 68%, 12%, .1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* background: #f8f8f8; */
    font-family: var(--primary-font);
    /* font-family: var(--secondary-font); */
    position: relative;
    overflow-x: hidden;
}

.large-device-only {
    display: block;
}

.small-device-only {
    display: none;
}

html {
    scroll-behavior: smooth;
}

ul {
    list-style: none;
    padding-left: 0;
}

a {
    text-decoration: none;
}

.main-btn {
    display: inline-flex;
    align-items: center;
    column-gap: 5px;
    background-color: var(--primary-color);
    padding: .7rem 1.5rem;
    color: #fff;
    border-radius: 50px;
    font-weight: 500;
    text-transform: uppercase;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.main-btn i {
    font-size: 18px;
    transition: transform .3s;
}

.main-btn:hover {
    color: #fff;
}

.main-btn:hover i {
    transform: translateX(.25rem);
}

.main-btn-2 {
    display: inline-flex;
    gap: 5px;
    align-items: center;
    background: #fff !important;
    border: 2px solid var(--primary-color) !important;
    color: var(--primary-color);
}

.main-btn-2:hover {
    color: var(--primary-color);
}

.section_heading {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    letter-spacing: 1px;
    font-family: var(--primary-font);
    color: #000;
    padding: 30px 0;
}

section {
    padding: 50px 0;
}

.grid {
    display: grid;
    margin-bottom: 0px;
}

/* Custom Css end */



.header-top {
    background-color: var(--primary-color);
    padding: 3px 0;
}

.header-top .container {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.header-top .left a {
    color: #fff;
    display: inline-flex;
    gap: 5px;
    align-items: center;
    margin-right: 20px;
}

.header-top .right a {
    color: #fff;
    margin-right: 10px;
    font-size: 20px;
}

/* Header top css end*/

header .navbar {
    border-bottom: 1px solid var(--primary-color);
    padding: 0
}

header .navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    width: 250px;
}

header .navbar .aff-number h3 {
    font-size: 16px;
    margin-top: 20px;
    /* color: var(--primary-color); */
    font-weight: 400;
    margin-bottom:5px;
}
header .navbar .aff-number a{
    color:#000;
    display:inline-flex;
    gap:5px;
}

/* header .navbar .social-icons{
    display: flex;
    align-items: center;
    gap: 10px;
}
header .navbar .social-icons a{
    font-size: 20px;
    padding: 0px 5px;
    border: 1px solid var(--primary-color);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    background-color: var(--primary-color);
    color: #fff;
} */


.header-social-icons {
    display: flex;
    gap: 1rem;
    /* justify-content: center; */
}

.header-social-icons .header_social_link {
    position: relative;
    cursor: pointer;
    display: flex;
    width: 40px;
    height: 40px;
    border-radius: 30px;
    overflow: hidden;
    text-decoration: none;
    /* border: 1px solid var(--primary-color); */
    color: var(--primary-color);
}

.header-social-icons .header_social_link::after,
.header-social-icons .header_social_link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    transition: all 0.50s ease;
    border-radius: 30px;
}

.header-social-icons .header_social_link i {
    position: relative;
    color: var(--primary-color);
    font-size: 20px;
    margin: auto;
    transition: all 0.25s ease;
}

.header-social-icons .header_social_link::after {
    transition-duration: 0.5s;
    box-shadow: inset 0 0 0 1px var(--primary-color);
}

.header-social-icons .header_social_link:hover::before {
    background: var(--primary-color);
    box-shadow: inset 0 0 0 60px #151515;
}

.header-social-icons .header_social_link:hover i {
    color: #fff;
}

.header-social-icons .header_social_link:hover::before {
    box-shadow: inset 0 0 0 1px #151515;
}







nav {
    background: var(--primary-color);
    position: absolute;
    width: 100%;
    z-index: 999;
    height: 65px;
    line-height: 65px;
}

nav .wrapper {
    position: relative;
    margin: auto;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}



.wrapper .nav-links {
    display: inline-flex;
}

.nav-links li a {
    color: #fff;
    text-decoration: none;
    padding: 9px 0px;
    padding-right: 30px;
    font-size: 16px;
}

.nav-links .drop-menu {

    background-color: var(--primary-color);
    /* margin-top: 10px; */
    width: auto;
    top: 85px;
    line-height: 45px;
    position: absolute;
    opacity: 0;
    visibility: hidden;
    box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.085);
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box {
    top: 65px;
    opacity: 1;
    visibility: visible;
    transition: all .3s ease;

}

.drop-menu li a {
    width: 250px;
    display: block;
    padding: 0px 10px;
    font-weight: 400;
}

.width-menu li a {
    width: 250px;
}

.drop-menu li:hover {
    background-color: rgba(255, 255, 255, 0.246);
}

.drop-menu li:hover:nth-last-child(1) {
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.drop-menu li:nth-last-child(1):hover a {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.nav-links .mobile-item {
    display: none;
}

.wrapper .btn {
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    display: none;
}

.wrapper .btn.cancel-btn {
    position: absolute;
    right: 10px;
    top: 10px;
    color: #fff;
}

@media screen and (max-width:970px) {
    .wrapper .btn {
        display: block;
        margin-top: -5px;
    }

    .wrapper .nav-links {
        position: fixed;
        height: 100vh;
        width: 100%;
        max-width: 350px;
        background-color: #242526;
        display: block;
        top: 0;
        left: -100%;
        line-height: 50px;
        overflow-y: auto;
        padding: 50px 10px;
        box-shadow: 0 15px 15px rgba(0, 0, 0, 0.15);
        transition: all .3s ease;
    }

    .nav-links li a {
        color: #fff;
    }

    #menu-btn:checked~.nav-links {
        left: 0%;
    }

    #menu-btn:checked~.btn.menu-btn {
        display: none;
    }

    #menu-btn:checked~.search_box {
        display: none;
    }

    .nav-links::-webkit-scrollbar {
        width: 0px;
    }

    .nav-links li {
        margin: 15px 10px;
    }

    .nav-links li a {
        /* padding: 0 20px; */
        display: block;
        font-size: 20px;
    }

    .nav-links .drop-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        top: 65px;
        padding-left: 0px;
        width: 100%;
        max-height: 0px;
        overflow: hidden;
        transition: all .3s ease;
        background: #fff;
    }

    #showAbout:checked~.drop-menu,
    #showAcademic:checked~.drop-menu,
    #showAdministration:checked~.drop-menu,
    #showGallery:checked~.drop-menu {
        max-height: 100%;
    }

    .nav-links .drop-menu li {
        margin: 0;
        padding: 10px;
    }

    .nav-links .drop-menu li a {
        font-size: 18px;
        border-radius: 5px;
        color: var(--primary-color);
    }

    .nav-links .desktop-item {
        display: none;
    }

    .nav-links .mobile-item {
        display: inline-flex;
        font-size: 20px;
        color: #fff;
        font-weight: 500;
        /* padding-left: 20px; */
        cursor: pointer;
        border-radius: 5px;
        transition: all .3s ease;
    }

    .nav-links .mobile-item i {
        margin-left: 5px;
    }

    .mega-box {
        position: static;
        top: 65px;
        width: 100%;
        opacity: 1;
        visibility: visible;
        max-height: 0px;
        overflow: hidden;
        transition: all .3s ease;
    }

    .mega-box .content {
        flex-direction: column;
        padding: 20px 20px 0 20px;
    }

    .mega-box .content .row {
        width: 100%;
        margin-bottom: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
}

.wrapper input {
    display: none;
}

.notification {
    height: 40px;
    overflow: hidden;
    /* padding: 10px 0; */
}

.notification h6 {
    background-color: var(--primary-color);
    font-size: 16px;
    /* padding: 10px; */
    color: #fff;
    letter-spacing: 2px;
    height: 40px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    margin: 0;
}

.notification marquee {
    background-color: #e9f8fa;
    /* border-bottom: 1px solid #f7f7f7; */
    /* padding: 10px 0; */
    height: 40px;
    display: flex;
    align-items: center;
}

.notification a {
    position: relative;
    color: #000;
    font-size: 16px;
    margin-right: 30px;

}

.notification a::after {
    position: absolute;
    content: '';
    width: 10px;
    height: 10px;
    background-color: var(--light-blue);
    top: 50%;
    transform: translateY(-50%);
    left: -20px;
    border-radius: 50%;
}

.search {
    position: relative;
    width: 300px;
    height: 50px;
    background-color: #fff;
    box-shadow: 0 4px 24px hsla(222, 68%, 12%, .1);
    border-radius: 4rem;
    padding: 10px;
    overflow: hidden;
    margin-top: -18px;
}

.search_input {
    /* background-color: antiquewhite; */
    border: none;
    outline: none;
    width: calc(100% - 45px);
    height: 100%;
    border-radius: 4rem;
    padding-left: 14px;
    display: block;
}

.wrapper input[type="search"] {
    display: block;
}

.search_btn {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 10px;
    margin: auto;
    display: grid;
    place-items: center;
    cursor: pointer;
}

.search_icon,
.search_close {
    color: #fff;
    font-size: 1rem;
    position: absolute;
}




/* Header top css Start*/


/* Main Header css end */




/* Main wrapper css start */
.main_wrapper {
    /* position: relative; */
    /* max-height: 90vh; */
    /* max-width: 100%; */
    /*background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, .6), rgba(0, 0, 0, 0.4)), url(../images/slider/slider-1.jpeg);*/
    background-size: cover;
    /* background-position: center; */
}

.main_wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    /* height: 90vh;
    width:max-content; */
}

.video-wrapper {
    /* Telling our absolute positioned video to 
    be relative to this element */
    position: relative;

    width: 100%;
    height: 90vh;

    /* Will not allow the video to overflow the 
    container */
    overflow: hidden;

    /* Centering the container's content vertically 
    and horizontally */
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main_wrapper .overlay {
    position: absolute;
    background-image: url(../images/slider/banner-overlay.png);
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: .5;
}

.main_wrapper .swiper-slide.one {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, .6), rgba(0, 0, 0, 0.4)), url(../images/slider/slider-1.jpeg);
    height: 100vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    padding-top: 100px;
}

.main_wrapper .swiper-slide.two {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, .6), rgba(0, 0, 0, 0.4)), url(../images/slider/slider-2.jpeg);
    height: 100vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    padding-top: 100px;
}

.main_wrapper .swiper-slide.three {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, .6), rgba(0, 0, 0, 0.4)), url(../images/slider/slider-3.jpeg);
    height: 100vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    padding-top: 100px;
}

.main_wrapper .swiper-button-prev {
    left: 60px;
}

.main_wrapper .swiper-button-next, .swiper-button-prev {
    /* top: 55% !important; */
    width: 40px !important;
    height: 40px !important;
    border-radius: 50px;
    color: #fff !important;
    background-color: var(--primary-color);
}

.main_wrapper .swiper-button-next {
    right: 60px !important;
}

.main_wrapper .swiper-button-next::after, .swiper-button-prev::after {
    font-size: 25px !important;
}

.main_wrapper .banner_content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    z-index: 1;
    /* background:linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, .6), rgba(0, 0, 0, 0.4)) */
}

.main_wrapper .banner_content h6 {
    font-size: 20px;
    text-transform: uppercase;
    color: #fff;
}

.main_wrapper h1 {
    font-size: 70px;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1;
    font-family: var(--primary-color);
    text-transform: capitalize;
    color: #fff;
}

/* .main_wrapper .search_box {
    width: fit-content;
    height: fit-content;
    position: relative;
    margin-top: 15px;
}

.main_wrapper .search_box .input-search {
    height: 50px;
    width: 50px;
    border-style: none;
    padding: 10px;
    font-size: 18px;
    letter-spacing: 2px;
    outline: none;
    border-radius: 25px;
    transition: all .5s ease-in-out;
    background-color: var(--primary-color);
    padding-right: 40px;
    color: #fff;
}

.main_wrapper .search_box .input-search::placeholder {
    color: rgba(255, 255, 255, .5);
    font-size: 18px;
    letter-spacing: 2px;
    font-weight: 100;
}

.main_wrapper .search_box .btn-search {
    width: 50px;
    height: 50px;
    border-style: none;
    font-size: 20px;
    font-weight: bold;
    outline: none;
    cursor: pointer;
    border-radius: 50%;
    position: absolute;
    right: 0px;
    color: #fff;
    background-color: transparent;
    pointer-events: painted;

}

.main_wrapper .search_box .btn-search:focus~.input-search {
    width: 300px;
    border-radius: 0px;
    background-color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, .5);
    transition: all 500ms cubic-bezier(0, 0.110, 0.35, 2);
}

.main_wrapper .search_box .input-search:focus {
    width: 300px;
    border-radius: 0px;
    background-color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, .5);
    transition: all 500ms cubic-bezier(0, 0.110, 0.35, 2);
} */

.main_wrapper .event_wrapper {
    position: absolute;
    bottom: 10px;
    left: 40%;
    transform: translateX(-33%);
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.16);

    border-radius: 20px;

}

.main_wrapper .events {

    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
    flex-wrap: wrap;
    row-gap: 10px;


}

.main_wrapper .events .event {
    max-width: 150px;
    height: 100%;
    border-radius: 10px;
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.197);
    transition: all .3s;
}

.main_wrapper .events .event:hover {
    transform: scale(1.05);
}

.main_wrapper .events .event img {
    width: 100%;
    border-radius: 10px;
}

.modal-btn {
    position: fixed;
    top: 30%;
    transform: rotate(270deg);
    right: -50px;
    z-index: 99999;
    background-color: var(--primary-color);
    padding: 10px;
    border: none;
    color: #fff;
    font-weight: 500;
}



.event_wrapper .events {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.event_wrapper .events .event {
    max-width: 100%;
    padding: 10px;
    background-color: #fff;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.085);

}

.event_wrapper .events .event:hover img {
    transform: scale(1.05);
}

.event_wrapper .events .event img {
    width: 100%;
    transition: all .3s;
}

/* Main wrapper css end */


.event_detail_wrapper{
    padding: 150px 0 50px;
}
.event_detail_wrapper .grid{
    display: grid;
    grid-template-columns: 25% 75%;
    gap: 50px;
}
.event_detail_wrapper .grid .nav button{
    text-align: left;
}
.event_detail_wrapper .left button {
    background-color: #f8f8f8;
    margin-bottom: 10px;
    text-align: left;
    color: #000;
}
.event_detail_wrapper .grid .nav button.active{
    background-color: var(--primary-color);
}



/* homepage about css start */

.about_wrapper_home {
    background-color: #fff;
    padding-top: 75px;
    padding-bottom: 0;
}

.about_wrapper_home .container {
    display: grid;
    grid-template-columns: 50% 50%;
    align-items: center;
}

.about_wrapper_home .left h6 {
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 0;
}

.about_wrapper_home .left h2 {
    font-size: 50px;
    font-weight: 700;
    line-height: 60px;
    margin-bottom: 30px;
}

.about_wrapper_home p {
    font-size: 16px;
    line-height: 2;
}

.about_wrapper_home ul {
    margin-top: 30px;
    display: flex;
    gap: 40px;
    list-style: disc;
    padding-left: 15px;
}

.about_wrapper_home ul li {
    margin-bottom: 10px;
}

.about_wrapper_home .right {
    background-repeat: no-repeat;
    background-position: center;
}

.about_wrapper_home .boxes {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    text-align: center;
    margin-bottom: 20px;
}

.about_wrapper_home .boxes .box {
    background-color: #fff;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.169);
    padding: 30px;
    cursor: pointer;
    width: 200px;
}

.about_wrapper_home .boxes .box i {
    font-size: 30px;
    margin-bottom: 10px;
}

.about_wrapper_home .boxes .box h4 {
    font-size: 16px;
    text-transform: capitalize;
    line-height: 22px;
    font-weight: 600;
}

.about_wrapper_home .boxes .box h4 span {
    color: var(--primary-color);
}


/* homepage about css end */





/* Feature Slider Css start */

.features_wrapper {
    background-color: #f8f8f8;
}

.features_wrapper .featureSlider {
    padding: 70px 20px;
}

.features_wrapper .featureSlider .swiper-slide {
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.089);
}

.features_wrapper .featureSlider .swiper-slide .image-box {
    width: 100%;
    /* height: 300px; */
}

.features_wrapper .featureSlider .swiper-slide .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.features_wrapper .featureSlider .swiper-slide .feature_details {
    padding: 20px 10px;
    background-color: #fff;
    border: 1px solid transparent;
    border-top: none;
    transition: all .3s;
    cursor: pointer;
    border-radius: 20px;
}



.features_wrapper .featureSlider .swiper-slide .feature-name {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.features_wrapper .featureSlider .swiper-slide .feature-desc {
    height: 100px;
    text-overflow: ellipsis;
    overflow: hidden;
}

.features_wrapper .featureSlider .swiper-slide .main-btn {

    display: none;
    gap: .2rem;
    width: fit-content;
    align-items: center;
    justify-content: center;
}

.features_wrapper .swiper-wrappper {
    position: relative;
}

.features_wrapper .swiper-button-next {
    position: absolute;
    top: 30px;
    right: 10px;
    background-color: var(--primary-color);
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.169);
    padding: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    color: #fff;
}

.features_wrapper .swiper-button-prev {
    background-color: var(--primary-color);
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.169);
    padding: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    position: absolute;
    top: 30px;
    left: 92.5%;
    color: #fff;
}

.features_wrapper .swiper-button-next:after,
.features_wrapper .swiper-button-prev:after {
    font-size: 20px !important;
    font-weight: 900 !important;
}

/* Feature Slider Css end */




.contact_wrapper {
    padding: 100px 0;
    background-color: #f8f8f8;
}

.contact_wrapper .grid {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 2.5rem;
}

.contact_wrapper .container {
    grid-template-columns: 60% 30%;
    gap: 50px;
}

.contact_wrapper .form-label {
    font-size: 14px;
}

/* .contact_wrapper .left{
    text-align: center;
} */
.contact_wrapper .left h3 {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 20px;
}

.contact_wrapper .left a {
    margin-right: 30px;
    display: inline-flex;
    font-size: 16px;
    color: #000;
}

.contact_wrapper .left a i {
    margin-right: 5px;
}

.contact_wrapper .left p {
    margin-top: 10px;
    font-size: 18px;
}

.contact_wrapper .left span {
    font-size: 16px;
}

.contact_wrapper iframe {
    margin-top: 15px;
    border-radius: 10px;
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.188);
}


.contact_wrapper .right input {
    height: 45px;
    border-radius: 0;
    font-size: 16px;
    border: none;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.188);
}

.contact_wrapper .right textarea {
    border: none;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.188);
}

.contact_wrapper .right input:focus,
.contact_wrapper .right textarea:focus {
    outline: none;
    box-shadow: none;
}

.contact_wrapper .right input::placeholder .contact_wrapper .right textarea::placeholder {
    font-size: 14px;
    font-weight: 200 !important;
}


.contact_wrapper .address_box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: 50px;
    background-color: #fff;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.085);
}

.contact_wrapper .address_box .box .icon {

    margin-bottom: 15px;
    text-align: center;
}

.contact_wrapper .address_box .box .icon i {
    font-size: 40px;
}

.contact_wrapper .address_box .box {
    text-align: center;
}

.contact_wrapper .address_box .box a {
    color: #000;
}


.testimonial_wrapper {
    /* background-color: #f8f8f8; */
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, .6), rgba(0, 0, 0, 0.4)), url(../images/about/section-6.jpeg);
    /* background: url(../images/about/section-6.jpeg); */
    background-size: cover;
    background-attachment: fixed;
    height: 90vh;
    /* padding: 50px 0; */
}

.testimonial_wrapper .testimonialSlider h3 {
    color: #fff;
}

.testimonial_wrapper .testimonialSlider {
    padding: 100px 20px;
}

.testimonial_wrapper .testimonialSlider .swiper-slide {
    margin-top: 50px;
}

.testimonial_wrapper .testimonial_card {
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.089);
    padding: 20px;
    border-radius: 20px;
}

.testimonial_wrapper .testimonial_card .profile_details {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.testimonial_wrapper .testimonial_card .profile_details .profile-img {
    width: 60px;
    height: 60px;

}

.testimonial_wrapper .testimonial_card .profile_details .profile-img img {
    width: 100%;
    height: 100%;
    border-radius: 50px;
    object-fit: cover;
}

.testimonial_wrapper .testimonial_card .profile_details h6 {
    margin-bottom: 0;
}



.testimonial_wrapper .swiper-wrappper {
    position: relative;
}

.testimonial_wrapper .swiper-button-next {
    position: absolute;
    top: 130px;
    right: 10px;
    background-color: var(--primary-color);
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.169);
    padding: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    color: #fff;
}

.testimonial_wrapper .swiper-button-prev {
    background-color: var(--primary-color);
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.169);
    padding: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    position: absolute;
    top: 130px;
    left: 92.5%;
    color: #fff;
}

.testimonial_wrapper .swiper-button-next:after,
.testimonial_wrapper .swiper-button-prev:after {
    font-size: 20px !important;
    font-weight: 900 !important;
}













/* footer css start */

.footer {
    /* background-color: #ebedee; */
    background: url(../images/footer-bg.png);
    background-size: cover;
    background-position: top;
    position: relative;
    padding-block: 3rem 2rem;
    overflow: hidden;
}

.footer_container {
    grid-template-columns: repeat(4, 1fr);
    row-gap: 3rem;
}

.footer_logo {
    display: inline-flex;
    text-align: center;
    justify-content: center;
    margin-bottom: 2.5rem;
    /* margin-left: 30px; */
}

.footer_logo img {
    width: 250px;
}

.footer_description,
.footer_link,
.footer_information {
    font-size: 16px;
}

.footer_content,
.footer-links {
    display: grid;
}

.footer_content {
    padding: 50px 0;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.footer_content .footer-links {
    padding: 0;
}

.footer_content .footer-links li {
    margin-bottom: 15px;
}

.footer_content .footer-links li a {
    color: #fff;
}

.footer_content .footer-links li .footer_content .footer-links .footer_link {
    row-gap: 20px;
}

.footer_content .news_letter input {
    width: 100%;
    height: 40px;
    padding: 0px 10px;
    margin-bottom: 1rem;
    border: none;
    border-radius: 10px;
}

.footer_content .news_letter .input_icon {
    position: relative;
}

.footer_content .news_letter i {
    position: absolute;
    top: 7px;
    right: 10px;
    color: rgb(136, 136, 136);
}

.footer_content .news_letter input:focus {
    border: 1px solid var(--primary-color) !important;
}

.footer_content button {
    border: 0;
}

.footer p {
    color: #fff;
}

.footer_title {
    font-size: 20px;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: #fff;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-left: 40px;
    /* justify-content: center; */
}

.footer-social .footer_social_link {
    position: relative;
    cursor: pointer;
    display: flex;
    width: 40px;
    height: 40px;
    border-radius: 30px;
    overflow: hidden;
    text-decoration: none;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.footer-social .footer_social_link::after,
.footer-social .footer_social_link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    transition: all 0.50s ease;
    border-radius: 30px;
}

.footer-social .footer_social_link i {
    position: relative;
    color: #fff;
    font-size: 23px;
    margin: auto;
    transition: all 0.25s ease;
}

.footer-social .footer_social_link::before {
    transition-duration: 0.5s;
    box-shadow: inset 0 0 0 1px #f8f7f3;
}

.footer-social .footer_social_link:hover::before {
    box-shadow: inset 0 0 0 60px var(--primary-color);
}

.footer-social .footer_social_link:hover i {
    color: #fff;
}

.footer .footer-4 p {
    margin-bottom: 15px;
    display: inline-flex;
    gap: 5px;
}

.footer .footer-4 p a {
    color: #fff;
    display: inline-flex;
    gap: 5px;
}

.footer .footer-4 p a:hover span {
    text-decoration: underline;
}

.footer .footer-4 p:hover i {
    text-decoration: none !important;
}

.footer_copy {
    padding-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-top: 1px solid #fff;
    color: #fff;
}





.home_contact_wrapper {
    background: url(../images/contact-bg.png);
    background-size: cover;
    background-color: #f8f8f8;
    padding: 100px 0;
    position: relative;
}

.home_contact_wrapper .kidimg-1 {
    position: absolute;
    top: 0;
    left: 30px;
    width: 200px;
}

.home_contact_wrapper .kidimg-2 {
    position: absolute;
    top: 500px;
    right: 30px;
    width: 200px;
}

.home_contact_wrapper .container {
    /* max-width: 820px !important; */
    margin: 0 auto;
}

.home_contact_wrapper form {
    padding-top: 50px;
}

.home_contact_wrapper .input-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 1.5rem;
}

.home_contact_wrapper .input-box input {
    width: 100%;
    height: 45px;
    border-radius: 0;
}

.home_contact_wrapper textarea {
    border-radius: 0;
}

.home_contact_wrapper .input-box input:focus,
.home_contact_wrapper textarea:focus {
    box-shadow: none;
    outline: 1px solid var(--main-color);
}

.home_contact_wrapper .main-btn {
    border: none;
    margin: 20px auto;
    display: flex;
    gap: 5px;
}





.sidebar {
    padding: 100px 0px 30px;
}

.sidebar h6 {
    font-size: 22px;
    margin-bottom: 20px;
}

.sidebar .img-fluid {
    margin-bottom: 20px;
}

.sidebar .latest_news {
    margin: 50px 0;
}

.sidebar .latest_news a {
    padding-bottom: 15px;
}



.all_page_gallery {
    padding-top: 50px;
}

.all_page_gallery div {
    display: flex;
    gap: 20px;
}


/* about page wrapper css start */





.board_members .grid_row {
    display: grid;
    grid-template-columns: 30% 70%;
    gap: 50px;
    margin-bottom: 100px;
}

.board_members .left button {
    background-color: #f8f8f8;
    margin-bottom: 10px;
    text-align: left;
    color: #000;
}

.board_members .left button.active {
    background-color: var(--primary-color);
}


.about_page_wrapper{
    padding: 150px 0 50px;
}
.about_page_wrapper .grid_row{
    margin-bottom: 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}






.small-device-only .accordion button:focus {
    box-shadow: none;
    outline: none;
}

.accordion-button:not(.collapsed) {
    color: #fff;
    background-color: var(--primary-color);
}

.accordion-button::after {
    background-image: url(../PLUS.png);
}

.accordion-button:not(.collapsed)::after {
    background-image: url(../minus.png);
}



/* about page wrapper css end */











.board_members {
    padding-top: 100px;
}

/* .board_members .container {
    max-width: 1024px;
} */

.board_members .grid {
    grid-template-columns: 25% 70%;
    margin-bottom: 100px;
    gap: 20px;
}

.board_members .grid img {
    border-radius: 10px;
}

.board_members .grid h3 {
    font-size: 22px;
    font-weight: 600;
}

.board_members .grid h6 {
    font-size: 16px;
    margin-bottom: 20px;
}





.career_wrapper .career_box {
    background-color: #fff;
    padding: 50px;
    max-width: 800px;
    margin: auto;
    border-radius: 20px;
}

.career_wrapper .career_box .box {
    margin-bottom: 30px;
}

.career_wrapper .career_box .box input {
    height: 45px;
    border-radius: 0;
}

.career_wrapper .career_box .box input:focus {
    box-shadow: none;
    outline: none;
}

.career_wrapper .career_box .box input::placeholder {
    font-size: 14px;
}







.news_events {
    padding-top: 100px;
}

.news_events .news_event {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 30px;
    row-gap: 50px;

}

.news_events .news_event .single-box {
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.169);
    border-radius: 10px;
}

.news_events .news_event .image-box {
    width: 100%;
    height: 300px;
}

.news_events .news_event .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.news_events .news_event .course_details {
    padding: 20px 10px;
    background-color: #fff;
    border: 1px solid transparent;
    border-top: none;
    transition: all .3s;
    cursor: pointer;
}

.news_events .news_event .course_details:hover {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    border-top: 0;
}

.news_events .news_event .course-name {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 10px;
    height: 50px;
}

.news_events .news_event .course-desc {
    max-height: 70px;
    text-overflow: ellipsis;
    /* width: 200px; */
    /* white-space: nowrap; */
    overflow: hidden;
}

.news_events .news_event .main-btn {

    display: flex;
    gap: .2rem;
    width: fit-content;
    align-items: center;
    justify-content: center;
}




.news_single .grid {
    grid-template-columns: 70% 30%;
    gap: 70px;
}

.news_single .grid .image_box {
    max-width: 70%;
}

.news_single .grid .news_box img {
    width: 100%;
    margin-bottom: 30px;
}

.news_single .news_box .news_title {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 20px;
}

.news_single .news_box .news_desc {
    margin-bottom: 30px;
}

.news_single .more_news_box .news {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.news_single .more_news_box .news .news_iamge {
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 10px;
}

.news_single .more_news_box .news .news_iamge img {
    width: 100%;
    height: 100%;
    border-radius: 10px;

}

.news_single .more_news_box .news .news_details h3 {
    font-size: 20px;
    color: #000;
}

.news_single .more_news_box .news .news_details h3:hover {
    text-decoration: underline;
}




.gallery_news {
    padding: 70px 0;
    background-color: #fff;
    position: relative;
}

.gallery_news .bg-img-2 {
    position: absolute;
    top: 0;
    left: 0;
    height: 300px;
}

.gallery_news .bg-img-3 {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 150px;
}

.gallery_news .bg-img-5 {
    position: absolute;
    bottom: -50px;
    right: 0;
    height: 300px;
}

.gallery_news .grid {
    grid-template-columns: 70% 30%;
}

.gallery_news .grid h3 {
    font-weight: 600;
    margin-bottom: 30px !important;
    border-bottom: 2px solid rgb(39, 174, 96);
    width: fit-content;
    padding-bottom: 5px;
}

.gallery_news .grid .gallery .items {
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 20px;
}

.gallery_news .grid .gallery .items .item {
    max-width: 250px;
}

.gallery_news .grid .gallery .items .item img {
    width: 100%;
    border-radius: 10px;
}

.gallery_news .downloads .item {
    background-color: #9783f845;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.gallery_news .downloads .item_name {
    display: flex;
    align-items: center;
    gap: 5px;
}

.gallery_news .downloads a {
    font-size: 22px;
    line-height: 1;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    color: #000;
}

.gallery_news .downloads img {
    width: 25px;
    height: 25px;
    margin-right: 10px;
}


/* .gallery_news .news-box {
    display: flex;
    gap: 30px;
}

.gallery_news .news-box .news-img {
    width: 320px;

}

.gallery_news .news-box .news-img img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.gallery_news .news-box .news-title {
    font-weight: 600;
    color: #000;
}

.gallery_news .news-box .news-desc {
    color: #000;
} */

.gallery_news .news-box:hover .news-title {
    text-decoration: underline;
}

.gallery_news .news .newsSlider {
    max-height: 460px;
}





.contact-home .grid {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    /* align-items: center; */
}

.contact-home iframe {
    border-radius: 10px;
}

.contact-home .form .box {
    margin-bottom: 20px;
}

.contact-home .form .form-label {
    color: rgb(118, 118, 118);
    margin-bottom: 0;
}

.contact-home .form input {
    height: 50px;
    border-radius: 10px;
    border: 1px solid var(--primary-color);
}

.contact-home .form textarea {
    border: 1px solid var(--primary-color);
    border-radius: 10px;
}

.contact-home .form input:focus,
.contact-home .form textarea:focus {
    outline: none;
    box-shadow: none;
}

.contact-home img {
    border-radius: 10px;
}



.events_wrapper {
    /* background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, .6), rgba(0, 0, 0, 0.4)), url(../images/about/section-2.jpeg); */
    /* background-image: url(../images/about/section-2.jpeg); */
    /* padding: 0; */
    /* height: 100vh; */
    background-color: #f6f6f6;
    padding: 70px 0;
    position: relative;
    background-size: cover;
    background-attachment: fixed;
}

.events_wrapper .grid_row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    column-gap: 30px;
    row-gap: 50px;
}


.events_wrapper .item {
    border-radius: 10px;
    box-shadow: var(--primary-shadow);
    transition: all .4s;
    background: #fff;
}

.events_wrapper .item:hover{
    transform: translateY(-5px);
}








.register-box .box {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    /* background-color: var(--primary-color); */
    /* min-height: 370px; */
}

.register-box .grid {
    grid-template-columns: 1fr 1fr;
}

.register-box .right {
    /* padding: 0; */
    /* background: url(../images/309970708_780111789921742_4735347223498755750_n.webp); */
    /* background-size: cover;
    background-position: center; */

    padding: 50px 100px;
    color: #fff;
}

.register-box .right h2 {
    font-size: 35px;
    font-weight: 600;
}

.register-box .left {
    padding: 50px 100px;
    display: flex;
    align-items: center;
    color: #fff;

}

.register-box .container {
    border: 2px solid #fff;
    padding: 20px;
    border-radius: 20px;
}

.register-box .left h2 {
    font-size: 35px;
    font-weight: 600;
}

.register-box h2 {
    height: 70px;
}

.register-box p {
    height: 150px;
}





.curriculam {
    padding-top: 100px;

}

.curriculam .grid {
    grid-template-columns: 75% 20%;
    gap: 50px;
}

.curriculam h6 {
    font-size: 22px;
    text-transform: capitalize;
    margin-bottom: 15px;
    font-weight: 600;
}

.curriculam p {
    font-size: 16px;
    max-width: 1024px;
    line-height: 1.6;
}

.curriculam ul li {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.admission {
    padding-top: 100px;

}

.admission .admission-form {
    /* max-width: 1024px; */
    box-shadow:var(--primary-shadow);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 50px;
    margin-top: 20px;
}





.management_wrapper {
    padding-top: 100px;
}

.management_wrapper h6 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}


.mian_gallery_wrapper {
    padding-top: 100px;
}

.mian_gallery_wrapper .boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mian_gallery_wrapper .filter-btn {
    /* box-shadow: 0 0 3px rgba(0, 0, 0, 0.078); */
    padding: 10px;
    display: inline-flex;
    gap: 10px;
    background-color: var(--primary-color);
}

.mian_gallery_wrapper .filter-btn span {
    font-size: 16px;
    color: #fff;
}

.mian_gallery_wrapper .filter-btn i {
    color: #fff;
}

.mian_gallery_wrapper .filter-btn:focus {
    outline: none;
    box-shadow: none;
}

.facility_wrapper {
    padding-top: 150px;
}

.facility_wrapper .boxes {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.facility_wrapper .boxes .card {
    border: none;
    text-align: center;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.169);
}


.pillar_section {
    padding: 100px 0;
}


.pillar_section .grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.pillar_section .item-one {
    background-color: #c93f4c;
    border-radius: 20px;
}

.pillar_section .item-two {
    background-color: #ffc600;
    border-radius: 20px;
}

.pillar_section .item-three {
    background-color: #4fa657;
    border-radius: 20px;
}

.pillar_section .item-four {
    background-color: #9683f8;
    border-radius: 20px;
}

.pillar_section .item {
    transition: all .3s ease-out;
}

.pillar_section .item:hover {
    transform: scale(1.05);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.317);
}

.pillar_section .item_content {
    padding: 30px;
    text-align: center;
    height: 260px;
}

.pillar_section .item_content .icon {
    width: 150px;
    margin: 15px auto;
}

.pillar_section .item_content h3 {
    color: #fff;
    font-size: 25px;
    letter-spacing: 1px;
    font-weight: 300 !important;
    /* line-height: 1.2; */
}

.pillar_section .item_image img {
    width: 100%;
    border-top-left-radius: 20px;
}





.mission_vision_wrapper {
    padding-top: 100px;
}

.mission_vision_wrapper .box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.mission_vision_wrapper .box .vision {
    background-color: #fff;
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.166);
    border: 2px solid var(--primary-color);
    padding: 60px 30px;
    border-radius: 20px;
    position: relative;
}

.mission_vision_wrapper .box .icon {
    width: 80px;
    height: 80px;
    position: absolute;
    top: -40px;
    left: 30px;
    background-color: var(--primary-color);
    padding: 10px;
    border-radius: 50%;
}

.mission_vision_wrapper .box .icon img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission_vision_wrapper .box .mission {
    background-color: #fff;
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.166);
    border: 2px solid var(--primary-color);
    padding: 60px 30px;
    border-radius: 20px;
    position: relative;
}

.mission_vision_wrapper h6 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;

}

.mission_vision_wrapper p {
    line-height: 1.8;
    font-size: 16px;
}

.academic_quality_wrapper {
    padding-top: 150px;
}

.academic_quality_wrapper .boxes {
    grid-template-columns: 25% 75%;
    gap: 30px;
}

.academic_quality_wrapper .boxes .left button {
    text-align: left;
    /* height: 70px; */
    background-color: #f7f7f7;
    color: #000;
    margin-bottom: 10px;
    font-size: 16px;
}

.academic_quality_wrapper .boxes .left button.active {
    background-color: var(--primary-color);
    color: #fff;
}




.faculty_wrapper {
    padding-top: 150px;
}

.faculty_wrapper .faculy_boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.faculty_wrapper .faculy_boxes .box {
    display: flex;
    gap: 15px;
    background-color: #f7f7f7;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.241);
    /* border: 1px solid var(--primary-color); */
    padding: 10px;
    border-radius: 10px;
}

.faculty_wrapper .faculy_boxes .box .profile_img {
    width: 120px;
    height: 150px;
}

.faculty_wrapper .faculy_boxes .box .profile_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.faculty_wrapper .faculy_boxes .box .faculy_details h6 {
    font-size: 18px;
    margin-bottom: 5px;
}

.faculty_wrapper .faculy_boxes .box .faculy_details p {
    margin-bottom: 5px !important;
}

.faculty_wrapper .search-box input {
    padding: 10px;
    border-radius: 10px;
    border: 1px solid var(--primary-color);
    width: 300px;
}

.faculty_wrapper .search-box input:focus {
    outline: none;
    box-shadow: none;
}





.borad_members_wrapper {
    padding: 0px 0;
}

.borad_members_wrapper .tributes {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.borad_members_wrapper .tributes .box .profile_img {
    width: 220px;
    /* height: 250px; */
    margin-bottom: 20px;
}

.borad_members_wrapper .tributes .box .profile_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.borad_members_wrapper .tributes .box {
    text-align: center;
}

.borad_members_wrapper .members {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    column-gap: 20px;
    row-gap: 40px;
}

.borad_members_wrapper .members .box .profile_img {
    /* width: 200px; */
    /* height: 250px; */
    margin-bottom: 20px;
}

.borad_members_wrapper .members .box .profile_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.borad_members_wrapper .members .box {
    text-align: center;
}

.borad_members_wrapper .box h6{
    font-weight: 600;
}



.hostel{
    padding: 150px 0 70px;
}
.event_details_mobile_view{
    display: none;
}

.pillar_name a{
    color:#fff!important;
    font-weight:600;
}

