/********** Template CSS **********/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap');

:root {
    --primary: #0a3070;
    --secondary: #679747;
    --light: #F5F8F2;
    --dark: #252C30;
}

/*------------Oswald Fonts--------------*/
@font-face {
    font-family: 'Oswald', sans-serif;
    src: url('../font/Oswald/Oswald-Bold.ttf');
    src: url('../font/Oswald/Oswald-VariableFont_wght.ttf');
}

@font-face {
    font-family: 'Oswald', sans-serif;
    src: url('../font/Oswald/Oswald-ExtraLight.ttf');
}

@font-face {
    font-family: 'Oswald', sans-serif;
    src: url('../font/Oswald/Oswald-Light.ttf');
}

@font-face {
    font-family: 'Oswald', sans-serif;
    src: url('../font/Oswald/Oswald-Medium.ttf');
}

@font-face {
    font-family: 'Oswald', sans-serif;
    src: url('../font/Oswald/Oswald-Regular.ttf');
}

@font-face {
    font-family: 'Oswald', sans-serif;
    src: url('../font/Oswald/Oswald-SemiBold.ttf');
}

@font-face {
    font-family: 'Oswald', sans-serif;
    src: url('../font/Oswald/Oswald-VariableFont_wght.ttf');
}

/*------------Oswald Fonts--------------*/
@font-face {
    font-family: 'Poppins', sans-serif;
    src: url('../font/Poppins/Poppins-Black.ttf');
}

@font-face {
    font-family: 'Poppins', sans-serif;
    src: url('../font/Poppins/Poppins-BlackItalic.ttf');
}

@font-face {
    font-family: 'Poppins', sans-serif;
    src: url('../font/Poppins/Poppins-Bold.ttf');
}

@font-face {
    font-family: 'Poppins', sans-serif;
    src: url('../font/Poppins/Poppins-BoldItalic.ttf');
}

@font-face {
    font-family: 'Poppins', sans-serif;
    src: url('../font/Poppins/Poppins-ExtraBold.ttf');
}

@font-face {
    font-family: 'Poppins', sans-serif;
    src: url('../font/Poppins/Poppins-ExtraBoldItalic.ttf');
}

@font-face {
    font-family: 'Poppins', sans-serif;
    src: url('../font/Poppins/Poppins-ExtraLight.ttf');
}

@font-face {
    font-family: 'Poppins', sans-serif;
    src: url('../font/Poppins/Poppins-ExtraLight.ttf');
}

@font-face {
    font-family: 'Poppins', sans-serif;
    src: url('../font/Poppins/Poppins-ExtraLightItalic.ttf');
}

@font-face {
    font-family: 'Poppins', sans-serif;
    src: url('../font/Poppins/Poppins-Italic.ttf');
}

@font-face {
    font-family: 'Poppins', sans-serif;
    src: url('../font/Poppins/Poppins-Light.ttf');
}

@font-face {
    font-family: 'Poppins', sans-serif;
    src: url('../font/Poppins/Poppins-LightItalic.ttf');
}

@font-face {
    font-family: 'Poppins', sans-serif;
    src: url('../font/Poppins/Poppins-Medium.ttf');
}

@font-face {
    font-family: 'Poppins', sans-serif;
    src: url('../font/Poppins/Poppins-MediumItalic.ttf');
}

@font-face {
    font-family: 'Poppins', sans-serif;
    src: url('../font/Poppins/Poppins-Regular.ttf');
}

@font-face {
    font-family: 'Poppins', sans-serif;
    src: url('../font/Poppins/Poppins-SemiBold.ttf');
}

@font-face {
    font-family: 'Poppins', sans-serif;
    src: url('../font/Poppins/Poppins-SemiBoldItalic.ttf');
}

@font-face {
    font-family: 'Poppins', sans-serif;
    src: url('../font/Poppins/Poppins-Thin.ttf');
}

@font-face {
    font-family: 'Poppins', sans-serif;
    src: url('../font/Poppins/Poppins-ThinItalic.ttf');
}

html,
body {
    overflow-x: auto;
}

* {
    margin: 0;
    padding: 0;
}

p, a, ul, button, span, table{
    font-size: 13px !important;
}
.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.fw-medium {
    font-weight: 600;
}

.fw-bold {
    font-weight: 700;
}

.fw-black {
    font-weight: 900;
}

.pad-100 {
    padding: 0 100px;
}

.mar-100 {
    margin: 0 100px;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--light);
}

