﻿/*:root {
    --body-font: "Roboto", sans-serif;
    --heading-font: "Yantramanav", sans-serif;
    --theme-color: var(--theme-color);
    --theme-color2: #D12011;
    --theme-color-light: rgb(17, 110, 99, 0.09);
    --theme-bg-light: #F2F3F5;
    --body-text-color: #29235c;
    --bs-body-color: #29235c;
    --color-white: var(--color-white);
    --color-dark: var(--color-dark);
    --hero-overlay-color: #000000;
    --slider-arrow-bg: rgba(255, 255, 255, 0.2);
    --box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    --box-shadow2: 0 0 15px rgba(0, 0, 0, 0.17);
    --transition: all .5s ease-in-out;
    --transition2: all .3s ease-in-out;
    --border-info-color: rgba(0, 0, 0, 0.08);
    --border-info-color2: rgba(0, 0, 0, 0.05);
    --border-white-color: rgba(255, 255, 255, 0.08);
    --border-white-color2: rgba(255, 255, 255, 0.05);
    --footer-bg: #29235c;
    --footer-bg2: #ef7c00;
    --footer-text-color: #F5FAFF
}*/

.preloader-box {
    width: 150px;
    height: 150px;
    background: url(../img/preloader/preloader.png) no-repeat;
    background-size: cover;
    animation: spriteAnimation 5s steps(40) infinite;
    animation-duration: 5s;
    animation-timing-function: steps(40);
    animation-delay: 0s;
    animation-iteration-count: infinite;
    animation-direction: normal;
    animation-fill-mode: none;
    animation-play-state: running;
    animation-name: spriteAnimation;
    animation-timeline: auto;
    animation-range-start: normal;
    animation-range-end: normal
}

@keyframes spriteAnimation {
    0% {
        background-position: 0 0
    }

    100% {
        background-position: -12000px 0
    }
}

.header-top {
    padding: 4px 0 5px 0
}

    .header-top::before {
        width: 300px
    }

.header-top-social span {
    font-size: 13px
}

.header-top-social a {
    width: 24px;
    height: 24px;
    line-height: 24px;
    font-size: 12px
}

    .header-top-social a svg {
        width: 12px;
        fill: #fff
    }

    .header-top-social a:hover svg {
        fill: orange
    }

.navbar-brand img {
    width: 200px
}

.menu-about-logo img {
    width: 220px
}

.navbar .nav-item .nav-link {
    padding: 24px 0;
    font-size: 14px;
    text-transform: uppercase
}

    .navbar .nav-item .nav-link.active {
        color: var(--theme-color2)
    }

@media(min-width: 992px) {
    .navbar .nav-item .nav-link {
        font-size: 10px
    }
}

@media(min-width: 1200px) {
    .navbar .nav-item .nav-link {
        font-size: 14px
    }
}

.navbar .nav-item .dropdown-item {
    background: rgba(0,0,0,0);
    font-weight: 300;
    white-space: normal
}

    .navbar .nav-item .dropdown-item.active {
        color: var(--theme-color2)
    }

.nav-right {
    margin-left: 24px
}

.navbar.fixed-top {
    background: hsla(0,0%,100%,.9) !important
}

.more_link {
    display: flex;
    justify-content: end;
    color: var(--theme-color);
    text-transform: uppercase;
    font-size: 12px
}

.hero-slider .hero-single {
    padding: 0;
    height: calc(100vh - 110px)
}

@media(max-width: 991.98px) {
    .hero-slider .hero-single {
        height: 100vh
    }
}

.hero-slider .hero-single::before {
    display: none
}

.hero-section {
    position: relative
}

    .hero-section .hero-global-content {
        z-index: 100;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        padding: 24px;
        color: #fff;
        font-size: 13px;
        background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8))
    }

        .hero-section .hero-global-content .img-title {
            width: 100%
        }

@media(max-width: 767.98px) {
    .hero-section .hero-global-content .img-title {
        width: 320px
    }
}

.hero-section .hero-center {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column
}

    .hero-section .hero-center ul {
        flex: 1;
        display: flex;
        justify-content: center;
        color: #fff;
        gap: 10px
    }

