:root {
    --theme-primary: #2661ac;
    --theme-primary-light: #e6f1ff;
    --theme-primary-dark: #032551;
    --theme-warning: #f39633;
    --theme-danger: #eb1d27;
    --theme-green: #34a345;
    --font-family: "Roboto", sans-serif;
    --theme-gray: rgb(248, 248, 248);
    --theme-primary-accent: #f6faff;
    --theme-dark: #0a0a0a;
    --step--2: clamp(0.6076rem, 0.5964rem + 0.0563vw, 0.64rem);
    --step--1: clamp(0.7292rem, 0.7045rem + 0.1232vw, 0.8rem);
    --step-0: clamp(0.875rem, 0.8315rem + 0.2174vw, 1rem);
    --step-1: clamp(1.05rem, 0.9804rem + 0.3478vw, 1.25rem);
    --step-2: clamp(1.26rem, 1.1548rem + 0.5261vw, 1.5625rem);
    --step-3: clamp(1.512rem, 1.3586rem + 0.7672vw, 1.9531rem);
    --step-4: clamp(1.8144rem, 1.5963rem + 1.0904vw, 2.4414rem);
    --step-5: clamp(2.1773rem, 1.8731rem + 1.5208vw, 3.0518rem)
}

@keyframes slideInDown {
    from {
        transform: translateY(-100%)
    }

    to {
        transform: translateY(0)
    }
}

.slideInDown {
    animation: slideInDown .5s
}

body,
html {
    font-size: var(--step-0);
    color: var(--theme-dark);
    line-height: 1.6em;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    background: #fff;
    font-family: var(--font-family);
    scroll-behavior: smooth;
    overflow-x: clip
}

.fs-14 {
    font-size: .9rem
}

.border-white-50 {
    border-color: rgba(255, 255, 255, .5) !important
}

.border-theme-primary {
    border-color: var(--theme-primary) !important
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700
}

.h1,
h1 {
    font-size: var(--step-5)
}

.h2,
h2 {
    font-size: var(--step-4)
}

.h3,
h3 {
    font-size: var(--step-3)
}

.h4,
h4 {
    font-size: var(--step-2)
}

.h5,
h5 {
    font-size: var(--step-1)
}

.h6,
h6 {
    font-size: var(--step-0)
}

.small,
small {
    font-size: var(--step--1)
}

.smallest {
    font-size: var(--step--2)
}

.bg-theme-primary-accent {
    background-color: var(--theme-primary-accent) !important
}

.bg-theme-primary-light {
    background-color: var(--theme-primary-light) !important
}

.bg-theme-primary {
    background-color: var(--theme-primary) !important
}

.bg-theme-primary-dark {
    background-color: var(--theme-primary-dark) !important
}

.bg-theme-warning {
    background-color: var(--theme-warning) !important
}

.text-theme-primary {
    color: var(--theme-primary) !important
}

.text-orange {
    color: var(--theme-warning) !important
}

.border-orange {
    border: 1px solid var(--theme-warning) !important
}

@media (min-width:768px) {
    .text-md-justify {
        text-align: justify
    }
}

.border-4 {
    border: 4px solid
}

.border-theme-warning {
    border-color: var(--theme-warning) !important
}

.text-theme-primary-dark {
    color: var(--theme-primary-dark) !important
}

.text-theme-warning {
    color: var(--theme-warning) !important
}

.btn-theme-primary {
    background-color: var(--theme-primary);
    color: #ffffffe8;
    border-color: var(--theme-primary);
    border-radius: var(--bs-border-radius-sm);
    transition: all .3s ease-in-out
}

.btn-theme-primary:active,
.btn-theme-primary:hover {
    background-color: var(--theme-warning) !important;
    color: #fff !important;
    border-color: var(--theme-warning) !important
}

.btn-theme-warning {
    background-color: #f29633;
    color: #ffffffe8;
    border-color: #f29633;
    border-radius: var(--bs-border-radius-sm);
    transition: all .3s ease-in-out
}

.btn-theme-warning:active,
.btn-theme-warning:hover {
    background-color: var(--theme-warning) !important;
    color: #fff !important;
    border-color: var(--theme-warning) !important
}

.btn-theme-secondary {
    background-color: #f29633;
    color: #ffffffe8;
    border-color: #f29633;
    border-radius: var(--bs-border-radius-sm);
    transition: all .3s ease-in-out
}

.btn-theme-secondary:active,
.btn-theme-secondary:hover {
    background-color: var(--theme-primary) !important;
    color: #fff !important;
    border-color: var(--theme-primary) !important
}

.apply-btn {
    position: relative;
    display: inline-flex;
    gap: .4em;
    font-size: .9rem;
    align-items: center;
    justify-content: space-between;
    padding: .2em .5em
}