.btn-secondary,
.btn-outline-secondary:hover {
    color: var(--dark);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.sticky-top {
    top: -150px;
    transition: .5s;
}

.navbar .navbar-brand {
    position: absolute;
    padding: 0;
    width: 170px;
    height: 135px;
    top: 0;
    left: 0;
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 10px 0;
    color: var(--dark);
    font-weight: 600;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #0a3070 !important;
    text-decoration: underline;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .dropdown-menu {
    background-color: #679747;
}

.navbar .dropdown-item:hover,
.dropdown-item:focus {
    color: #fff;
    background-color: #0a3070;
}

.dropdown-menu.sub-dropdown-menu {
    left: 160px;
}

.navbar .sub-menu-item.dropdown-toggle::after {
    border: none;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

/*--------------------------------*/
@media (max-width: 991.98px) {
    .navbar .navbar-brand {
        width: 126px;
        height: 100px;
    }

    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 15px 0;
    }

    .navbar .navbar-nav {
        margin-top: 0;
        border-top: 1px solid #EEEEEE;
    }

    .navbar .sub-menu-level2.dropdown-toggle::after {
        content: "\f107";
    }

    .mega-menu {
        display: none !important;
    }




}

@media (min-width: 992px) {
    .display-dt {
        display: none !important;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }


    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }

    .navbar .nav-item:hover .sub-dropdown-menu {
        visibility: hidden;
    }

    .navbar .sub-menu-level2:hover .sub-dropdown-menu {
        visibility: visible;
        transition: .2s;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    /* background: rgba(136, 180, 78, .7); */
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: auto;
    position: relative;
    right: 0;
    left: auto;
    float: left;
    margin-left: 10px;
    border: solid 2px #fff;
    border-radius: 50%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 3.5rem;
    background-color: none;
    border: 15px solid #252c3000;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }

    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-two li {
        margin-left: 5px !important;
        padding-left: 7px !important;
    }
}






/*** About ***/
.home-about-bx {
    background-color: #f4f6f9;
    padding: 30px;
    margin-top: 50px;
    height: 80%;
    transition: .5s;
}

.home-about-bx:hover {
    box-shadow: #0a3070 5px 5px 0px 0px;
}

.home-about-bx p {
    font-size: 15px;
    color: #686868;
}

.home-about-bx h3 {
    font-size: 22px;
    font-weight: 600;
}

.about-section {
    padding: 75px 0;
}

.about-section h1 {
    font-size: 35px;
}

/*-----------Our Courses------------------*/
.courses-section {
    background-image: url('../img/course-bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 100px 0;
}

.courses-bx {
    display: flex;
    transition: .5s;
    cursor: pointer;
    height: 197px;
    margin-bottom: 5%;
}

.news-block-cnt:hover {
    box-shadow: rgb(0 0 0 / 21%) 0px 8px 25px;
}

.courses-bx img {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    transition: .5s;
    height: 197px;
    object-fit: cover;
    width: 300px;
}

.courses-bx-cnt p span {
    font-size: 14px;
    font-weight: 600;
}

.courses-bx-cnt h3 {
    font-weight: 500;
    font-size: 20px;
    height: 50px;
}

.courses-bx-cnt {
    padding: 25px;
    width: 70%;

}

.courses-bx-cnt a {
    font-size: 14px;
    background-color: #659545;
    margin-top: 0px;
}

/*.courses-bx img:hover {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}*/
.courses-bx:hover {
    box-shadow: rgb(0 0 0 / 21%) 0px 8px 25px;
}

.courses-bx:hover img {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

@media ((min-width: 992px) and (max-width: 1530px)) {
    .courses-bx {
        display: flex;
    }
    .dotblock-bx-img {
        width: 100px;
        height: 100px;
        padding: 20px;
    }
    .dotblock-leftimg img {
        height: 240px;
    }
    .dotblock-bx h4 {
        font-size: 18px
    }

    .courses-bx-cnt a {
        margin-top: 0px;
    }

    .courses-bx img {
        width: 100%;
    }

    .courses-bx img {
        border-bottom-left-radius: 0px;
        border-top-right-radius: 4px;
    }
}

/*--------dot block---------*/
.dotblock-section {
    padding: 100px 0;
}

.dotblock-bx {
    border: 2px dashed #3662ab;
    padding: 30px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    transition: .5s;

}

.dotblock-bx-img {
    text-align: center;
    background-color: #f5f4f4;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    padding: 30px;
    margin: 0 auto;
}

.dotblock-bx h4 {
    font-weight: 500;
    padding-top: 40px;
    color: #0a3070;
}

.dotblock-leftimg img {
    border: 2px dashed #3662ab;
    border-radius: 10px;
    height: 290px;
}

.dotblock-bx:hover {
    background-color: #3662ab;
}

.dotblock-bx:hover h4 {
    color: #fff;
}

/*--------placements---------*/
.placement-left {
    padding: 70px 100px 70px 70px;
}

.placement-left h2 {
    font-weight: 500;
}

.placement-icon-boxes img {
    width: 46px;
    height: 46px;
}

.bg-shape::before {
    content: '';
    position: absolute;
    width: 60%;
    height: 100%;
    background-color: #f3f3f8;
    left: 100px;
    top: 0;
    bottom: 0;
    z-index: -1;
}

.relative {
    position: relative;
}

.placement-icon-title h2 {
    color: #679747;
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
}

.placement-icon-bx {
    width: 75%;
}

.hover-effect {

    position: relative;
}

.hover-effect::before {
    right: 0;
    opacity: 0.7;
    top: 0;
}

.hover-effect::after {
    bottom: 0;
    opacity: 0.7;
    left: 0;
}


.hover-effect::before,
.hover-effect::after {
    content: "";
    background: #fff;
    height: 0;
    width: 0;
    z-index: 1;
    position: absolute;
    -webkit-transition-duration: 1.3s !important;
    -o-transition-duration: 1.3s;
    transition-duration: 1.3s !important;
}

.hover-effect:hover::after,
.hover-effect:hover::before {
    height: 100%;
    opacity: 0;
    width: 100%;
}

/*--------------statistics-section------------*/
.statistics-section {
    background-image: url('../img/bg-statistics.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 501px;
}

.statistics-block {
    padding: 50px;
}

.statistics-counter h1 {
    font-weight: 200;
}

.statistics-counter h2 {
    font-size: 60px;
    font-weight: 300;
}

.statistics-counter p {
    color: #444;
    font-size: 22px;
    font-weight: 500;
}

.alumini-card {
    background-color: #fff;
    border-radius: 20px;
    padding: 50px;
    position: absolute;
    bottom: -160px;
    box-shadow: rgb(0 0 0 / 21%) 0px 8px 25px;
    width: 550px;
    transition: .5s;
}

.alumini-card h2 {
    color: #679747;
    font-weight: 400;
}

.alumini-card:hover {
    animation: shake 0.82s cubic-bezier(.36, .07, .19, .97) both;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    perspective: 1000px;
}

@keyframes shake {

    10%,
    90% {
        transform: translate3d(-1px, 0, 0);
    }

    20%,
    80% {
        transform: translate3d(2px, 0, 0);
    }

    30%,
    50%,
    70% {
        transform: translate3d(-4px, 0, 0);
    }

    40%,
    60% {
        transform: translate3d(4px, 0, 0);
    }
}

/*-----------News----------*/
.news-section {
    background-color: #f3f3f8;
    padding: 200px 0 100px 0
}

.testimonial-item {
    position: relative;
    text-align: left;
    background: #679747;
    border-radius: 10px;
    color: #fff;
    padding: 60px 50px 90px 90px;
}

.testimonial-item .qoute-icon img {
    width: 58px !important;
    height: 54px;
    position: absolute;
    left: 20px;
    top: 20px;
}

.testimonial-cnt img {
    width: 60px !important;
    height: 60px !important;
    border-radius: 60px;
}

.testimonial-carousel .owl-dots {
    margin-top: -50px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 10px;
    height: 10px;
    background: rgb(255 255 255 / 50%);
    border-radius: 15px;
    transition: .5s;
}

.testimonial-cnt h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    margin-top: 20px;
}

.testimonial-carousel .owl-dot.active {
    background: #fff;
}

.news-block-cnt span {
    color: #679747;
}

.news-block img {
    width: 100%;
    height: 270px;
}

.news-block-cnt {
    transition: .5s;
    cursor: pointer;
}

/*-----------Footer------------*/
.footer-top {
    background-image: url('../img/footer-top-bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 70px 0;
    position: relative;
    z-index: 99;
}

.footer-top-cnt h4 {
    font-weight: 400;
}

.footer-top-cnt li a {
    color: #fff;
    padding: 7px 0;
    display: block;
    font-weight: 300;
    transition: .5s;
}

.footer-top-cnt li {
    list-style-type: none;
}

.footer-top-cnt li a:hover,
.footer-top-icon a,
.copyright a:hover,
.copyright-left li a:hover {
    color: #679747;
    transition: .5s;
}

.footer-top-icon i {
    color: #679747;
    margin-right: 5px;
    font-size: 18px;
}

.footer-top-icon a {
    color: #fff;
    font-family: 'Oswald', sans-serif;
    margin-bottom: 6px;
    display: inline-block;
}

.copyright p,
.copyright a {
    color: #fff;
    font-size: 14px;
    margin-bottom: 0;
}

.copyright {
    background: #123d85;
    position: relative;
    z-index: 99;
}

.copyright-left li {
    list-style-type: none;
    display: inline-block;
    margin: 0 3px;
    font-size: 16px;
}

.copyright-left li a {
    color: #fff;
}

/*--------Mobile View-----------------*/
@media (max-width: 992px) {
    .pad-100 {
        padding: 0 15px;
    }

    .bg-shape::before {
        width: 100%;
        left: 0;
        right: 0;
    }

    .placement-left {
        padding: 30px 0;
    }

    .alumini-card {
        position: inherit;
        margin-bottom: 30px;
    }

    .statistics-section {
        height: auto;
    }

    .dotblock-bx {
        margin-top: 20px;
        height: auto;
    }

    .news-block {
        margin-top: 20px;
        display: block;
    }
}


.modal-video .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

.modal-video .modal-body {
    position: relative;
    padding: 0px;
}

.modal-video .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}



/*** Contact ***/
.contact .btn-square {
    width: 100px;
    height: 100px;
    border: 20px solid var(--light);
    background: var(--primary);
    border-radius: 50px;
}


/*** Testimonial ***/





/*** Footer ***/




/* HOME NAV */
header {
    float: left;
    width: 100%;
    position: relative;
    z-index: 100;
}

.header-one {
    background-color: #082454;
    float: left;
    width: 100%;
    padding: 5px 0 ;
}

.header-one i {
    color: #7cbb1f;
    margin-right: 5px;
}

.header-one ul {
    list-style: none;
    margin: 0;
    text-align: right;
}

.header-one li {
    display: inline;
    margin-left: 15px;
}

.header-one l a {}

.header-one a {
    color: #fff;
    opacity: .6;
    font-size: 13px;
}

.header-two {
    float: left;
    width: 100%;
    background: #0a3070;
    padding: 15px 0;
}

.header-two h1 {
    float: left;
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    color: #fff;
    font-weight: 500;
    padding: 10px 0;
}

.header-two ul {
    list-style: none;
    margin: 0 0;
    text-align: right;
    padding: 15px 0;
}

.header-two li {
    display: inline;
    border-left: solid 1px #fff;
    margin-left: 15px;
    padding-left: 15px;
}

.header-two li:nth-child(1) {
    border: none;
}

.header-two a {
    color: #fff;
    width: 88px;
    height: 88px;
}

.header-two li a {
    font-size: 16px;
}


.header-three {
    float: left;
    width: 100%;
    background: #0193de;
}

.nav-logo {
    float: left;
    margin-right: 30px;
}

.nav-logo img {
    width: 100%;
}

.pc-none {
    display: none;
}

nav {
    float: left;
    width: 100%;
}

nav a {
    font-family: 'Oswald', sans-serif;
    color: #fff !important;
    font-weight: 400 !important;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.home-banner {
    float: left;
    width: 100%;
}

.float-none {
    float: none;
}

.banner-text {
    text-align: left;
    background: rgb(10, 48, 112);
    background: linear-gradient(90deg, rgba(10, 48, 112, 1) 0%, rgba(10, 48, 112, 0) 100%);
    float: left;
    width: 100%;
    max-width: 670px;
    padding: 50px;
}

.banner-text h2 {
    font-size: 60px;
    font-family: 'Oswald', sans-serif;
    color: #fff;
    float: left;
    width: 100%;
    margin-bottom: 10px;
}

.banner-text p {
    float: left;
    width: 100%;
    font-size: 17px;
}

.btn-new {
    font-family: 'Oswald', sans-serif;
    color: #fff;
    background: #679747;
    padding: 10px 30px;
    margin-top: 10px;
    float: left;
    border-radius: 0;
    font-weight: 400;
    letter-spacing: 1px;
    transition: .5s;

}

.btn-new:hover {
    color: #fff;
    background-color: #0a3070;
}

.banner-btn {
    float: right;
    width: 100%;
    max-width: 150px;
    margin-top: -70px;
}

.events-notice {
    float: left;
    width: 100%;
    background: #f3f3f8;
    padding: 60px 0;
}

.owl-carousel1 .item {
    border: 1px solid #c1c1ca;
    box-shadow: #c1c1ca 4px 4px 0px 0px;
    margin-bottom: 6px;
}

.owl-carousel1 .item span {
    position: absolute;
    background: #659545;
    color: #fff;
    padding: 10px;
    font-family: 'Oswald', sans-serif;
    line-height: 21px;
    font-size: 18px;
}

.upcoming-cnt {
    padding: 15px;
}

.upcoming-cnt p {
    margin-bottom: 5px;
}

.owl-carousel1 .item h2 {
    color: #0a3070;
    font-size: 18px;
    font-weight: 600;
    padding: 15px 0;
    margin-bottom: 0;
}

.owl-carousel1 .item p {
    color: #383838;
    font-size: 15px;
}

.owl-carousel1 .owl-nav {
    display: none;
}

.main-title {
    font-family: 'Oswald', sans-serif;
    color: #0a3070;
    font-size: 35px;
    margin-bottom: 30px;
}

.events-notice .btn-new {
    float: right;
    position: relative;
    /* z-index: 10000; */
}

.events-notice marquee {
    background: #fff;
    padding: 25px;
    border: dashed 1px #0a3070;
    border-radius: 10px;
    height: 420px;
}

.events-notice marquee p {
    font-size: 15px;
    margin-bottom: 0;
}

.events-notice marquee h4 {
    font-size: 15px;
    color: #578e37;
    font-weight: 500;
    margin-bottom: 0;
}

.events-notice marquee span {
    float: left;
    width: 100%;
    margin-bottom: 25px;
}

.events-notice .owl-dots {
    margin-top: 20px;
}

.navbar-toggler:focus {
    text-decoration: none;
    outline: 0 !important;
    box-shadow: none;
}

.scroll-strip .splide__slide {
    background-color: #679747;
    color: #fff;
    padding: 12px 0;
    margin-right: -1px;
}

.announcement-title h5 {
    background-color: #0a3070;
    color: #fff;
    padding: 10px 0 10px 100px;
}

.announcement {
    margin-bottom: -10px;
}

.announcement .splide__arrow,
.announcement .splide__pagination {
    display: none;
}

/*-------------------------------*/
.item-slick.slick-slide.slick-current.slick-active {
    outline: none !important;
}

.slider-for {
    margin-bottom: 15px;
}

.slider-for img {
    width: 100%;
    min-height: 100%;
}

.slider-nav {
    margin: auto;
}

.slider-nav .item-slick {
    max-width: 240px;
    margin-right: 15px;
    outline: none !important;
    cursor: pointer;
}

.slider-nav .item-slick img {
    max-width: 100%;
    background-size: cover;
    background-position: center;
}

.slick-arrow {
    position: absolute;
    top: 100%;
    z-index: 50;
    margin-top: 0;
    width: 100%;
    text-align: center;
    cursor: pointer;
}

.slider-prev {
    left: -60px;
}

.slider-next {
    right: -20px;
}

.slider-next::before,
.slider-prev::before {
    background-color: #0a3070;
    width: 30px;
    height: 30px;
    color: #fff;
    position: absolute;
    padding: 2px;
    font-size: 25px;
    transition: .5s;
}

.slider-next:hover::before,
.slider-prev:hover::before {
    background-color: #679747;
}

.slick .slick-next:before,
.slick .slick-prev:before {
    opacity: 1;
    color: #0a3070;
    font-size: 40px;
}

.slick .slick-next,
.slick .slick-prev {
    position: absolute;
    top: 100%;
    width: 100%;
    margin-top: 10px;
}

/*-------------------------------*/
@media screen and (max-width: 991px) {
    .header-one {
        text-align: center;
    }

    .header-one ul {
        text-align: center;
        padding-left: 0;
    }

    .header-one li {
        display: block;
    }

    .nav-logo {
        margin-right: 10px;
    }

    .header-two h1 {
        font-size: 27px;
        padding: 7px 0;
        max-width: 250px;
    }

    .nav-logo {
        margin-right: 10px;
    }

    .header-two ul {
        text-align: center;
        padding-bottom: 10px;
        padding-top: 20px;
    }

    .banner-text h2 {
        font-size: 25px;
    }

    .events-notice marquee {
        height: auto;
    }

    .alumini-card {
        width: auto;
    }

    .events-notice .owl-dots {
        margin-top: 0;
    }

    .events-notice .btn-new {
        margin-top: 0;
    }

    .courses-bx {
        margin-bottom: 20px;
    }

    .news-section {
        padding: 70px 0;
    }

    .statistics-block {
        padding: 30px 0;
    }


}

@media (max-width: 767px) {
    .slick-slider {
        margin-bottom: 50px;
    }

    .display-mn {
        display: none;
    }

    .courses-bx {
        background-color: #fff;
    }
    .home-about-bx{
        height: auto;
    }
    .news-block img {
        height: auto;
    }
    .placement-section.relative{
        margin-bottom: 0;
    }
    .course-img img{
        height: auto;
    }
    table {
        overflow-x: auto;
        display: block;
        height: auto !important;
    }
    .camera-view{
        display: none;
    }
}

@media (min-width: 768px) {
    .navigation-menu {
        display: none;
    }


}

@media (max-width: 576px) {
    .news-section h3 {
        margin-top: 50px;
    }
}



nav p {
    text-align: center;
}

.toggle,
[id^=drop] {
    display: none;
}

nav {
    margin: 0;
    padding: 0;
    /* background-color: #254441; */
}



nav:after {
    content: "";
    display: table;
    clear: both;
}

nav ul {
    float: left;
    padding: 0;
    margin: 0;
    list-style: none;
    /*position: relative;*/
}

nav ul li {
    margin: 0px;
    display: inline-block;
    float: left;
    background-color: #0193de;
}

nav a {
    display: block;
    padding: 0 20px;
    color: #FFF;
    font-size: 16px;
    line-height: 30px;
    text-decoration: none;
    transition: .5s;
}

/*nav ul li ul li:hover { background: #0a3070; }*/

nav a:hover,
.toggle:hover {
    background-color: #0a3070;
    transition: .5s;

}

nav ul ul {
    display: none;
    position: absolute;
    /* top: 60px; */
    transition: .5s;
}

nav ul li:hover>ul {
    display: inherit;
}

nav ul ul li {
    width: auto;
    float: none;
    display: list-item;
    position: relative;
}

nav ul ul ul li {
    position: relative;
    top: -60px;
    left: 170px;
}

.menu li>a:after {
    content: ' +';
}

li>a:only-child:after {
    content: '';
}

.toggle-title {
    display: none;
}

nav ul ul ul {
    top: 60px;
    margin-left: -34px;
    width: max-content;
}

.mega-menu {
    display: none;
    position: absolute;
    height: auto;
    width: 100%;
    left: 0;
    right: 0;
    padding: 0 20px 20px;
    background-color: #0193de;
}

nav ul li:hover>.mega-menu {
    display: inherit;
}

nav .mega-menu ul {
    display: contents;
}

.mega-menu h5 {
    color: #fff;
    padding: 0 20px 10px;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    margin-top: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgb(255 255 255 / 32%);
}


/* Media Queries
--------------------------------------------- */

@media all and (max-width : 768px) {
    .toggle-title {
        display: block;
    }

    #logo {
        display: block;
        padding: 0;
        width: 100%;
        text-align: center;
        float: none;
    }

    nav {
        margin: 0;
    }

    .toggle+a,
    .menu {
        display: none;
    }

    .toggle {
        display: block;
        /* background-color: #254441; */
        padding: 0 20px;
        color: #FFF;
        font-size: 16px;
        line-height: 40px;
        text-decoration: none;
        border: none;
        font-family: 'Oswald', sans-serif;
        width: 100%;
        cursor: pointer;
        text-transform: uppercase;
    }

    .toggle-title {
        padding: 15px;
        color: #FFF;
        font-family: 'Oswald', sans-serif;
        width: 100%;
        cursor: pointer;
        text-transform: uppercase;
    }

    /*.toggle:hover {background-color: #082454;}*/

    [id^=drop]:checked+ul {
        display: block;
    }

    nav ul li {
        display: block;
        width: 100%;
    }

    nav ul ul .toggle,
    nav ul ul a {
        padding: 0 40px;
    }

    nav ul ul ul a {
        padding: 0 80px;
    }

    /*nav a:hover,
 nav ul ul ul a {background-color: #082454;}*/
    nav ul li ul li .toggle,
    nav ul ul a {
        /* background-color: #212121; */
    }

    nav ul ul {
        float: none;
        position: static;
        color: #ffffff;
        border: 1px solid rgb(255 255 255 / 15%);
        margin-left: 0px;
    }

    nav ul ul li:hover>ul,
    nav ul li:hover>ul {
        display: none;
    }

    nav ul ul li {
        display: block;
        width: 100%;
    }

    nav ul ul ul li {
        position: static;

    }

    nav ul ul ul {
        width: auto;
        margin-left: 0px;

    }
}

@media all and (max-width : 330px) {

    nav ul li {
        display: block;
        width: 94%;
    }

}

.nonscaling {
    transform-origin: 0 0;
}

/* 2. scale and layout setting at 125% */
@media (resolution: 1.25dppx) {
    .nonscaling {
        transform: scale(0.80);
    }

}

/* 3. scale and layout setting at 150% */
@media (resolution: 1.5dppx) {
    .nonscaling {
        transform: scale(0.6666);
    }
}

/* 4. scale and layout setting at 175% */
@media (resolution: 1.75dppx) {
    .nonscaling {
        transform: scale(0.5714);
    }
}

.courses-bx:hover {}

.pad-left-100 {
    padding-left: 100px;
}

.inner-banner {
    background-image: url('../img/inner-banner.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 100px 0px;
    float: left;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 1;
}

.inner-banner:after {
    content: '';
    position: absolute;
    background-color: rgba(17, 17, 17, 0.8);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.inner-banner h1 {
    font-size: 36px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
    position: relative;
    margin-bottom: 35px;
}

.inner-banner ul {
    padding: 0;
    z-index: 10;
    position: relative;
}

.inner-banner li {
    color: #00ABE1;
    display: inline-block;
    font-weight: 400;
}

.inner-banner a {
    position: relative;
    padding-right: 30px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    color: #ffffff;
}


.inner-banner a:before,
.inner-banner a:after {
    background-color: rgba(255, 255, 255, 0.8);
    content: "";
    height: 15px;
    width: 2px;
    position: absolute;
    right: 7px;
    top: 2px;
    transform: rotate(26deg);
}

.inner-banner a:before {
    right: 13px;
}

.accordion-button {
    background: none;
    box-shadow: none;
    /*     border-bottom: solid 1px #0a307021; */
    padding: 10px 0;
}

.accordion-button:not(.collapsed) {
    color: #7aa246;
    background-color: #fff0;
    box-shadow: none;
}

.accordion-item {
    border: none;
}

.accordion-button:focus {
    z-index: 3;
    border-color: #0000;
    outline: 0;
    box-shadow: none;
}

.accordion-item a {
    color: #88b44e;
    text-decoration: none;
    width: 100%;
    color: #000;
    float: left;
    padding: 5px 0;
}

.accordion-header {
    margin-bottom: 0;
    border-bottom: 1px solid #ddd;
}

.inner-page-data h3 {
    padding: 10px 0;
}

.inner-page-data p {
    margin: 0 0 10px 0;
}

.contact a {
    color: #000;
}

img {
    max-width: 100%;
}

.gallery .owl-item {
    padding: 15px;
    background: #88b44e;
}

.gallery .owl-item h4 {}

.video-box {}

.video-box a {
    position: relative;
    float: left;
    width: 100%;
    color: #fff;
}

.video-box span {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    font-size: 65px;
    background: #0000004f;
}

/* .video-box img::after {
      content: "";
      background: #fff;
      height: 0;
      width: 0;
      z-index: 1;
      position: absolute;
      -webkit-transition-duration: 1.3s !important;
      -o-transition-duration: 1.3s;
    transition-duration: 1.3s !important;
  }

 */

.sidebar-navigation {
    width: 100%;
    height: auto;
    background-color: #fff;
    /* margin: 50px auto; */
    webkit-box-shadow: 3px 5px 10px 0px rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 3px 5px 10px 0px rgba(0, 0, 0, 0.16);
    box-shadow: 3px 5px 10px 0px rgba(0, 0, 0, 0.16);
    max-width: 308px;
    z-index: 10;
}

.sidebar-navigation .title {
    display: block;
    font-size: 1.2em;
    background-color: #1e1e1e;
    padding: 20px 25px;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.sidebar-navigation>ul>li>a {
    text-transform: uppercase;
}

.sidebar-navigation ul {
    margin: 0;
    padding: 0;
}

.sidebar-navigation ul li {
    display: block;
}

.sidebar-navigation ul li a {
    position: relative;
    display: block;
    font-size: 1em;
    font-weight: 600;
    padding: 10px 25px;
    text-decoration: none;
    color: #2e2e2e;
    letter-spacing: 0.02em;
    border-bottom: 1px solid #eee;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
}

.sidebar-navigation ul li a em {
    font-size: 24px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    padding: 5px;
    border-radius: 50%;
}

.sidebar-navigation ul li:hover>a,
.sidebar-navigation ul li.selected>a {
    background-color: #ecf0f1;
    color: #495d62;
    border-color: rgba(255, 255, 255, 0.1);
}

.sidebar-navigation ul li ul {
    display: none;
}

.sidebar-navigation ul li ul.open {
    display: block;
}

.sidebar-navigation ul li ul li a {
    color: #495d62;
    border-color: rgba(255, 255, 255, 0.1);
}

.sidebar-navigation ul li ul li a:before {
    content: "";
    width: 10px;
    height: 1px;
    margin-right: 5px;
    display: inline-block;
    vertical-align: middle;
    background-color: #495d62;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.sidebar-navigation ul li ul li:hover>a,
.sidebar-navigation ul li ul li.selected>a {
    background-color: #e6ebed;
}

.sidebar-navigation ul li ul li:hover>a:before,
.sidebar-navigation ul li ul li.selected>a:before {
    margin-right: 10px;
}

.sidebar-navigation ul li ul li.selected.selected--last>a {
    background-color: #94aab0;
    color: #fff;
}

.sidebar-navigation ul li ul li.selected.selected--last>a:before {
    background-color: #fff;
}

.subMenuColor1 {
    background-color: #fbfcfc;
}

.subMenuColor2 {
    background-color: white;
}

.subMenuColor2 {
    background-color: white;
}

.subMenuColor2 {
    background-color: white;
}

.subMenuColor2 {
    background-color: white;
}

.subMenuColor2 {
    background-color: white;
}

.subMenuColor2 {
    background-color: white;
}

.subMenuColor2 {
    background-color: white;
}

.subMenuColor2 {
    background-color: white;
}

.subMenuColor2 {
    background-color: white;
}




.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
    }

    100% {
        box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
    }
}



#leftnavbar.sticky {
    position: fixed;
    width: 100%;
    height: 350px;
    top: 50px;
}


/* Scrollbar Styling */
.sidebar-navigation::-webkit-scrollbar {
    width: 10px;
}

.sidebar-navigation::-webkit-scrollbar-track {
    background-color: #ebebeb;
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

.sidebar-navigation::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: #6d6d6d;
}

.sidebar-navigation {
    max-height: 100vh;
    /* height: 350px; */
    overflow: auto;
}

@media screen and (max-width: 991px) {}


.sticky-nav {
    position: fixed;
    top: 0;
    width: 100%;
}


.onTop {
    position: fixed;
    z-index: 9999;
    width: 92%;
    top: 0;
}




.arrow-down-icon {
    display: inline-block;
    color: #fff;
    -webkit-filter: invert(100%) sepia(0%) saturate(6747%) hue-rotate(155deg) brightness(82%) contrast(90%);
    filter: invert(100%) sepia(0%) saturate(6747%) hue-rotate(155deg) brightness(82%) contrast(90%);
}

.icon-wrapper {
    display: inline-block;
}


.hamburger-toggle-button {
    position: relative;
    display: none;
    width: 40px;
    height: 38px;
    padding: 0.30rem;
    border: none;
    background-color: #679747;
    cursor: pointer;
    transition: 0.15s;
    -webkit-transition: 0.15s;
}

.hamburger-toggle-button:hover {
    background-color: #88b44e;
}

.nav-drawer {
    display: flex;
    flex-direction: column;
    justify-content: baseline;
    align-items: baseline;
    position: fixed;
    top: 0;
    left: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    font-family: 'Oswald', sans-serif;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    z-index: 5;
    box-shadow: rgb(0 0 0 / 21%) 0px 8px 25px;
}

.nav-drawer.active {
    left: 0;
}

.nav-drawer.inactive {
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
}

.close-button {
    display: inline-flex;
    align-self: flex-end;
    padding: 0.5rem;
    margin: 2.5vw;
    border-radius: 50%;
    background-color: transparent;
    outline: 1px solid #cfcece;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    border: none;
    cursor: pointer;
    height: 2.25rem;
    width: 2.25rem;
    transition: 0.15s;
    -webkit-transition: 0.15s;
}

.close-button:hover {
    background-color: #0a3070;
    outline: none;
}

.close-button:active {
    background-color: #0a3070;
    outline: none;
}

.close-button-icon {
    transition: 0.15s;
    -webkit-transition: 0.15s;
    stroke: #000;
}

.close-button-icon-hovered {
    stroke: #fff;
}

.nav-drawer ul {
    display: flex;
    flex-direction: column;
    list-style: none;
    margin: 10px 10px 10px 22px;
    padding: 0;
}

.nav-drawer ul li {
    margin: 20px 0;
}

.nav-drawer ul li a {
    padding: 0.5em 1em 0.5em 1em;
    text-decoration: none;
    color: #0a3070;
    font-size: 1.2rem;
    border-radius: 5px;
}

.nav-drawer ul li a:hover {
    background-color: #679747;
    color: #fff;
}

.nav-drawer>.triangular-arrow {
    display: inline-block;
}

.arrow {
    width: 12px;
    height: 12px;
}

.nav-drawer .treeview>.nested li {
    margin: 5px 0 0 0;
}

.treeview.disabled>.nested {
    display: none;
}

.treeview.active>.nested {
    display: inline-block;
}

.arrow-down {
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
}

.treeview-wrapper {
    display: block;
    cursor: pointer;
    margin-left: -18px;
    user-select: none;
}

@media (max-width: 992px) {
    header {
        z-index: 1;
    }

    .navigation-menu {
        position: fixed;
        top: 50%;
        left: 0;
        z-index: 999;
    }

    .menu {
        display: none;
    }

    .hamburger-toggle-button {
        display: block;
    }

    .nav-drawer {
        width: 65%;
        max-width: none;
    }

    .nav-drawer ul>li {
        margin: 10px 0;
    }

    .nav-drawer .treeview ul {
        margin-top: 1em;
    }
}

.tickerwrapper {
    /* the outer div */

    position: relative;
    top: 30px;
    left: 0%;
    border: 1px solid #444;
    background: #fff;
    width: 99.9%;
    height: 30px;
    overflow: hidden;
    cursor: pointer;
}

ul.list {
    position: relative;
    display: inline-block;
    list-style: none;
    padding: 0;
    margin: 0;
}

ul.list.cloned {
    position: absolute;
    top: 0px;
    left: 0px;
}

ul.list li {
    float: left;
    padding-left: 20px;
}

      .op-6{
        opacity: .6;
      }

      .timeline {
          position: relative;
      }

      .timeline::before {
          content: '';
          background: #C5CAE9;
          width: 5px;
          height: -webkit-fill-available;
          position: absolute;
          left: 50%;
          transform: translateX(-50%);
      }

      .timeline-item {
          width: 100%;
          margin-bottom: 70px;
              clear: both;
      }

      .timeline-item:nth-child(even) .timeline-content {
          float: right;
          padding: 40px 30px 10px 30px;
      }

      .timeline-item:nth-child(even) .date {
          right: auto;
          left: 0;
      }

      .timeline-item:nth-child(even)::after {
          content: '';
          position: absolute;
          border-style: solid;
          width: 0;
          height: 0;
          top: 30px;
          left: -15px;
          border-width: 10px 15px 10px 0;
          border-color: transparent #f5f5f5 transparent transparent;
      }

      .timeline-item::after {
          content: '';
          display: block;
          clear: both;
      }

      .timeline-content {
          position: relative;
          width: 45%;
          padding: 10px 30px;
          border-radius: 4px;
          background: #f5f5f5;
          box-shadow: 0 20px 25px -15px rgba(0, 0, 0, 0.3);
      }

      .timeline-content::after {
          content: '';
          position: absolute;
          border-style: solid;
          width: 0;
          height: 0;
          top: 30px;
          right: -15px;
          border-width: 10px 0 10px 15px;
          border-color: transparent transparent transparent #f5f5f5;
      }

      .timeline-img {
          width: 30px;
          height: 30px;
          background: #3F51B5;
          border-radius: 50%;
          position: absolute;
          left: 50%;
          margin-top: 25px;
          margin-left: -15px;
      }

      .timeline a {
          background: #3F51B5;
          color: #FFFFFF;
          padding: 8px 20px;
          text-transform: uppercase;
          font-size: 14px;
          margin-bottom: 20px;
          margin-top: 10px;
          display: inline-block;
          border-radius: 2px;
          box-shadow: 0 1px 3px -1px rgba(0, 0, 0, 0.6);
      }

      .timeline a:hover,
      .timeline a:active,
      .timeline a:focus {
          background: #303F9F;
          color: #FFFFFF;
          text-decoration: none;
      }

      .timeline-card {
          padding: 0 !important;
      }

      .timeline-card p {
          padding: 0 20px;
      }

      .timeline-card a {
          margin-left: 20px;
      }

      .timeline-item .timeline-img-header {
          /* background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4)), url('https://picsum.photos/1000/800/?random') center center no-repeat; */
          background-size: cover;
          height: 200px;
          position: relative;
          margin-bottom: 20px;
      }

      .timeline-item .timeline-img-header h2 {
          color: #FFFFFF;
          position: absolute;
          bottom: 5px;
          left: 20px;
      }

      blockquote {
          margin-top: 30px;
          color: #757575;
          border-left-color: #3F51B5;
          padding: 0 20px;
      }

      .date {
          background: #FF4081;
          display: inline-block;
          color: #FFFFFF;
          padding: 10px;
          position: absolute;
          top: 0;
          right: 0;
      }

      @media screen and (max-width: 768px) {
          .timeline::before {
              left: 50px;
          }

          .timeline-img {
              left: 50px;
          }

          .timeline-content {
              max-width: 100%;
              width: auto;
              margin-left: 70px;
          }

          .timeline-item:nth-child(even) .timeline-content {
              float: none;
          }

          .timeline-item:nth-child(odd) .timeline-content::after {
              content: '';
              position: absolute;
              border-style: solid;
              width: 0;
              height: 0;
              top: 30px;
              left: -15px;
              border-width: 10px 15px 10px 0;
              border-color: transparent #f5f5f5 transparent transparent;
          }
      }
ul#pageTabs .nav-item a.active,
ul.deptTabs .nav-item a.active {
    border: 1px solid #88b44e !important;
    background-color: #88b44e !important;
    color: #fff !important;
    margin-left: 0 !important;
    border-radius: 0 !important;
}
ul#pageTabs .nav-item a,
ul.deptTabs .nav-item a {
    border: 1px solid #88b44e !important;
    background-color: #fff !important;
    color: #495057 !important;
    margin-left: 0 !important;
    border-radius: 0 !important;
    width: max-content;
}
ul#pageTabs,
ul.deptTabs {
    border: none !important;
    margin-bottom: 2%;
    display: flex;
    text-align: center;
    justify-content: center;
}
ul#pageTabs li,
ul.deptTabs li {
    margin: 0;
}
table {
    width: 100% !important;
}
.inner-page-data table p {
    margin-bottom: 0;
    padding: 0 10px;
}
span, .MsoNormalTable span, .MsoTableGrid span, .MsoNormal span, #gpat span, #pageTabsContent span, #icc li span, #student-welfare p span, #scholarships p span, #counselling p span {
    font-family: 'Poppins', sans-serif !important;
}
.MsoNormalTable td, .MsoTableGrid td {
    vertical-align: middle ;
    width: auto !important;
    text-align: center;
    padding: 10px 0 !important;
}
.TableParagraph {
    margin-right: 0 !important;
    text-align: center !important;
}
#skill-development-programs h3.acdn-title {
    font-size: 20px;
}
#skill-development-programs .card-header {
    border-radius: 0 !important;
}
#skill-development-programs .card {
    border-radius: 0 !important;
}
#skill-development-programs .card-header:last-child{
    border-bottom: 1px solid rgba(0,0,0,.125);
}
#pta-committee td{
    height: auto !important;
}
#pageTabsContent .MsoNormal {
    margin-top: 30px;
}
.course-item {
    border: 1px solid #ccc;
    padding: 15px;
    background-color: #f8f8f8;
    transition: transform 0.2s;
}