@media(min-width: 768px) {
    .hero-section .hero-center ul {
        display: none
    }
}

.hero-section .hero-center ul li {
    position: relative
}

    .hero-section .hero-center ul li:not(:first-child) {
        padding-left: 10px
    }

        .hero-section .hero-center ul li:not(:first-child)::before {
            z-index: 1;
            content: "|";
            position: absolute;
            left: 0;
            top: 0;
            color: #fff
        }

.hero-section .hero-center ul a {
    text-transform: uppercase;
    color: #fff
}

.hero-section .hero-left {
    flex: 1;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    color: #fff
}

@media(max-width: 767.98px) {
    .hero-section .hero-left {
        display: none
    }
}

.hero-section .hero-left a {
    color: #fff;
    font-size: 13px
}

    .hero-section .hero-left a:hover {
        color: var(--theme-color2)
    }

.hero-section .hero-left ul {
    display: flex;
    gap: 10px
}

    .hero-section .hero-left ul li {
        position: relative
    }

        .hero-section .hero-left ul li:not(:first-child) {
            padding-left: 10px
        }

            .hero-section .hero-left ul li:not(:first-child)::before {
                z-index: 1;
                content: "|";
                position: absolute;
                left: 0;
                top: 0;
                color: #fff
            }

    .hero-section .hero-left ul a {
        text-transform: uppercase
    }

.hero-section .hero-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    text-transform: uppercase;
    line-height: 20px
}

@media(max-width: 767.98px) {
    .hero-section .hero-right {
        display: none
    }
}

@media(max-width: 767.98px) {
    .hero-slider.owl-theme .owl-nav {
        display: none
    }
}

@media(max-width: 1199px) {
    .hero-slider.owl-theme .owl-nav .owl-prev, .hero-slider.owl-theme .owl-nav .owl-next {
        bottom: 80px !important
    }
}

.toggle-menu {
    cursor: pointer
}

.mega-menu .mega-content h6 {
    color: var(--theme-color2);
    font-size: 16px;
    text-transform: uppercase
}

.navbar .nav-item.mega-menu .dropdown-menu {
    background: rgba(41,35,92,.98) !important;
    border-radius: 0 0 24px 24px
}

.video-container {
    position: relative;
    z-index: 1
}

    .video-container iframe {
        width: 100%;
        height: 340px
    }

@media(min-width: 576px) {
    .video-container iframe {
        height: 340px
    }
}

@media(min-width: 768px) {
    .video-container iframe {
        height: 340px
    }
}

@media(min-width: 992px) {
    .video-container iframe {
        height: 460px
    }
}

@media(min-width: 1200px) {
    .video-container iframe {
        height: 680px
    }
}

@media(min-width: 1400px) {
    .video-container iframe {
        height: 900px
    }
}

.video-container:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(41,35,92,.8)
}

.video-container:after {
    z-index: 1000;
    content: "";
    width: 100%;
    height: 20px;
    position: absolute;
    left: 0;
    top: 0;
    background: #181c21;
    background: linear-gradient(0deg, rgba(41, 35, 92, 0) 0%, #29235c 55%)
}

@media(min-width: 576px) {
    .video-container:after {
        height: 20px
    }
}

@media(min-width: 768px) {
    .video-container:after {
        height: 40px
    }
}

@media(min-width: 992px) {
    .video-container:after {
        height: 70px
    }
}

@media(min-width: 1200px) {
    .video-container:after {
        height: 100px
    }
}

@media(min-width: 1400px) {
    .video-container:after {
        height: 100px
    }
}

.video-container .vidoe-txt-container {
    width: 95%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%)
}

@media(min-width: 992px) {
    .video-container .vidoe-txt-container {
        width: 80%
    }
}

@media(min-width: 1200px) {
    .video-container .vidoe-txt-container {
        width: 60%
    }
}

.video-container .vidoe-txt-container .lead {
    font-size: 14px
}

@media(min-width: 768px) {
    .video-container .vidoe-txt-container .lead {
        font-size: 18px
    }
}

.video-container .theme-btn {
    display: flex;
    width: 180px;
    justify-content: center;
    margin: 32px auto;
    position: absolute;
    left: 20px;
    bottom: -40px
}

