@import url(https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100..900;1,100..900&family=Frank+Ruhl+Libre:wght@300..900&display=swap);
:root {
    --primary: #a82364;
    --primaryLight: #2477BA;
    --primaryDark: #003561;
    /*--secondary: #CA7BA2;*/
    --secondary: #ab1f62;
      
    --secondaryLight: #ab1f62;
    --white: #FFF;
    --black: #000;
    --themetxt: #272727
}

html {
    scrollbar-width: thin;
    -ms-overflow-style: none;
    /*scrollbar-color: var(--primary) transparent*/
}

body {
    padding: 0;
    margin: 0;
    font-size: 16px;
    color: var(--themetxt);
    font-family: "Albert Sans", sans-serif;
    overflow-y: visible;
    overflow-x: hidden
}

a,
button {
    outline: 0 !important;
    text-decoration: none;
    box-shadow: none;
    transition: all .4s ease-in-out
}

.btn:focus,
a:focus,
a:hover,
btn.focus,
button:focus,
select:focus {
    outline: 0;
    text-decoration: none;
    box-shadow: none
}

* {
    margin: 0;
    padding: 0
}

img {
    border: none;
    vertical-align: middle;
    max-width: 100%;
    height: auto
}

li {
    list-style: none
}

h1,
h2,
h3,
h4,
h5,
h6 {
    outline: 0 !important;
    font-family: "Frank Ruhl Libre", serif
}

button,
input,
select,
textarea {
    outline: 0 !important;
    box-shadow: none
}

input,
select,
textarea {
    box-shadow: none !important
}

.container {
    width: 90%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0
}

.global_title {
    margin: 0 0 35px;
    padding: 0;
    font-size: 48px;
    color: var(--themetxt);
    font-weight: 400
}

.global_title span {
    display: block;
    position: relative;
    padding-left: 34px;
    color: inherit
}

.global_title span::before {
    content: "";
    width: 10px;
    height: 33px;
    background: var(--secondary);
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto
}

.global_title small {
    display: block;
    font-size: 20px;
    color: #5b5b5b;
    font-family: "Albert Sans", sans-serif
}

.global_title small.line {
    margin-bottom: 17px;
    padding-left: 22px;
    position: relative
}

.global_title small.line:before {
    content: "";
    width: 8px;
    height: 24px;
    background: var(--secondary);
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto
}

.global_title.sky {
    color: var(--primary)
}

.global_title.white {
    color: var(--white)
}

.global_title.white small {
    color: rgba(255, 255, 255, .65)
}

.global_title small~span {
    margin-top: 10px
}

.global_title span~small {
    margin-top: 5px
}

.global_title strong {
    display: block;
    font-size: 64px
}

#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999
}

#loader {
    animation: spin 6s linear infinite
}

@keyframes spin {
    0% {
        transform: rotate(0)
    }
    100% {
        transform: rotate(360deg)
    }
}

p {

    font-size: 16px;
    line-height: 26px;
    font-weight: 300;
    color: var(--themetxt)
}

.btns {
    margin: 0;
    padding: 10px 50px 10px 16px;
    font-size: 18px;
    color: var(--themetxt);
    background: var(--white);
    display: inline-flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    min-width: 190px;
    border: 1px solid #cfcfcf
}

.btns:after {
    content: "";
    width: 15px;
    height: 15px;
    background: url(../images/btns_arrow_sky12x.svg) no-repeat center center;
    position: absolute;
    right: 16px;
    top: 0;
    bottom: 0;
    margin: auto;
    transition: all .3s ease-in-out
}

.btns img {
    transition: all .6s ease-in-out
}

.btns:hover:after {
    transform: translateX(31px);
    filter: brightness(0) invert(1)
}

.btns:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    padding-left: 33px;
    padding-right: 33px
}

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

.btns.animated:hover img {
    animation: rotate360 4s infinite linear
}

.btns.fill {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary)
}

.btns.fill::after {
    filter: brightness(0) invert(1)
}

.btns.fill:hover img {
    filter: inherit
}

.btns.yellow {
    background: var(--secondaryLight);
    color: #004681;
    border-color: var(--secondaryLight)
}

.btns.yellow:hover img {
    filter: inherit
}

.fr_img {
    margin: 0 0 10px !important;
    padding: 0 0 0 50px !important;
    float: right;
    width: 100%;
    max-width: 50%
}

.fr_img.ft {
    padding: 0 50px 0 0 !important;
    float: left
}

header {
    width: 100%;
    padding: 0;
    margin: 0;
    position: relative;
    top: 0;
    z-index: 900;
    transition: all .4s ease-in-out
}

.header_absolute {
    width: 100%;
    padding: 0;
    margin: 0;
    position: absolute;
    z-index: 900;
    transition: all .4s ease-in-out;
    background: rgb(250 250 250);
}

.header_absolute::before {
    content: "";
    width: 100%;
    height: 100%;
   
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    inset: 0;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    pointer-events: none;
    transition: all .4s ease-in-out;
    opacity: 0
}

.hd_relative .header_absolute {
    position: relative;
    background: var(--black)
}

.head_top {
    padding: 0;
    background: var(--primary)
}

.top_social {
    margin: 0;
    padding: 0;
    gap: 14px;
    display: flex
}

.top_social li {
    margin: 0;
    padding: 0;
    align-self: center
}

.top_social li a {
    display: flex
}

.top_social li a img {
    height: 16px
}

.top_social li a:hover img {
    filter: brightness(0) saturate(100%) invert(87%) sepia(52%) saturate(7298%) hue-rotate(341deg) brightness(92%) contrast(92%)
}

.tour_link {
    margin: 0 30px 0 35px;
    padding: 0;
    font-size: 16px;
    color: var(--white);
    display: inline-flex;
    gap: 5px;
    position: relative
}

.tour_link::before {
    content: "";
    width: 1px;
    height: 13px;
    border-left: 1px solid rgba(255, 255, 255, .5);
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: -35px
}

.tour_link:hover {
    color: var(--secondaryLight)
}

.ebrochure_btn {
    margin: 0;
    padding: 9px 20px;
    font-size: 16px;
    background: var(--secondary);
    color: var(--themetxt);
    border: none;
    display: flex;
    gap: 10px;
    align-items: center
}

.ebrochure_btn img {
    width: 16px;
    min-width: 16px
}

.ebrochure_btn:hover {
    background: var(--secondaryLight);
    color: var(--themetxt)
}

.head_top .navbar {
    margin: 0;
    padding: 0
}

.head_top .navbar-light .navbar-nav .nav-item {
    margin: 0 35px 0 0
}

.head_top .navbar-light .navbar-nav .nav-link {
    margin: 0;
    padding: 0;
    font-weight: 400;
    font-size: 16px;
    color: var(--white)
}

.head_top .navbar-light .navbar-nav .nav-link:focus,
.head_top .navbar-light .navbar-nav .nav-link:hover {
    color: var(--secondaryLight);
    border-color: var(--secondary)
}

.head_top .navbar-light .navbar-nav .nav-link.active,
.head_top .navbar-light .navbar-nav .show>.nav-link {
    color: var(--secondaryLight);
    border-color: var(--secondary)
}

.head_bottom {
    padding: 10px 0;
    transition: all .4s ease-in-out
}

.head_bottom .navbar {
    margin: 0;
    padding: 0;
    position: static
}

.head_bottom .navbar-brand {
    margin: 0;
    padding: 0
}

.head_bottom .navbar-light .navbar-nav {
    margin: 0;
    gap: 10px
}

.head_bottom .navbar-light .navbar-nav .nav-item {
    margin: 0;
    display: flex;
    justify-content: space-between;
    gap: 3px;
    flex-wrap: wrap;
    align-items: center
}

.head_bottom .navbar-light .navbar-nav .nav-item:hover .nav-link {
    color: #a82364;
}

.head_bottom .navbar-light .navbar-nav .nav-link {
    margin: 0;
    padding: 8px 7px;
    font-weight: 500;
    font-size: 15px;
    color: #000;
    position: relative
}

.head_bottom .navbar-light .navbar-nav .nav-link:focus-visible {
    box-shadow: none
}

.head_bottom .navbar-light .navbar-nav .nav-link:before {
    content: "";
    width: 0;
    height: 2px;
    background: #a82364;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    transition: all .3s ease-in-out
}

.head_bottom .navbar-light .navbar-nav .nav-link:focus,
.head_bottom .navbar-light .navbar-nav .nav-link:hover {
    color: var(--secondaryLight);
    border-color: var(--secondaryLight)
}

.head_bottom .navbar-light .navbar-nav .nav-link.active,
.head_bottom .navbar-light .navbar-nav .show>.nav-link {
    color: var(--secondaryLight);
    border-color: var(--secondaryLight)
}

.head_bottom .navbar-light .navbar-nav .dropdown:hover>.nav-link:before,
.head_bottom .navbar-light .navbar-nav .nav-link.active:before,
.head_bottom .navbar-light .navbar-nav .nav-link:focus:before,
.head_bottom .navbar-light .navbar-nav .nav-link:hover:before {
    width: 100%
}

header .navbar-nav .dropdown-menu {
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 0;
    transition: all .4s ease-in-out;
    background: transparent linear-gradient(181deg, #0060af 0, #00203a 100%) 0 0 no-repeat padding-box
}

header .navbar-nav .dropdown-item {
    padding: 10px 50px 10px 24px;
    font-size: 14px;
    color: var(--white);
    font-family: "Albert Sans", sans-serif;
    font-weight: 500
}

header .navbar-nav .dropdown-item:hover,
header .navbar-nav .dropdown-menu>li:hover>.dropdown-item {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary)
}

header .navbar-nav .dropdown-item:active,
header .navbar-nav .dropdown-item:focus {
    background: 0 0;
    color: var(--secondary);
    border-color: var(--secondary)
}

header .navbar-nav .dropdown-item.active {
    background: #c09111;
    color: var(--white);
    border-color: #c09111
}

.head_bottom .navbar-light .navbar-nav .dropdown>.dropdown-menu.third::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent linear-gradient(181deg, #0060af 0, #00203a 100%) 0 0 no-repeat padding-box;
    z-index: -1
}

.head_bottom .navbar-light .navbar-nav .dropdown>.dropdown-toggle:after {
    border-top-color: #fff
}

.head_bottom .navbar-light .navbar-nav .dropdown:hover>.dropdown-toggle:after {
    border-bottom-color: #fff
}

.head_bottom .navbar-light .navbar-nav .dropdown:hover>.dropdown-toggle:after {
    border-top-color: var(--secondary)
}

.head_bottom .navbar-light .navbar-nav .dropdown>.dropdown-toggle.active:after {
    border-top-color: var(--secondary)
}

.head_bottom .navbar-light .navbar-nav .nav-item.dropdown>.dropdown-toggle:after {
    top: 2px;
    position: relative
}

@media(min-width:1200px) {
    .head_bottom .navbar-light .navbar-nav .dropdown-menu {
        top: 100%;
        height: auto !important;
        opacity: 0;
        display: block !important;
        visibility: hidden;
        overflow: hidden;
        transition: all .1s ease-in
    }
    .head_bottom .navbar-light .navbar-nav .dropdown:hover>.dropdown-menu {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        overflow: visible
    }
    .head_bottom .navbar-light .navbar-nav .dropdown>.dropdown-menu.third {
        top: 0 !important;
        margin: 0 !important;
        padding: 0 0 0 5px !important;
        background: 0 0;
        left: 100%
    }
    .head_bottom .navbar-light .navbar-nav .dropdown-menu li:first-child>.dropdown-menu.third {
        top: 0 !important;
        margin: -30px 0 0 !important;
        padding: 30px 0 0 5px !important
    }
    .head_bottom .navbar-light .navbar-nav .dropdown-submenu>.dropdown-toggle:after {
        border: none;
        width: 12px;
        height: 6px;
        background: url(../images/subdrop_arrow.svg) no-repeat center center;
        position: absolute;
        right: 15px;
        top: 0;
        bottom: 0;
        margin: auto
    }
    .head_bottom .navbar-light .navbar-nav .dropdown>.dropdown-menu.third::before {
        top: 0;
        left: 5px
    }
    .head_bottom .navbar-light .navbar-nav .dropdown-menu li:first-child>.dropdown-menu.third::before {
        top: 30px;
        left: 5px
    }
}

.search-wrapper {
    margin: 0;
    padding: 0;
    z-index: 999;
    min-width: 15px;
    max-width: 15px
}

.search-wrapper .input-holder {
    overflow: hidden;
    position: relative
}

.search-wrapper.active .input-holder {
    background: var(--white);
    border: none;
    border-radius: 0;
    transition: all .5s cubic-bezier(0, .105, .035, 1.57);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 83%;
    z-index: 999;
    padding: 13px 50px;
    display: flex;
    align-items: center
}

.search-wrapper .input-holder .search-input {
    width: 100%;
    height: 40px;
    padding: 0 110px;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 0;
    background: 0 0;
    box-sizing: border-box;
    border: none;
    outline: 0;
    font-size: 18px;
    color: #8b8b8b;
    transform: translate(0, 60px);
    transition: all .3s cubic-bezier(0, .105, .035, 1.57);
    transition-delay: .3s
}

.search-wrapper .input-holder .search-icon {
    border: none;
    padding: 0 0 3px;
    position: relative;
    z-index: 2;
    float: left;
    cursor: pointer;
    transition: all .3s ease-in-out;
    background: 0 0
}