.course-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.course-img img {
    max-width: 100%;
    height: 260px;
}

.course-title a {
    color: #333;
}

.course-seats i {
    margin-right: 5px;
}

.course-links a {
    color: #007bff;
}

.lg-share-button {
    display: none !important;
}


/* Style for the scrollable sidebar */
.sidebar-navigation.scrollable {
    max-height: calc(100vh - 50px );
    /* Adjust this value as needed */
    overflow-y: auto;
}



/* Optional: Style for the sidebar content */
.sidebar-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-navigation li {
    margin: 0;
    padding: 0;
}

.sidebar-navigation a {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: #333;
}

/* Optional: Style for the scrollable container */
.sidebar-scroll-container {
    max-height: 100%;
    overflow: hidden;
}

/* Optional: Style for the scrollbar */
.sidebar-scroll-container::-webkit-scrollbar {
    width: 10px;
}

.sidebar-scroll-container::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #6d6d6d;
}

.sidebar-scroll-container::-webkit-scrollbar-track {
    background-color: #ebebeb;
    border-radius: 10px;
}

.circle-image-container {
   width: 200px;
   height: 200px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    background-color: #f0f0f0;
    /* Background color for empty space within the circle */
}

.circle-image {
    max-width: 100%;
    max-height:fit-content;
    object-fit: cover;
}
.course-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.course-item:hover {
    transform: translateY(-4px);
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
}