.apply-btn ul {
    list-style: none;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 100%;
    font-weight: 400;
    left: 0;
    width: max-content;
    background-color: #fff;
    border-radius: var(--bs-border-radius-sm);
    overflow: hidden;
    box-shadow: var(--bs-box-shadow-sm);
    animation: slideUp .5s;
    display: none
}

.apply-btn:hover ul {
    display: block
}

.apply-btn .arrow-icon {
    transition: all .4s
}

.apply-btn:hover .arrow-icon {
    transform: rotate(-180deg)
}

.apply-btn ul a {
    display: block;
    padding: .5em 1em;
    text-align: left;
    font-size: .9em;
    font-weight: 400;
    color: var(--bs-body-color);
    transition: all .3s ease-in-out
}

.apply-btn ul a:hover {
    color: var(--theme-primary);
    background-color: #fff
}

.apply-btn ul li:not(:last-child) {
    border-bottom: 1px solid var(--bs-border-color)
}

.btn-know {
    color: var(--theme-primary);
    font-weight: 500;
    transition: all .3s
}

.btn-know:hover {
    color: var(--theme-warning)
}

.ls-1 {
    letter-spacing: 1px
}

.ls-2 {
    letter-spacing: 2px
}

.lh-13 {
    line-height: 1.3
}

.border-head {
    border-bottom: 3px solid var(--theme-warning);
    padding-bottom: .25em
}

.page-wrapper {
    position: relative;
    width: 100%;
    min-width: 300px;
    z-index: 9;
    margin: 0 auto
}

.text-black {
    color: #000 !important
}

.text-shadow {
    text-shadow: 0 0 #000
}

a {
    text-decoration: none
}

body.mobile-menu-visible .page-wrapper {
    z-index: 999999
}

.auto-container {
    position: static;
    max-width: 1170px;
    padding: 0 15px;
    margin: 0 auto
}

.main-header li,
.main-header ul {
    list-style: none;
    padding: 0;
    margin: 0
}

img {
    display: inline-block;
    max-width: 100%;
    height: auto
}

.scroll-to-top {
    position: fixed;
    right: 10px;
    bottom: 90px;
    width: 40px;
    height: 40px;
    font-size: 14px;
    line-height: 38px;
    text-align: center;
    z-index: 100;
    cursor: pointer;
    border-radius: 50%;
    display: none;
    transition: .3s
}

.scroll-to-top:hover {
    color: #fff;
    background: var(--theme-primary-dark);
    border-color: var(--theme-warning)
}

.gal-card {
    position: relative;
    box-shadow: 0 3px 6px #0000000f;
    border: 1px solid #70707040
}

.gal-card:hover .gal-content {
    bottom: 100%;
    transform: translateY(100%)
}

.gal-content {
    background: #0b7c2d;
    padding: 10px;
    position: absolute;
    width: 100%;
    bottom: 0;
    transition: 1s
}

.gal-content .act-name {
    font-size: 16px;
    font-weight: 600;
    color: #fff
}

.gal-img {
    height: 250px;
    width: 100%
}

.gal-img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

@keyframes scrollDown {
    0% {
        transform: translate3d(0, -70px, 0)
    }

    50% {
        animation-timing-function: ease-in-out;
        transform: translate3d(0, 0, 0)
    }

    100% {
        animation-timing-function: ease-in-out;
        transform: translate3d(0, 65px, 0)
    }
}

.mobile-menu,
.sticky-header {
    position: fixed;
    visibility: hidden;
    top: 0
}

.main-header .logo {
    width: min(285px, 70%)
}

.sticky-header {
    opacity: 0;
    left: 0;
    width: 100%;
    padding: 0;
    z-index: -1;
    background: #fff;
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, .1);
    -ms-box-shadow: 0 0 15px rgba(0, 0, 0, .1);
    -o-box-shadow: 0 0 15px rgba(0, 0, 0, .1);
    box-shadow: 0 0 15px rgba(0, 0, 0, .1);
    -webkit-transition: top .3s;
    -o-transition: top .3s;
    transition: top .3s
}

.fixed-header .sticky-header {
    opacity: 1;
    z-index: 99901;
    visibility: visible
}

.mobile-menu {
    right: 0;
    width: 300px;
    padding-right: 30px;
    max-width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 999999
}

.mobile-menu .mCSB_scrollTools {
    right: -6px
}

.mobile-menu .mCSB_inside>.mCSB_container {
    margin-right: 5px
}

.mobile-menu .navbar-collapse {
    display: block !important
}

.mobile-menu .nav-logo {
    position: relative;
    padding: 10px 25px;
    text-align: left;
    margin: 0;
    background: #fff
}

.mobile-menu ul ul {
    padding-left: .8em
}

