html{
    overflow-x:hidden;
}


.header_menu_panel {
    display: flex;
    gap: 15px;
    position: relative;
    right: 0;
    /* width: 10.4%; */
    align-items: center;
    z-index: 10;
}

.header_top {
    display: flex;
    align-items: center;
    width: 100%;
    transition: .2s ease all;
    justify-content: space-between;
}

.admissions-top a {
    background: var(--colorac);
    text-decoration: none;
    color: #fff;
    font-size: var(--font-14);
    padding-inline: 1rem;
    padding-block: 0.5rem;
    letter-spacing: 1.4px;
}

a.cus-btn1 {
    background-color: var(--color12);
    margin-left: 1rem;
}

header.header-sticky {
    position: fixed;
    width: 100%;
    z-index: 999;
    padding-block: 1rem;
}

header {
    background: #fff;
    transition: .2s ease all;
    overflow: hidden;
    position: unset;
    width: 100%;
    z-index: 9999;
    top: 0;
    padding-block: 1rem;
    padding-inline: 5rem;
}

.header_top .logo figure {
    width: 375px;
}

.header_top .logo1 figure {
    width: 375px;
}



.logo {
    transition: opacity 1s ease all;
    will-change: opacity;
}


.logo1 {
    transition: opacity .8s ease all;
    will-change: opacity;
}

.logo {
    opacity: 0;
    visibility: hidden;
    position: relative;
    z-index: 2;
}

.logo1 {
    opacity: 1;
    visibility: visible;
    position: absolute;
    z-index: 1;
    width: 100%;
    display: flex;
    justify-content: space-between;
}



/*humburger menu css*/


.sub-menu {
    padding: 7% 2.5% 0 3%;
    /* float: right; */
    right: -450px;
    top: 0;
    transition: all 0.6s ease-in-out;
    height: 100%;
    width: 450px;
    position: fixed;
    margin: 0;
    background-color: rgb(52 72 142);
    border-radius: 0;
    z-index: 0;
    overflow: hidden;
}

    .sub-menu.oppenned {
        right: 0;
        z-index: 99999;
    }

    .sub-menu ul {
        margin: 0;
    }

    .sub-menu li {
        display: block;
        list-style: none;
        /* height: auto; */
        margin-left: 0;
        transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        position: relative;
    }

        .sub-menu li:first-child {
            margin-top: 100px;
        }

header .sub-menu li a {
    color: #fff !important;
    font-size: var(--font-21);
    width: 100%;
    display: block;
    text-transform: uppercase;
    line-height: 30px;
    margin-bottom: 2.8rem;
    position: relative;
}

.sub-menu li a:hover {
    font-weight: bold;
    text-decontarion: none;
}

.c-hamburger {
    display: block;
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
    width: 21px;
    height: 41px;
    z-index: 999999;
    font-size: 0;
    text-indent: -9999px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    box-shadow: none;
    border-radius: none;
    border: none;
    cursor: pointer;
    -webkit-transition: background 0.3s;
    transition: background 0.3s;
}

    .c-hamburger:focus {
        outline: none;
    }

    .c-hamburger a {
        display: block;
        position: absolute;
        top: 20px;
        left: 0;
        right: 0;
        height: 1px;
        background: #123985;
    }

        .c-hamburger a:before,
        .c-hamburger a:after {
            position: absolute;
            display: block;
            right: 0;
            width: 60%;
            height: 1px;
            background-color: #123985;
            content: "";
        }

        .c-hamburger a:before {
            top: -10px;
        }

        .c-hamburger a:after {
            bottom: -10px;
        }

.c-hamburger--htx a {
    -webkit-transition: background 0s 0.3s;
    transition: background 0s 0.3s;
}

    .c-hamburger--htx a:before,
    .c-hamburger--htx a:after {
        -webkit-transition-duration: 0.3s, 0.3s;
        transition-duration: 0.3s, 0.3s;
        -webkit-transition-delay: 0.3s, 0s;
        transition-delay: 0.3s, 0s;
    }

    .c-hamburger--htx a:before {
        -webkit-transition-property: top, -webkit-transform;
        transition-property: top, transform;
    }

    .c-hamburger--htx a:after {
        -webkit-transition-property: bottom, -webkit-transform;
        transition-property: bottom, transform;
    }

.c-hamburger--htx.is-active a {
    background: none;
}

    .c-hamburger--htx.is-active a:before,
    .c-hamburger--htx.is-active a:after {
        -webkit-transition-delay: 0s, 0.3s;
        transition-delay: 0s, 0.3s;
    }

    .c-hamburger--htx.is-active a:before {
        top: 0;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        background-color: #fff;
    }

    .c-hamburger--htx.is-active a:after {
        bottom: 0;
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
        background-color: #fff;
    }

    .c-hamburger--htx.is-active a:before,
    .c-hamburger--htx.is-active a:after {
        width: 90%;
    }