.course-title {
    margin-top: 10px;
    font-size: 1.25rem;
    color: #333;
}

.course-duration {
    margin-top: 5px;
    font-size: 0.875rem;
    color: #607D8B;
}

.course-desc p {
    margin-top: 10px;
    font-size: 0.875rem;
    color: #666;
    line-height: 1.4;
}

.course-seats {
    font-size: 0.875rem;
    color: #999;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.gallery-item {
    text-align: center;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
    overflow: hidden;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
}

.gallery .circle-image-container {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
    background-color: #f5f5f5;
}

.gallery .circle-image-container {
    /* Existing styles */
    position: relative;
    /* Add position relative to the container */
}

.image-mask {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    /* Adjust transparency as needed */
    border-radius: 50%;
}

.gallery .circle-image {
    /* Existing styles */
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    position: relative;
    /* Ensure proper z-index positioning */
    z-index: 1;
    /* Set a higher z-index than the mask */
}



.gallery .gallery-title {
    font-size: 1rem;
    /* Smaller font size */
    color: #333;
    margin-bottom: 5px;
}

.gallery .gallery-description {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.4;
}


/* Add your custom styles here */
.profile-section {
    background-color: #f7f7f7;
}

.profile-picture img {
    max-width: 100%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.profile-details {
    padding-left: 30px;
}

.profile-name {
    font-size: 28px;
    color: #333;
    margin-bottom: 10px;
}

.profile-designation {
    font-size: 18px;
    font-weight: bold;
    color: #007bff;
    margin-bottom: 5px;
}


/* Other styles */

.profile-subtitle-box {
    background-color: #f8f9fa;
    padding: 15px;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    margin-top: 20px;

}

.profile-subtitle {
    font-size: 16px;
    color: #333;
    white-space: nowrap;
    margin: 0;
    padding: 0;

}

.card-img-top {
    height: 200px;
   object-fit: cover;

}

/* News Article */
.news-article {
    margin-bottom: 40px;
}

.news-title {
    font-size: 28px;
    margin-bottom: 10px;
}

.news-image {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 20px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.news-content {
    font-size: 18px;
    line-height: 1.6;
}

.published-date {
    color: #777;
}
.news-block-cnt h5, .news-block-cnt p {
    display: block;
    max-width: 100%;
    height: 1.5em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
/* Recent News */
/* Recent News */
.recent-news {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.recent-news-title {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.recent-news ul {
    list-style: none;
    padding: 0;
}

.recent-news-item {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
}

.recent-news-image-container {
    width: 100px;
    height: 80px;
    margin-right: 15px;
    overflow: hidden;
}

.recent-news-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-news-content {
    flex: 1;
}

.recent-news-link {
    font-size: 18px;
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.recent-news-link:hover {
    color: #0056b3;
}

.published-date-small {
    font-size: 14px;
    color: #777;
}
.testimonial-item {

    height: 500px;
}


.testimonial-item p {
    font-size: 12px;
    max-height: 200px;
    overflow-y: scroll;
}

.testimonial-item .testimonial-cnt .text-start h5 {
    font-size: 14px;
}
.testimonial-item p::-webkit-scrollbar {
    width: 5px;
}

.testimonial-item p::-webkit-scrollbar-thumb {
    background-color: #679747;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.sidebar-navigation .active a {
    color: #fff;
}
.sidebar-navigation .active {
    background-color: #0a3070;
    color: #fff !important;
}

/*#pageTabs .nav-link {
    max-width: 150px;
    text-align: center;
    padding: 10px 15px;
     flex-grow: 1;
     white-space: nowrap;
     overflow: hidden;
     text-overflow: ellipsis;
   font-size: 14px;
   transition: max-width 0.3s ease;
}*/
#pageTabs .nav-link {
    max-width: 100%;
    text-align: center;
    padding: 10px 15px;
     flex-grow: 1;
     white-space: nowrap;
     overflow: hidden;
     text-overflow: ellipsis;
   font-size: 14px;
   transition: max-width 0.3s ease;
}
#pageTabs {
    display: flex;
    justify-content: space-around;

}



#pageTabs .nav-item {
    flex-grow: 0;
    text-align: center;
}

#pageTabs .nav-link:hover {
    max-width: 100%;
    z-index: 1;
}
@media (max-width: 992px) {
    #pageTabs .nav-link {
        max-width: 100%;
    }
}

.placement-section.relative {
    margin-bottom: 100px;
}

.dotblock-leftimg img{
    width: 100%;
}

.alumini-card-content {
    max-height: 450px;
    overflow-y: auto;

}

.alumini-card-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.alumini-icon {
    width: 80px;
    height: 80px;
    margin-right: 20px;
    aspect-ratio: 1 / 1;
}

.alumini-details {
    flex-grow: 1;
}
.alumini-card-content::-webkit-scrollbar {
    width: 5px;
}

.alumini-card-content::-webkit-scrollbar-thumb {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.alumini-card-content::-webkit-scrollbar-thumb:hover {
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}


 .category-card {
     background-color: #f2f2f2;
     border: 1px solid #ccc;
     border-radius: 6px;
     /* width: 150px;
     height: 200px; */
     text-align: center;
     padding: 10px;
     display: flex;
     flex-direction: column;
     justify-content: space-between;
     align-items: center;
     margin: 0 auto;
     margin-top: 50px;
     box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
     /* Add box shadow */
     transition: transform 0.2s ease-in-out;
     /* Add transform animation */
 }

 .category-card:hover {
     transform: scale(1.05);
     /* Scale up on hover */
 }


 .folder-icon {
     font-size: 7rem;
     color: #88b44e;
     position: relative;
 }

 .category-image {
     width: 100%;
     height: 200px;
     /* position: absolute; */
     right: 0%;
     top: 33%;
     opacity: 0.7;
     z-index: 1;
     /* transform: rotate(8deg); */
     border: 1px solid #fff;
 }
.folder-icon canvas{
    width: 85%;
    height: auto;
    position: absolute;
    right: 0%;
    top: 15%;
    opacity: 0.7;
    z-index: 1;
    transform: rotate(3deg);
}

 .folder-title {
     font-size: 16px;
 }


 /* Apply styling to the gallery items */
 .gallery-listdetails .gallery-items .col-md-3 {
     height: 300px;
     overflow: hidden;
     position: relative;
     margin: 10px;
     /* Add spacing between gallery items */
     box-sizing: border-box;
     box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
     /* Add a subtle box shadow */
     transition: box-shadow 0.3s;
     /* Add a transition effect to the box shadow */
 }

 /* Style the image within each gallery item */
 .gallery-listdetails .gallery-items .main_img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.3s;
 }

 /* Add a background overlay on hover */
 .gallery-listdetails .gallery-items .col-md-3:hover {
     background: rgba(0, 0, 0, 0.5);
     /* Add a semi-transparent black overlay */
     transition: background 0.3s;
     box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.4);
     /* Increase the box shadow on hover */
 }

 /* Style the image on hover */
 .gallery-listdetails .gallery-items .col-md-3:hover .main_img {
     transform: scale(1.05);
 }

 /* Style the caption (optional) */
 .gallery-listdetails .gallery-items .caption {
     position: absolute;
     bottom: 10px;
     left: 10px;
     color: #fff;
     font-size: 16px;
 }



 @media screen and (max-width: 1366px){
 p, a, ul, button, span, table {
    font-size: 12px !important;
 }
.courses-bx-cnt h3 {
    font-size: 18px;
 }
.dotblock-bx-img {
    width: 100px;
    height: 100px;
    padding: 20px;
 }
 .dotblock-bx {
    height: 92%;
 }
.announcement-title h5 {
    padding: 11px 0 12px 100px;
    font-size: 1rem;
 }
.footer-top-cnt li a {
    padding:3px 0;
}

}