.search-wrapper .input-holder .search-icon:hover img {
    filter: brightness(0) saturate(100%) invert(62%) sepia(66%) saturate(557%) hue-rotate(6deg) brightness(98%) contrast(90%)
}

.search-wrapper .close {
    height: 83%;
    width: 80px;
    font-size: 20px;
    background: var(--secondary);
    top: 0;
    right: 0;
    color: var(--white);
    position: absolute;
    z-index: 999;
    cursor: pointer;
    transition: all .3s cubic-bezier(.285, -.45, .935, .11);
    display: flex;
    border-radius: 0;
    text-align: center;
    opacity: 1;
    align-items: center;
    justify-content: center;
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    overflow: hidden
}

.search-wrapper.active .input-holder .search-input {
    opacity: 1;
    transform: translate(0, -50%)
}

.search-wrapper.active .input-holder .search-icon {
    height: 30px;
    width: 30px;
    text-align: center;
    padding: 0 0 2px
}

.search-wrapper.active .close {
    opacity: 1;
    visibility: visible;
    overflow: visible;
    transform: translateY(0)
}

.search-wrapper.active .input-holder .search-icon img {
    width: 20px;
    filter: brightness(0) invert(0)
}

header.sticky .header_absolute {
    position: fixed;
    top: 0;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    background: rgba(250, 250, 250, .2);
    animation: slide-down .4s
}

header.sticky .header_absolute::before {
    opacity: 1
}

header.sticky .head_bottom {
    padding: 10px 0
}

header.sticky .search-wrapper.active .input-holder {
    height: 100%
}

header.sticky .search-wrapper .close {
    height: 100%
}

@keyframes slide-down {
    0% {
        opacity: 0;
        transform: translateY(-100%)
    }
    100% {
        opacity: .9;
        transform: translateY(0)
    }
}

.footer_sec {
    margin: 0;
    padding: 50px 0;
    background: #00294a
}

.footer_sec .ftr_logo {
    margin: 20px 0 45px;
    padding: 0
}

.ftr_contact {
    margin: 0;
    padding: 0
}

.ftr_contact li {
    margin: 0 0 20px;
    padding: 0;
    font-size: 16px;
    font-weight: 300;
    color: var(--white);
    display: flex;
    align-items: start;
    gap: 20px
}

.ftr_contact li img {
    margin-top: 5px
}

.ftr_contact li a {
    color: var(--white);
    font-weight: 400
}

.ftr_contact li a:hover {
    color: var(--secondaryLight)
}

.footer_sec h3 {
    margin: 20px 0;
    padding: 0 0 5px 0;
    font-size: 20px;
    font-weight: 400;
    color: var(--white);
    position: relative
}

.footer_sec h3::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--secondary);
    height: 2px;
    width: 24px
}

ul.interest_menu {
    margin: 0;
    padding: 0;
    display: block
}

ul.interest_menu.colu {
    columns: 1
}

ul.interest_menu li {
    margin: 0 0 10px;
    padding: 0;
    font-size: 16px
}

ul.interest_menu li a {
    color: var(--white)
}

ul.interest_menu li a.active,
ul.interest_menu li a:hover {
    color: var(--secondaryLight)
}

.ftr_cap {
    margin: 50px 0 30px 0;
    padding: 34px 0;
    border-top: 1px dashed rgba(255, 255, 255, .39);
    border-bottom: 1px dashed rgba(255, 255, 255, .39)
}

.apply_link {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 30px
}

.apply_link .ftr_link {
    margin: 0;
    padding: 10px 55px 10px 14px;
    display: flex;
    font-size: 18px;
    color: var(--white);
    border: 1px solid rgba(207, 207, 207, .48);
    gap: 8px;
    position: relative
}

.apply_link .ftr_link.fill {
    color: var(--themetxt);
    background: var(--secondary);
    border-color: var(--secondary)
}

.apply_link .ftr_link span {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translate(0, -50%)
}

.apply_link .ftr_link:hover {
    color: var(--themetxt);
    background: var(--secondary);
    border-color: var(--secondary)
}

.apply_link .ftr_link.fill:hover {
    color: var(--white);
    border-color: rgba(255, 255, 255, .39);
    background: 0 0
}

.ftr_cap h4 {
    margin: 0;
    padding: 0;
    font-size: 24px;
    font-weight: 300;
    color: var(--white)
}

.ftr_cap .ftr_menu {
    margin: 0;
    padding: 0;
    display: flex;
    gap: 40px;
    justify-content: end
}

.ftr_cap .ftr_menu li {
    margin: 0;
    padding: 0;
    font-size: 16px
}

.ftr_cap .ftr_menu li a {
    color: var(--white)
}

.ftr_cap .ftr_menu li a.active,
.ftr_cap .ftr_menu li a:hover {
    color: var(--secondaryLight)
}

.copyright p {
    margin: 0;
    padding: 0;
    font-weight: 400;
    color: var(--white);
    display: flex;
    gap: 10px
}

.footer_sec .social_ic {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px
}

.footer_sec .social_ic li {
    margin: 0;
    padding: 0
}

.footer_sec .social_ic li a {
    display: flex
}

.footer_sec .social_ic li a img {
    height: 16px
}

.footer_sec .social_ic li a:hover img {
    filter: brightness(0) saturate(100%) invert(87%) sepia(52%) saturate(7298%) hue-rotate(341deg) brightness(92%) contrast(92%)
}

.copyright p a {
    color: #939393
}
.copyright{
    border-top: 1px dashed #fff;
    padding-top: 15px;
}
.copyright .ds{
    color: #FFC421;
}
#return-to-top {
    position: fixed;
    bottom: 10px;
    right: 26px;
    background: 0 0;
    width: 38px;
    height: 38px;
    font-size: 18px;
    line-height: 38px;
    color: var(--secondary);
    border-radius: 50%;
    text-decoration: none;
    text-align: center;
    display: none;
    transition: all .3s ease;
    z-index: 9999
}

#return-to-top span {
    display: inline-block;
    transform: rotate(-90deg)
}

#return-to-top:hover {
    background: var(--secondaryLight);
    color: var(--themetxt)
}

@media only screen and (max-width:778px) and (min-width:768px) {
    ul.interest_menu {
        display: block !important
    }
}

.sticky_buttons {
    margin: 140px 0 0;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    z-index: 999;
    gap: 7px;
    transition: all .4s ease-in-out
}

.sticky_buttons label {
    font-size: 16px;
    font-weight: 600;
    color: var(--themetxt);
    padding: 0;
    display: inline-block;
    transform: rotate(90deg);
    background: var(--secondary);
    text-transform: uppercase;
    position: absolute;
    bottom: 200px;
    right: -53px;
    white-space: nowrap
}

.sticky_buttons .enquiry_btn {
    padding: 8px !important;
    border: none;
    height: 42px;
    font-size: 16px;
    font-weight: 600;
    color: var(--themetxt) !important;
    display: inline-flex;
    transform: rotate(90deg);
    background: var(--secondary) !important;
    text-transform: uppercase;
    position: absolute !important;
    bottom: 350px;
    right: -46px;
    white-space: nowrap;
    align-items: center;
    border-radius: 0 !important
}

.sticky_buttons .enquiry_btn:hover {
    background: var(--secondaryLight) !important
}

.sticky_buttons label a {
    width: auto;
    height: 42px;
    color: var(--themetxt);
    background: var(--secondary);
    padding: 8px
}

.sticky_buttons label a:hover {
    background: var(--secondaryLight)
}

.sticky_buttons a {
    width: 42px;
    height: 42px;
    border-radius: 0;
    background: #00a3af;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden
}

.sticky_buttons a img {
    transition: all .3s ease-in-out
}

.sticky_buttons a:hover {
    background: #0dd6e5
}

.sticky_buttons a:hover img {
    animation: toBottomFromTop .3s linear alternate
}

.sticky_buttons a.ph {
    background: var(--primary)
}

.sticky_buttons a.ph:hover {
    background: var(--primaryLight)
}

.sticky_buttons a.wp {
    background: #4caf50
}

.sticky_buttons a.wp:hover {
    background: #6bde70
}

@keyframes toBottomFromTop {
    49% {
        transform: translateY(100%)
    }
    50% {
        opacity: 0;
        transform: translateY(-100%)
    }
    51% {
        opacity: 1
    }
}

.hero_sec {
    width: 100%;
    padding: 0;
    margin: 0;
    position: relative;
    background: url(../images/hero.png) no-repeat center center;
    background-size: cover
}