.menu_overlay {
    width: 100%;
    height: 100%;
    position: fixed;
    background: rgb(221 221 221 / 65%);
    top: 0;
    left: 0;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    transition: .5s ease all;
}

.active-overlay .menu_overlay {
    z-index: 9999;
    opacity: 1;
    visibility: visible;
}

    .active-overlay .menu_overlay > * {
        z-index: 999999;
    }

.header-mobile-login {
    display: none;
}

@media (min-width:2399px) {
    .sub-menu {
        /* padding: 0 0 0 3%; */
        /* float: right; */
        /* right: -450px; */
        /* width: 425px; */
    }
}


/*humburger doropdown menu css*/




.sub-menu.oppenned {
    display: block;
}

#accordian {
    width: 100%;
    display: block;
}


.footer-bottom-all-right p a {
    color: #fff;
    font-size: 12px;
    font-weight: normal;
    margin-right: 0;
}

#accordian li {
    list-style-type: none;
    margin: 0;
}

#accordian ul ul li a,
#accordian h4 {
    color: white;
    text-decoration: none;
    font-size: var(--font-16);
    line-height: 21px;
    display: block;
    padding: 0px;
    transition: all 0.15s;
    position: relative;
    margin-bottom: 2.5rem;
}


#accordian ul ul {
    display: none;
    padding-left: 1rem;
    margin-bottom: 0;
}

    /* #accordian li.active>ul {
    display: block;
    padding-block: 0 .5rem;
    padding-left: 1rem;
} */

    #accordian ul ul ul {
        margin-left: 15px;
    }

li.no_drop_menu h3:after {
    display: none;
}

#accordian a:not(:only-child):after,
#accordian h3:after {
    content: "";
    background: url(../images/down-arrow.svg) no-repeat center;
    position: absolute;
    right: 10px;
    top: 0;
    width: 15px;
    height: 15px;
    transition: transform 0.5s ease;
    pointer-events: none;
}

#accordian li.active > h3:after {
    transform: rotate(180deg);
}

#accordian li.active > ul a:not(:only-child):after {
    top: 8px;
}



div#accordian h3 {
    display: block;
    position: relative;
    margin: 0;
}

.openBtn {
    background: #f1f1f1;
    border: none;
    padding: 10px 15px;
    font-size: 20px;
    cursor: pointer;
}

    .openBtn:hover {
        background: #bbb;
    }

.overlay {
    height: 100%;
    width: 100%;
    display: none;
    position: fixed;
    z-index: 999999;
    top: 0;
    left: 0;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.9);
}

.overlay-content {
    position: relative;
    top: 46%;
    width: 45%;
    text-align: center;
    margin-top: 30px;
    margin: auto;
}

.overlay .closebtn {
    position: absolute;
    top: 5px;
    right: 85px;
    font-size: 60px;
    cursor: pointer;
    color: white;
}

    .overlay .closebtn:hover {
        color: #ccc;
    }

.overlay input[type=text] {
    padding: 15px;
    font-size: 17px;
    border: none;
    float: left;
    width: 80%;
    background: white;
}

    .overlay input[type=text]:hover {
        background: #f1f1f1;
    }

.overlay-content .message-btn {
    width: 20%;
    padding: 14px;
    font-size: 17px;
    cursor: pointer;
    margin: 0;
    border: 1px solid #bea05a;
}

    .overlay-content .message-btn:before {
        height: 54px;
    }

    .overlay-content .message-btn:hover:before {
    }

.message-btn {
    background: #bea05a;
    padding: 10px 23px;
    margin: 0 7px;
    color: #fff;
    font-size: 17px;
    position: relative;
    transition: 1s;
    -webkit-transition: 1s;
    z-index: 1;
}

.home-mobile {
    display: none;
}

@media (max-width:1366px) {
    .sub-menu {
        overflow-y: scroll;
    }

    .logo1 {
        justify-content: start;
    }
}

@media (max-width:1280px) {
}




@media (max-width:1170px) {
    .logo1 {
        justify-content: flex-start;
    }
}


@media (max-width:1024px) {
}

@media (max-width:991px) {
    .header_menu_panel {
        display: flex;
    }

    .logo1 {
        justify-content: space-between;
    }

    .header-mobile-login {
        display: none;
    }

    .sub-menu {
        padding: 10% 2.5% 0 3%;
    }

    .overlay-content {
        width: 75%;
    }
}

@media (max-width:768px) {

    .header_top .logo1 figure {
        width: 285px;
    }

    .admissions-top a {
        font-size: 1.2rem;
        padding-inline: 1rem;
        padding-block: 0.5rem;
        letter-spacing: 0;
    }

    .header_top .logo figure {
        width: 325px;
    }
}

.express_grid .express_bx_cntnt{
    padding:15px !important;
}
    .express_grid .express_bx_cntnt h5{
        margin-bottom:5px !important;
    }