.mobile-menu-visible .mobile-menu {
    opacity: 1;
    visibility: visible
}

.mobile-menu .menu-backdrop {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    -webkit-transform: translateX(101%);
    -ms-transform: translateX(101%);
    transform: translateX(101%);
    transition: .9s;
    -moz-transition: .9s;
    -webkit-transition: .9s;
    -ms-transition: .9s;
    -o-transition: .9s;
    background-color: #000
}

.mobile-menu-visible .mobile-menu .menu-backdrop {
    opacity: .3;
    visibility: visible;
    -webkit-transition: .7s;
    -o-transition: .7s;
    transition: .7s;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0)
}

.mobile-menu .menu-box {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
    background: var(--theme-primary-dark);
    padding: 0;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    border-radius: 0;
    -webkit-transform: translateX(101%);
    -ms-transform: translateX(101%);
    transform: translateX(101%)
}

.mobile-menu-visible .mobile-menu .menu-box {
    opacity: 1;
    visibility: visible;
    -webkit-transition: .7s;
    -o-transition: .7s;
    transition: .7s;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0)
}

.mobile-menu .close-btn {
    position: absolute;
    right: 5px;
    top: 10px;
    line-height: 10px;
    width: 24px;
    text-align: center;
    font-size: 20px;
    color: var(--theme-primary-dark);
    cursor: pointer;
    z-index: 10;
    font-weight: 400;
    -webkit-transition: .9s;
    -o-transition: .9s;
    transition: .9s
}

.mobile-menu .navigation {
    position: relative;
    display: block;
    width: 100%;
    float: none
}

.mobile-menu .navigation li {
    position: relative;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, .1)
}

.mobile-menu .navigation li:not(:first-child) {
    border-top: 1px solid #0000004d
}

.mobile-menu .navigation li>a {
    position: relative;
    display: block;
    line-height: 24px;
    padding: 7px 25px;
    font-size: 14px;
    color: #fff;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s
}

.mobile-menu .navigation li a img {
    filter: invert(1) brightness(100);
    max-width: 18px
}

.mobile-menu .navigation li ul li>a {
    font-size: 13px;
    margin-left: 20px;
    text-transform: capitalize
}

.mobile-menu .navigation li ul li:before {
    position: absolute;
    left: 22px;
    font-family: FontAwesome;
    font-weight: 800;
    content: "\f178";
    top: 11px;
    line-height: 15px;
    color: #fff
}

.mobile-menu .navigation li>a:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 0;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s
}

.mobile-menu .navigation li.current>a:before {
    height: 100%
}

.mobile-menu .navigation>.current>a {
    border-radius: unset !important
}

.mobile-menu .current:not(.dropdown)>a {
    background: var(--theme-warning) !important;
    color: #fff !important;
    border-radius: var(--bs-border-radius-sm)
}

.mobile-menu .navigation li.dropdown .dropdown-btn {
    position: absolute;
    right: 6px;
    top: .2em;
    width: 32px;
    height: 32px;
    text-align: center;
    transform: rotate(90deg);
    font-size: 16px;
    line-height: 32px;
    color: #fff;
    background: rgba(255, 255, 255, .1);
    cursor: pointer;
    border-radius: 2px;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    z-index: 5
}

.mobile-menu .navigation li.dropdown .dropdown-btn.open {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg)
}

.mobile-menu .social-links {
    position: relative;
    text-align: center;
    padding: 30px 25px
}

.mobile-menu .social-links li {
    position: relative;
    display: inline-block;
    margin: 0 10px 10px
}

.mobile-menu .social-links li a {
    position: relative;
    line-height: 32px;
    font-size: 14px;
    color: #fff;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    padding: 5px 10px
}

.scroll-to-top {
    color: var(--theme-primary-dark);
    background: #fff;
    border: 2px dashed var(--theme-primary-dark)
}

.page-title {
    position: relative;
    padding: 45px 0;
    text-align: center !important;
    background-size: cover !important;
    background-repeat: no-repeat;
    background-position: center !important;
    border-top: 1px solid var(--gold-color);
    background: var(--theme-primary) url(https://resources.edunexttechnologies.com/web-data/page-title-bg.png) no-repeat center
}

.page-title h1 {
    font-size: 24px;
    color: #fff;
    line-height: 42px;
    margin-bottom: 0;
    font-weight: 500
}

@media (max-width:576px) {
    .page-title h1 {
        font-size: 15px;
        line-height: 24px
    }

    .page-title {
        padding: 10px 0
    }
}

@media only screen and (min-width:992px) {
    #newmodal .modal-dialog {
        max-width: 580px
    }
}

@media only screen and (max-width:991px) {
    .mobile-menu .navigation {
        max-height: 70vh;
        overflow: auto
    }
}