.hero_sec .video-overlay1 {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    pointer-events: none;
    background: transparent linear-gradient(180deg, #000000C4 0, #0000007C 26%, #00000003 54%, #00000026 100%) 0 0 no-repeat padding-box;
    opacity: .74
}

.hero_sec .video-overlay2 {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    pointer-events: none;
    background: var(--black);
    opacity: .39
}

.hero_sec .video-hero--content {
    position: relative;
    margin: 0;
    display: flex;
    height: auto;
    min-height: calc(100vh - 42px);
    align-items: center
}

.hero_sec .jquery-background-video-wrapper {
    height: auto;
    min-height: calc(100vh - 42px);
    position: relative;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover
}

.hero_sec .jquery-background-video {
    position: absolute;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    top: 50%;
    left: 50%;
    -o-object-fit: contain;
    object-fit: contain;
    transform: translate(-50%, -50%)
}

.hero_sec .js .jquery-background-video {
    opacity: 0;
    transition: opacity .3s linear
}

.hero_sec .js .jquery-background-video.is-visible {
    opacity: 1
}

.vid_mute {
    width: 32px;
    height: 32px;
    padding: 10px;
    display: block;
    cursor: pointer;
    border-radius: 50%;
    position: absolute;
    bottom: 70px;
    right: 50px;
    background: rgba(0, 0, 0, .2) url(../images/play_unmute.svg) no-repeat center center;
    background-size: 14px 14px;
    font-size: 0;
    z-index: 99
}

.vid_mute.muted {
    background: rgba(0, 0, 0, .1) url(../images/play_mute.svg) no-repeat center center;
    background-size: 14px 14px
}

.hero_sec .hero_cap {
    width: 100%;
    position: absolute;
    bottom: 174px;
    left: 0;
    z-index: 44;
    text-align: center
}

.hlogos {
    margin: 0 0 26px;
    padding: 0;
    display: flex;
    gap: 45px;
    align-items: center;
    justify-content: center
}

.hlogos img {
    width: 420px
}

.hero_sec .hero_cap h1 {
    margin: 0 0 15px;
    padding: 0;
    font-weight: 400;
    font-size: 54px;
    color: var(--white)
}

.hero_sec .hero_cap h1 small {
    font-size: 42px;
    display: block
}

.hero_sec .hero_cap ul {
    display: flex;
    margin: 0 0 33px;
    padding: 0;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap
}

.hero_sec .hero_cap ul li {
    margin: 0;
    padding: 0;
    font-size: 24px;
    color: #cfcfcf;
    word-wrap: break-word;
    word-break: break-all;
    display: inline
}

.hero_sec .hero_cap ul li+li::before {
    content: "|";
    margin: 0 30px
}

.hero_sec .hero_cap ul li a {
    color: #cfcfcf
}

.hero_sec .hero_cap ul li a:hover {
    color: var(--secondary)
}

.explore_btn {
    margin: 0;
    padding: 12px 46px 12px 16px;
    font-size: 16px;
    color: var(--white);
    background: var(--black);
    display: inline-flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden
}

.explore_btn:after {
    content: "";
    width: 15px;
    height: 15px;
    background: url(../images/btns_arrow_white13x.svg) no-repeat center center;
    position: absolute;
    right: 16px;
    top: 0;
    bottom: 0;
    margin: auto;
    transition: all .3s ease-in-out
}

.explore_btn img {
    transition: all .6s ease-in-out;
    animation: rotate360 4s infinite linear
}

.explore_btn:hover:after {
    transform: translateX(31px)
}

.explore_btn:hover {
    background: var(--primary);
    padding-left: 31px;
    padding-right: 31px
}

.hero_sec .splide__pagination {
    width: auto;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    margin: 0;
    padding: 0;
    position: absolute;
    left: 85px;
    top: 35%;
    bottom: auto;
    right: auto
}

.hero_sec .splide__pagination li .splide__pagination__page {
    width: 8px;
    height: 8px;
    border: 1px solid var(--white);
    background: 0 0;
    opacity: 1
}

.hero_sec .splide__pagination li .splide__pagination__page.is-active {
    background: var(--white);
    transform: inherit
}

.hero_sec .splide__pagination li .splide__pagination__page.is-active::before {
    content: "";
    border: 2px solid var(--white);
    border-radius: 50%;
    position: absolute;
    top: -15px;
    right: -15px;
    bottom: -15px;
    left: -15px;
    z-index: -1
}

.marquee_info {
    width: 100%;
    margin: 0;
    padding: 12px 0 9px;
    width: 100%;
      background: rgb(202 123 162 / 20%);
    position: absolute;
    bottom: 0;
    left: 0;
    overflow: hidden;
    z-index: 5
}

.marquee_info .label {
    padding: 14px 23px;
    width: 210px;
    height: 100%;
    font-size: 16px;
    font-weight: 500;
    color: #dbdbdb;
    position: absolute;
    left: 0;
    top: 0;
    background: var(--secondary);
    text-align: center;
    display: inline-flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    z-index: 1
}

.marquee_info .label img {
    width: 33px;
    min-width: 33px
}

.marquee_info .mcontents {
    width: 100%;
    font-size: 16px;
    display: flex;
    gap: 40px
}

.marquee_info .mcontents .marqueeStyle {
    align-items: center;
    gap: 17px;
    color: var(--white);
    white-space: nowrap;
    display: inline-flex;
    animation: scrollTextStart 10s infinite linear
}

.marquee_info .mcontents .marquee {
    display: flex;
    gap: 40px
}

.marquee_info .mcontents .m_detail {
    align-items: center;
    gap: 17px;
    color: var(--white);
    white-space: nowrap;
    display: inline-flex;
    margin-right: 20px
}

@keyframes scrollTextStart {
    from {
        transform: translateX(0)
    }
    to {
        transform: translateX(-120%)
    }
}

.mouse {
    position: relative;
    display: block;
    width: 22px;
    height: 35px;
    margin: 80px auto 0;
    border: 2px solid var(--white);
    border-radius: 32px;
    position: absolute;
    left: 80px;
    bottom: 125px;
    z-index: 55
}

.mouse:after {
    content: "";
    position: absolute;
    display: block;
    top: 5%;
    left: 0;
    right: 0;
    width: 4px;
    height: 4px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 50%;
    animation: ani-mouse 2s linear infinite
}

.mouse span {
    display: inline-block;
    font-size: 14px;
    color: var(--white);
    position: absolute;
    left: -40px;
    top: -75px;
    white-space: nowrap;
    transform: rotate(-90deg)
}

@keyframes rotate360 {
    0% {
        transform: rotate(0)
    }
    100% {
        transform: rotate(360deg)
    }
}

@keyframes ani-mouse {
    0% {
        transform: scale(0);
        top: 5%
    }
    20% {
        transform: scale(1);
        top: 10%
    }
    80% {
        transform: scale(1);
        top: 70%
    }
    100% {
        transform: scale(0);
        top: 85%
    }
}

.highlights_sec {
    padding: 80px 0 89px;
    background: #003f74 url(../images/highlights_curve.png) no-repeat bottom center;
    background-size: 100% 100%
}

.highlights_sec h1 {
    padding: 0 0 0 22px;
    margin: 0 0 17px 0;
    font-size: 20px;
    font-weight: 400;
    color: rgba(255, 255, 255, .65);
    position: relative;
    font-family: "Albert Sans", sans-serif
}

.highlights_sec h1:before {
    content: "";
    width: 8px;
    height: 100%;
    background: var(--secondary);
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto
}

.highlights_sec p {
    margin: 0 0 30px;
    color: var(--white);
    max-width: 814px
}

.highlights_counters {
    display: flex;
    margin: 0;
    justify-content: flex-end
}

.highlights_counter {
    margin: 0 0 30px;
    position: relative;
    font-family: "Frank Ruhl Libre", serif;
    color: var(--white)
}

.highlights_counter .counter {
    font-size: 56px;
    color: var(--white)
}

.highlights_counter h3 {
    font-size: 24px;
    color: var(--white);
    font-weight: 400;
    text-transform: uppercase;
    margin: 0
}

.highlights_counter+.highlights_counter {
    margin-left: 15px;
    padding-left: 15px
}

.highlights_counter+.highlights_counter:before {
    content: "";
    width: 1px;
    height: 22px;
    background: var(--white);
    position: absolute;
    bottom: 4px;
    left: 0
}

.program_filter {
    margin: 47px 0 0;
    padding: 0 70px 70px;
    background: var(--primary);
    position: relative;
    transform: perspective(1px) translateZ(0)
}

.program_filter::before {
    content: "";
    width: 130px;
    height: 130px;
    background: url(../images/logo_ic_white140x.svg) no-repeat center top;
    background-size: 100% auto;
    position: absolute;
    top: 50px;
    right: 34%;
    transform: translateY(-100%);
    z-index: -1;
    opacity: .35;
    animation: rotate 30s linear infinite;
    transform-origin: center center;
    transform-box: fill-box
}

.program_filter .nav-tabs {
    margin: 0;
    padding: 0;
    border: none;
    width: 100%;
    flex-wrap: nowrap
}

.program_filter .nav-tabs .nav-link {
    margin: 0;
    padding: 16px 64px;
    font-size: 20px;
    font-weight: 600;
    border: none;
    background: var(--primaryLight);
    color: var(--white);
    border-radius: 0
}

.program_filter .nav-tabs .nav-link:hover {
    color: var(--secondaryLight)
}

.program_filter .nav-tabs .nav-item.show .nav-link,
.program_filter .nav-tabs .nav-link.active {
    background: var(--secondary);
    color: var(--themetxt)
}

.program_filter .nav-tabs .prog_filter {
    margin: 0 0 0 auto;
    position: sticky;
    top: 0;
    right: 0
}

.program_filter .nav-tabs .prog_filter button {
    margin: 0;
    padding: 16px 0;
    font-size: 20px;
    font-weight: 400;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 16px;
    border: none;
    background: 0 0
}

.program_filter .tab-content {
    padding: 58px 0 0
}

.program_filter h4 {
    padding: 0;
    margin: 0 0 12px;
    font-size: 30px;
    font-weight: 500;
    color: var(--white);
    font-family: "Albert Sans", sans-serif
}

.program_filter p {
    margin: 0;
    font-size: 18px;
    font-weight: 300
}

.progfilter_search {
    margin: 0;
    padding: 0;
    display: flex
}

.progfilter_search .form-control {
    height: 66px;
    padding: 0 20px;
    margin: 0 !important;
    font-size: 16px;
    font-weight: 300;
    color: var(--themetxt);
    background: var(--white);
    border-radius: 0;
    box-shadow: none;
    border: none
}

.progfilter_search button {
    min-width: 66px;
    width: 66px;
    border: none;
    background: var(--secondary);
    display: flex;
    justify-content: center;
    align-items: center
}

.progfilter_search button img {
    filter: brightness(0) invert(0)
}

.progfilter_search button:hover {
    background: var(--secondaryLight)
}

.progfilter_search .form-select {
    max-width: 150px;
    font-size: 16px;
    font-weight: 300;
    color: var(--themetxt);
    border-radius: 0;
    box-shadow: none;
    border: none;
    border-right: 1px solid rgba(0, 96, 175, .2)
}

ul.resultsUg {
    margin: 0;
    padding: 5px 0 0 0
}

ul.resultsUg li {
    margin: 0;
    padding: 0;
    color: var(--white)
}

ul.resultsUg li a {
    color: var(--white)
}

ul.resultsUg li a:hover {
    color: var(--secondary)
}

@keyframes rotate {
    from {
        transform: rotate(0)
    }
    to {
        transform: rotate(360deg)
    }
}

.welcome_sec {
    padding: 50px 0;
}

.welcome_sec .detail {
    margin: 0 0 30px;
    padding: 0;
    background: url(../images/wel_curve.png) no-repeat right center
}

.welcome_sec .detail .text_info {
    margin-bottom: 30px;
    overflow: hidden;
    width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 9;
    -webkit-box-orient: vertical
}

.welcome_sec .detail .text_info p:last-child {
    margin: 0
}

.welcome_sec figure {
    margin: 0 0 30px;
    padding: 0;
    position: relative
}

.welcome_sec figure img {
    width: 100%
}

.welcome_sec figure span {
    padding: 24px 60px;
    background: var(--primary);
    font-size: 61px;
    line-height: 55px;
    font-weight: 300;
    display: inline-block;
    font-family: "Frank Ruhl Libre", serif;
    color: var(--white);
    position: absolute;
    bottom: 0;
    left: 0
}

.welcome_sec figure span small {
    display: block;
    line-height: normal;
    font-size: 30px
}

.accreditations_title {
    border-top: 2px dashed rgba(112, 112, 112, .5);
    margin-top: 54px;
    padding: 79px 0 0
}

.accreditations_slider {
    margin-top: 12px;
    padding: 0 0 76px;
    margin-left: calc((100% - 1480px)/ 2)
}

.accreditations_slider figure {
    margin: 0
}

.accreditations_slider figure img {
    width: auto;
    transition: all .2s ease-in-out
}

.accreditations_slider figure:hover img {
    transform: scale(.9)
}

.why_sec {
    background: #f6f6f6;
    display: flex;
    position: relative
}

.why_sec::before {
    content: "";
    width: 125px;
    height: 253px;
    background: url(../images/why_curve2.png) no-repeat left bottom;
    position: absolute;
    bottom: 0;
    right: 2px;
    transform: translateY(50%);
    z-index: 2;
    animation: leftright 5s linear infinite
}

.why_sec .left_part {
    width: 58.5%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    background: url(../images/why_curve.png) no-repeat bottom center;
    background-size: 100% auto
}

.why_sec .left_part .detail {
    width: 100%;
    max-width: 963px;
    padding: 96px 98px 66px 50px
}
.why_sec .left_part p:nth-child(2) {
    padding-bottom: 10px;
    margin-bottom: 0;
    text-align: justify;
}
.why_sec .left_part p:nth-child(3) {
text-align: justify;
    padding-bottom: 10px;
    border-bottom: 1px dashed rgba(112, 112, 112, .5)
}

.why_sec .left_part h3 {
    margin: 0 0 30px;
    font-size: 26px;
    font-weight: 500;
    color: var(--themetxt);
    font-family: "Albert Sans", sans-serif
}

.why_counter {
    padding: 18px 20px;
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: space-between;
    background: var(--white);
    margin-bottom: 30px;
    transition: all .4s ease-in-out
}

.why_counter strong {
    font-size: 38px;
    font-weight: 500;
    margin-bottom: 5px;
    display: block
}

.why_counter small {
    font-size: 23px
}

.why_counter i {
    display: flex;
    position: relative
}

.why_counter i img {
    transition: all .4s ease-in-out;
    opacity: 0
}

.why_counter i img+img {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 1
}

.why_counter:not(:hover) i img {
    opacity: 1
}

.why_counter:not(:hover) i img+img {
    opacity: 0
}

.why_counter:hover {
    color: var(--white);
    background: var(--primary);
    box-shadow: 0 7px 10px #dea91861
}

.why_sec .right_part {
    width: 41.5%;
    display: flex;
    position: relative
}

.why_sec .right_part figure {
    margin: 0;
    width: 100%;
    display: flex
}

.why_sec .right_part figure img {
    width: 100%;
    object-fit: cover;
    object-position: top left
}

.why_sec .why_cap {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 58px 30px 58px 80px
}

.why_sec .why_cap ul {
    display: block;
    margin: 0;
    padding: 0
}

.why_sec .why_cap ul li {
    display: block;
    font-size: 64px;
    font-weight: 300;
    color: var(--white);
    line-height: 74px;
    margin: 0;
    font-family: "Frank Ruhl Libre", serif
}

.why_sec .why_cap ul li:after {
    content: "";
    width: 12px;
    height: 12px;
    display: inline-block;
    border-radius: 50%;
    background: var(--secondary);
    margin-left: 26px
}

@keyframes leftright {
    from {
        transform: translate(0, 50%)
    }
    50% {
        transform: translate(10px, 50%)
    }
    to {
        transform: translate(0, 50%)
    }
}

.institution_sec {
    margin: 0;
    padding: 50px 0;
    background: url(../images/institution_bg.jpg) center center no-repeat;
    background-size: cover;
    position: relative
}

.institution_sec::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(rgb(0 1 2 / 90%) 100%, rgba(0, 96, 175, .9) 100%);
    height: 100%;
    width: 100%
}

.institution_sec .container {
    position: relative;
    z-index: 2
}

.institution_sec .nav-tabs {
    border: none;
    gap: 50px;
    margin-bottom: 55px
}

.institution_sec .nav-tabs .nav-link {
    padding: 0;
    border: none;
    color: rgba(255, 255, 255, .59);
    font-size: 28px;
    font-weight: 300;
    border-bottom: 1px solid transparent;
    line-height: normal;
    box-shadow: none
}

.institution_sec .nav-tabs .nav-link::first-letter {
    background: 0 0
}

.institution_sec .nav-link:focus,
.institution_sec .nav-link:hover {
    color: var(--white)
}

.institution_sec .nav-tabs .nav-item.show .nav-link,
.institution_sec .nav-tabs .nav-link.active {
    color: var(--white);
    background: 0 0;
    border: none;
    border-bottom: 1px solid var(--secondary)
}

.institution_sec .nav-tabs .nav-link:focus {
    border: none;
    border-bottom: 1px solid var(--secondary)
}

.institution_sec .nav-tabs .nav-link.active::first-letter {
    background: var(--secondary)
}

.institution_sec .splide {
    margin-left: -4px
}

.institution_block {
    margin: 0;
    padding: 0
}

.institution_block figure {
    margin: 0;
    padding: 0;
    position: relative;
    width: 100%;
    overflow: hidden
}

.institution_block figure a {
    position: relative;
    display: inline-block;
    width: 100%
}

.institution_block figure a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(rgba(33, 45, 102, .1) 0, rgba(39, 39, 39, .1) 30%);
    height: 100%;
    width: 100%;
    z-index: 1;
    transition: all .4s ease-in-out
}

.institution_block figure a::after {
    content: "";
    width: 74px;
    height: 75px;
    position: absolute;
    top: 3px;
    right: 2px;
    z-index: 1;
    background: url(../images/institution_imgcurve.png) no-repeat left bottom;
    animation: skew 5s linear infinite
}

