.top_header {
    position: absolute;
    top: 0;
    left: 2rem;
    right: 2rem;
    margin-top: 2rem;

    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.55),
            rgba(255, 255, 255, 0.15));

    backdrop-filter: blur(20px) saturate(180%) contrast(105%);
    -webkit-backdrop-filter: blur(20px) saturate(180%) contrast(105%);

    border-radius: 15em;
    border: 1px solid rgba(255, 255, 255, 0.35);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.18),
        inset 0 1px 2px rgba(255, 255, 255, 0.7);

    overflow: visible;
    z-index: 999;
}



.top-header-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 99;
    padding-top: 2.5rem;
    padding-bottom: 1.5rem;
}

.inner-header-new .top-header-box {
    padding: 1.5rem 0 1rem;
}

.top_menu {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 3.6rem;
    padding: 0;
    margin: 0;
}

.top_menu>li {
    list-style: none;
    position: relative;
}

.top_menu>li>a {
    display: block;
    color: var(--color-ff);
    font-size: var(--font-14);
    font-weight: 300;
    letter-spacing: -0.14px;
    padding-block: 0.9rem;
    transition: all .5s ease;
}

.top_menu>li>a:hover {
    color: var(--color-f0);
}

.top_menu>li:last-child>a {
    color: var(--color-17);
    background-color: var(--color-f0);
    font-weight: 500;
    padding: 0.9rem 1.7rem;
    padding-right: 2rem;
    background: linear-gradient(to right, var(--color-23) 49%, var(--color-f0) 49%);
    background-size: 210% 110%;
    background-position: right bottom;
    transition: all .5s ease-out;
}

.top_menu>li:last-child>a:hover {
    background-position: left bottom;
    color: var(--color-ff);
}

.dropdown_sub {
    position: absolute;
    top: 100%;
    background-color: var(--color-17);
    padding: 0;
    margin: 0;
    width: 20rem;
    transform: translateX(0) scaleY(0);
    opacity: 0;
    transform-origin: top;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.dropdown_list>a::after {
    content: '\F282';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    font-size: var(--font-10);
    line-height: normal;
    font-weight: 500;
    font-family: bootstrap-icons !important;
}

.dropdown_list>a {
    padding-right: 1.5rem;
}

.dropdown_list:hover>.dropdown_sub {
    transition: transform 0.3s, opacity 0.3s;
    transform: translateX(0%) scaleY(1);
    opacity: 1;
}

.dropdown_list:last-child>.dropdown_sub {
    background-color: var(--color-f0);
    right: 0;
}

.dropdown_list:last-child>.dropdown_sub>li>a {
    color: var(--color-17);
}

.dropdown_list:last-child>.dropdown_sub>li>a:hover {
    color: var(--color-ff);
}

.dropdown_sub>li {
    list-style: none;
}

.dropdown_sub>li>a {
    display: block;
    color: var(--color-ff);
    font-size: var(--font-14);
    font-weight: 400;
    letter-spacing: -0.14px;
    transition: all .5s ease;
    padding: 0.8rem 1rem;
    border-bottom: 0.1rem dashed rgb(255 255 255 / 20%);
}

.dropdown_sub>li:last-child>a {
    border-bottom: 0;
}

.dropdown_list:last-child>a::after {
    right: 0.8rem;
}

.dropdown_sub>li>a:hover {
    background-color: var(--color-23);
}


.main_header.sticky:has(.site_nav.active) .bottom_header {
    background-color: transparent;
}

.bottom_header .container-fluid {
    display: flex;
    flex-wrap: inherit;
    align-items: self-start;
    justify-content: space-between;
}

.site_brand {
    padding-left: 3.4rem;
    padding-block: 2.7rem 0;
    transition: all .5s ease-in;
    z-index: 9;
}

.site_brand .navbar-brand {
    width: 42rem;
    display: block;
    transition: all .5s ease-in;
}

.site_nav {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-right: 4rem;
    padding-block: 0rem;
    flex: 0 0 75.215%;
    justify-content: end;
}

.site_nav>ul {
    display: flex;
    align-items: center;
    justify-content: end;
    padding: 0;
    margin: 0;
}

.site_nav>ul>li {
    list-style: none;
    margin-right: 1.5rem;
    padding-right: 1.5rem;
    padding-block: 1.5rem;
}

.site_nav>ul>li:last-child {
    margin-right: 0;
    padding-right: 0;
}

.site_nav>ul>li:last-child {
    margin-right: 0;
}

.site_nav>ul>li>a {
    display: inline-flex;
    font-size: var(--font-18);
    line-height: var(--line-height-23);
    color: #253766;
    font-family: var(--font-Karla);
    font-weight: 500;
    padding-block: 0.5rem;
    transition: all .5s ease;
}

.site_nav>ul>.dropdown_menu>a {
    position: relative;

}

.site_nav>ul>li>a:hover {
    color: var(--color-17);
}

.site_nav>.search_bars {
    display: flex;
    gap: 2rem;
}

.sticky .top-header-box {
    padding: 0.5rem 0 0;
}

a.open_search {
    border-right: 0.1rem solid rgb(255 255 255 / 30%);
    padding: 0 1.5rem 0 0;
}

.inner-header.sticky a.open_search {
    border-right: 0.1rem solid rgb(255 255 255 / 30%);
}

.site_nav>.search_bars>a>svg {
    width: 2rem;
}

.bottom_header:has(.dropdown_menu:hover) .site_brand {
    opacity: 0.2;
    filter: blur(5px);
}

body:has(.dropdown_menu:hover)::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 85%);
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
    z-index: 10;
}