@media screen and (max-width: 767px){

 .announcement-title h5 {
    padding: 10px 0;
    text-align: center;
}
  h1 {
    font-size: 1.5rem !important;
 }
p, a, ul, button, span, table {
    font-size: 15px !important;
 }
.footer-top img {
    width: 30%;
 }
.footer-top {
    padding: 50px 0;
 }
}

 @media (min-width: 992px) {
     .gallery-listdetails .gallery-items .col-md-3 {
         width: calc(25% - 20px);
         /* Calculate 25% width with spacing */
     }
 }

.icon-view-1 {
     position: fixed;
     z-index: 1000;
     margin-top: 20%;
     margin-left: 95%;
     bottom: 200px;
 }
 .icon-view-2 {
    position: fixed;
    z-index: 1000;
    margin-top: 20%;
    margin-left: 95%;
    bottom: 300px;
}
 .camera-view {
     position: fixed;
     z-index: 1000;
     margin-top: 20%;
     margin-left: 95%;
     bottom: 100px;
 }
 .pulse-button-1 {
     position: relative;
     width: 60px;
     height: 60px;
     border: none;
     box-shadow: 0 0 0 0 rgba(1, 147, 222, 0.7);
     border-radius: 50%;
     background-size: cover;
     background-repeat: no-repeat;
     cursor: pointer;
    -webkit-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
 }

 .pulse-button {
     position: relative;
     width: 60px;
     height: 60px;
     border: none;
     box-shadow: 0 0 0 0 rgba(1, 147, 222, 0.7);
     border-radius: 50%;
     background-color: #0193de;
     background-image: url("../img/Camera-view.jpg");
     background-size: cover;
     background-repeat: no-repeat;
     cursor: pointer;
    -webkit-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
 }
 .pulse-button:hover {
     -webkit-animation: none;
     -moz-animation: none;
     -ms-animation: none;
     animation: none;
 }
 .pulse-button a {
     width: 60px;
     height: 60px;
     display: block;
 }
 @-webkit-keyframes pulse {
     to {
         box-shadow: 0 0 0 45px rgba(1, 147, 222, 0);
     }
 }

 @-moz-keyframes pulse {
     to {
         box-shadow: 0 0 0 45px rgba(1, 147, 222, 0);
     }
 }

 @-ms-keyframes pulse {
     to {
         box-shadow: 0 0 0 45px rgba(1, 147, 222, 0);
     }
 }

 @keyframes pulse {
     to {
         box-shadow: 0 0 0 45px rgba(1, 147, 222, 0);
     }
 }

 span.counter-count {
     font-size: 30px !important;
 }
 .header-two h1 small {
     font-size: 18px !important;
 }
 .scroll-strip .splide__slide a{
    cursor: pointer !important;
 }
 img.menu-logo{
        max-width: 7%;
        height: auto;
        background-color: #fff !important;
 }
 /* Additional CSS Styles for Overlay Image */


 .ImageOne img {
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
     transition: transform 0.3s ease-in-out;
     max-width: 10%;
     position: absolute;
     top: 10px;
     right: 5%;
 }

 .ImageOne img:hover {
     transform: scale(1.1);
     /* Scale up the image on hover, adjust as needed */
 }
 #achievements p span {
     font-size: 25px !important;
 }