.institution_block figure img {
    width: 100%;
    transition: all .3s ease-in-out;
    transform-origin: top right;
    object-fit: cover
}

.institution_block .detail {
    margin: 0;
    padding: 24px 20px 24px 30px;
    /*background: url(../images/institution_curve.jpg) center center no-repeat;*/
    background-size: 100% 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
    background :rgba(0,0,0,0.5);
}

.institution_block h3 {
    margin: 0;
    padding: 0;
    font-size: 22px;
    font-family: "Albert Sans", sans-serif;
    font-weight: 300
}

.institution_block h3 strong {
    font-weight: 500;
    display: block
}

.institution_block h3 a {
    color: var(--white)
}

.institution_block .more_link {
    margin: 0;
    padding: 10px;
    background: #007875;
    border-radius: 50px;
    height: 43px;
    width: 43px;
    min-width: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-45deg)
}

.institution_block:hover .more_link {
    transform: rotate(0)
}

.institution_block:hover h3 a {
    color: #037875;
}

.institution_block:hover figure img {
    transform: scale(1.04)
}

.institution_block:hover figure a::before {
    opacity: 0
}

.institution_block .more_link:hover {
    background: var(--white)
}

.institution_sec .tab-content {
    margin-left: calc((100% - 1540px)/ 2)
}

.institution_sec .splide__arrows {
    margin: 0;
    display: flex;
    gap: 20px;
    position: absolute;
    bottom: -80px;
    right: 13%
}

.institution_sec .splide__arrow {
    position: relative;
    left: 0;
    right: 0;
    top: 0;
    height: 40px;
    width: 40px;
    min-width: 40px;
    opacity: 1;
    background: var(--white);
    transform: inherit
}

.institution_sec .splide__arrow svg {
    transition: all .4s ease-in-out
}

.institution_sec .splide__arrow:hover {
    background: #1c8983;
    opacity: 1
}

.institution_sec .splide__arrow:hover svg {
    filter: brightness(0) invert(1)
}

@keyframes skew {
    from {
        transform: translate(0, 0)
    }
    50% {
        transform: translate(10px, -10px)
    }
    to {
        transform: translate(0, 0)
    }
}

.academics_sec {
    margin: 0;
    padding: 90px 0 110px;
    position: relative
}

.academics_sec::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 50%;
    background: #f6f6f6;
    z-index: 9
}

.academics_sec::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 445px;
    width: 445px;
    background: url(../images/academic_curve.svg) no-repeat left center;
    animation: acaleftright 5s linear infinite
}

.academics_sec .container {
    position: relative;
    z-index: 9
}

.academic_list {
    margin: 0;
    padding: 0;
    columns: 2
}

.academic_list li {
    margin: 0 0 4px;
    padding: 0 0 0 30px;
    font-size: 20px;
    position: relative
}

.academic_list li a {
    color: var(--themetxt)
}

.academic_list li a:hover {
    color: var(--primary)
}

.academic_list li::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 0;
    height: 11px;
    width: 11px;
    background: url(../images/academic_list_ic.svg) center center no-repeat;
    background-size: 100% 100%
}

.academics_sec .detail {
    margin: 0;
    padding: 0 0 0 65px;
    position: relative;
    z-index: 9
}

.academics_sec h3 {
    margin: 0 0 25px;
    padding: 0;
    font-size: 64px;
    color: var(--black);
    font-weight: 400
}

.academics_sec h3 small {
    display: block;
    font-size: 48px
}

@keyframes acaleftright {
    from {
        transform: translate(-50%, -50%)
    }
    50% {
        transform: translate(-46%, -50%)
    }
    to {
        transform: translate(-50%, -50%)
    }
}

.chairman_sec {
    margin: 0;
    padding: 0;
    background: url(../images/chairman_bg.jpg) bottom center no-repeat;
    background-size: cover;
    position: relative;
    z-index: 9
}

.chairman_sec::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    background: url(../images/chairman_curve.svg) center center no-repeat;
    background-size: 100% 100%;
    height: 150px;
    width: 150px;
    transform: translate(-50%, 50%);
    animation: rightleft 5s linear infinite
}

.chairman_sec figure {
    margin: -100px 0 0 -20px;
    padding: 0
}

.chairman_sec figure img {
    width: 100%
}

.chairman_sec .detail {
    margin: 0;
    padding: 75px 0 55px
}

.chairman_sec p {
    padding: 0;
    color: var(--white)
}

.chairman_sec .director {
    margin: 0;
    padding: 0;
    font-size: 26px;
    font-weight: 300;
    color: var(--white);
    font-family: "Frank Ruhl Libre", serif
}

.chairman_sec .director small {
    display: block;
    font-size: 20px;
    color: rgba(255, 255, 255, .73)
}

@keyframes rightleft {
    from {
        transform: translate(-50%, 50%)
    }
    50% {
        transform: translate(-55%, 50%)
    }
    to {
        transform: translate(-50%, 50%)
    }
}

.management_sec {
    margin: 0;
    padding: 105px 0 90px 0;
    background: url(../images/management_curve.png) no-repeat bottom center;
    background-size: 100% 100%
}

.management_block {
    margin: 0 0 30px;
    padding: 0
}

.management_block figure {
    margin: 0 0 30px;
    padding: 0;
    width: 100%;
    overflow: hidden
}

.management_block figure img {
    width: 100%;
    transition: all .3s ease-in-out;
    transform-origin: top right;
    object-fit: cover
}

.management_block h3 {
    margin: 0 0 10px;
    padding: 0;
    font-size: 30px;
    font-weight: 500;
    color: var(--themetxt);
    font-family: "Albert Sans", sans-serif
}

.management_block h3 a {
    color: var(--themetxt)
}

.management_block .author {
    display: block;
    font-size: 20px;
    color: #5b5b5b;
    padding-left: 22px;
    position: relative
}

.management_block .author:before {
    content: "";
    width: 8px;
    height: 100%;
    background: var(--primary);
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto
}

.management_block:hover h3 a {
    color: var(--primary)
}

.management_block:hover figure img {
    transform: scale(1.04)
}

.explore_sec {
    margin: 0;
    padding: 170px 0;
    background: url(../images/explore_bg.jpg) center center no-repeat;
    background-size: cover;
    position: relative
}

.explore_sec::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .8) 0, rgba(0, 0, 0, .8) 100%);
    height: 100%;
    width: 100%
}

.explore_sec .container {
    z-index: 9;
    position: relative
}

.explore_sec h2 {
    margin: 0;
    padding: 0 0 0 25px;
    font-size: 64px;
    color: var(--white);
    position: relative;
    font-weight: 400
}

xplore_sec h2 small {
    display: block;
    font-size: 48px;
    color: inherit
}

.explore_sec h3 {
    margin: 0 0 28px;
    padding: 0;
    font-size: 26px;
    font-weight: 300;
    color: var(--white);
    font-family: "Albert Sans", sans-serif
}

.explore_sec p {
    margin: 0;
    padding: 0;
    color: var(--white)
}

.facility_sec {
    margin: 0;
    padding: 0
}

.facility_item {
    margin: 0;
    padding: 0;
    display: flex
}

.facility_item figure {
    margin: 0;
    padding: 0;
    width: 30%;
    display: flex
}

.facility_item figure a {
    position: relative;
    display: flex;
    margin: 0;
    width: 100%
}

.facility_item figure a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: transparent linear-gradient(180deg, #00000070 0, #000 100%) 0 0 no-repeat padding-box;
    height: 100%;
    width: 100%;
    opacity: .7
}

.facility_item figure img {
    width: 100%;
    object-fit: cover
}

.facility_item .caption {
    margin: 0;
    padding: 0;
    font-size: 40px;
    font-weight: 400;
    color: var(--white);
    font-family: "Frank Ruhl Libre", serif;
    position: absolute;
    bottom: 50px;
    left: 60px;
    transition: all .4s ease-in-out
}

.facility_item figure:first-child {
    width: 40%
}

.facility_item figure:first-child .caption {
    left: 210px
}

.facility_item figure a:hover .caption {
    color: var(--secondary)
}

.happenings_sec {
    margin: 0;
    padding: 105px 0 45px 0;
    position: relative
}

.happenings_sec::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: #eee;
    height: 488px;
    width: 100%
}

.happenings_sec .container {
    z-index: 2;
    position: relative
}

.happenings_block {
    margin: 0 0 30px;
    padding: 0 0 43px;
    position: relative;
    height: calc(100% - 30px)
}

.happenings_block figure {
    margin: 0 0 30px;
    padding: 0;
    width: 100%;
    overflow: hidden
}

.happenings_block figure img {
    width: 100%;
    height: 290px;
    transition: all .3s ease-in-out;
    object-fit: cover
}

.happenings_block h3 {
    margin: 0 0 18px;
    padding: 0;
    font-size: 24px;
    font-weight: 400;
    font-family: "Albert Sans", sans-serif
}

.happenings_block h3 a {
    color: #212121;
    display: inline-block;
    overflow: hidden;
    width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical
}

.happenings_block p {
    margin: 0 0 15px;
    padding: 0;
    overflow: hidden;
    width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical
}

.happenings_block .other_dtl {
    width: 100%;
    margin: 0;
    padding: 15px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(112, 112, 112, .26);
    position: absolute;
    bottom: 0;
    left: 0
}

.happenings_block .cat_tag {
    margin: 0;
    padding: 0;
    font-size: 18px
}

.happenings_block .cat_tag a {
    color: #212121
}

.happenings_block .cat_tag a:hover {
    color: var(--primary)
}

.happenings_block:hover figure img {
    transform: scale(1.04)
}

.happenings_block .upload_info {
    margin: 0;
    padding: 0 0 0 18px;
    font-size: 18px;
    position: relative
}

.happenings_block .upload_info::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    height: 8px;
    width: 8px;
    background: var(--primary);
    border-radius: 5px
}

.happenings_block .upload_info a {
    color: #212121
}

.happenings_block .upload_info a:hover {
    color: var(--primary)
}

.happenings_block:hover h3 a {
    color: var(--primary)
}

.collaboration_sec {
    margin: 0;
    padding: 0
}

.collaboration_slider {
    margin: 0;
    padding: 75px 0 110px;
    border-top: 1px dashed rgba(112, 112, 112, .51)
}

.collaboration_slider .collaboration_block {
    margin: 0;
    padding: 0
}

.collaboration_slider figure {
    margin: 0 0 2px;
    padding: 0;
    border: 1px solid rgba(112, 112, 112, .19);
    transition: all .2s ease-in-out;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center
}

.collaboration_slider figure:hover {
    border-color: var(--primary)
}

.inner_banner {
    margin: 0;
    padding: 0;
    position: relative
}

.inner_banner .bg {
    width: 100%;
    object-fit: cover;
    height: 68vh;
    object-position: center top
}

.inner_banner::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000 0 0 no-repeat padding-box;
    opacity: .39;
    z-index: 1
}

.inner_banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent linear-gradient(180deg, #000000C4 0, #0000007C 26%, #00000003 54%, #00000026 100%) 0 0 no-repeat padding-box;
    opacity: .74;
    z-index: 2
}

.inner_banner .caption {
    width: 100%;
    position: absolute;
    bottom: 105px;
    left: 0;
    z-index: 100;
    text-align: center
}

.inner_banner h1 {
    margin: 0;
    padding: 0;
    font-size: 54px;
    color: var(--white)
}

.inner_banner small {
    margin: 0;
    padding: 0;
    font-size: 26px;
    color: var(--white)
}

.brief_sec {
    margin: 0;
    padding: 110px 0 90px
}

.brief_sec .global_title {
    margin-bottom: 15px
}

.brief_sec .detail {
    margin: 0;
    padding: 0 20px 0 0;
    position: relative
}

.brief_sec .detail::before {
    content: "";
    position: absolute;
    top: -50px;
    left: 200px;
    height: 445px;
    width: 445px;
    background: url(../images/wel_curve.png) center center no-repeat;
    background-size: 100% 100%;
    z-index: -1;
    animation: rotate 30s linear infinite;
    transform-origin: center center;
    transform-box: fill-box
}

.brief_sec p {
    padding: 0;
    line-height: 24px;
    color: #1e1e1e
}

.vision_sec {
    margin: 0;
    padding: 0;
    position: relative
}

.vision_sec::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20%;
    background: #f6f6f6
}

.vision_sec .container {
    position: relative;
    z-index: 2
}

.vision_sec figure {
    margin: 0 0 20px;
    padding: 0;
    position: relative
}

.vision_sec figure img {
    width: 100%
}

.vision_sec figure span {
    padding: 24px 60px;
    background: var(--primary);
    font-size: 61px;
    line-height: 55px;
    font-weight: 300;
    display: inline-block;
    font-family: "Frank Ruhl Libre", serif;
    color: var(--white);
    position: absolute;
    top: 0;
    left: 0
}

.vision_sec figure span small {
    display: block;
    line-height: normal;
    font-size: 30px
}

.vision_block {
    margin: 0;
    padding: 0 70px 75px 50px;
    background: url(../images/vision_bg.jpg) center center no-repeat;
    background-size: 100% 100%;
    height: 100%
}

.vision_block h2 {
    margin: 0 0 50px;
    padding: 23px 110px;
    font-size: 36px;
    font-weight: 400;
    color: var(--black);
    background: var(--secondary);
    display: inline-block
}