body:has(.abt-menu:hover)::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 75%);
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
    z-index: 10;
}
body:has(.admission-nav:hover)::after {
    content: "";
    position: fixed;
    inset: 0;
    background: rgb(0 0 0 / 75%);
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
    z-index: 9;
}



body:has(.abt-menu:hover) .inner-header .search_bars a svg path {
    stroke: #fff;
}

body:has(.abt-menu:hover) .site_brand img.main-logo {
    display: none;
}

body:has(.abt-menu:hover) .site_brand img.white-logo {
    display: block;
}

body:has(.abt-menu:hover) .inner-header-new .site_nav>ul>li>a {
    color: #000;
}

body:has(.abt-menu:hover) .inner-header-new .site_brand img.main-logo {
    display: block;
}

body:has(.abt-menu:hover) .inner-header-new .site_brand img.white-logo {
    display: none;
}

body:has(.abt-menu:hover) .inner-header-new.sticky .site_nav>ul>li>a {
    color: #253766;
}

body:has(.abt-menu:hover) .inner-header-new.sticky .site_brand img.main-logo {
    display: none;
}

body:has(.abt-menu:hover) .inner-header-new.sticky .site_brand img.white-logo {
    display: block;
}

body:has(.abt-menu:hover) .inner-header-new.sticky .search_bars a svg path {
    stroke: #fff;
}

body:has(.abt-menu:hover) .inner-header-new .search_bars a svg path {
    stroke: #000;
}

.dropdown_menu>.dropdown_item {
    width: 100%;
    right: 0;
    position: absolute;
    top: 98%;
    transform: translateX(0) scaleY(0);
    opacity: 0;
    transform-origin: top;
    transition: transform 0.3s ease, opacity 0.3s ease;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: -1;
}

.dropdown_menu>.dropdown_item {
    padding: 0;
    margin: 0;
}

.dropdown_menu>.dropdown_item>li {
    list-style: none;
}

.dropdown_menu>.dropdown_item>li>a {
    position: relative;
    display: block;
    font-size: var(--font-16);
    padding: .6rem 3rem;
    line-height: var(--line-height-26);
    color: var(--color-ff);
}

.dropdown_menu>.dropdown_item>li>a:hover {
    color: var(--color-77);
}

.dropdown_menu>.dropdown_item>li:nth-child(1)>a {
    padding-top: 2.5rem;
}

.dropdown_menu>.dropdown_item>li:last-child>a {
    padding-bottom: 2.5rem;
}

.dropdown_menu>.dropdown_item>li:has(ul)>a::after {
    position: absolute;
    content: '\F138';
    font-family: bootstrap-icons !important;
    font-size: var(--font-12);
    font-weight: 500;
    color: var(--color-77);
    right: 2rem;
    transition: all .5s ease;
}

.dropdown_menu>.dropdown_item>li>a:hover::after {
    right: 1.5rem;
    color: var(--color-ff);
}

.dropdown_menu>.dropdown_item>li {
    position: relative;
    list-style: none;
}

.dropdown_menu>.dropdown_item>li>ul {
    position: absolute;
    top: 0;
    left: 100%;
    transform: translateY(10%);
    opacity: 0;
    visibility: hidden;
    width: 25rem;
    padding: 0;
    border-radius: 2rem;
    background-color: var(--color-24);
    transform-origin: top;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.dropdown_menu>.dropdown_item>li:hover>ul {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.dropdown_menu>.dropdown_item>li>ul>li {
    position: relative;
    list-style: none;
}

.dropdown_menu>.dropdown_item>li>ul>li>a {
    position: relative;
    display: block;
    font-size: var(--font-15);
    padding: .5rem 2rem;
    line-height: var(--line-height-26);
    color: var(--color-ff);
}

.dropdown_menu>.dropdown_item>li>ul>li:nth-child(1)>a {
    padding-top: 2.5rem;
}

.dropdown_menu>.dropdown_item>li>ul>li:last-child>a {
    padding-bottom: 2.5rem;
}

.dropdown_menu>.dropdown_item>li>ul>li>a:hover {
    color: var(--color-77);
}

.dropdown_menu:last-child>.dropdown_item {
    left: auto;
    right: 0;
}

.dropdown_menu:nth-last-child(2)>.dropdown_item>li>ul {
    left: auto;
    right: 100%;
}

.dropdown_menu:nth-last-child(2)>.dropdown_item>li>ul {
    left: auto;
    right: 100%;
}

.dropdown_menu:nth-last-child(3)>.dropdown_item>li>ul {
    left: auto;
    right: 100%;
}

.dropdown_menu:last-child>.dropdown_item>li>ul {
    left: auto;
    right: 100%;
}

.dropdown_menu.active>.dropdown_item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 130%;
    background-color: #ffffff;
    z-index: -1;
    border-radius: 2rem;
}

.site_nav.active>ul>.dropdown_menu>a {
    color: var(--color-17);
    z-index: 1090;
}

.site_nav.active>ul>.dropdown_menu.active>a {}

.site_nav>ul>.dropdown_menu.active>a::before {
    content: '';
    background: var(--color-f0);
    height: 3px;
    width: 30px;
    position: absolute;
    bottom: 0;
    left: 26%;
    opacity: 1;
}

.site_nav.active>ul>li:not(:last-child)>a::before {}

.site_nav.active>.search_bars {
    z-index: 1090;
}

.site_nav.active>.search_bars>a>svg path {
    stroke: var(--color-17);
}

.dropdown_menu>.dropdown_item {
    display: grid;
    grid-template-columns: 50% auto;
    padding-inline: 4.3rem 0;
    padding-block: 2.6rem 6.9rem;
}

.dropdown_item {
    width: 100%;
    padding-left: 12.6rem;
}

.drop_left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10.5rem;
    padding-right: 8rem;
}