#header-carousel img {
    height: 80vh;
}
#announcementModal .close {
    position: absolute;
    right: -14px;
    background: #000;
    width: 24px;
    height: 24px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    color: #fff;
    z-index: 1;
    top: -13px;
    border: 2px solid #fff;
    box-shadow: 0px 0px 11px #000;
    font-size: 25px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

#announcementModal .modal-dialog {
    max-width: 700px;
}
.video-thumbnail {
    position: relative;
}

.video-thumbnail img {
    display: block;
    width: 100%;
    height: auto;
}


.play-icon {
    margin: auto;
    width: 40px;
    height: 40px;
    background: red;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -20px;
    margin-left: -20px;
    background: url('../icons/play.png');
    background-size: cover;
    border-radius: 50px;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
}

.video-link:hover .play-icon {
    opacity: 1;
}
body{
    padding-right: 0px !important;
}
#menu_awards-for-outstanding-performance-in-sports-culturals p span {
    font-size: 15px !important;
}
#achievements table p, #achievements table span{
    margin-top: 0px!important;
    font-size: 13px!important;
}
#achievements table{
    height: auto!important;
}
#achievements table td, #achievements table tr{
    padding:10px 0px!important;
    height: auto!important;
}
#achievements p span {
    font-size: 13px !important;
}