#enquirymodal,
#newmodal {
    z-index: 9999;
    background: rgb(0 0 0 / 74%)
}

#enquirymodal .modal-header {
    background: var(--blue-color);
    padding: .2rem 1rem;
    border-bottom: none
}

#enquirymodal .modal-content {
    border-radius: 10px
}

#enquirymodal .close,
.modal .close {
    position: absolute;
    font-size: 18px;
    background: #343f64;
    opacity: 1;
    color: #fff;
    text-shadow: none;
    display: inline-block;
    padding: 0 4px 8px 8px;
    border-radius: 0 0 0 42px;
    cursor: pointer;
    z-index: 22
}

#enquirymodal h4 {
    color: #fff;
    font-size: 20px
}

#enquirymodal .close {
    top: 16px;
    right: 16px
}

.modal .close {
    top: 0;
    right: 0
}

#newmodal .modal-dialog .modal-dialog-centered {
    width: 100%
}

.whats-img {
    bottom: 45px;
    right: 10px;
    width: 40px;
    position: fixed;
    z-index: 22
}

.owl-next,
.owl-prev {
    position: absolute;
    top: 50%;
    width: 40px !important;
    height: 40px !important
}

.owl-prev {
    left: 10% !important;
    border: 1px solid #fff !important;
    border-radius: 130px
}

.owl-next {
    right: 10% !important;
    border: 1px solid #fff !important;
    border-radius: 130px
}

.navigation {
    display: none;
    font-weight: 500
}

@media screen and (min-width:768px) {
    .navigation {
        display: flex;
        gap: .4rem
    }
}

.navigation ul li:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, .1)
}

.navigation .dropdown {
    position: relative;
    padding-right: 10px
}

.navbar {
    font-size: .9rem
}

.navbar .navigation ul a {
    color: var(--bs-dark-text-emphasis);
    padding: .4em 1em
}

@keyframes slideUp {
    from {
        transform: translateY(10px)
    }

    to {
        transform: none
    }
}

.navbar .navigation .dropdown ul {
    position: absolute;
    text-wrap: auto;
    font-weight: 400;
    width: 230px;
    line-height: 1.6;
    left: 0;
    background-color: #fff;
    border: 1px solid var(--bs-light);
    border-radius: 3px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
    display: none;
    z-index: 1;
    transition: all .3s;
    animation: slideUp .6s ease alternate
}

.navbar .navigation .dropdown:hover>ul {
    display: block
}

.navigation .home-icon img {
    width: 1.2em
}

.navbar .navigation .dropdown ul .dropdown ul {
    left: 100%;
    margin: 0;
    top: 0
}

.navbar .dropdown::after {
    content: "\f078";
    position: absolute;
    right: 0;
    top: 50%;
    translate: 0 -50%;
    font-size: .7em;
    font-weight: 700;
    font-family: FontAwesome
}

.navbar .dropdown .dropdown::after {
    top: 50%;
    font-family: FontAwesome;
    content: "\f054";
    right: 5px
}

.navbar .dropdown-btn {
    display: none
}

.navigation li a {
    color: inherit;
    text-decoration: none;
    display: block;
    font-size: .9rem;
    padding: .3em .5em;
    transition: all .3s
}

.nav-outer .navigation li a:hover {
    color: var(--theme-primary)
}

.mobile-menu .navigation li a:hover {
    color: var(--theme-warning)
}

.mobile-menu-toggler {
    background-color: var(--bs-light);
    border: 1px solid var(--bs-border-color)
}

#leftSideMenu {
    list-style: none;
    padding: 0 .5rem;
    margin: 0;
    font-size: .875rem
}

#leftSideMenu li {
    display: block;
    cursor: pointer;
    position: relative
}

#leftSideMenu li.leftMenuBtn {
    padding-right: 1rem
}

#leftSideMenu li a {
    display: block
}

#leftSideMenu li>a {
    padding: .25em .5em;
    border-radius: 4px;
    transition: all .3s
}

#leftSideMenu li:hover>a {
    color: var(--theme-dark)
}

#leftSideMenu>li.leftMenuBtn::after {
    content: "\f054";
    font-family: FontAwesome;
    font-size: .9em;
    font-weight: 600;
    position: absolute;
    right: 0;
    top: .4em;
    transition: all .3s
}

#leftSideMenu>li.leftMenuBtnActive::after {
    transform: rotate(90deg)
}

#leftSideMenu li:hover::after {
    color: inherit
}

#leftSideMenu .active-leftPage {
    background-color: var(--theme-primary);
    color: #fff !important
}

#leftSideMenu li:not(:last-child) {
    border-bottom: 1px solid var(--bs-border-color)
}

#leftSideMenu .leftMenu-drop {
    display: block;
    padding-left: 1em;
    font-size: .9em
}