.drop_left>.menu_title>span:nth-child(1) {
    font-size: var(--font-20);
    font-weight: 400;
    color: var(--color-23);
    margin-bottom: 0.5rem;
    display: block;
}

.drop_left>.menu_title>span:nth-child(2) {
    font-size: var(--font-30);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.9px;
    color: var(--color-17);
    text-transform: uppercase;
}

.drop_left>.menu_fact {
    padding-right: 5rem;
}

.drop_left>.menu_fact>span:nth-child(1) {
    font-size: var(--font-80);
    letter-spacing: -5.92px;
    font-weight: 300;
    color: var(--color-23);
    display: block;
    line-height: 1;
}

.drop_left>.menu_fact>span:nth-child(2) {
    font-size: var(--font-21);
    line-height: 1.23;
    letter-spacing: -0.4px;
    color: var(--color-23);
    display: block;
}

.drop_left>.menu_fact .arrow_btn {
    margin-top: 2.5rem;
}

.drop_right {
    position: relative;
    padding-left: 5rem;
    padding-right: 2rem;
}

.drop_right>ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5.6rem 4rem;
    padding: 0;
    margin: 0;
}

.drop_right>ul>li {
    list-style: none;
    position: relative;
    display: flex;
    flex-direction: column;
}

.drop_right>ul>li>span {
    position: relative;
    display: block;
    color: var(--color-17);
    font-size: var(--font-14);
    line-height: 1.2;
    font-weight: 500;
    height: 100%;
    padding-top: 0.7rem;
    padding-left: 1.5rem;
}

.drop_right>ul>li>span::before {
    position: absolute;
    content: '';
    top: -20%;
    left: 0.5rem;
    width: 0.2rem;
    height: 110%;
    background-color: var(--color-f0);
}

.site_nav>ul>li:nth-child(3) .drop_right,
.site_nav>ul>li:last-child .drop_right {
    display: grid;
    grid-template-columns: 40% 60%;
    align-items: start;
}

.menu_over {
    padding-right: 5rem;
    margin-right: 5rem;
    border-right: 0.1rem solid rgb(32 112 46 / 20%);
    height: 100%;
}

.menu_over>p {
    font-size: var(--font-24);
    line-height: 1.46;
    color: var(--color-17);
    font-weight: 300;
    opacity: 0.8;
}

.site_nav>ul>li:last-child .drop_right>ul {
    grid-template-columns: repeat(2, 1fr);
}

.site_nav>ul>li:last-child .dropdown_item {
    padding-block: 2.6rem 5.9rem;
}

.site_nav>ul>li:nth-child(3) .drop_right>ul {
    grid-template-columns: repeat(2, 1fr);
}

.site_nav>ul>li:nth-child(3) .dropdown_item {
    padding-block: 2.6rem 5.9rem;
}

.search_form {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 4.4rem;
    background-color: var(--color-ff);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    z-index: 1090;
    transition: transform 0.5s ease, opacity 0.3s ease;
}

.search_form.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

body:has(.search_form.active) {
    overflow: hidden;
}

body:has(.search_form.active) .bottom_header {
    background-color: transparent;
}

body:has(.search_form.active) .site_brand {
    opacity: 0.2;
    filter: blur(5px);
    pointer-events: none;
}

body:has(.search_form.active)::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 85%);
    backdrop-filter: blur(0.9rem);
    z-index: 10;
}

.search_form .search-close {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    font-size: var(--font-24);
    color: var(--color-23);
}

.search_form .search-close:hover {
    color: var(--color-f0);
}

.search_form .form-group {
    position: relative;
    max-width: 50%;
    margin-inline: auto;
}

.search_form .form-group .form-control {
    background-color: transparent;
    font-size: var(--font-24);
    padding: 0.9rem 1.4rem;
    padding-right: 5.5rem;
    height: auto;
    font-family: var(--font-Karla);
    color: var(--color-00);
    letter-spacing: -0.82px;
    border: .1rem solid var(--color-17);
    margin: 0;
}

.search_form .form-group .form-control::placeholder {
    color: rgb(105, 105, 105);
    font-size: var(--font-24);
    font-weight: 300;
}

.search_form .form-group input.btn {
    position: absolute;
    right: 0;
    cursor: pointer;
    top: 50%;
    transform: translateY(-50%);
    width: 5.2rem;
    height: 100%;
    border: none;
    background: url(../images/search-icon.svg) no-repeat center, var(--color-f0);
    transition: all 0.5s ease;
}

.search_form .form-group input.btn:is(:hover, :focus) {
    border: none;
    box-shadow: none;
    outline: none;
}

/* Header Sticky Style */
.top_header.sticky {
    position: fixed;
    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.55),
            rgba(255, 255, 255, 0.15));

    backdrop-filter: blur(20px) saturate(180%) contrast(105%);
    -webkit-backdrop-filter: blur(20px) saturate(180%) contrast(105%);

    border-radius: 15em;
    border: 1px solid rgba(255, 255, 255, 0.35);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.18),
        inset 0 1px 2px rgba(255, 255, 255, 0.7);

    overflow: visible;
    z-index: 999;
    margin-top: 2rem;
    margin-left: 2rem;
    margin-right: 2rem;

}