@media (max-width:640px) {
    /*.sub-menu {
        width: 100%;
        padding: 7rem 1.8rem 0;
    }*/
    .home-header .home-mobile {
        display: block;
        width: 68%;
    }



    .acadmic_three .expsec_grid {
        grid-template-columns: 1fr !important;
    }

    .home-header .logo1 {
        display: none;
    }

    .admissions-top {
        display: none;
    }

    .header_top {
        justify-content: space-between;
    }

        .header_top .logo1 figure {
            width: 285px;
        }

        .header_top .logo figure {
            width: 285px;
        }

    .overlay-content {
        width: 90%;
    }

    .overlay input[type=text] {
        width: 73%;
        padding: 10px;
    }

    .overlay-content .message-btn {
        width: 27%;
        padding: 9px;
    }

    .overlay .closebtn {
        top: 6px;
        right: 48px;
        font-size: 40px;
    }

    .c-hamburger a {
        background-color: #123985;
    }

    /*.c-hamburger a:before,
    .c-hamburger a:after {
        background-color: #fff;
    }*/

    .header-mobile-login {
        display: block;
    }

    /*header {
        padding-inline: .7rem;
        background-color: var(--color12);
    }*/

    header .logo1 {
        display: none;
    }

    header .home-mobile {
        display: block;
        width: 60%;
    }

    .logo.home-desktop {
        display: none;
    }

    .header_menu_panel img {
        filter: brightness(0) invert(1);
    }

    .acadmic_three .expsec_grid .exper_bx.row-rvrs {
        flex-direction: column !important;
    }


    .acadmic_three .expsec_grid .exper_bx.row-rvrs {
        flex-direction: column !important;
    }


    .large-text {
        font-size: 32px !important;
        margin-bottom: 15px !important;
    }

    .title30 {
        font-size: 15px !important;
    }

    .united_lft img {
        border-radius: 40px !important;
    }

    .acadmic_three {
        padding-block: 5.7rem 10.78rem !important;
    }

    .express_grid {
        grid-template-columns: 1fr !important;
    }

    .home_sec_three {
        padding: 0 !important;
    }

    /*footer*/

    .footer-column {
        padding: 15px !important;
        text-align: start !important;
    }

    .use-links {
        display: flex !important;
        flex-direction: column !important;
    }

    /*about us*/

    .fourpicinline .row {
        gap: 18px;
    }

    .fourpicinline img {
        border-radius: 15px;
    }


    .message_sec {
        margin-right: 0 !important;
    }



    .msg_txt p {
        font-size: 15px !important;
    }

    .msg_txt {
        padding: 15px !important;
    }

    .msg-bg {
        padding-right: 0 !important;
        padding-top: 0 !important;
    }


    .message_sec {
        margin: 0 !important;
    }

    .express_bx_cntnt {
        padding: 30px !important;
    }

    .home_sec_three .united_lft {
        padding-bottom: 5px;
    }

    .grid {
        position: sticky;
        top: 24rem;
        display: flex;
        justify-content: center;
        z-index: 10;
        grid-gap: 5px !important;
    }

    .full_grid {
        padding-bottom: 20px !important;
    }

    .sub-menu.oppenned {
        width: 100%;
    }

    .home_banner {
        height: 70vh !important;
    }


    .banner_box {
        height: 100% !important;
        width: 100% !important;
    }

    section.home_banner.inner-banner.admission-banner figure {
        height: 100% !important;
    }

    .banner_box img {
        height: 100% !important;
    }

    .banner_text {
        padding-inline: 0 !important;
        width: 100% !important;
    }

        .banner_text h1 {
            font-size: 38px !important;
            margin-inline: 15px !important
        }
    /*admission page*/
    .agetbl {
        width: 90% !important
    }

    .adm-process {
        font-weight: 700
    }


    .exp-common-title blockquote {
        text-align: justify !important;
    }

    section.home_banner.inner-banner.admission-banner .banner_text {
        transform: translate(-50%, 50%) !important;
    }

    .exp-common-title table {
        width: 100% !important;
    }

    .agetbl tr td {
        font-size: 15px;
        font-family: var(--font-family-body);
        font-weight: 500;
        text-align: start;
        padding: 8px 14px;
        text-align: start;
    }

    .exp-common-title p {
        font-weight: 700 !important;
        margin-top: 20px !important;
    }

    .menu-items {
        position: relative !important;
        padding-top: 0 !important;
        grid-gap: 0 !important;
    }

    .menu-items li {
            width: 100% !important;
            border-bottom: 1px solid #cfcfcf !important;
            padding:8px !important;
            text-align:start;   
            padding-left:30px !important;
    }

    .about-menu ul li a {
        font-size:15px !important;
        padding-top:0 !important;
    }

    .main_section {
        padding-top:0 !important;
        margin-bottom: 30px !important;
    }

    .carousel-inner {
        padding: 15px !important;
    }
        .carousel-inner b {
            flex-basis: 80% !important;
            font-size: 11px !important;
        }
    .carousel-control-prev, .carousel-control-next {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }
}
