.header_menu_panel {
    display: flex;
    gap: 15px;
    position: relative;
    right: 0;
    /* width: 10.4%; */
    align-items: center;
    z-index: 99999;
}

.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: fixed;
    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: center;
}



/*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;
}

@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: start;
}
}


@media (max-width:1024px) {

}

@media (max-width:991px) {
    .header_menu_panel{
        display: none;
    }
        .logo1 {
    justify-content: center;
}
}
@media (max-width:640px) {
.home-header .home-mobile{
    display: block;
}
 .home-header .header_menu_panel{display: none;}
.home-header {background: #00000000;
background: transparent linear-gradient(180deg, #000000 0%, #00000000 100%) 0% 0% no-repeat padding-box;
    padding-inline: 2rem;     padding-block: 1.7rem;
}
.home-header .home-desktop { display: none;}
.home-header .logo1{display: none;}
    .home-header.header-sticky {
        background: var(--color12);
    }


}