.top_header.sticky .bottom_header {
    background-color: var(--color-ff);
}


.top_header.sticky .site_brand {
    padding-block: 2rem 2rem;
}

.main_section.inner-menu {
    transition: all .5s ease;
}



.main_section.inner-menu.sticky {
    position: fixed;
    box-shadow: 0px 0px 6px 0px rgb(0 0 0 / 17%);
    margin-top: 12.5rem;
    left: 0;
    right: 0;
    z-index: 99;
}



.top_headersticky .site_nav>ul>li>a {
    color: var(--color-17);
}

.graduate-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.cus-graduate {
    margin-bottom: 1rem;
    padding-left: 1rem;
}

.cus-graduate-img {
    position: relative;
}
.cus-graduate-img img{
    border-radius: 2rem;
}


.cus-graduate-text {
    position: absolute;
    bottom: 0;
    padding: 3rem 6.6rem 2.5rem 3rem;
    background: transparent linear-gradient(180deg, #00000000 0%, rgb(0 0 0 / 66%) 100%) 0% 0% no-repeat padding-box;
    width: 100%;
    text-align: center;
    border-radius;
    border-radius: 2rem;
}

.graduate-list .cus-graduate-text {
    background: linear-gradient(to top, rgb(13, 29, 70), rgba(19, 31, 64, 0.8), rgba(26, 43, 91, 0.6), rgba(19, 38, 91, 0.4), rgba(55, 72, 119, 0));
}


.cus-graduate-text h4 {
    font-size: var(--font-22);
    color: var(--color-ff);
    font-weight: 800;
    letter-spacing: -1.5px;
}

.cus-graduate:nth-child(1) {
    padding-left: 5rem;
}

.graduate-list-2nd {
    margin-top: 8rem;

}

.graduate-list-2nd .cus-graduate:nth-child(1) {
    padding-left: 0;
    padding-right: 3rem;
}

.graduate-list-2nd .cus-graduate {
    padding-left: 0rem;
}

.explore-text {}

.explore-text h4 {
    font-size: var(--font-16);
    color: var(--color-23);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.explore-menu {
    padding: 2.5rem;
}

.drop_right .explore-menu {
    padding: 2.5rem 0;
}

.explore-menu ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.explore-menu ul li {
    border-bottom: 1px solid #8c85854f;
    margin: 0 4rem 0 0;
    padding: 1.5rem 0;

}

.explore-menu ul li a {
    font-size: var(--font-15);
    color: var(--color-00);
    font-weight: 700;
}

.explore-menu ul li a:hover {
    color: var(--color-23);
}

.header-future {
    margin-top: 4rem;
    position: relative;
}

.header-future-text {
    display: flex;
    position: relative;
    align-items: center;
    z-index: 1;
    background: #fff;
}

.header-future-text h2 {
    font-size: var(--font-76);
    color: var(--color-23);
    font-weight: 800;
    margin-right: 1.8rem;
    font-family: var(--font-Barlow);
}

.header-future-text p {
    margin-bottom: 0;
    font-size: var(--font-21);
    color: var(--color-21);
    font-weight: 300;
}

.header-future::before {
    content: '';
    border-bottom: 1px solid #2638684a;
    width: 82%;
    position: absolute;
    bottom: 10px;
    right: 5rem;
}

.header-future-text::before {
    content: '';
    border-right: 1px solid #2638684a;
    position: absolute;
    bottom: -16px;
    right: 5rem;
    position: absolute;
    height: 85%;
}

.header-future-text::after {
    content: '';
    border-top: 1px solid #2638684a;
    position: absolute;
    bottom: inherit;
    right: 5rem;
    position: absolute;
    height: 1px;
    top: 30px;
    width: 20%;
}

.sec-submenu {
    display: none;
}

.sec-submenu a {
    font-size: var(--font-15);
    color: var(--color-00);
    font-weight: 700;
    display: block;
    border-bottom: 1px dashed #0000004f;
    margin: 0 1rem 0 0;
    padding: 1.2rem 0;
}

.hamb_menu li a.dropdown-toggle {
    position: relative;
}

.hamb_menu li a.dropdown-toggle::before {
    content: '\F282';
    position: absolute;
    top: 1.1rem;
    right: 4px;
    font-size: var(--font-12);
    line-height: normal;
    font-weight: 800;
    font-family: bootstrap-icons !important;
    color: var(--color-23);
}

.hamb_menu li a.dropdown-toggle.active::before {
    transform: rotate(180deg);
}


.admission-box {
    position: relative;
    transition: 1s;
    -webkit-transition: 1s;
}



.admission-text a {
    background: var(--color-f0);
    display: inline-flex;
    padding: 5px 24px 5px 10px;
    font-size: var(--font-18);
    line-height: var(--line-height-23);
    color: var(--color-00);
    font-family: var(--font-Karla);
    font-weight: 500;
    /* padding-bottom: 2.7rem; */
    transition: all .5s ease;
    position: relative;
    border-radius: 2rem;
}

.admission-text a::after {
    content: '';
    background: var(--color-ff);
    width: 0%;
    position: absolute;
    height: 33px;
    left: 0;
    transition: 1s;
    -webkit-transition: 1s;
    top: 0;
}

.admission-text a:hover:after {
    width: 100%;
}

.admission-text a span {
    z-index: 9;
    position: relative;
}

.admission-text a {
    position: relative;

}

.admission-text a::before {
    content: '\F282';
    position: absolute;
    top: 1.1rem;
    right: 9px;
    font-size: var(--font-12);
    line-height: normal;
    font-weight: 800;
    font-family: bootstrap-icons !important;
    color: var(--color-00);
}



.admission-text a:hover::before {
    z-index: 9;
}

.admission-box:hover .admission-main-box {
    display: block;
}

.admission-main-box .explore-menu {
    padding: 2rem;
}

.admission-main-box .explore-menu ul li a {
    font-size: var(--font-14);
}

.links {
    display: none;
    position: absolute;
    width: 710px;
    overflow: hidden;
    transition: all .5s ease;
    right: 0;
    padding: 2rem;
    top: 5rem;

}

.admission-main-box {
    background: #fff;
    border: 0.5px #2638684a solid;
    position: relative;
    border-radius: 2rem;
}



.admission-box::before {
    content: '';
    position: absolute;
    top: -10.5px;

    /* CENTER under button */
    left: 80%;
    transform: translateX(-50%) rotate(-45deg);

    width: 22px;
    height: 22px;

    background: #fff;

    border-top: 1px solid #2638684a;
    border-right: 1px solid #2638684a;
}

.admission-box {
    position: relative;
    background: #fff;
    border-radius: 2rem;
}

.inner-header .admission-main-box {
    border-radius: 2rem;
}


body:has(.admission-nav:hover),
body:has(.links:hover) {
    overflow: hidden;
}
body:has(.admission-nav:hover)::after,
body:has(.links:hover)::after {
    content: "";
    position: fixed;
    inset: 0;
    background: rgb(0 0 0 / 75%);
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
    z-index: 9;
    pointer-events: none;
}



/* .admission-box::before {
    content: '';
    background: #fff;
    border-width: 0px 7px 7px 0;
    display: inline-block;
    transform: rotate(-45deg);
    -webkit-transform: rotate(45deg);
    padding: 10px;
    margin-left: 1rem;
    position: absolute;
    top: -8px;
    right: 14rem;

} */


.toggled {
    display: block;
    transition: all .5s ease;
}

/* .inverse {
    position: relative;
} */

/* .inverse::before {
    background: none;
    content: '';
    background-color: rgba(250, 248, 248, 0.89);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    position: absolute;    
   
} */

.header-apply {
    background-color: #efefef;
    padding: 2rem 2.5rem;
    border-radius: 2rem;
}

.header-apply-list {
    display: flex;
    justify-content: space-between;
    padding: 0 5rem;
}

.apply-text h2 {
    color: var(--color-17);
    font-size: var(--font-42);
    font-weight: 800;
    letter-spacing: -2px;

}

.header-apply-btn {
    position: relative;
}

.header-apply-btn .menu-apply {
    display: flex;
    gap: .5rem;
}

.header-apply-btn .menu-apply .message-btn {
    margin: 0;
    padding: 1rem 2rem;
}

.header-apply-btn .menu-apply .message-btn:last-child {
    background-color: var(--color-23);
    color: var(--color-ff);
}

.download a {
    display: inline-flex;
    background: var(--color-ff);
    padding: 6px 10px;
    margin-bottom: 2rem;
    align-items: center;
    border: 1px solid #CECECE;
    color: var(--color-00);
    font-size: var(--font-14);
}

.download a img {
    width: 1.2rem;
    margin-right: .5rem;
}

.menu-apply .message-btn {
    background: var(--color-f0);
    color: var(--color-00);
}

.menu-apply .message-btn:hover {
    color: var(--color-ff);
}

.header-enquiry {
    background: #122f7e26;
    padding: 0 3rem;
    margin: 2rem 0 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-enquiry-text {
    border-right: 1px solid #0000000e;
    padding: .5rem 2rem .5rem 0;
}

.header-enquiry-text h6 {
    font-size: var(--font-15);
    color: var(--color-00);
}

.header-enquiry-text h6 a:hover {
    color: var(--color-23);
}

.header-enquiry-call {
    border-right: 1px solid #0000000e;
    padding: .5rem 2rem .5rem 0;
}

.header-enquiry-call:last-child {
    border-right: 0px solid #0000000e;
}

.header-enquiry-call a {
    display: flex;
    align-items: center;
    font-size: var(--font-18);
    color: var(--color-00);
}

.header-enquiry-call a:hover {
    color: var(--color-17);
}

.header-enquiry-call a img {
    width: 2.3rem;
    margin-right: .8rem;
}



.inner-header .site_nav>ul>li>a {
    color: #253766;
}

.inverse .site_nav>ul>li>a {
    color: #253766;
}


.inner-header.inverse .search_bars a svg path {
    stroke: #fff;
}

.inner-header .white-logo {
    display: none;
}

.inner-header.sticky .white-logo {
    display: block;
}

.inner-header.sticky .main-logo {
    display: none;
}

.inner-header .search_bars a svg {
    fill: #fff;
    stroke: #000;
}

.inner-header.sticky .search_bars a svg {
    color: #fff;
    stroke: currentColor;
    fill: currentColor;
}

.inner-header .search_bars a svg path {
    stroke: #000;
}

.inner-header.sticky .search_bars a svg path {
    stroke: #000;
}


.inner-header-new {
    background: var(--color-ff);
    position: relative;
    margin-right: 4rem;
}

.site_brand {
    padding-left: 3.4rem;
    padding-block: 0.7rem 0;
}

.site_nav.active>ul>li>a {
    color: var(--color-17);
}

.inner-header.sticky .site_nav.active>ul>li>a {
    color: var(--color-17);
}



.sub-submenu li {
    padding: 0 2.5rem;
}

/* Basic dropdown (first level) */
.abt-menu>ul {
    position: absolute;
    display: none;
    left: 0;
    top: 100%;
    background: white;
    list-style: none;
    padding: 10px;
    z-index: 1000;
    border: 1px solid #ccc;
    border-radius: 2rem;
}

.inner-header .abt-menu>ul {
    position: absolute;
    display: none;
    left: 0;
    top: 100%;
    background: white;
    list-style: none;
    padding: 10px;
    z-index: 1000;
    border: 1px solid #ccc;
    border-radius: 2rem;
}

/* Show the first-level submenu */
.abt-menu:hover>ul {
    display: block;
}

/* Second-level menu (shows to right) */
.submenu li {
    position: relative;
}

.submenu > li::after {
    content: "";
    position: absolute;
    top: 0;
    left: 100%;
    width: 25px;
    height: 100%;
    background: transparent;
}

.submenu {
    position: absolute;
}

.sub-submenu li {
    margin-right: 0;
}


.sub-submenu::before {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    background: #fff;
    transform: rotate(45deg);
    left: -7px;
    top: 20px;
    /* aligns with menu text */
}

/* Sub-submenu positioning */
.sub-submenu {
    position: absolute;
    left: 100%;
    /* attach to parent item */
    top: 0;
    /* align to same item */
    width: 300px;
    background: #fff;
    border-radius: 1.2rem;
    padding: 1rem 0;
    display: none;
    z-index: 1000;
    margin-left: 1rem;
}

.sub-submenu a {
    font-size: var(--font-15);
    color: var(--color-00);
    font-weight: 700;
    display: block;
    border-bottom: 1px solid #b3a8a84f;
    margin: 0 1rem 0 0;
    padding: 1.5rem 0;
}

/* Show sub-submenu when hovering */
.submenu li:hover>.sub-submenu {
    display: block;
}

.inner-header .sub-submenu {
    margin-left: 2rem;
}

/*  UIAM - 02031998 End */



/* Hamburger Menu start */

.hamburger_menu {
    position: fixed;
    right: 0;
    top: 0;
    width: 37rem;
    height: 100vh;
    background-color: var(--color-ff);
    z-index: 1090;
    padding-top: 8.7rem;
    display: flex;
    flex-direction: column;
    gap: 4.4rem;
    visibility: hidden;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s ease;
}

.hamburger_menu.active {
    transform: translateX(0);
    visibility: visible;
    opacity: 1;
}

body:has(.hamburger_menu.active)::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 85%);
    backdrop-filter: blur(0.9rem);
    z-index: 10;
}

body:has(.hamburger_menu.active)>.main_header {
    z-index: 10;
    transition: all 0.1s ease;
}

.close_hamb {
    position: absolute;
    top: 2.6rem;
    right: 2.5rem;
    padding: 0;
    border: none;
    background: transparent;
    line-height: normal;
}

.hamb_menu {
    padding-inline: 5.3rem;
    height: 100vh;
    margin: 0;
    overflow: hidden;
    overflow-y: auto;
}

.hamb_menu::-webkit-scrollbar {
    width: 0.5rem;
}

.hamb_menu::-webkit-scrollbar-track {
    background-color: var(--color-f5);
    border-radius: 0.2rem;
}

.hamb_menu::-webkit-scrollbar-thumb {
    background-color: var(--color-17);
    border-radius: 0.2rem;
}

.hamb_menu::-webkit-scrollbar-thumb:hover {
    background-color: var(--color-23);
}

.hamb_menu li {
    list-style: none;
}

.hamb_menu>li:not(:last-child) {
    margin-bottom: 1.6rem;
}

.hamb_menu>li>a {
    display: block;
    font-size: var(--font-20);
    color: var(--color-23);
    padding-bottom: 1.6rem;
    border-bottom: 0.1rem dashed #C6C6C6;
}

.hamburger_menu .hamb_menu .sec-submenu >li>a{
    color:#534343;
}

/* .hamb_menu>li:last-child>a{padding-bottom: 0;border-bottom: 0;} */
.hamb_menu>.hamb_drop>a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.hamb_drop>a::after {
    content: '\F4FE';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: bootstrap-icons !important;
    font-size: 1.7rem;
    border: 0.1rem solid var(--color-f0);
    color: var(--color-f0);
    width: 2rem;
    height: 2rem;
}

.hamb_drop>a.active::after {
    content: '\F2EA';
}

.hamb_drop>a.active {
    border-color: transparent;
    color: var(--color-f0);
}

.hamb_sub {
    display: none;
    border-bottom: 0.1rem dashed #C6C6C6;
    padding-bottom: 1.6rem;
    padding-left: 0;
}

.hamb_sub>li:not(:last-child) {
    margin-bottom: 1rem;
}

.hamb_sub>li a {
    display: block;
    font-size: var(--font-16);
    color: var(--color-17);
    padding-bottom: 1rem;
    border-bottom: 0.1rem dashed #C6C6C6;
}

.hamb_sub>li:last-child a {
    padding-bottom: 0;
    border-bottom: 0;
}

.hamb_menu li a {
    transition: all 0.5s ease;
}

.hamb_menu li a:hover {
    color: var(--color-f0);
}

.watermark_icon {
    padding-inline: 2rem;
    position: absolute;
    bottom: 0;
    z-index: -1;
}

.site_nav>ul>li.abt-menu {
    position: relative;
    padding-block: 1.5rem;
}

.site_nav>ul>li>ul {
    display: none;
    position: absolute;
    background-color: #fff;
    width: 300px;
    padding: 0rem 0;
    top: 99%;
    left: 0;
}


.site_nav>ul>li:hover>ul {
    display: block;
}

.site_nav>ul>li>ul>li {
    padding: 0 2.5rem;
}

.site_nav>ul>li>ul>li>a {
    font-size: var(--font-15);
    color: var(--color-00);
    font-weight: 700;
    border-bottom: 1px solid #a6a3a34f;
    margin: 0 1rem 0 0;
    display: block;
    padding: 1.5rem 0;
}

.site_nav ul li a:hover {
    color: var(--color-23);
}

.has-submenu>a {
    position: relative;
}

.submenu>li:has(.sub-submenu)>a::after {
    content: "\f285";
    font-size: 0.7em;
    margin-left: 5px;
    transition: transform 0.3s;
    position: absolute;
    right: 3rem;
    width: 2rem;
    height: 1rem;
    top: 1.7rem;
    font-family: bootstrap-icons !important;
}


.site_nav>ul>li>ul::before {
    content: '';
    background: #fff;
    border-width: 0px 7px 7px 0;
    display: inline-block;
    transform: rotate(-45deg);
    -webkit-transform: rotate(45deg);
    padding: 8px;
    margin-left: 1rem;
    position: absolute;
    top: -8px;
    left: 3rem;
    border-left: 0.5px solid #ddd;
    border-top: 1px solid #ddd;
}


/* Sub-submenu positioning
.sub-submenu {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    background-color: #fff;
    width: 300px;
    z-index: 1000;
} */

.has-sub:hover .sub-submenu {
    display: block;
}





.side_fix {
    position: fixed;
    bottom: 30%;
    right: 1rem;
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 1rem;
    z-index: 99999;
}

.side_fix>a {
    display: block;
    animation: shake-phone 2s ease-in-out infinite;
    -webkit-animation: shake-phone 2s ease-in-out infinite;
}

.side_fix>a>img {
    width: 4.5rem;
}

.side_fix>.gms-btn {
    background-color: var(--color-23);
    color: var(--color-ff);
    writing-mode: sideways-rl;
    display: block;
    font-size: var(--font-18);
    font-weight: 600;
    padding: 1.5rem 1rem;
    margin: 0;
    line-height: 1.2;
    width: auto;
    animation: none;
    -webkit-writing-mode: sideways-rl;
    -ms-writing-mode: sideways-rl;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    border-radius: 2rem;
}

.side_fix>.gms-btn:hover {
    background-color: var(--color-f0);
    color: var(--color-00);
}



@media (min-width: 2300px) {
    .top_header .container-fluid {
        max-width: 100%;
        padding-inline: .75rem;
    }
}

@media(max-width:1799px) {
    .site_brand {
        padding-left: 2.4rem;
    }

    .site_brand .navbar-brand {
        width: 24rem;
    }

    .top_header ul {
        gap: 0.6rem;
    }

    .site_nav>.search_bars>a>svg {
        width: 1.8rem;
    }

    .drop_right>ul {
        gap: 3.6rem 2.5rem;
    }

    .drop_right {
        padding-left: 3rem;
    }

    .dropdown_menu>.dropdown_item {
        padding-block: 1.6rem 5.9rem;
        grid-template-columns: 50% auto;
        padding-inline: 3.3rem 0;
    }

    .drop_left {
        padding-right: 5rem;
    }

    .site_nav {
        padding-right: 7rem;
    }
}

@media screen and (max-width:1600px) {
    .banner-arrows {
        bottom: 19rem;
        left: 20.8rem;
    }

}

@media(max-width:1549px) {
    .top_header ul {
        gap: 0.3rem;
    }


    .top-header-box {
        padding-top: 1.5rem;
    }

    .site_nav {
        padding-top: 0rem;
        flex: 0 0 79.215%;
    }

    .site_brand {
        padding-left: 1.4rem;
        padding-block: 1.7rem 0;
    }

    .site_brand .navbar-brand {
        /* width: 18rem; */
        margin-bottom: .8rem;
    }

    .main_header.sticky .site_brand .navbar-brand {
        width: 13rem;
    }

    .site_nav>ul>li {
        margin-right: 1rem;
        padding-right: 1rem;
    }

    .site_nav>ul>li:not(:last-child)>a::before {
        right: -1rem;
    }

    .site_nav>.search_bars {
        gap: 1.2rem;
    }

    .site_nav>.search_bars>a {
        padding-left: 0.7rem;
    }

    .site_nav>.search_bars>a>svg {
        width: 1.6rem;
    }

    .dropdown_menu>.dropdown_item {
        padding-inline: 2.3rem 0;
        padding-block: 1.6rem 4.9rem;
        grid-template-columns: 50% auto;
    }

    .drop_left {
        padding-right: 3rem;
    }

    .drop_right {
        padding-left: 0;
    }

    .drop_right>ul {
        gap: 3.6rem 1.8rem;
    }

    .drop_left>.menu_fact {
        padding-right: 3rem;
    }

    .menu_over {
        padding-right: 3rem;
        margin-right: 3rem;
    }

    .site_nav>ul>li>a {
        font-size: var(--font-16);
    }

    .admission-text a {
        font-size: var(--font-16);
        padding-right: 2.5rem;
    }

    .admission-text a::before {
        right: 0.8rem;
    }

}



@media screen and (max-width:1366px) {
    .site_nav {
        padding-right: 1rem;
    }

    .main_section.inner-menu.sticky {
        margin-top: 8.6rem;
    }

}

@media screen and (max-width:1201px) {
    .site_nav>ul>li>a {
        font-size: var(--font-16);
    }

    .site_nav {
        padding-right: 2rem;
    }

    .top_header.sticky .site_nav {
        padding-right: 1rem;
    }

    .home-section4 {
        overflow: hidden;
    }
}

@media(max-width:1199px) {
    .site_brand .navbar-brand {
        width: 27rem;
    }
}

@media(max-width:991px) {
    .site_nav {
        display: none;
    }

    .site_brand {
        padding-left: 0;
        padding-block: 1rem;
    }

    .site_brand .navbar-brand {
        margin-inline: auto;
        margin-bottom: 0;
    }

    .bottom_header .container-fluid {
        justify-content: center;
    }

    .site_brand .navbar-brand {
        width: 25rem;
    }

    .download a {
        padding: 11px 10px;
        font-size: 1.4rem;
    }

    .download a img {
        width: 2.2rem;
        margin-right: .5rem;
    }

    .message-btn {
        font-weight: 500;
    }
}

@media(max-width:350px) {
    .site_brand .navbar-brand {
        width: 28rem;
    }
}


@media(max-width:1799px) {
    .hamburger_menu {
        max-width: 30rem;
        gap: 3.4rem;
        padding-top: 6.7rem;
    }

    .close_hamb>img {
        width: 1.5rem;
        height: 1.5rem;
        object-fit: contain;
    }

    .hamb_menu {
        padding-inline: 3.3rem;
    }

    .hamb_menu>li {
        margin-bottom: 1.2rem;
    }

    .hamb_menu>li>a {
        padding-bottom: 1.2rem;
    }
}

@media screen and (max-width:1500px) {}

@media(max-width:1680px) {
    .site_nav>ul>li>ul>li>a {
        padding: 1.2rem 0;
    }

    .sub-submenu a {
        padding: 1.1rem 0;
    }
}


@media(max-width:991px) {
    .hamburger_menu {
        display: none;
    }

    .main_section.inner-menu.sticky {
        margin-top: 8.8rem;
    }
}


@media(max-width:767px) {
    .top-header-box {
        justify-content: center;
    }
}


@keyframes shake-phone {
    0% {
        transform: rotate(0deg);
    }

    10% {
        transform: rotate(-10deg);
    }

    20% {
        transform: rotate(10deg);
    }

    30% {
        transform: rotate(-8deg);
    }

    40% {
        transform: rotate(8deg);
    }

    50% {
        transform: rotate(-5deg);
    }

    60% {
        transform: rotate(5deg);
    }

    70% {
        transform: rotate(-3deg);
    }

    80% {
        transform: rotate(3deg);
    }

    90% {
        transform: rotate(-2deg);
    }

    100% {
        transform: rotate(0deg);
    }
}


@media(max-width:767px) {
    .side_fix>a>img {
        width: 3rem;
    }

    .side_fix>.gms-btn {
        padding: 1rem 0.5rem;
    }
}

@media (max-width: 1199px) {
    .site_nav {
        padding-top: 0rem;
        flex: 0 0 70.215%;
    }

    .site_nav>.search_bars {
        gap: 0.2rem;
    }
}

@media (max-width: 1099px) {
    .site_nav {
        padding-top: 0rem;
        flex: 0 0 71.215%;
    }

    .site_nav>ul>li {
        margin-right: 1rem;
        padding-right: 0rem;
    }
}

@media(min-width:2300px) {
    .admission-text a {
        padding: 6px 35px 6px 15px;
    }

    .admission-text a::after {
        height: 100%;
    }

    .admission-text a::before {
        top: 1rem;
    }

    .links {
        width: 75rem;
    }

    .site_nav>ul>li>ul {
        width: 29rem;
    }

    .header-apply-list {
        padding: 0 0rem;
    }

    .site_nav>ul>li>ul>li>a {
        padding: 1rem 0;
    }
}

@media (max-width:1649px) {
    .header-future-text::after {
        top: 28px;
        width: 8%;
    }

    .header-future-text::before {
        bottom: -13px;
        right: 5rem;
        height: 81%;
    }

    .cus-graduate-text {
        padding: 2rem 3rem 2rem 3rem;
    }
}

@media (max-width:1500px) {
    .header-future::before {
        width: 89%;
        right: 2rem;
    }

    .header-future-text::after {
        top: 29px;
        width: 7%;
        right: 2rem;
    }

    .header-future-text::before {
        right: 2rem;
        height: 80%;
        bottom: -12px;
    }
}

@media (max-width:1399px) {
    .header-future::before {
        width: 92%;
        right: 0;
    }

    .header-future-text::before {
        right: 0rem;
        height: 81%;
        bottom: -12px;
    }

    .header-future-text::after {
        top: 29px;
        width: 7%;
        right: 0rem;
    }

    .header-future-text p,
    .cus-graduate-text h4 {
        font-size: var(--font-18);
    }
}

@media (max-width:1199px) {
    .header-future-text::after {
        top: 22px;
        width: 7%;
        right: 0rem;
    }

    .header-future-text::before {
        right: 0rem;
        height: 81%;
        bottom: -11px;
    }

    .cus-graduate-text {
        padding: 2rem 1rem 0.6rem 1rem;
    }
}

@media screen and (max-width:375px) {
    .main_section.inner-menu.sticky {
        margin-top: 8rem;
    }
}