.vision_block p {
    margin: 0;
    padding: 0;
    line-height: 24px;
    color: var(--white)
}

.values_sec {
    margin: 0;
    padding: 80px 0 110px;
    background: #f6f6f6
}

.values_box {
    margin: 0;
    min-height: calc(100% - 30px);
    padding: 40px 40px 20px;
    border: 1px solid rgba(112, 112, 112, .37)
}

.values_box h2 {
    margin: 0 0 15px;
    padding: 0;
    font-size: 36px;
    color: var(--black);
    font-weight: 400
}

.values_box p {
    margin: 0 0 20px;
    padding: 0;
    color: #1e1e1e
}

.values_box p strong {
    font-size: 18px;
    font-weight: 500
}

.history_sec {
    margin: 0;
    padding: 110px 0 145px;
    background: #003f74;
    position: relative;
    overflow: hidden
}

.history_sec::before {
    content: "";
    position: absolute;
    top: 175px;
    right: 0;
    height: 445px;
    width: 445px;
    background: url(../images/history_curve.png) center center no-repeat;
    background-size: auto;
    background-size: 100% 100%;
    transform: translate(38%, 0);
    animation: hrightleft 5s linear infinite
}

.history_sec::after {
    content: "";
    position: absolute;
    bottom: 175px;
    left: 0;
    height: 445px;
    width: 445px;
    background: url(../images/history_curve.png) center center no-repeat;
    background-size: auto;
    background-size: 100% 100%;
    transform: translate(-33%, 0);
    animation: hleftright 5s linear infinite
}

.history_sec .container {
    position: relative;
    z-index: 2
}

.history_sec .info {
    margin: 0 auto 60px;
    padding: 0;
    font-weight: 300;
    color: var(--white);
    text-align: center;
    max-width: 1045px
}

.timeline_box {
    margin: 0;
    padding: 0;
    position: relative
}

.timeline_box::before {
    content: "";
    position: absolute;
    bottom: -70px;
    left: 50%;
    transform: translate(-50%, 0);
    background: var(--secondary);
    height: 11px;
    width: 11px;
    min-width: 11px;
    border-radius: 10px;
    z-index: 2
}

.about_timeline {
    margin: 0;
    padding: 0;
    position: relative
}

.about_timeline::before {
    content: "";
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translate(-50%, 0);
    background: var(--primary);
    height: calc(100% + 50px);
    width: 1px
}

.about_timeline::after {
    content: "";
    position: absolute;
    bottom: -75px;
    left: 50%;
    transform: translate(-50%, 0);
    background: #0089f9;
    height: 22px;
    width: 22px;
    min-width: 22px;
    border-radius: 20px
}

.about_timeline li {
    margin: 0 0 40px;
    padding: 0;
    display: flex;
    gap: 110px;
    align-items: center;
    position: relative
}

.about_timeline li::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 21px;
    width: 21px;
    min-width: 16px;
    background: var(--white);
    border-radius: 20px
}

.about_timeline li::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 7px;
    width: 7px;
    min-width: 7px;
    background: var(--secondary);
    border-radius: 10px
}

.about_timeline li:first-child::before {
    height: 16px;
    width: 16px;
    min-width: 16px
}

.about_timeline li:first-child:after {
    display: none
}

.about_timeline li:nth-child(even) {
    flex-direction: row-reverse
}

.about_timeline li span {
    margin: 0;
    padding: 0;
    font-size: 30px;
    width: calc(100% / 2);
    text-align: right;
    color: var(--white);
    font-family: "Frank Ruhl Libre", serif
}

.about_timeline li p {
    margin: 0;
    padding: 0;
    font-size: 18px;
    font-weight: 600;
    width: calc(100% / 2);
    color: var(--white)
}

.about_timeline li:nth-child(even) span {
    text-align: left
}

.about_timeline li:nth-child(even) p {
    text-align: right
}

@keyframes hrightleft {
    from {
        transform: translate(38%, 0)
    }
    50% {
        transform: translate(33%, 0)
    }
    to {
        transform: translate(38%, 0)
    }
}

@keyframes hleftright {
    from {
        transform: translate(-33%, 0)
    }
    50% {
        transform: translate(-38%, 0)
    }
    to {
        transform: translate(-33%, 0)
    }
}

.glance_sec {
    margin: 0;
    padding: 115px 0
}

.glance_sec .detail {
    margin: 0;
    padding: 0 70px 0 0
}

.glance_sec p {
    margin: 0 0 60px;
    padding: 0 0 68px;
    color: #1e1e1e;
    border-bottom: 1px dashed rgba(112, 112, 112, .39)
}

.glance_sec .highlights_counters {
    justify-content: flex-start;
    gap: 110px
}

.glance_sec .highlights_counter {
    margin: 0;
    padding: 0
}

.glance_sec .highlights_counter .counter {
    color: var(--themetxt);
    line-height: normal
}

.glance_sec .highlights_counter h3 {
    color: #818181;
    text-transform: capitalize
}

.glance_sec .video {
    margin: 0;
    padding: 0;
    position: relative
}

.glance_sec figure {
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden
}

.glance_sec figure::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #030303 0 0 no-repeat padding-box;
    opacity: .2;
    z-index: 1
}

.glance_sec figure img {
    width: 100%;
    transition: all .4s ease-in-out
}

.glance_sec .video:hover figure img {
    transform: scale(1.1)
}

.glance_sec .play_btn {
    margin: 0;
    padding: 0;
    height: 70px;
    width: 70px;
    min-width: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2
}

.glance_sec .play_btn img {
    transition: all .4s ease-in-out
}

.glance_sec .play_btn:hover {
    background: var(--secondaryLight)
}

.glance_sec .play_btn:hover img {
    filter: brightness(0)
}

.facilities_sec {
    margin: 0;
    padding: 0
}

.facilities_block {
    margin: 0;
    padding: 80px 85px 75px 75px;
    position: relative;
    background: #f6f6f6 url(../images/facilities_curve.png) no-repeat bottom center;
    background-size: auto;
    background-size: 100% 82%
}

.facilities_gallery {
    margin: 0;
    padding: 0;
    display: flex;
    gap: 25px;
    justify-content: space-between
}

.facilities_gallery figure {
    margin: 0 0 25px;
    padding: 0;
    display: flex;
    overflow: hidden
}

.facilities_gallery figure img {
    width: 100%;
    object-fit: cover;
    transition: all .4s ease-in-out
}

.facilities_gallery figure:hover img {
    transform: scale(1.1)
}

.research_sec {
    margin: 0;
    padding: 115px 0 75px 0
}

.research_sec figure {
    margin-bottom: 30px
}

.research_sec figure img {
    width: 100%
}

.research_sec .detail {
    margin: 0;
    padding: 0 30px 0 0
}

.research_sec .flex-row-reverse .detail {
    padding: 0 0 0 30px
}

.research_sec p {
    margin-bottom: 25px;
    padding: 0;
    color: #414141
}

.research_sec.engagement {
    padding: 66px 0;
    background: rgba(0, 69, 116, .05)
}

.research_sec.network {
    padding: 75px 0
}

.academics_sec.about {
    background: rgba(0, 69, 116, .05);
    overflow: hidden
}

.academics_sec.about::before {
    background: transparent linear-gradient(180deg, #0060af 0, #002c52 100%) 0 0 no-repeat padding-box
}

.academics_sec.about h3 {
    color: var(--white)
}

.academics_sec.about p {
    color: var(--white)
}

.about_acad {
    margin: 0;
    padding: 0
}

.about_acad::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 50%;
    background: url(../images/history_curve.png) center center no-repeat;
    background-size: auto;
    transform: translate(40%, 0);
    z-index: 9;
    animation: acarightleft 5s linear infinite
}

@keyframes acarightleft {
    from {
        transform: translate(40%, 0)
    }
    50% {
        transform: translate(43%, 0)
    }
    to {
        transform: translate(40%, 0)
    }
}

.asked_sec {
    margin: 0;
    padding: 105px 0 90px
}

.asked_sec .container {
    max-width: 1240px
}

.asked_sec figure {
    margin: 0 0 30px;
    width: 100%;
    max-width: 400px
}

.asked_sec h2 {
    margin: 0 0 50px;
    padding: 0;
    font-size: 60px;
    color: var(--primary);
    font-weight: 400
}

.asked_sec .accordion-item {
    border: none;
    border-radius: 0;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(107, 107, 107, .2)
}

.asked_sec .accordion-button {
    margin: 0;
    padding: 19px 30px 19px 0;
    border-radius: 0 !important;
    font-size: 20px;
    color: #6b6b6b;
    font-weight: 500;
    box-shadow: none;
    font-family: "Albert Sans", sans-serif
}

.asked_sec .accordion-button:not(.collapsed) {
    background: var(--white);
    color: var(--primary)
}

.asked_sec .accordion-button::after {
    background: url(../images/faq_plus.svg) center center no-repeat;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    background-size: 100% 100% !important
}

.asked_sec .accordion-button:not(.collapsed)::after {
    background: url(../images/faq_minus.svg) center center no-repeat
}

.asked_sec .accordion-body {
    padding: 0 0 30px
}

.asked_sec .accordion-body p {
    margin: 0;
    padding: 0;
    font-size: 17px;
    color: #747474;
    font-style: italic;
    line-height: 28px
}

.over_sec {
    margin: 0;
    padding: 90px 0;
    position: relative
}

.over_sec::before {
    content: "";
    width: 365px;
    height: 365px;
    background: url(../images/over_curve.svg) center center no-repeat;
    background-size: 100% 100%;
    position: absolute;
    top: 40px;
    left: 23%;
    animation: rotate 30s linear infinite;
    transform-origin: center center;
    transform-box: fill-box
}

.over_sec .desc {
    padding-left: 55px
}

.faculty_sec {
    margin: 0;
    padding: 75px 0;
    background: transparent linear-gradient(180deg, #0060af 0, #04335a 100%) 0 0 no-repeat padding-box;
    position: relative
}

.faculty_sec:before {
    content: "";
    width: 100%;
    height: 100%;
    background: #003f74 url(../images/highlights_curve.png) no-repeat bottom center;
    background-size: 100% 100%;
    position: absolute;
    bottom: 0;
    left: 0
}

.faculty_sec .container {
    position: relative;
    z-index: 1
}

.faculty_sec p {
    color: var(--white)
}

.faculty_sec .gx-5 {
    --bs-gutter-x: 4rem
}

.faculty_res {
    margin: 0;
    padding: 60px 0 0 0
}

.faculty_res .global_title {
    margin-bottom: 50px
}

.happens_sec {
    margin: 0;
    padding: 70px 0 20px 0
}

.happens_sec .global_title {
    margin-bottom: 80px
}

.happen_block {
    margin: 0 0 30px 0;
    padding: 22px;
    height: calc(100% - 30px);
    transition: all .4s ease-in-out;
    position: relative;
    top: 0
}

.happen_block figure {
    margin: 0 0 20px 0;
    padding: 0;
    overflow: hidden
}

.happen_block figure img {
    width: 100%;
    transition: all .4s ease-in-out
}

.happen_block:hover figure img {
    transform: scale(1.1)
}

.happen_block h3 {
    margin: 0 0 15px 0;
    padding: 0;
    font-size: 22px;
    color: #1a1818;
    font-family: "Frank Ruhl Libre", serif;
    font-weight: 400
}

.happen_block h3 a {
    color: #1a1818
}

.happen_block p {
    margin: 0;
    padding: 0;
    font-size: 15px;
    line-height: 24px;
    color: #585858
}

.happen_block:hover {
    top: -30px;
    background: var(--white);
    box-shadow: 0 5px 30px #00000021
}

.reproject {
    margin: 0;
    padding: 0
}

.reproject .inner {
    margin: 0;
    padding: 55px 40px 0 60px;
    background: #003f74
}

.reproject h2 {
    margin: 0 0 35px 0;
    padding: 0;
    font-size: 36px;
    color: var(--white);
    font-family: "Frank Ruhl Libre", serif;
    font-weight: 400
}

.reproject h2 small {
    margin: 5px 0 0 0;
    padding: 0;
    display: block;
    font-size: 16px;
    font-weight: 300;
    color: #dfdfdf;
    font-family: "Albert Sans", sans-serif
}

.reproject figure {
    margin: 0;
    padding: 0
}

.reproject figure img {
    width: 100%
}

ul.repro_list {
    margin: 0 0 30px;
    padding: 0
}

ul.repro_list li {
    margin: 0 0 10px 0;
    padding: 0 0 0 30px;
    font-size: 18px;
    color: var(--white);
    position: relative
}

ul.repro_list li:before {
    content: "";
    width: 10px;
    height: 10px;
    background: var(--white);
    border-radius: 50%;
    position: absolute;
    top: 8px;
    left: 0
}

.publi_sec {
    margin: 0;
    padding: 120px 0 100px 0
}

.publi_sec figure {
    margin: 0;
    padding: 0
}

.publi_sec figure img {
    width: 100%
}

.publi_sec .detail {
    margin: 0;
    padding: 0 0 0 40px
}

.publi_sec .detail p {
    margin-bottom: 20px
}

.grand_sec {
    margin: 0;
    padding: 0 0 100px 0;
    text-align: center
}

.grand_sec .info {
    margin: 0 auto 80px auto;
    padding: 0;
    max-width: 1290px
}

.cta_info {
    margin: 0;
    padding: 55px;
    background: #f5f9fc;
    position: relative;
    text-align: left;
    transform: perspective(1px) translateZ(0);
    overflow: hidden
}

.cta_info.small .global_title {
    font-size: 40px
}

.cta_info::before {
    content: "";
    width: 101px;
    height: 102px;
    background: url(../images/cta_curve_1.png) center center no-repeat;
    background-size: 100% 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    animation: ctarightleft 5s linear infinite
}

.cta_info::after {
    content: "";
    width: 157px;
    height: 157px;
    background: url(../images/cta_curve_2.png) center center no-repeat;
    background-size: 100% 100%;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
    animation: ctaleftright 5s linear infinite
}

.cta_info p {
    margin: 0;
    padding: 0;
    color: #414141
}

.cta_info h3 {
    margin: 0;
    padding: 0;
    font-size: 40px;
    font-family: "Frank Ruhl Libre", serif;
    font-weight: 400;
    color: var(--primary)
}

.cta_info.small h3 {
    font-size: 30px
}

.cta_info strong {
    margin: 0;
    padding: 0;
    display: block;
    font-size: 25px;
    color: var(--black);
    font-weight: 500
}

.cta_info.small strong {
    font-size: 20px
}

.cta_info strong a {
    color: var(--black)
}

.cta_info strong a:hover {
    color: var(--primary)
}

@keyframes ctarightleft {
    from {
        transform: translate(0, 0)
    }
    50% {
        transform: translate(-10px, -10px)
    }
    to {
        transform: translate(0, 0)
    }
}

@keyframes ctaleftright {
    from {
        transform: translate(0, 0)
    }
    50% {
        transform: translate(10px, 10px)
    }
    to {
        transform: translate(0, 0)
    }
}

.reblog_sec {
    margin: 0;
    padding: 100px 0 30px 0
}

.reblog_sec .happenings_block {
    margin-bottom: 60px;
    height: calc(100% - 60px)
}

.blog_detail {
    margin: 0;
    padding: 120px 0 60px 0
}

.blog_detail h2 {
    margin: 0 0 20px 0;
    padding: 0;
    font-size: 40px;
    color: var(--black);
    font-family: "Frank Ruhl Libre", serif;
    font-weight: 400
}

.blog_detail .date_info {
    margin: 0 0 45px 0;
    padding: 0 0 30px 0;
    display: flex;
    gap: 25px;
    align-items: center;
    border-bottom: 1px solid rgba(0, 96, 175, .2)
}

.blog_detail .date_info span {
    margin: 0;
    padding: 0 35px 0 0;
    display: inline-block;
    font-size: 16px;
    color: rgba(0, 0, 0, .5);
    line-height: 16px
}

.blog_detail .date_info .upload_info {
    margin: 0;
    padding: 0 0 0 20px;
    font-size: 16px;
    color: rgba(0, 0, 0, .5);
    position: relative
}

.blog_detail .date_info .upload_info::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    height: 7px;
    width: 7px;
    background: var(--black);
    border-radius: 5px
}