@media(min-width: 576px) {
    .video-container .theme-btn {
        bottom: -10px
    }
}

@media(min-width: 768px) {
    .video-container .theme-btn {
        width: 200px;
        left: 20px;
        bottom: 0
    }
}

@media(min-width: 992px) {
    .video-container .theme-btn {
        left: 40px;
        bottom: 16px
    }
}

@media(min-width: 1200px) {
    .video-container .theme-btn {
        width: 280px;
        left: 56px;
        bottom: 41px
    }
}

@media(min-width: 1400px) {
    .video-container .theme-btn {
        left: 56px;
        bottom: 56px
    }
}

.footer-logo img {
    width: 260px
}

.footer-widget-title {
    margin-bottom: 8px;
    padding-bottom: 8px
}

.footer-list {
    gap: 0
}

    .footer-list li a {
        font-size: 14px
    }

    .footer-list li ul {
        padding-left: 24px
    }

    .footer-list li li {
        position: relative
    }

        .footer-list li li::before {
            content: "•";
            position: absolute;
            left: -1.2em;
            top: 0;
            color: #fff
        }

.copyright .copyright-text {
    font-size: 12px
}

.footer-social li a i {
    display: block;
    width: 24px;
    height: 24px;
    line-height: 24px;
    border-radius: 50%;
    font-size: 12px;
    background: var(--theme-color2);
    color: #fff
}

    .footer-social li a i img {
        width: 12px
    }

.footer-social li a svg {
    width: 12px;
    fill: #fff
}

.footer-social li a:hover svg {
    width: 12px;
    fill: var(--theme-color)
}

.footer-social li a:hover i {
    color: var(--theme-color)
}

.key-links {
    border-top: 1px solid var(--border-white-color);
    padding-top: 56px
}

    .key-links h6 {
        color: #fff;
        text-align: center;
        text-transform: uppercase
    }

@media(max-width: 575.98px) {
    .key-links h6 {
        text-align: left
    }
}

.key-links ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap
}

@media(max-width: 575.98px) {
    .key-links ul {
        gap: 0;
        flex-direction: column;
        margin: 24px
    }
}

.key-links a {
    color: #fff;
    font-size: 13px
}

    .key-links a:hover {
        color: var(--theme-color2)
    }

#scroll-top.active {
    bottom: 60px
}

a {
    color: black
}

.widget .category-list a {
    color: var(--theme-color)
}

.feature-item {
    height: 100%
}

.site-title {
    text-transform: uppercase;
    font-size: 48px
}

h3.site-title {
    font-size: 36px
}

.search-active .search-popup .close-search {
    top: 60%
}

.site-title, .choose-item-info h4 {
    color: var(--theme-color)
}

.site-title-tagline {
    font-size: 16px
}

.team-content {
    text-align: center
}

.team-bio h5 {
    font-size: 18px;
    margin-bottom: 0
}

    .team-bio h5 span {
        font-size: 10px;
        text-transform: none
    }

.team-bio span {
    font-size: 14px;
    letter-spacing: 0;
    text-transform: none
}

.cta-area p a {
    color: #fff;
    font-weight: bold
}

    .cta-area p a:hover {
        text-decoration: underline
    }

@media(max-width: 991.98px) {
    .department-sidebar {
        display: none
    }
}

.widget .category-list a.active {
    color: var(--theme-color2);
    padding-left: 16px
}

    .widget .category-list a.active::before {
        content: "";
        color: var(--theme-color2);
        font-family: "Font Awesome 6 Pro";
        position: relative;
        left: -16px;
        font-weight: 600
    }

.faq-area .accordion-item i.num {
    display: block;
    font-style: normal
}

.faq-area .accordion-item .content-list i {
    width: 20px;
    height: 20px;
    line-height: 20px;
    border-radius: 50px;
    background: rgba(0,0,0,0);
    text-align: center;
    color: var(--theme-color2)
}

a i.normal {
    width: 20px !important;
    height: 20px !important;
    line-height: 20px !important;
    background: rgba(0,0,0,0) !important;
    text-align: center;
    color: var(--theme-color2) !important
}