.container-sec {
    max-width: min(90%, 1400px);
    padding-left: .5rem;
    padding-right: .5rem;
    margin: auto
}

.co-sec .content .row>div:first-child {
    background: var(--theme-primary-light)
}

.co-sec .content .row>div:last-child {
    background: var(--theme-primary-accent)
}

.owl-dots {
    text-align: center;
    margin-top: .8rem
}

.owl-dots button {
    width: 8px;
    height: 8px;
    border-radius: var(--bs-border-radius-pill);
    margin-right: 2px;
    background: var(--theme-primary-light) !important
}

.owl-dots button.active {
    background: var(--theme-warning) !important;
    width: 12px
}

@media (min-width:768px) {
    .co-sec .content {
        background: #e6f1ff;
        background: linear-gradient(90deg, var(--theme-primary-light) 50%, var(--theme-primary-accent) 50%)
    }
}

.prog-sec {
    background: #e6f1ff;
    background: linear-gradient(180deg, var(--theme-primary-light) 70%, #fff 0)
}

.pf-card-pic {
    width: 90px !important;
    aspect-ratio: 1;
    padding: .5rem;
    margin-top: -45px
}

.img-invert {
    filter: brightness(0) invert(1)
}

.pf-slider .owl-stage-outer {
    padding-top: 47px;
    padding-bottom: 1rem
}

.pf-slider .owl-stage {
    display: flex
}

.slider-360 .item {
    background: url(https://resources.edunexttechnologies.com/web-data/tcn/images/360-card-bg.png) no-repeat center;
    background-size: cover
}

.slider-360 .logo-icon {
    width: 30px !important
}

.gm-profile {
    width: 120px
}

.social-slider .s-frame {
    position: relative;
    box-shadow: var(--bs-box-shadow-sm)
}

.social-slider .s-frame .icon {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--theme-primary-dark);
    color: #fff;
    display: inline-block;
    padding: 1rem
}

.social-slider .s-frame,
.social-slider .s-frame img {
    aspect-ratio: 1;
    object-fit: cover;
    overflow: hidden
}

.fw-icon {
    width: 2rem
}

.flex-1 {
    flex: 1
}

footer a {
    color: rgba(255, 255, 255, .856);
    transition: all .4s
}

footer a:hover {
    color: var(--theme-warning)
}

.mobile-nav-toggler {
    background: var(--theme-primary);
    color: #fff;
    aspect-ratio: 1;
    display: flex;
    border-radius: var(--bs-border-radius-sm);
    align-items: center;
    justify-content: center;
    transition: all .3s
}

.mobile-nav-toggler:active,
.mobile-nav-toggler:hover {
    background: var(--theme-primary-dark) !important;
    color: #fff !important
}

.slider-360 .owl-stage {
    display: flex
}

.slider-360 .owl-stage .item {
    height: 100%;
    position: relative;
    z-index: 1
}

@media (min-width:992px) {
    .slider-360 .owl-stage .item::after {
        content: "\f101";
        font-family: FontAwesome;
        position: absolute;
        display: flex;
        color: var(--theme-dark);
        justify-content: center;
        align-items: center;
        top: 50%;
        right: -35px;
        transform: translateY(-50%);
        width: 50px;
        height: 50px;
        background: #fff;
        border-radius: 50%;
        z-index: 9
    }
}

.og-sec .og-card {
    padding: .5rem 1rem;
    transition: all .3s
}

.og-sec .og-card:hover {
    background: #fff;
    box-shadow: var(--bs-box-shadow-sm);
    border-radius: var(--bs-border-radius)
}

.f-enquiry {
    position: fixed;
    top: 50%;
    right: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    transform: translate(-33px, 0) rotate(90deg);
    padding: .25rem .5rem;
    background-color: var(--theme-warning);
    color: #fff;
    font-size: .9rem;
    z-index: 2;
    transform-origin: right bottom;
    transition: all .3s
}

.f-enquiry:active,
.f-enquiry:hover {
    background: var(--bs-light) !important;
    border-color: #fff !important;
    color: var(--theme-warning) !important
}

@keyframes slideLeft {
    from {
        top: 12%
    }

    to {
        top: 0
    }
}

.f-enquiry .en-dropdown {
    list-style: none;
    margin: 0;
    position: absolute;
    top: 0;
    left: -50%;
    width: max-content;
    background: var(--theme-warning);
    padding: 0;
    transform: rotate(-90deg) translateY(-55%);
    transform-origin: center right;
    box-shadow: var(--bs-box-shadow-sm);
    border-radius: var(--bs-border-radius-sm);
    overflow: hidden;
    z-index: 1;
    display: none;
    animation: slideLeft .5s ease
}

.f-enquiry span {
    cursor: pointer
}

@media (max-width:576px) {
    .f-enquiry {
        padding: .2rem .5rem;
        transform: translate(-29px, 0) rotate(90deg)
    }
}

.f-enquiry .en-dropdown button {
    padding: .25rem .5rem;
    border: 0;
    width: 100%;
    border-radius: 0;
    display: block;
    background-color: var(--theme-primary);
    color: #fff
}

.f-enquiry .en-dropdown button:hover {
    background-color: var(--theme-warning);
    color: #fff
}

.f-enquiry .en-dropdown li:not(:last-child) {
    border-bottom: 1px solid var(--bs-border-color)
}

.f-enquiry:hover .en-dropdown {
    display: block
}

@media (min-width:992px) {
    .video-banner {
        height: calc(100vh - 80px);
        width: 100%;
        object-fit: fill
    }
}

.fo-slider.owl-carousel .card {
    position: relative
}

.fo-slider.owl-carousel .card::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    outline: 1px solid #fff;
    outline-offset: -10px;
    z-index: 999
}