.blog_detail .detail {
    margin: 0;
    padding: 0 0 0 40px
}

.blog_detail figure {
    margin-bottom: 30px
}

.blog_detail .detail p,
.blog_detail .inner p {
    margin-bottom: 15px;
    color: rgba(0, 0, 0, .6)
}

.blog_detail .inner {
    margin: 20px 0 50px 0;
    padding: 0
}

.blog_detail .inner h6 {
    margin: 0 0 15px 0;
    padding: 0;
    font-size: 18px;
    font-weight: 500;
    color: var(--black);
    font-family: "Albert Sans", sans-serif
}

.blog_detail h4 {
    margin: 0 0 40px 0;
    padding: 0;
    font-size: 40px;
    color: var(--black);
    font-weight: 400
}

.get_sec {
    margin: 0;
    padding: 100px 0 120px 0
}

.get_sec .gx-5 {
    --bs-gutter-x: 6rem
}

.get_sec .map_info {
    margin: 0;
    padding: 0;
    border-radius: 25px
}

.get_sec .map_info iframe {
    padding: 5px;
    display: flex;
    background: var(--white);
    border-radius: 25px;
    box-shadow: 0 30px 50px #012A371A
}

.get_sec h3 {
    margin: 0 0 20px 0;
    padding: 0;
    font-size: 30px;
    font-weight: 500
}

.get_sec p {
    font-size: 18px;
    margin: 0
}

.get_sec .ph_info {
    margin: 0;
    padding: 0
}

.get_sec .ph_info small {
    margin: 0;
    padding: 0;
    display: block;
    font-size: 14px;
    color: #4b4b4b;
    text-transform: uppercase
}

.get_sec .ph_info a {
    margin: 0;
    padding: 0;
    font-size: 20px;
    color: #4b4b4b
}

.get_sec .ph_info a:hover {
    color: var(--primaryLight)
}

.get_sec .mail_info {
    margin: 25px 0 50px 0;
    padding: 30px 0 0 0;
    border-top: 1px dashed #003b4e
}

.get_sec .mail_info ul {
    margin: 0;
    padding: 0;
    display: flex;
    gap: 2vw;
    align-items: center
}

.get_sec .mail_info ul li {
    margin: 0;
    padding: 0;
    font-size: 14px;
    color: #4b4b4b;
    font-weight: 600;
    text-transform: uppercase
}

.get_sec .mail_info ul li a {
    display: block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    border-radius: 36px;
    background: var(--white);
    text-align: center
}

.get_sec .mail_info ul li a:hover img {
    filter: brightness(0) invert(1)
}

.get_sec .mail_info ul li a:hover {
    background: var(--primary)
}

.cform {
    margin: 0;
    padding: 90px 70px 110px 70px;
    background: var(--white);
    box-shadow: 0 10px 50px #2727271F;
    position: relative;
    overflow: hidden
}

.cform::before {
    content: "";
    width: 89px;
    height: 88px;
    background: url(../images/form_curve.png) center center no-repeat;
    background-size: 100% 100%;
    position: absolute;
    top: 0;
    right: 0;
    animation: skew 5s linear infinite
}

.cform p {
    margin-bottom: 18px
}

.cform h4 {
    margin: 0 0 10px 0;
    padding: 0;
    font-size: 40px;
    font-weight: 400
}

.cform .input-group {
    margin: 0 0 15px 0;
    padding: 0
}

.cform .input-group .form-control {
    margin: 0;
    padding: 0;
    height: 60px;
    border: none;
    border-bottom: 1px solid #003b4e;
    border-radius: 0;
    box-shadow: none;
    font-size: 16px;
    color: var(--themetxt);
    background-image: none
}

.cform .input-group .form-control .cform .input-group .form-control::placeholder {
    color: #656565
}

.cform .input-group .form-control:focus {
    border-color: var(--primary)
}

.cform .input-group .form-control:focus::placeholder {
    color: var(--themetxt)
}

.cform .input-group textarea.form-control {
    height: 100px;
    padding-top: 10px;
    resize: none;
    margin-bottom: 30px
}

.send_btn {
    min-width: 215px;
    margin: 0;
    padding: 13px 15px 11px 15px;
    background: rgba(0, 96, 175, .8);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--white);
    border: none;
    text-align: center
}

.send_btn:hover {
    background: var(--primaryDark);
    color: var(--white)
}

.send_btn.yellow {
    background: rgba(255, 195, 32, .8)
}

.send_btn.yellow:hover {
    background: var(--secondaryLight)
}

.help-block {
    width: 100%;
    margin-top: 5px
}

#email-alert {
    font-weight: 400 !important;
    color: #0c4030 !important;
    border-color: #9bd3ba !important;
    background: #d1e7dd !important
}

.newsletters {
    margin: 0;
    padding: 100px 0 40px 0
}

.newsletters .happenings_block {
    margin-bottom: 60px;
    height: calc(100% - 60px)
}

.fee_sec {
    margin: 0;
    padding: 80px 0
}

.fee_sec p {
    margin-bottom: 15px
}

ul.fee_list {
    margin: 0 0 15px 0;
    padding: 0
}

ul.fee_list li {
    margin: 0 0 12px 0;
    padding: 0 0 0 20px;
    display: block;
    font-size: 16px;
    color: #212121;
    font-weight: 300;
    position: relative
}

ul.fee_list li:before {
    content: "";
    width: 10px;
    height: 10px;
    background: url(../images/check.svg) center center no-repeat;
    background-size: 100% 100%;
    position: absolute;
    top: 7px;
    left: 0
}

.fee_form {
    margin: 0;
    padding: 50px 50px 60px 50px;
    background: transparent linear-gradient(180deg, #0060af 0, #003f74 100%) 0 0 no-repeat padding-box;
    border-radius: 15px
}

.fee_form .input-group {
    margin: 0 0 30px 0;
    padding: 0
}

.fee_form .input-group label {
    width: 100%;
    display: block;
    margin: 0 0 10px 0;
    padding: 0;
    font-size: 16px;
    color: var(--white);
    font-weight: 500
}

.fee_form .input-group .form-control {
    margin: 0;
    padding: 0 22px;
    height: 60px;
    border-radius: 7px !important;
    border: none;
    box-shadow: none;
    font-size: 14px;
    color: rgba(20, 20, 20, .4)
}

.fee_form .input-group .form-control::placeholder {
    color: rgba(20, 20, 20, .4)
}

.payment_checks {
    margin: 0 0 15px 0;
    padding: 0;
    display: flex;
    gap: 11px;
    width: 100%
}

.payment_checks .form-check {
    margin: 0;
    padding: 0;
    position: relative;
    width: 100%;
    max-width: 122px
}

.payment_checks .form-check .form-check-label {
    margin: 0;
    padding: 3px;
    width: 100%;
    height: 49px;
    display: flex;
    background: var(--white);
    border-radius: 7px;
    text-align: center;
    justify-content: center;
    align-items: center
}

.payment_checks .form-check .form-check-input {
    position: absolute;
    left: 0;
    top: 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    z-index: -1
}

.payment_checks .form-check .form-check-input:checked~.form-check-label {
    box-shadow: 0 0 0 3px var(--secondary) inset
}

.payment_checks .form-check .form-check-label::after,
.payment_checks .form-check .form-check-label::before {
    display: none
}

.publi_sec.support {
    padding: 85px 0 100px 0
}

.publi_sec.support .detail {
    position: relative;
    padding: 0
}

.publi_sec.support .detail::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
    height: 445px;
    width: 445px;
    background: url(../images/wel_curve.png) center center no-repeat;
    background-size: auto;
    background-size: 100% 100%;
    z-index: -1
}

.publi_sec.support figure {
    margin: 0 0 30px;
    padding: 0;
    position: relative
}

.publi_sec.support figure img {
    width: 100%
}

.publi_sec.support figure span {
    padding: 24px 60px;
    background: var(--primary);
    font-size: 61px;
    line-height: 55px;
    font-weight: 300;
    display: inline-block;
    font-family: "Frank Ruhl Libre", serif;
    color: var(--white);
    position: absolute;
    bottom: 0;
    left: 0
}

.publi_sec.support figure span small {
    display: block;
    line-height: normal;
    font-size: 30px
}

.support_sec {
    margin: 0;
    padding: 0 0 55px
}

.support_sec h2 {
    margin: 0 0 23px;
    padding: 0;
    font-size: 50px;
    font-weight: 400;
    color: var(--primary)
}

.support_sec p {
    margin-bottom: 25px;
    font-weight: 400;
    line-height: 27px;
    color: var(--black)
}

.support_sec figure {
    margin: 0;
    padding: 0 0 0 80px
}

.support_sec figure img {
    width: 100%
}

.support_list {
    margin: 0 0 40px;
    padding: 0
}

.support_list li {
    margin: 0 0 12px;
    padding: 0 0 0 25px;
    font-size: 16px;
    font-weight: 500;
    color: var(--black);
    position: relative
}

.support_list li::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 0;
    background: url(../images/check_list_ic.svg) center center no-repeat;
    background-size: 100% 100%;
    height: 10px;
    width: 10px
}

.publi_sec.service {
    margin: 0;
    padding: 78px 0;
    background: url(../images/service_bg.jpg) center center no-repeat;
    background-size: cover
}

.publi_sec.service .global_title small {
    color: #a6c4dd
}

.publi_sec.service .info {
    margin: 0 0 20px;
    padding: 0;
    font-size: 16px;
    font-weight: 500;
    color: #ffd76a
}

.publi_sec.service .support_list {
    margin-bottom: 20px
}

.publi_sec.service .support_list li {
    color: var(--white)
}

.publi_sec.service .support_list li::before {
    background: url(../images/check_list_yellow_ic.svg) center center no-repeat
}

.publi_sec.cell {
    margin: 0;
    padding: 90px 0 100px 0
}

.publi_sec.cell .detail {
    padding: 0 50px 0 0
}

.students_sec {
    margin: 0;
    padding: 0 0 70px
}

.students_sec figure {
    margin: 0 0 30px;
    padding: 0
}

.students_sec figure img {
    width: 100%
}

.students_sec h2 {
    margin: 0 0 30px;
    padding: 0;
    font-size: 50px;
    color: var(--primary);
    font-weight: 400
}

.students_sec p {
    line-height: 27px;
    font-weight: 400;
    color: var(--black)
}