.content-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 16px
}

    .content-list li > i {
        position: absolute;
        left: 0;
        top: 5px;
        font-size: 20px;
        line-height: 24px;
        border-radius: 50px;
        background: rgba(0,0,0,0);
        text-align: center;
        color: var(--theme-color2);
        margin-right: 8px
    }

.site-breadcrumb {
    padding: 0
}

.custom-breadcrumb {
    position: relative
}

    .custom-breadcrumb .breadcrumb-title {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        text-align: center;
        color: #fff;
        padding: 16px 0 120px 0;
        background: #29235c;
        background: linear-gradient(180deg, rgb(41, 35, 92) 0%, rgba(41, 35, 92, 0) 100%)
    }

@media(max-width: 991.98px) {
    .custom-breadcrumb .breadcrumb-title {
        padding-top: 70px;
        padding-bottom: 60px
    }
}

.custom-breadcrumb img {
    width: 100% !important
}

@media(max-width: 575.98px) {
    .site-title {
        font-size: 28px
    }
}

@media(max-width: 767.98px) {
    .site-title {
        font-size: 38px
    }
}

@media(max-width: 991.98px) {
    .site-title {
        font-size: 40px
    }
}

@media(max-width: 991.98px) {
    .department-single-area.py-120 {
        padding: 48px 0
    }
}

.department-sidebar {
    position: sticky;
    top: 100px
}

    .department-sidebar .sub-menu {
        border-bottom: 1px solid #ced4da
    }

        .department-sidebar .sub-menu .sub-menu-title {
            text-transform: uppercase;
            border-bottom: none;
            font-weight: 700;
            font-size: 12px
        }

        .department-sidebar .sub-menu .accordion-button {
            padding: 10px 0;
            font-size: 16px;
            font-weight: 500
        }

            .department-sidebar .sub-menu .accordion-button::after {
                background-size: 1rem 1rem
            }

        .department-sidebar .sub-menu .accordion-collapse {
            padding-left: 24px
        }

        .department-sidebar .sub-menu .accordion-button:not(.collapsed) {
            background: rgba(0,0,0,0)
        }

        .department-sidebar .sub-menu li {
            list-style: circle
        }

#accordionEnquiry .accordion-button::after {
    display: none
}

#accordionEnquiry .theme-btn {
    padding: 8px 32px
}

.sticky-left {
    position: sticky;
    top: 300px
}

.our-values .col {
    margin-bottom: 24px
}

.our-values .choose-item {
    height: 100%
}

.testimonial-slider .testimonial-item {
    padding: 12px
}

.testimonial-slider img {
    width: 80% !important;
    margin: 0 auto 8px auto;
    border-radius: 24x 24px 24px 0;
    box-shadow: rgba(0,0,0,.15) 1.95px 1.95px 2.6px
}

.testimonial-slider .more_link {
    justify-content: center
}

.video-content.no-radius {
    border-radius: 0
}

.cal-yr-title {
    background: var(--theme-color);
    color: #fff;
    padding: 4px;
    text-align: center;
    margin-bottom: 16px
}

.month-box {
    display: flex
}

    .month-box .date-box {
        display: flex;
        flex-direction: column;
        background: var(--theme-color);
        color: #fff;
        padding: 8px;
        border-radius: 4px 0 0 4px;
        text-align: center;
        text-transform: uppercase
    }

        .month-box .date-box .date {
            font-size: 36px;
            line-height: 32px
        }

        .month-box .date-box .month {
            font-size: 14px;
            line-height: 14px
        }

    .month-box .day {
        flex: 1;
        background: #eaeaea;
        border-radius: 0 4px 4px 0;
        padding: 18px;
        font-size: 20px;
        font-weight: 500
    }

.time-info {
    display: flex;
    padding-left: 70px;
    font-size: 14px;
    margin-top: 8px
}

    .time-info .time {
        font-style: italic;
        width: 160px
    }

    .time-info .info {
        flex: 1;
        font-weight: 500
    }

.date-field {
    position: relative
}

    .date-field i {
        position: absolute;
        right: 8px;
        top: 8px;
        z-index: 1;
        pointer-events: none
    }

.choose-item-icon.custom {
    background: rgba(0,0,0,0);
    margin-left: 10px
}

    .choose-item-icon.custom img {
        filter: none;
        width: 100%
    }