.fo-slider.owl-carousel .card-img-overlay {
    top: auto;
    padding: 0;
    transition: all .3s
}

.fo-slider.owl-carousel .card-img-overlay .card-title {
    background: #032551ba;
    color: #fff;
    padding: 5px 5px 15px 5px;
    margin: 0
}

strong {
    font-weight: 600 !important
}

.blog-home .owl-stage {
    display: flex
}

.blog-home .owl-item {
    display: flex
}

.blog-btn {
    border: 1px solid #e9ecef;
    color: var(--theme-warning);
    display: block;
    width: fit-content;
    transition: all .3s;
    font-weight: 600
}

.blog-btn:hover {
    background-color: var(--theme-warning);
    color: #fff !important;
    border-color: var(--theme-warning)
}

.blog-link {
    color: var(--theme-warning);
    transition: all .3s
}

.blog-link:hover {
    color: #212529
}

.blink {
    animation: blinker 1.5s linear infinite;
    color: var(--theme-warning)
}

@keyframes blinker {
    50% {
        opacity: 0
    }
}

.mr-2 {
    margin-right: 8px !important
}

.blog-years-filter {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem
}

.blog-years-filter span {
    width: calc(50% - .5rem);
    text-align: center;
    display: flex;
    justify-content: center
}

.blog-content h4 {
    color: var(--theme-warning);
    margin: 1rem 0
}

.blogmonth {
    width: 120px;
    text-align: left
}

.forBlogNavigation a {
    display: block;
    width: 100%
}

.blog-sec {
    background: url(https://resources.edunexttechnologies.com/web-data/dpssl/img/blog-bg.png) no-repeat center;
    background-size: cover
}

.forBlogSearch {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}

.searchInput {
    border-right: none
}

.years-filter select,
.years-filter span {
    border: 2px solid var(--theme-warning);
    color: var(--theme-warning);
    padding: .25rem .5rem;
    border-radius: .375rem;
    transition: all .3s;
    cursor: pointer
}

.years-filter span.active,
.years-filter span:hover {
    background: var(--theme-warning);
    color: #fff
}

.years-filter select {
    transition: all .3s
}

.years-filter select:hover {
    background: #bfffba
}

.years-filter select,
.years-filter span {
    border: 2px solid var(--theme-warning);
    color: var(--theme-warning);
    padding: .25rem .5rem;
    border-radius: .375rem;
    transition: all .3s;
    cursor: pointer
}

.years-filter span.active,
.years-filter span:hover {
    background: var(--theme-warning);
    color: #fff
}

.dropdown-custom {
    position: relative;
    border-radius: .25rem;
    cursor: pointer
}

.dropdown-custom ul {
    list-style: none;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    border: 2px solid var(--theme-warning);
    border-bottom-left-radius: .375rem;
    border-bottom-right-radius: .375rem;
    overflow: hidden
}

.dropdown-custom label,
.dropdown-custom ul li {
    padding: .5rem 2rem .5rem 1rem;
    cursor: pointer
}

.dropdown-custom ul li {
    background-color: #fff;
    color: var(--theme-warning);
    transition: all .2s
}

.dropdown-custom ul li:hover {
    background-color: var(--theme-warning);
    color: #fff
}

.dropdown-custom::after {
    content: "\f078";
    font-family: Fontawesome;
    color: inherit;
    position: absolute;
    top: .5rem;
    right: 1rem
}

.form-control:focus,
input:focus,
select:focus {
    box-shadow: none !important;
    outline: 0 !important;
    border: 1px solid var(--theme-warning)
}

label {
    margin-bottom: 0 !important
}

.searchDiv {
    position: absolute;
    text-align: left;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 1000;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    animation: slide .3s forwards
}

.searchDiv ul {
    border: 1px solid var(--theme-warning);
    cursor: pointer;
    list-style: none;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    border-bottom-left-radius: .375rem;
    border-bottom-right-radius: .375rem;
    overflow: hidden
}

.searchDiv ul li {
    padding: .5rem 2rem .5rem 1rem;
    cursor: pointer
}

.searchDiv ul li:hover {
    background-color: var(--theme-warning);
    color: #fff !important
}

.searchDiv ul li:hover a {
    color: #fff !important
}

.table thead tr th {
    background-color: var(--theme-warning);
    text-align: middle
}

.faculty-sec {
    border: 2px solid var(--bs-border-color)
}

.fac-img {
    height: 19rem;
    object-fit: cover;
    object-position: top;
    aspect-ratio: 9/7
}

.profile-card {
    position: relative;
    max-width: 400px;
    margin-inline: auto
}

.profile-card .profile-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    gap: .2em;
    line-height: 1.1;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: .5rem .8rem;
    background: rgba(38, 97, 172, .4);
    color: #fff
}