.students_sec h3 {
    margin: 0 0 25px;
    padding: 0;
    font-size: 18px;
    font-weight: 500;
    color: var(--primary);
    font-family: "Albert Sans", sans-serif
}

.social_student {
    margin: 0;
    padding: 0
}

.social_student li {
    margin: 0 0 15px;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 22px
}

.social_student li a {
    color: var(--black);
    font-size: 16px;
    font-weight: 500
}

.social_student li a:hover {
    color: var(--primary)
}

.asked_sec.support {
    padding: 0
}

.asked_sec.support .container {
    max-width: 1500px
}

.support_block {
    padding: 110px 120px;
    background: transparent linear-gradient(269deg, #0573ce 0, #063f75 100%) 0 0 no-repeat padding-box
}

.asked_sec.support h2 {
    font-size: 50px
}

.asked_sec.support .accordion {
    margin-left: 30px
}

.asked_sec.support .accordion-item {
    margin-bottom: 6px;
    background: 0 0;
    border-color: rgba(255, 255, 255, .2)
}

.asked_sec.support .accordion-button {
    background: 0 0;
    color: var(--white)
}

.asked_sec.support .accordion-body {
    padding-bottom: 30px
}

.asked_sec.support p {
    color: var(--white);
    margin-bottom: 0
}

.asked_sec.support .accordion-button::after {
    filter: brightness(0) invert(1)
}

.news_sec {
    margin: 0;
    padding: 110px 0 55px
}

.contact_details {
    padding: 0 0 85px 0
}

.accreditation_sec {
    padding: 80px 0
}

.accreditation_sec .container {
    max-width: 1446px
}

.accreditation_logos {
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    display: flex;
    gap: 0 37px
}

.accreditation_logos .logo_item {
    margin-bottom: 37px;
    min-height: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px;
    border: 1px solid rgba(0, 96, 175, .13);
    width: calc(100% / 5 / 1 - 30px);
    transition: all .4s ease-in-out
}

.accreditation_logos .logo_item figure {
    margin: 0
}

.accreditation_logos .logo_item figure img {
    max-height: 106px
}

.accreditation_logos .logo_item:hover {
    box-shadow: 0 0 0 2px var(--primary) inset
}

.iic_sec {
    padding-top: 78px
}

.work_sec {
    margin: 0;
    padding: 80px 0
}

.work_sec figure {
    margin: 0;
    padding: 0
}

.vacancies {
    margin: 0;
    padding: 0 0 50px 0
}

.vacancies [class^=col-] {
    display: flex
}

.vac_block {
    margin: 0 0 50px 0;
    padding: 30px;
    background: var(--white);
    box-shadow: 0 10px 30px #00000017;
    border-radius: 15px;
    transition: all .4s ease-in-out;
    position: relative;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: self-start
}

.vac_block h3 {
    margin: 0 0 15px 0;
    padding: 0;
    font-size: 20px;
    color: var(--black);
    font-weight: 600;
    font-family: "Albert Sans", sans-serif;
    transition: all .4s ease-in-out
}

.vac_block p {
    transition: all .4s ease-in-out;
    flex-grow: 1
}

.vac_block .time_info {
    width: 100%;
    margin: 0 0 15px 0;
    padding: 0 0 15px 0;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed #707070;
    transition: all .4s ease-in-out
}

.vac_block .time_info span {
    margin: 0;
    padding: 0;
    display: inline-block;
    font-size: 16px;
    color: rgba(0, 0, 0, .69);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all .4s ease-in-out
}

.vac_block .time_info strong {
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-weight: 600;
    transition: all .4s ease-in-out
}

.vac_block .time_info strong b {
    font-weight: 600;
    color: var(--primary);
    transition: all .4s ease-in-out
}

.apply_btn {
    margin: 0;
    padding: 13px 50px 12px 50px;
    display: inline-block;
    background: var(--primary);
    border-radius: 30px;
    font-size: 14px;
    color: var(--white);
    font-weight: 500;
    text-transform: uppercase
}

.apply_btn:hover {
    background: var(--secondary);
    color: var(--white)
}

.vac_block:hover {
    background: var(--primary);
    top: -30px
}

.vac_block:hover h3 {
    color: var(--white)
}

.vac_block:hover p {
    color: var(--white)
}

.vac_block:hover .time_info {
    border-bottom-color: #eee
}

.vac_block:hover .time_info span {
    color: var(--white)
}

.vac_block:hover .time_info span img {
    filter: brightness(0) saturate(100%) invert(76%) sepia(52%) saturate(1013%) hue-rotate(349deg) brightness(91%) contrast(90%)
}

.vac_block:hover .time_info strong {
    color: var(--white)
}

.vac_block:hover .time_info strong b {
    color: var(--secondary)
}

.vac_block:hover .apply_btn {
    background: var(--secondary)
}

.apply_modal .modal-dialog {
    max-width: 620px;
    border-radius: 15px
}

.apply_modal .modal-content {
    border: none
}

.apply_modal .modal-body {
    padding: 70px 60px 60px 60px
}

.apply_modal .modal-body::after {
    content: "";
    width: 90px;
    height: 90px;
    background: url(../images/form_curve.png) center center no-repeat;
    background-size: 100% 100%;
    position: absolute;
    bottom: 0;
    right: 0;
    transform: rotate(90deg)
}

.apply_modal .modal-body .btn-close {
    position: absolute;
    top: 25px;
    right: 25px;
    opacity: 1
}

.btn-close {
    box-shadow: none !important;
    border: none !important
}

.apply_modal .modal-body h2 {
    margin: 0 0 20px 0;
    padding: 0;
    font-size: 40px;
    font-weight: 400
}

.apply_modal .input-group {
    margin: 0 0 20px 0
}

.apply_modal .input-group .form-control {
    margin: 0;
    padding: 0;
    height: 60px;
    border: none;
    border-bottom: 1px solid #003b4e;
    border-radius: 0;
    box-shadow: none;
    font-size: 16px;
    color: var(--themetxt)
}

.apply_modal .input-group .form-control::placeholder {
    color: #656565
}

.apply_modal .input-group .form-control:focus::placeholder {
    color: var(--themetxt)
}

.upload_btn {
    height: 60px;
    margin: 0 0 40px 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #003b4e;
    align-items: center
}

.upload_btn label {
    font-size: 16px;
    color: #656565;
    position: absolute
}

.upload_btn .fileUpload {
    position: relative;
    overflow: hidden;
    padding: 0;
    margin: 0;
    font-size: 13px;
    color: var(--primaryDark) !important;
    border: none;
    background: 0 0 !important;
    width: 100%;
    text-align: right
}

.upload_btn .fileUpload img {
    margin-right: 5px
}

.upload_btn .fileUpload input.upload {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    padding: 0;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    width: 100%
}

.work_sec.cultural {
    padding: 95px 0 115px 0
}

.work_sec.cultural p {
    margin-bottom: 20px
}

.work_sec.cultural .detail {
    max-height: 450px;
    overflow: auto;
    scrollbar-width: thin;
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-color: var(--primary) transparent
}

.work_sec.sports {
    padding: 90px 0 60px
}

.sports_sec {
    margin: 0;
    padding: 0 0 80px
}

.sports_sec .sports_gallery {
    columns: 3
}

.sports_sec figure {
    margin: 0 0 26px;
    padding: 0;
    overflow: hidden
}

.sports_sec figure img {
    width: 100%;
    object-fit: cover;
    transition: all .4s ease-in-out
}

.sports_sec figure:hover img {
    transform: scale(1.1)
}

.video_modal .modal-dialog {
    width: 90%;
    max-width: 840px;
    border-radius: 15px
}

.video_modal .modal-content {
    border: none;
    border: none;
    background: 0 0
}

.video_modal .modal-body {
    padding: 0
}

.video_modal .modal-body .btn-close {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: var(--white);
    position: absolute;
    top: -13px;
    right: -13px;
    opacity: 1;
    background-size: 12px
}

.video_modal .modal-body iframe {
    width: 100%;
    float: left
}

.gallery_data {
    padding-top: 110px
}

.errorBx {
    margin: 0;
    padding: 60px 0;
    text-align: center;
    z-index: 5
}

.errorBx .mainT {
    margin: 0 0 5px;
    padding: 0;
    font-size: 130px;
    color: var(--primary);
    font-weight: 700;
    line-height: normal
}

.errorBx .emptytitle {
    margin: 0 0 5px 0;
    padding: 0;
    font-size: 34px;
    color: var(--themetxt);
    font-weight: 500
}

.errorBx .subT {
    margin: 0 0 20px;
    font-size: 16px;
    line-height: 26px;
    font-weight: 300;
    color: var(--themetxt)
}

.Admissionlink img {
    width: 15px;
    height: 22px;
    object-fit: contain
}

/* new styles */
.top_social a i{
    color:#fff;
}
.top_social{
    padding: 10px 0;
}
.mega-hover::before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 0;
    display: block;
    content: "";
    width: 30%;
    height: 100%;
    transform: skewX(-25deg);
    background: #fff;
    opacity: 0.2;
    z-index: -3;
}
.right_part:hover .mega-hover::before {
    animation: animation 0.95s;
    z-index: 0;
}

@keyframes animation{
    100% {
        left: 125%;
    }
}
.main-slider__shape-1 {
    position: absolute;
    top: -10px;
    left: 0;

    z-index: -1;
}
.img-bounce {
    -webkit-animation: ImgBounce 5s ease-in-out 0s infinite alternate;
    animation: ImgBounce 5s ease-in-out 0s infinite alternate;
}
@-webkit-keyframes ImgBounce {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
}
.global_title{
    position: relative;
    z-index: 1;
}
.global_title::before {
    position: absolute;
    content: "";
    background: url(../images/line-1\ 1.svg) no-repeat;
    width: 100%;
    height: 14px;
    left: 7px;

    z-index: -1;
    bottom: 13px;
} 

.cta-main-wrapper-one {
    display: flex;
    align-items: center;
    background: #000a12;

    /*background: #00294a;*/
    padding: 30px;
    border-radius: 7px;
    position: relative;
    z-index: 1;
    height: 300px;
}
.cta-main-wrapper-one .icon {
    margin-right: 20px;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #64173d;
    position: relative;
    z-index: 1;
    border-radius: 50%;
}
.cta-main-wrapper-one .icon  img{
    height: 40px;
    width: auto;
}
.cta-main-wrapper-one .info-area span {
    color: var(--color-primary);
    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
}
.cta-main-wrapper-one .info-area h4{
    color: var(--secondary);
}
.cta-main-wrapper-one .info-area p {
    color: #fff;
    font-weight: 300;
    font-size: 16px;
    line-height: 26px;
    text-align: justify;
}
.cta-main-wrapper-one ul li {
    color: #fff;
    font-weight: 300;
    font-size: 16px;
    line-height: 26px;
    text-align: justify;
    list-style-type: disc;
}
.vm{
    padding: 50px 0;
}
.cta-main-wrapper-one::after {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    background-image: url(../images/01.png);
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
    z-index: -1;
    background-size: contain;
}
.cta-main-wrapper-one .icon::after {
    width: 90px;
    height: 90px;
    position: absolute;
    content: "";
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #a82364;
    z-index: -1;
    border-radius: 50%;
}
/* objectives */
.obj-bg{
    background: url(../images/objec-img.png);
    background-size: cover;
    background-repeat: no-repeat;
}
.obj-content{
    padding: 50px 0;
}
.obj-content ul li{
    margin-top: 10px;
    list-style-type: disc;
}
.obj-content-inner{
    margin-left: 200px;
}
.obj{
    background-color: #f2f2f2;
}