.sitemap-con .col {
    margin-bottom: 24px
}

.sitemap-con h4 {
    margin-bottom: 16px
}

    .sitemap-con h4 a {
        color: var(--theme-color)
    }

        .sitemap-con h4 a::hover {
            color: var(--theme-color2)
        }

.sitemap-con li ul {
    margin-left: 24px
}

    .sitemap-con li ul li {
        list-style: circle
    }

@media(max-width: 767.98px) {
    .about-left {
        margin-right: 0
    }
}

.about-img .img-1, .about-img .img-3 {
    width: 100%
}

.about-experience .text-start {
    flex: 1;
    margin-left: 24px
}

.logo-icon {
    display: block;
    width: 100px;
    height: 100px;
    position: relative;
    background: #f6f6fd;
    border-radius: 50%;
    overflow: hidden
}

    .logo-icon::before {
        content: "";
        width: 100%;
        height: 100%;
        background: url(../img/icon/logo-icon-color.svg) no-repeat center center;
        background-size: 80%;
        position: absolute;
        left: 0;
        top: 0
    }

    .logo-icon.color {
        background: var(--theme-color)
    }

        .logo-icon.color::before {
            background: url(../img/icon/logo-icon-white.svg) no-repeat center center;
            background-size: 80%
        }

.admissionsEnquiry .panel-group .formfield .panel-heading .panel-title span.text-muted::before, .admissionsEnquiry .panel-group .panel-heading .text-muted {
    color: #fff !important
}

.all-menu {
    z-index: 1000000;
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    padding-top: 0;
    background: var(--theme-color);
    background-size: cover;
    color: #fff;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform .5s ease-out
}

    .all-menu .container {
        position: relative;
        z-index: 100
    }

    .all-menu.show {
        transform: translateX(0)
    }

    .all-menu .close-menu {
        z-index: 999;
        position: sticky;
        left: 96%;
        top: 24px;
        cursor: pointer
    }

@media(min-width: 576px) {
    .all-menu .close-menu {
        left: 92%;
        top: 24px
    }
}

@media(min-width: 768px) {
    .all-menu .close-menu {
        left: 94%;
        top: 24px
    }
}

@media(min-width: 992px) {
    .all-menu .close-menu {
        left: 95%;
        top: 24px
    }
}

@media(min-width: 1200px) {
    .all-menu .close-menu {
        left: 96%;
        top: 24px
    }
}

@media(min-width: 1400px) {
    .all-menu .close-menu {
        left: 97%;
        top: 24px
    }
}

.all-menu .close-menu i {
    font-size: 2rem
}

.all-menu .menu-sec-img {
    border-radius: 16px 16px 16px 0;
    margin: 16px 0
}

.all-menu .menu-title {
    position: relative;
    font-size: 20px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 16px;
    padding-bottom: 8px
}

    .all-menu .menu-title:before {
        content: "";
        position: absolute;
        width: 90px;
        height: 3px;
        background: hsla(0,0%,100%,.2);
        bottom: 0;
        left: 0;
        z-index: -1
    }

    .all-menu .menu-title:after {
        content: "";
        position: absolute;
        width: 30px;
        height: 3px;
        background: var(--theme-color2);
        bottom: 0;
        left: 18px;
        z-index: -1
    }

.all-menu a {
    color: #fff;
    font-size: 14px
}

    .all-menu a:hover, .all-menu a.active {
        color: var(--theme-color2)
    }

.all-menu li > ul {
    padding-left: 32px;
    list-style-position: outside
}

    .all-menu li > ul li {
        position: relative
    }

        .all-menu li > ul li::before {
            content: "•";
            position: absolute;
            left: -1.2em;
            top: 0;
            color: #fff
        }

.all-menu .bdr-v {
    border-left: 1px solid hsla(0,0%,100%,.2);
    padding-left: 48px
}

@media(max-width: 991.98px) {
    .all-menu .bdr-v {
        border-left: 0;
        padding-left: 16px
    }
}

.all-menu .bdr-h {
    border-top: 1px solid hsla(0,0%,100%,.2);
    padding-top: 48px
}
/*# sourceMappingURL=custom-web.css.map */