.text-link {
    color: inherit;
    transition: all .3s
}

.text-link:hover {
    color: var(--theme-primary)
}

.vp-slider {
    top: 6.8rem
}

.accordion-group {
    --theme-bg: #f7f7f7;
    --theme-c: var(--theme-primary)
}

.accordian-hover:hover,
.accordion-btn.active {
    --theme-bg: var(--theme-primary);
    --theme-c: white
}

.accordion-btn {
    background-color: var(--theme-bg);
    color: var(--theme-c);
    display: block;
    width: 100%;
    padding: .5rem 1rem;
    position: relative;
    text-align: left;
    border-radius: var(--bs-border-radius-sm);
    margin-bottom: .25rem
}

.accordion-btn::after {
    content: "\f054";
    font-family: Fontawesome;
    position: absolute;
    top: .5rem;
    right: 1rem;
    color: var(--theme-c);
    transition: all .3s
}

.accordion-btn.active::after {
    transform: rotate(90deg)
}

.accordion-body {
    padding: 1rem
}

.accordion-header {
    font-size: 1rem;
    font-weight: 600;
    font-family: Inter, sans-serif;
    background: #fff;
    color: var(--theme-primary);
    border: 1px solid var(--bs-border-color);
    padding: .5rem 1rem;
    border-radius: var(--bs-border-radius-sm);
    box-shadow: 0 1px 4px -1px rgba(0, 0, 0, .1);
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    gap: .5em;
    transition: all .2s
}

.accordion-header>* {
    font-weight: 600
}

.accordion-header::before {
    content: "\f129";
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--theme-primary-accent);
    color: var(--theme-primary);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: .8em;
    font-family: FontAwesome;
    flex-shrink: 0
}

.accordion-header::after {
    content: "\f107";
    width: 30px;
    height: 30px;
    display: inline-flex;
    justify-content: center;
    margin-left: auto;
    align-items: center;
    font-family: FontAwesome;
    transition: all .3s;
    flex-shrink: 0
}

.accordion-item:not(:last-child) {
    margin-bottom: .6rem
}

.accordion-item.open .accordion-header {
    background: var(--theme-primary);
    color: #fff
}

.accordion-item.open .accordion-header::after {
    transform: rotate(-180deg)
}

.accordion-body {
    background: #fff;
    margin: 0 0 .7rem;
    border-radius: var(--bs-border-radius-sm)
}

#banner-slider .carousel-caption {
    font-weight: 600;
    font-size: 1.8rem;
    background: #00000082;
    border-radius: var(--bs-border-radius-sm);
    border: 2px solid #ffffff73;
    backdrop-filter: blur(5px);
    max-width: max-content;
    padding: 1rem 2rem;
    margin: auto;
    color: khaki
}

#banner-slider .carousel-caption p {
    margin: 0
}

@media (max-width:767px) {
    .lh-2-max-md {
        line-height: 2 !important
    }
}

.content-internal-p1 {
    border-top-right-radius: .4rem !important;
    border-bottom-right-radius: .4rem !important
}

.content-internal-p2 {
    border-top-left-radius: .4rem !important;
    border-bottom-left-radius: .4rem !important
}

.build-img img {
    position: relative;
    z-index: 1;
    aspect-ratio: 7/8;
    box-shadow: var(--bs-box-shadow-sm);
    object-fit: cover;
    object-position: top
}

.build-img::before {
    content: "";
    height: 4.5rem;
    width: 4.5rem;
    position: absolute;
    top: -.45rem;
    z-index: 0;
    background-color: #2661ac;
    left: -.45rem
}

.build-img::after {
    content: "";
    height: 4.5rem;
    width: 4.5rem;
    position: absolute;
    bottom: -.42rem;
    z-index: 0;
    background-color: #f39633;
    right: -.37rem
}