/* iedc */
.iedc
 {
    padding: 50px 0;   
        background-image: url("../images/bg4.jpg");
      


      

        background-attachment: fixed;
      
   
        background-position: center;
      

        background-repeat: no-repeat;
      

        background-size: cover;
      
}
.iedc p{
    text-align: justify;
}
.iedc-btn{
    padding: 10px 15px;
    border-radius: 5px;
    color: #fff;
    width: 100%;
    text-align: center;
    display: block;
    font-weight: bold;
    background: rgb(0,32,58);
background: linear-gradient(90deg, rgb(205 122 160) 0%, rgb(17 19 20) 35%);
transition: all 0.5s ease-in;
margin-top: 10px;
}
.iedc-btn:hover{
    background:none;
    transition: all 0.5s ease-in;
    border: 1px solid #00203a;
    color: #00203a;
}
.ksa-logo{
    height: 74px;
}
.ksa-header{
    background: rgba(250, 250, 250, 0.7);
}
.ksa-header .head_bottom {
    padding: 13px 0;
    transition: all .4s ease-in-out;
}
.ksa-header .head_bottom .navbar-light .navbar-nav .nav-link.active, .head_bottom .navbar-light .navbar-nav .show>.nav-link {
    color: #5c2256;
    border-color: #5c2256;
}
.ksa-header .head_bottom .navbar-light .navbar-nav .nav-link:before {
background: #5c2256;
}
.ksa-header .head_bottom .navbar-light .navbar-nav .nav-item:hover .nav-link {
    color: #5c2256;
}
.ksa-header .head_bottom .navbar-light .navbar-nav .nav-link {
    color:#000;
}
.ksa-main-header .head_top{
    background: #5c2256;
}
.ksa-header.header_absolute::before{
    background: #fff;
}
.ksa-marquee.marquee_info .label{
background:rgb(92, 34, 86);
}
.ksa-marquee .label{
    color: #fff;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.ksa-bannert:after{
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .4);
    z-index: 2;
    position: absolute;
    left: 0;
    top: 0;
}
.ksa-caption{
    color: #fff;
    font-size: 50px;
}
.title-ksa::before{

background: url(../images/ksa-line.svg);
background-repeat: no-repeat;
opacity: 0.5;
 
}
.why_sec-ksa:before{
    background: url(../images/ksa-side.png) no-repeat left bottom;
}
.partners{
    padding: 50px 0;
}
.team__area-item-image {
    position: relative;
    z-index: 1;
  }
  .team__area-item-image::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 20%;
    top: 0;
    left: 0;
    background: linear-gradient(to right, #5c2256 0%, #c93c8a 100% );
    opacity: 0;
    transition: 0.4s;
  }
  .team__area-item-image-icon {
    position: absolute;
    bottom: 70px;
    right: 30px;
    z-index: 1;
  }
  .team__area-item-image-icon span {
    color: #fff;
    height: 40px;
    width: 40px;
    background: #c93c8a;
    line-height: 40px;
    text-align: center;
    font-size: 14px;
    border-radius: 50%;
    display: inline-block;
    transition: 0.4s;
    cursor: pointer;
  }
  .team__area-item-image-icon span:hover{
    transform: translateY(-5px);
    transition: 0.4s;
  }
  .team__area-item-image-icon.page span {
    background: var(--primary-color-1);
  }
  .team__area-item-image-icon.page .team__area-item-image-social ul li a i:hover {
    background: var(--primary-color-1);
  }
  .team__area-item-image-icon .team__area-item-image-social {
    position: absolute;
    bottom: 50px;
  }
  .team__area-item-image-icon:hover .team__area-item-image-social {
    opacity: 1;
    visibility: visible;
  }
  .team__area-item-image-social {
    position: absolute;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
  }
  .team__area-item-image-social ul {
    padding: 0;
    margin: 0;
  }
  .team__area-item-image-social ul li {
    list-style: none;
    margin-bottom: 8px;
  }
  .team__area-item-image-social ul li:last-child {
    margin: 0;
  }
  .team__area-item-image-social ul li a i {
    display: inline-block;
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 40px;
    font-size: 14px;
    border-radius: 50%;
    background: var(--bg-white);
    color: var(--text-heading-color);
    transition: 0.4s;
  }
  .team__area-item-image-social ul li a i:hover {
    background: var(--primary-color-2);
    color: var(--text-white);
  }
  .team__area-item-image img {
    width: 100%;
  }
  .team__area-item-content {
    padding: 22px;
    margin: 0 30px;
    margin-top: -60px;
    background: #5c2256;
    position: relative;
    z-index: 1;
    text-align: center;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  }
  .team__area-item-content .text-eight {
    font-weight: 600;
  }
  .team__area-item-content h5 a {
    transition: 0.4s;
    color: #fff;
   
  }
  .team__area-item-content h5 a:hover {
    color: #fff;
    transform: translateY(-5px);
    transition: 0.4s;
  }
  .team__area-item-content.page h5 a:hover {

    color: #fff;
    transform: translateY(-5px);
    transition: 0.4s;
  }
  .team__area-item:hover .team__area-item-image::before {
    height: 100%;
    opacity: 0.7;
    z-index: 1;
  }
  .team__area h6 {
    color: var(--color-2);
    font-size: 18px;
    line-height: 30px;
  }
  .team__area h6 a {
    color: var(--primary-color-1);
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 600ms ease;
  }
  .team__area h6 a:hover {
    background-size: 100% 1px;
  }
  .team__area-item-image-icon span:hover i{
transition: 0.9s;
transform: rotate(360deg);
  }
  .team__area-item-image-icon span i{
    transition: 0.9s;
    transform: rotate(-45deg);
      }
      .team__area-item-content:hover{
     transition: 0.5s;
     transform: translateY(-5px);
       
      }
      .team__area-item-content{
        transition: 0.5s;
        
      }
      .team__area-item-image:hover{
     
      }

      /* courses offered */
      .explore_sec{
        padding-top: 100px;
        padding-bottom: 300px;
      }
      .explore_sec h4{
        color: #fff;
      }
      .courses{
 
        position: relative;
        background: #FFFFFF;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 50px;
    margin-top: -200px;
}

.courses p{
    text-align: justify;
}
.courses h6{
    font-size: 40px;
}
.nurse-img{
    position: absolute;
   right: 0;
    bottom: 0;
    max-width: 550px;
}
.welcome_sec h4{
    display: inline-block;
}
.ksa-about{
    border-bottom: 2px dashed rgba(112, 112, 112, .5);
    
}

.box-ksa{
    background: none;
    font-family: 'Raleway', sans-serif;
    text-align: center;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease 0s;
}
.box-ksa:hover{ box-shadow: 0 0 5px rgba(0,0,0,0.4); }
.box-ksa:before,
.box-ksa:after{
    content: "";
 
    position: absolute;
    top: 40px;
    right: 40px;
    bottom: 40px;
    left: 40px;
    box-shadow: 0 0 0 30px rgba(255, 255, 255, 0.15);
    transition: all 0.5s;
}
.box-ksa:before{

    border-top: 4px solid #fff;
    border-bottom: 4px solid #FFFFFF;
}
.box-ksa:after{
    transform: scale(1, 0);
    border-right: 4px solid #FFF;
    border-left: 4px solid #fff;
}
.box-ksa:hover:before,
.box-ksa:hover:after{
    opacity: 0.8;
    transform: scale(1);

}
.box-ksa:hover:after{
    border-right: 4px solid #c93c8a;
    border-left: 4px solid #c93c8a;
}
.box-ksa:hover:before{
    border-top: 4px solid #c93c8a;
    border-bottom: 4px solid #c93c8a;
}
.box-ksa img{
    width: 100%;
    height: auto;
    transition: all 0.5s;
}
.box-ksa:hover img{

    transform: scale(1.1);
}
.box-ksa .box-content{
    color: #fff;
    width: 100%;
    transform: translateY(-30%);
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 2;
    transition: all .5s ease;
}   
.box-ksa:hover .box-content{ transform: translateY(-50%); }
.box-ksa .title{
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 3px 0;
    opacity: 0;
    text-shadow: 0 0 40px #fff;
    transition: all 0.5s linear;
}
.box-ksa .post{
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    margin: 0 0 10px;
    display: block;
    opacity: 0;
    text-shadow: 0 0 40px #fff;
    transition: all 0.5s linear;
}
.box-ksa:hover .title,
.box-ksa:hover .post{
    opacity: 1;
    text-shadow: 0 0 0 rgba(255, 255, 255, 0);
    transition-delay: 0.2s;
}
.box-ksa .icon{
    padding: 0;
    margin: 0;
    list-style: none;
    transform: scale(0);
    transition: all 0.5s ease;
}
.box-ksa:hover .icon{ transform: scale(1); }
.box-ksa .icon li{
    margin: 0 2px;
    display: inline-block;
}
.box-ksa .icon li a{
    color: #ff0606;
    background-color: #fff;
    font-size: 16px;
    line-height: 35px;
    height: 35px;
    width: 35px;
    display: block;
    transition: all 0.5s ease 0s;
}
.box-ksa .icon li a:hover{
    color: #fff;
    background: rgba(255,6,6,1);
    box-shadow: 0 0 5px rgba(0,0,0,0.8);
}
.box-ksa .icon li  a i{line-height:inherit;}
@media only screen and (max-width:990px){
    .box-ksa{ margin: 0 0 30px; }
}

/* kla */
.kla-main-header .head_top{
    background: rgb(0, 155, 161);
}
.kla-header .head_bottom .navbar-light .navbar-nav .nav-link.active, .head_bottom .navbar-light .navbar-nav .show>.nav-link {
    color: #009ba0;
    border-color: #009ba0;
}
.kla-header .head_bottom .navbar-light .navbar-nav .nav-link:before {
background: #009ba0;
}
.kla-header .head_bottom .navbar-light .navbar-nav .nav-item:hover .nav-link {
    color: #009ba0;
}
.kla-marquee.marquee_info .label{
    background:rgb(30 30 30);
    color: #fff;
    }
    
.kla-marquee {
    width: 100%;
    margin: 0;
    padding: 12px 0 9px;
    width: 100%;
    background: rgba(0, 155, 161, .45);
    position: absolute;
    bottom: 0;
    left: 0;
    overflow: hidden;
    z-index: 5
}
.title-kla::before {
    background: url(../images/kla-line2.svg);
    background-repeat: no-repeat;

}
.box-kla:hover:after{
    border-right: 4px solid #03807c;
    border-left: 4px solid #03807c;
}
.box-kla:hover:before{
    border-top: 4px solid #d14c0f;
    border-bottom: 4px solid #d14c0f;
}

/* leap */
.leap-logo{
    height: 100px;
}
.leap-header{
    background: rgba(250, 250, 250, 1);
}
.leap-header .head_bottom {
    padding: 0;
    transition: all .4s ease-in-out;
}
.leap-header .head_bottom .navbar-light .navbar-nav .nav-link.active, .head_bottom .navbar-light .navbar-nav .show>.nav-link {
    color: #3aa7de;
    border-color: #3aa7de;
}
.leap-header .head_bottom .navbar-light .navbar-nav .nav-link:before {
background: #3aa7de;
}
.leap-header .head_bottom .navbar-light .navbar-nav .nav-item:hover .nav-link {
    color: #3aa7de;
}
.leap-header .head_bottom .navbar-light .navbar-nav .nav-link {
    color:#000;
}
.leap-main-header .head_top{
    background: #3aa7de;
}
.leap-header.header_absolute::before{
    background: #fff;
}
.leap-marquee .label{
    background: #3aa7de;
}
.title-leap::before {
    background: url(../images/leap-line.svg);
    background-repeat: no-repeat;
}
.box-leap:hover:after{
    border-right: 4px solid #3aa7de;
    border-left: 4px solid #3aa7de;
}
.box-leap:hover:before{
    border-top: 4px solid #3aa7de;
    border-bottom: 4px solid #3aa7de;
}
.footer-about{
    color:#fff;
    text-align:justify;
    padding-right:100px;
}
header.sticky .header_absolute{
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px !important;
}

@media(min-width:576px){
    .first-main-header{
        top:35px;
    }
}
.icon img.aos-init.aos-animate {
    filter: brightness(0) invert(1);
}
.detail img {
    vertical-align: bottom;
    filter: brightness(0) invert(1);
}



/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  border-top: 3px solid #007e84;
  border-bottom: 3px solid #007e84;
  padding: 30px;
  background: #fff;
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
}

.contact .info i {
  font-size: 20px;
  color: #007e83;
  float: left;
  width: 44px;
  height: 44px;
  background: #e7f5fb;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #353638;
}

.contact .info p {
    padding: 0 0 10px 60px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #16171a;
    font-weight: 400;
}

.contact .info .email p {
  padding-top: 5px;
}

.contact .info .social-links {
  padding-left: 60px;
}

.contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}

.contact .info .social-links a:hover {
  background: #989006;
  color: #fff;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #434240;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  border-top: 3px solid #007e84;
  border-bottom: 3px solid #007e84;
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form .form-group {
  margin-bottom: 20px;
}

.contact .php-email-form label {
  padding-bottom: 8px;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #47b2e4;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
  height: 200px;
}

.contact .php-email-form button[type=submit] {
  background: #007e84;
  border: 0;
  padding: 12px 34px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #505050;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.captcha-loader{
    margin-top: .5rem !important;
    width: 40px;
    margin-left: 10px;
}

.kla .icon::after {
    width: 90px;
    height: 90px;
    position: absolute;
    content: "";
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #017b7a;
    z-index: -1;
    border-radius: 50%;
}
.kla .icon {
    margin-right: 20px;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #68a3a191;
    position: relative;
    z-index: 1;
    border-radius: 50%;
}
.kla .info-area h4{
    color : #017b7a;
}





 table {
      width: 100%;
      border-collapse: collapse;
      margin: 20px 0;
      font-size: 16px;
      text-align: left;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    th, td {
      border: 1px solid #dcdcdc;
      padding: 12px;
    }

    th {
      background-color: #5c2256; /* Dark purple */
      color: #ffffff;
      text-transform: uppercase;
    }

    tr:nth-child(even) {
      background-color: #f9f1fb;
    }

    tr:nth-child(odd) {
      background-color: #ffffff;
    }

    td {
      color: #4a148c; /* Dark purple text for data */
    }

    caption {
      caption-side: top;
      margin-bottom: 10px;
      font-weight: bold;
      color: #6a1b9a;
      font-size: 20px;
    }


.slider-placement {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
   
    overflow: hidden;
    background: rgb(255, 255, 255);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(7.4px);
    -webkit-backdrop-filter: blur(7.4px);
    border: 1px solid rgba(255, 255, 255, 0.4);
 
}

.slider-placement .slider-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    animation: scrolling 20s linear infinite;

}

@keyframes scrolling {

    0% {
        transform: translateX(80%);
    }

    100% {
        transform: translateX(-20%);
    }
}

.slider-placement .slider-items img {
    width: 12%;
    margin: 20px;

}
.subtitle-new{
    font-size:20px;
}

.grid-item-4{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 10px;
}

@media(max-width:767px){
    .grid-item-4{
        
        grid-template-columns: 1fr ;
        
    }
}