@media (max-width:1024px) {
    .content-internal-p1 {
        border-left: 2px solid var(--bs-border-color) !important
    }

    .content-internal-p2 {
        border-right: 2px solid var(--bs-border-color) !important
    }
}

.program video {
    position: relative;
    z-index: 1
}

.program img {
    position: relative;
    z-index: 1
}

.program::before {
    content: "";
    height: 4.5rem;
    width: 4.5rem;
    position: absolute;
    top: -.45rem;
    z-index: 0;
    background-color: #2661ac;
    left: -.45rem
}

.program::after {
    content: "";
    height: 4.5rem;
    width: 4.5rem;
    position: absolute;
    bottom: -.48rem;
    z-index: 0;
    background-color: #f39633;
    right: -.37rem
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, 1fr);
    grid-template-areas: "a b" "a c";
    gap: .7rem
}

.about-grid img {
    object-fit: cover;
    object-position: top;
    height: 100%;
    border: 2px solid var(--theme-primary);
    transition: all .3s
}

.about-grid img:hover {
    box-shadow: var(--bs-box-shadow) !important;
    border-color: var(--theme-warning) !important
}

.about-grid .about-img-1 {
    grid-area: a
}

.about-grid .about-img-2 {
    grid-area: b
}

.about-grid .about-img-3 {
    grid-area: c
}

.lh-2 {
    line-height: 2 !important
}

@media (min-width:768px) {
    .build-img {
        position: sticky;
        top: 6.6rem
    }
}

.leader-strip1 {
    position: absolute;
    right: .65rem;
    bottom: 2rem;
    z-index: 1;
    width: 97%;
    text-align: center !important;
    font-weight: 700 !important;
    padding: .2rem 1rem;
    background: #00000000 linear-gradient(90deg, #fff 85%, #ffffff00 100%) 0 0 no-repeat padding-box;
    color: var(--theme-primary) !important
}

.first-letter::first-letter {
    color: var(--theme-warning);
    font-size: 1.3em;
    font-weight: 500
}

.main-header {
    z-index: 9999
}

.icon-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px
}

.icon-list li a {
    color: #000 !important
}

.icon-list li::before {
    content: "➤";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 18px;
    color: var(--theme-warning)
}

.crs-btn {
    margin-top: 3.95rem !important
}

@media (max-width:1024px) {
    .crs-btn {
        margin-top: 0 !important
    }
}

.heritage img {
    position: relative;
    z-index: 1
}

.heritage::before {
    content: "";
    height: 4.5rem;
    width: 4.5rem;
    position: absolute;
    top: -.45rem;
    z-index: 0;
    background-color: #2661ac;
    left: -.45rem
}

.heritage::after {
    content: "";
    height: 4.5rem;
    width: 4.5rem;
    position: absolute;
    bottom: .5rem;
    z-index: 0;
    background-color: #f39633;
    right: -.3rem
}

.about-section p {
    text-align: justify !important
}

.program img {
    position: relative;
    z-index: 1
}

.carImg {
    height: 15rem;
    object-fit: cover;
    object-position: top
}

.w-fit {
    width: fit-content !important
}

.fac-card {
    height: 15rem;
    object-fit: cover
}

.broc-btn:hover {
    background-color: var(--theme-warning) !important;
    color: #fff !important;

}

.ip-img img {
    position: relative;
    z-index: 1
}

.ip-img::before {
    content: "";
    height: 4.5rem;
    width: 4.5rem;
    position: absolute;
    top: -.45rem;
    z-index: 0;
    background-color: #2661ac;
    left: -.45rem;
}

.ip-img::after {
    content: "";
    height: 4.5rem;
    width: 4.5rem;
    position: absolute;
    bottom: .9rem;
    z-index: 0;
    background-color: #f39633;
    right: -.3rem;
}

.form {
    position: absolute;
    top: 4px;
    right: 0%;
    transform: translate(-25%, 0%);
    z-index: 1;
    width: 23rem;
    /* height: 100%; */
    padding: 0.8rem;
    background-color: #DDDDDD;
    z-index: 11;
}

.form-text {
    color: red;
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 0.7rem;
}

@media(max-width:576px) {
    .form {
        position: absolute;
        top: 100% !important;
        right: 0%;
        transform: translate(0%, 0%) !important;
        z-index: 1;
        width: 100%;
     
    }
}

.slider-img {
    height: 90vh;
}

@media(max-width:768px) {
    .form {
        background: none !important;
    }

    .form-text {
        display: none !important;
    }

    .slider-img {
        height: 20vh;
    }
}

.carousel-control-prev {
    left: -30px !important;
}

.carousel-control-next {
    right: -30px !important;
}
