:root {
    --primary: #153898;
    --secondary: #EC0B12;
    --third: #BC2626;
    --dark: #333333;
    --gray: #858585;
    --blue: #0081FF;
    --light: #ececec;
    --light-1: #FAF7F2;
    --light-2: #8E8E8E;
}

@font-face {
    font-family: 'SVN-Gilroy';
    src: url('../fonts/svn-gilroy/SVN-Gilroy-Regular.otf');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'SVN-Gilroy';
    src: url('../fonts/svn-gilroy/SVN-Gilroy-Bold.otf');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'SVN-Gilroy Bold';
    src: url('../fonts/svn-gilroy/SVN-Gilroy-Bold.otf');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'SVN-Gilroy';
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: black;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'SVN-Gilroy';
    font-weight: 700;
}

p:last-of-type {
    margin-bottom: 0;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

@media (min-width: 1200px) {

    .container {
        max-width: 1200px;
    }
}

.back-to-top {
    background: var(--primary);
    color: white;
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

.back-to-top:hover {
    background: var(--third);
    color: white;
}

/*** Button Start ***/
.btn {
    transition: .5s;
}

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

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

.btn-md-square {
    width: 44px;
    height: 44px;
}

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

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

.btn-custom {
    width: max-content;
    padding: 8px 37px 8px 16px;
    border-radius: 75px;
    background: var(--blue);
    color: white;
}

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

.btn-custom span.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: white;
}

.images-box {
    position: relative;
    overflow: hidden;
}

.images-box::before {
    content: '';
    display: block;
    padding-top: 65%;
}

.images-box a,
.images-box .img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.images-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*** Topbar Start ***/
.sticky-top {
    transition: 0.5s;
    background: var(--white);
}

.topbar {
    padding: 10px 0;
    background: linear-gradient(180deg, #0055A6 0%, #349CFF 100%);
}

.info-topbar ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-topbar li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-topbar li:not(:last-child)::after {
    content: '';
    width: 1px;
    height: 22px;
    background: #FFFFFF6B;
}

.info-topbar .content {
    font-size: 12px;
}

.info-topbar .content a {
    color: white;
}

.info-topbar__right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
}

.nav-topbar {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-topbar svg {
    width: 20px;
    height: 20px;
}

.nav-topbar a.user svg {
    width: 16px;
    height: 16px;
}

.nav-box {
    position: relative;
    overflow: hidden;
}

.nav-box span {
    display: inline-block;
    color: white;
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}

.nav-box span:last-child {
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(0, 100%);
}

.nav-topbar a {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-topbar a:hover span {
    color: #f9b200;
}

.nav-topbar a:hover span:first-child {
    transform: translate(0, -100%);
}

.nav-topbar a:hover span:last-child {
    transform: translate(0, 0);
}

.content-form {
    background-color: transparent;
    border: none;
}

.searchform {
    position: relative;
}

.searchform-wrapper form {
    margin-bottom: 0;
}

.flex-row {
    -js-display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
}

.flex-row {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.flex-grow {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -ms-flex-negative: 1;
    -ms-flex-preferred-size: auto;
}

.flex-row .flex-col {
    padding-right: 4px;
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal;
}

.searchform-wrapper input[type=text] {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, .09);
    padding: 0 0.75em;
    height: 67px;
    font-size: .97em;
    border-radius: 0;
    max-width: 100%;
    width: 100%;
    vertical-align: middle;
    background-color: rgba(255, 255, 255, .2);
    color: white;
    -webkit-box-shadow: inset 0 1px 2px rgb(0 0 0 / 10%);
    box-shadow: inset 0 1px 2px rgb(0 0 0 / 10%);
    -webkit-transition: color .3s, border .3s, background .3s, opacity .3s;
    -o-transition: color .3s, border .3s, background .3s, opacity .3s;
    transition: color .3s, border .3s, background .3s, opacity .3s;
    border-radius: 99px;
    padding: 0 20px;
}

.searchform input[type=text] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.searchform input[type=text]::placeholder {
    color: white;
    font-size: 20px;
}

.searchform input[type=text]:focus,
.searchform input[type=text]:focus-visible {
    outline: none;
}

.searchform-wrapper .flex-col:last-of-type {
    margin-left: -2.9em;
}

.searchform .icon {
    color: currentColor;
    border-color: transparent;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.searchform .icon i {
    color: white;
}

.lang-toggle {
    position: relative;
    width: 80px;
}

.lang-toggle input {
    display: none;
}

.lang-toggle label {
    background: white;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    position: relative;
    height: 100%;
    padding: 3px;
    box-sizing: border-box;
}

/* Nút trượt */
.lang-toggle label::before {
    content: "";
    position: absolute;
    width: 50%;
    height: calc(100% - 6px);
    background: linear-gradient(180deg, #FF979A 0%, #F62930 100%);
    border-radius: 50px;
    left: 3px;
    transition: all 0.3s ease;
}

/* Text */
.lang-toggle .lang {
    flex: 1;
    text-align: center;
    z-index: 1;
    font-size: 12px;
    color: var(--primary);
    transition: color 0.3s;
}

.lang-toggle .vni {
    color: #fff;
}

/* Khi bật ENG */
.lang-toggle input:checked+label::before {
    left: calc(50% - 3px);
}

.lang-toggle input:checked+label .vni {
    color: #555;
}

.lang-toggle input:checked+label .eng {
    color: #fff;
}

@media (min-width: 992px) {

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .navbar .nav-item ul.sub-menu {
        list-style: none;
        padding: 0;
        position: absolute;
        top: 100%;
        left: 0;
        transition: all .4s ease-in-out;
        overflow: hidden;
        min-width: 250px;
        height: 0;
        background: white;
    }

    .navbar .nav-item:hover ul.sub-menu {
        display: block;
        height: auto;
        box-shadow: 0 2px 2px 0 #0000003b;
    }

    .sub-menu a {
        /*font-size: 16px;*/
        padding: 5px 20px;
        min-height: 32px;
        /* height: 80px; */
        color: black;
        font-weight: 500;
        /*text-transform: capitalize;*/
        display: flex;
        align-items: center;
    }

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

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

/*** Topbar End ***/

/*** Navbar Start ***/

.navbar-main .navbar-brand img {
    width: 300px;
}

.navbar-nav {
    gap: 12px;
}

.navbar-nav .nav-item .nav-link {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
    color: var(--primary);
}

.navbar-nav.phong-ban .nav-item .nav-link,
.navbar-nav.khoa .nav-item .nav-link {
    color: var(--secondary);
}

.navbar-nav .nav-item.dropdown a.dropdown-item {
    text-transform: capitalize;
    font-size: 14px;
}

.navbar .navbar-toggler:focus {
    box-shadow: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active,
.sticky-top.bg-white .navbar .navbar-nav .nav-link:hover,
.sticky-top.bg-white .navbar .navbar-nav .nav-link.active {
    color: var(--secondary);
}

.navbar-nav.phong-ban .nav-item .nav-link:hover,
.navbar-nav.khoa .nav-item .nav-link:hover,
.sticky-top.bg-white .navbar .navbar-nav.phong-ban .nav-item .nav-link.active,
.sticky-top.bg-white .navbar .navbar-nav.khoa .nav-item .nav-link.active {
    color: var(--primary);
}

.nav-item-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sub-menu a:hover {
    color: var(--third);
}

.content-bottom__offcanvas {
    margin: 12px 0 0;
    padding: 16px;
    background: white;
}

.content-bottom__offcanvas h3 {
    font-size: 20px;
    line-height: 26px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: var(--black);
}

.content-bottom__offcanvas ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

@media (min-width: 992px) and (max-width: 1199px) {

    .navbar-nav {
        gap: 12px;
    }

    .navbar-nav .nav-item .nav-link {
        font-size: 13px;
    }
}

@media (max-width: 991px) {

    .navbar .offcanvas {
        background: var(--light);
        max-width: 80%;
    }

    .navbar-nav .nav-item {
        width: 100%;
    }

    .nav-item-menu {
        gap: 24px;
    }

    ul.sub-menu {
        padding-top: 8px;
        padding-left: 0;
        list-style: none;
        display: none;
    }

    ul.sub-menu li:not(:last-child) {
        margin-bottom: 8px;
    }

    .sub-menu a {
        display: block;
        color: black;
        font-weight: 600;
        text-transform: capitalize;
    }

    .offcanvas-header {
        padding: 10px 20px;
        background: white;
        width: 100%;
    }

    .offcanvas-header .btn-close:focus,
    .search-project-frm input[type="text"]:focus {
        box-shadow: none;
    }

    .search-project-frm {
        padding: 1px 10px;
        margin: 10px 0;
        width: 100%;
    }

    .search-project-frm input[type="text"] {
        border: 0;
    }

    .navbar .offcanvas-body {
        padding: 0;
    }

    .navbar .navbar-nav {
        gap: 12px;
        padding: 16px;
        background: white;
    }
}

/*** Navbar End ***/

/*** Carousel Start ***/
.carousel-header {
    background: var(--bg-hero);
    background-size: cover;
}

.carousel-header img {
    width: 100%;
}

.carousel-header .carousel-indicators button {
    position: relative;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid transparent;
    opacity: .2;
}

.carousel-header .carousel-indicators button.active {
    border-color: var(--primary);
    opacity: 1;
}

.carousel-header .carousel-indicators button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    width: 14px;
    height: 14px;
    background: transparent;
}

.carousel-header .carousel-indicators button.active::before {
    background: var(--primary);
}

@media (max-width: 991px) {

    .carousel-header {
        padding: 0;
    }
}

/*** Carousel End ***/

/*** Title Start ***/

.section-title h3 {
    font-size: 28px;
    line-height: 40px;
    text-transform: uppercase;
    letter-spacing: -.16px;
    margin-bottom: 12px;
}

.section-title h3 span {
    color: var(--primary);
}

.section-title p {
    color: var(--black);
    letter-spacing: -.16px;
}

/*** Title End ***/

/*** About Start ***/

.about {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.about-wrapper {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 40px;
    /*padding-top: 40px;*/
}

.about-left {
    position: relative;
    flex: 1 1 0%;
    width: 50%;
}

.about-left::before {
    content: '';
    position: absolute;
    bottom: 0;
    width: 150%;
    right: 16px;
    height: 80%;
    border-radius: 87px 0px 0px 0px;
    background: var(--primary);
}

.about-slider-left {
    width: 100%;
}

.about-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 500ms;
    text-align: center;
}

.about-item .size-full {
    display: block;
    width: 100%;
    height: 100%;
}

.about-item img {
    border-radius: 6px;
    object-fit: cover;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 700ms;
}

.about-title {
    background: white;
    padding: 16px;
    margin: 0;
    color: var(--primary);
    text-transform: capitalize;
    font-size: 18px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 500ms;
}

.about-box-content {
    position: absolute;
    inset: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.about-gradient {
    position: absolute;
    inset: 0;
    transform: translate(0, 100%) scale(1, 1);
    background: linear-gradient(180deg, rgba(236, 11, 18, 0) 49.04%, rgba(236, 11, 18, 0.359423) 65.38%, rgba(0, 0, 0, 0.84) 100%);
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 500ms;
}

.about-box-content .box-content {
    position: relative;
    z-index: 10;
    transform: translate(0, 100%) scale(1, 1);
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 500ms;
}

.about-box-content .box-content a {
    display: block;
    padding: 16px;
    color: white;
}

.about-item:hover .about-title {
    opacity: 0;
    transform: translate(0, 100%) scale(1, 1);
}

.about-item:hover .about-gradient,
.about-item:hover .box-content {
    transform: translate(0, 0);
}

.about-control {
    padding: 18px 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.about-control .nav-slider {
    width: 40px;
    height: 40px;
    border: 0.6px solid #A9A9A9;
    border-radius: 100%;
}

.about-control .nav-slider:hover {
    background: white;
    border-color: var(--secondary);
}

.nav-slider:hover svg path {
    stroke: var(--secondary);
}

.about-right {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
    flex-shrink: 0;
}

.title-wrapper h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    font-size: 24px;
    line-height: 28px;
    text-transform: capitalize;
    margin-bottom: 0;
}

.title-wrapper h6 {
    color: var(--primary);
    line-height: 28px;
    margin-bottom: 0;
}

.title-wrapper h2 label {
    background: linear-gradient(90deg, rgba(188, 38, 38, 1) 0%, rgba(0, 84, 166, 1) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.group-image {
    position: absolute;
    top: 40%;
    left: 80%;
    z-index: -1;
    transform: translate(-50%, -50%) scale(1, 1);
    width: 200px;
    height: 200px;
    opacity: .1;
}

.group-image img {
    display: block;
    position: absolute;
}

.group-image img:first-child {
    top: 0;
    left: 0;
    width: 100%;
    animation: rotation360 10s linear infinite;
}

.group-image img:last-child {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes rotation360 {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(180deg);
    }

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

@media (min-width: 1024px) {

    .about-wrapper {
        flex-direction: row;
    }

    .about-left::before {
        right: 10%;
        height: 100%;
        border-radius: 0 250px 250px 0px;
    }

    .about-slider {
        padding-top: 85px;

    }

    .about-right {
        max-width: 480px;
    }

    .group-image {
        width: 290px;
        height: 290px;
    }
}

@media (max-width: 991px) {

    .about-left {
        width: 100%;
    }

    .about-left::before {
        border-radius: 0 250px 250px 0px;
        right: -6%;
    }
}

@media (max-width: 767px) {

    .about-left {
        width: 100%;
    }

    .title-wrapper h2 {
        font-size: 22px;
    }

    .about-wrapper {
        flex-direction: column-reverse;
    }

}

/*** About End ***/

/*** News Start ***/

.group-title-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #EFEFEF;
    border: 0.3px solid #838383;
    border-radius: 22px;
    padding: 20px 16px;
    margin-bottom: 16px;
}

.button-wrapper .btn-custom {
    background: white;
    color: var(--primary);
    padding: 5px 7px 5px 28px;
    box-shadow: 0px 4px 4px 0px #0000001A;
}

.button-wrapper .btn-custom span.icon {
    background: #D4E0FF;
}

.news-list {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
}

.news-item {
    grid-column: span 6;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    box-shadow: 0px 4px 4px 0px #0000000D;
    border: 0.3px solid #D2D2D2;
    border-radius: 10px;
    overflow: hidden;
}

.news-item.news-large {
    grid-column: span 12;
}

.news-thumb {
    width: 45%;
    border-radius: 10px;
}

.news-thumb::before {
    padding-top: 132%;
}

.news-large .news-thumb::before {
    padding-top: 55%;
}

.news-content {
    flex: 1;
    padding: 10px;
    padding-left: 0;
}

.cat-label {
    color: var(--third);
    text-align: right;
    font-size: 13px;
    line-height: 20px;
    font-style: italic;
    text-transform: capitalize;
    margin-bottom: 12px;
}

.cat-label label {
    border: 0.5px solid var(--secondary);
    border-radius: 10px;
    padding: 3px 16px;
}

.date {
    color: var(--third);
    line-height: 20px;
    font-style: italic;
    margin-bottom: 12px;
}

.date img {
    display: inline-block !important;
    width: auto !important;
}

.news-content h6 {
    line-height: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-content h6 a {
    display: block;
    color: var(--primary);
}

.news-content h6 a:hover {
    color: var(--secondary);
}

.news-content p {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-content a.view {
    margin-top: 8px;
    display: inline-block;
}

.news-large .news-content h6 {
    font-size: 18px;
    -webkit-line-clamp: 1;
}

@media (max-width: 767px) {

    .group-title-button .title-wrapper h2 {
        font-size: 18px;
    }

    .button-wrapper .btn-custom {
        padding-left: 7px;
        font-size: 14px;
    }

    .news-item {
        flex-direction: column;
        grid-column: span 12;
        gap: 12px;
    }

    .news-thumb {
        width: 100%;
    }

    .news-thumb::before {
        padding-top: 80%;
    }

    .news-content {
        padding-left: 10px;
    }
}

.news-right {
    background: #EFEFEF;
    padding: 34px 18px;
    border-radius: 20px;
    border: 0.3px solid #838383;
}

.news-right .title-wrapper h2 {
    color: var(--secondary);
}

.item-news:not(:last-child) {
    border-bottom: 1px solid #153898B2;
    padding-bottom: 3px;
    margin-bottom: 14px;
}

.item-news .news-thumb {
    width: 100%;
    margin-bottom: 20px;
}

.item-news .news-thumb::before {
    padding-top: 60%;
}

.item-news .news-content {
    padding: 0;
}

.cat-second {
    color: var(--primary);
    text-transform: inherit;
    margin-bottom: 3px;
}

.cat-second label {
    border-color: var(--primary);
}

.item-news .date {
    margin-bottom: 10px;
}

.item-news .news-content p {
    font-size: 13px;
}

.button-news .btn-custom {
    background: white;
    color: var(--third);
    padding: 6px;
    padding-left: 20px;
}

.button-news .btn-custom span.icon {
    background: #FFE2E2;
}

.button-news .btn-custom img {
    filter: brightness(0) saturate(100%) invert(22%) sepia(41%) saturate(4272%) hue-rotate(342deg) brightness(89%) contrast(97%);
}

/*** News End ***/

/*** Study Start ***/

.study-box {
    background: url('../img/bg-study.jpg') center no-repeat;
    background-size: cover;
    padding: 24px;
    border-radius: 20px;
    color: white;
    position: relative;
    margin-bottom: -130px;
}

.study-box h3 {
    color: #FAE9EA;
    font-size: 28px;
    line-height: 28px;
    text-transform: uppercase;
    margin-bottom: 16px;
    padding-left: 93px;
}

.study-box .title-wrapper h2 {
    color: white;
}

.study-box .title-wrapper img {
    filter: brightness(0) invert(1);
}

.study-box h4 {
    line-height: 31px;
    margin-bottom: 0;
}

.study-box p {
    line-height: 28.5px;
}

.group-image-stu {
    text-align: center;
}

.group-image-stu img {
    width: 178px;
}

.group-image-stu img:first-child {
    filter: brightness(0) invert(1);
    animation: rotation360 10s linear infinite;
}

.group-image-stu img:last-child {
    width: 128px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media (max-width: 991px) {

    .study-box h3 {
        padding-left: 16px;
        font-size: 18px;
    }

    .study-box .title-wrapper h2 {
        font-size: 22px;
    }

    .study-box h4 {
        font-size: 20px;
        line-height: 24px;
    }

    .group-image-stu img:last-child {
        width: 100px;
    }
}

@media (max-width: 767px) {

    .study-box h3 {
        padding-left: 0;
    }
}

/*** Study End ***/


/*** Event  Start ***/

.event {
    background: url('../img/bg-event.jpg') center no-repeat;
    background-size: cover;
    padding: 112px 0 0;
    overflow: hidden;
}

.event-content,
.event-content h2 {
    color: white;
}

.event-content h2 {
    margin-bottom: 16px;
}

.event-content img {
    filter: brightness(0) invert(1);
}

.event-list {
    position: relative;
    padding: 32px 0;
}

.event-list::before {
    content: '';
    position: absolute;
    bottom: 0;
    width: 150%;
    left: -16px;
    height: 100%;
    border-radius: 250px 0px 0px 250px;
    background: white;
}

.event-thumb::before {
    padding-top: 100%;
}

.event-wrapper {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 6px 6px 9px 16px;
    width: 95%;
    margin: -75px auto 0;
    transition: all .5s ease;
}

.event-item:hover .event-wrapper {
    width: 100%;
    background: #D9EAFF;
}

.event-item:hover .cat-second label {
    color: var(--third);
    border-color: var(--third);
    background: white;
}

.event-wrapper h6 {
    font-weight: 600;
    font-size: 15px;
    line-height: 20px;
}

.event-wrapper a {
    display: block;
    color: var(--primary);
}

.event-wrapper a:hover {
    color: var(--third);
}

.event-wrapper p {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (min-width: 1024px) {

    .event-list::before {
        left: 10%;


    }
}

/*** Event End ***/

/*** Count Start ***/

.count-item {
    background: #E3F6FD;
    border: 0.3px solid #153898;
    border-radius: 10px;
    padding: 6px 13px 48px;
    height: 100%;
}

.count-item:hover {
    background: var(--primary);
    color: white;
}

.count-top {
    text-align: right;
}

.count-top img:last-child,
.count-item:hover .count-top img:first-child {
    display: none;
}

.count-item:hover .count-top img:last-child {
    display: block;
    margin-left: auto;
}

.count-middle h2,
.count-middle h4 {
    color: var(--primary);
    font-size: 22px;
}

.count-middle h2 {
    font-size: 42px;
    line-height: normal;
}

.count-item:hover h2,
.count-item:hover h4 {
    color: white;
}

.count-item:hover h2 {
    text-shadow: -1px -1px 0 var(--secondary), 1px -1px 0 var(--secondary), -1px 1px 0 var(--secondary), 1px 1px 0 var(--secondary);
    transform: rotateZ(-3.74deg);
}

/*** Count End ***/

/*** Training Start ***/

.training-enrollment {
    /*background: linear-gradient(1.8deg, #8ED8F8 71.85%, #FFFFFF 96.7%);*/
    background: url('../img/bg-enrollment.jpg') center no-repeat;
    background-size: cover;
}

.enrollment-content .title-wrapper h2 {
    text-transform: none;
}

.enrollment-content p {
    margin-bottom: 48px;
}

.enrollment-item {
    background: rgba(235, 245, 255, 1);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 28px;
    border-radius: 5px;
    border: 0.3px solid rgba(122, 140, 188, 1);
    box-shadow: 0px 4px 4px 0px #0000001A;
    padding: 20px;
}

.enrollment-item:not(:last-child) {
    margin-bottom: 16px;
}

.enrollment-thumb {
    width: 15%;
}

.enrollment-thumb img {
    width: 100%;
}

.enrollment-thumb::before {
    padding-top: 50%;
}

.enrollment-wrapper {
    flex: 1;
}

.enrollment-wrapper h4 {
    line-height: 28px;
}

.enrollment-wrapper p {
    margin-bottom: 16px;
}

.training-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.training-wrapper .title-wrapper h2 {
    color: var(--third);
    text-transform: none;
}

@media (max-width: 767px) {

    .enrollment-thumb {
        width: 35%;
    }

    .enrollment-item {
        gap: 16px;
    }

    .training-wrapper .title-wrapper h2 {
        align-items: flex-start;
    }

    .training-wrapper .button-wrapper {
        display: none;
    }
}

/*** Training End ***/

/*** Training Program Start ***/

.training-program {
    background: url('../img/bg-training.png') center no-repeat;
    background-size: cover;
}

.item-training {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    grid-column: span 4;
    box-shadow: 0px 0px 8px 0px rgb(217 230 255);
    background-color: #f7f7f7;
}

.item-training::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    top: 100%;
    left: 0;
    background: rgba(152, 21, 21, 0.76);
    opacity: 0;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 700ms;
    /* border-radius: 10px; */
    overflow: hidden;
}

.item-training:hover::before {
    /* top: 0;
    opacity: 1; */
}

.item-training .training-content {
    width: 100%;
    text-align: center;
    /* color: white; */
    /* position: absolute; */
    position: relative;
    z-index: 2;
    /* top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); */
    padding: 20px 20px 25px;
}

.training-content>.icon {
    display: inline-block;
    padding: 16px;
    /* background: rgba(255, 255, 255, 0.2); */
    border-radius: 10px;
    margin-bottom: 6px;
}

.training-content .icon img {
    filter: brightness(0%);
    max-height: 70px;
    transition: all 0.4s ease-in-out;
}

.item-training:hover .training-content .icon img {
    filter: unset;
}

.training-content h5 {
    text-transform: uppercase;
    margin-bottom: 6px;
}

.training-content h5 a {
    display: block;
    /* color: #0254a6; */
    transition: all 0.4s ease-in-out;
}

.item-training:hover .training-content {
    color: #fff;
}

.item-training:hover .training-content h5 a {
    color: #fff;
}

/*.training-content p {
    margin-bottom: 12px;
}*/

@media (max-width: 991px) {

    .item-training {
        grid-column: span 6;
    }

    .training-content>.icon {
        padding: 8px;
    }

    .training-content p {
        font-size: 12px;
        /*margin-bottom: 8px;*/
    }
}

@media (max-width: 767px) {

    .item-training {
        grid-column: span 12;
    }
}

/*** Training Program End ***/

/*** Program Start ***/

.program {
    background: url('../img/bg-program.jpg') center no-repeat;
    background-size: cover;
}

.program .title-wrapper h2 {
    color: white;
}

.program .title-wrapper img {
    filter: brightness(0) invert(1);
}

.icon-box {
    padding: 21px;
    background: #E3F6FD;
    border-radius: 10px;
    height: 100%;
    transition: all .3s ease;
}

.icon-box:hover {
    background: #FFBDBD;
    margin-top: -16px;
}

.icon-box-text {
    margin: 13px 0;
}

.icon-box-img .icon {
    background: white;
    border-radius: 50%;
    width: 99px;
    height: 99px;
    padding: 24px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0px 4px 4px 0px #00000026;
}

.icon-box-text h4 {
    text-transform: uppercase;
    color: var(--primary);
}

.icon-box-button .btn-custom {
    background: transparent;
    border-color: #0081FF;
    color: #0081FF;
}

.icon-box-button .btn-custom:hover {
    background: #0081FF;
    color: white;
}

.icon-box-button .btn-custom span.icon {
    background: #8ED8F8;
}

.icon-box-button .btn-custom:hover span.icon {
    background: white;
}

/*** Program End ***/

/*** Gallery Start ***/

.gallery-left {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
}

.gallery-left .gallery-item {
    grid-column: span 4;
}

@media (max-width: 767px) {

    .gallery-left .gallery-item {
        grid-column: span 12;
    }
}

.gallery-left .gallery-large {
    grid-column: span 12;
}

.gallery-item a {
    display: block;
    position: relative;
    overflow: hidden;
}

.gallery-thumb,
.gallery-item a>img {
    border-radius: 10px;
}

.gallery-thumb::before {
    padding-top: 57%;
}

.video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.detail-icon {
    position: absolute;
    top: 100%;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    height: 100%;
    background: #153898CC;
    padding: 10px;
    opacity: 0;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 700ms;
    border-radius: 10px;
    overflow: hidden;
}

.detail-icon .icon {
    background: white;
    color: var(--third);
    display: inline-block;
    width: max-content;
    padding: 7px 37px 7px 14px;
    border-radius: 75px;
    font-weight: 600;
}

.detail-icon span:first-child {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    background: #F88E8E;
}

.detail-icon span:first-child img {
    filter: brightness(0) saturate(100%) invert(22%) sepia(41%) saturate(4272%) hue-rotate(342deg) brightness(89%) contrast(97%);
}

.gallery-item a:hover .detail-icon {
    top: 0;
    opacity: 1;
}

.gallery-right .gallery-item:not(:last-child) {
    margin-bottom: 16px;
}

/*** Gallery End ***/

/*** Work start ***/

.work {
    background: url('../img/bg-work.jpg') center no-repeat;
    background-size: cover;
}

.work-list-item {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
}

.work-item {
    grid-column: span 6;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    background: white;
    border: 0.3px solid #AEAEAE;
    border-radius: 10px;
    overflow: hidden;
}

.work-large {
    grid-column: span 12;
    gap: 24px;
}

.work-thumb {
    width: 45%;
    border-radius: 10px;
    overflow: hidden;
}

.work-thumb img {
    height: 100%;
    object-fit: cover;
}

.work-large .work-thumb {
    width: 50%;
}

.work-content {
    flex: 1;
    padding: 14px;
    padding-left: 0;
}

.work-box-content {
    margin: 36px 0;
}

.work-content h6 {
    font-size: 18px;
    line-height: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.work-content h6 a {
    color: var(--primary);
    display: block;
}

.work-content h6 a:hover {
    color: var(--secondary);
}

.work-content p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.work-content .btn-custom img {
    width: auto !important;
}

.work-slider .owl-dots {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 34px;
}

.work-slider .owl-dots .owl-dot {
    position: relative;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid var(--primary);
    opacity: .5;
}

.work-slider .owl-dots .owl-dot.active {
    opacity: 1;
}

.work-slider .owl-dots .owl-dot span {
    width: 14px;
    height: 14px;
    background: transparent;
    border-radius: 50%;
    display: block;
    margin: 0 auto;
    padding: 5px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.work-slider .owl-dots .owl-dot.active span {
    background: var(--primary);
}

@media (max-width: 767px) {

    .work-item {
        grid-column: span 12;
        flex-direction: column;
    }

    .work-list-item .work-thumb {
        width: 100%;
    }

    .work-content {
        padding-left: 10px;
    }
}

/*** Work End ***/

/*** Research start ***/

.research-slider {
    padding-bottom: 70px;
}

.research-slider .swiper-slide {
    background-position: center;
    background-size: cover;
    width: 300px;
    height: auto;
    aspect-ratio: 16 / 9;
}

.research-picture {
    position: relative;
    overflow: hidden;
    aspect-ratio: 780 / 500;
    width: 100%;
    border-radius: 12px;
}

.research-picture::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(359.55deg, #153898 6.35%, rgba(21, 56, 152, 0) 94.06%);
    transition-property: transform;
    transition-duration: 700ms;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.research-slider .swiper-slide-active .research-picture::before {
    opacity: 0;
    transform: translateY(100%);
}

.research-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 700ms;
}

.research-slider .swiper-slide:hover img {
    transform: translate(0, 0) scale(1.1, 1.1);
}

.research-title {
    position: absolute;
    bottom: -35%;
    left: 50%;
    transform: translate(-50%, 0);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 20px;
    background: white;
    width: 90%;
    padding: 8px;
    box-shadow: 0px 4px 4px 0px #00000026;
    opacity: 0;
    transform: translateY(100%) translateX(-50%);
    transition: all .5s ease-in-out;
    text-align: center;
}

.research-date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-style: italic;
    color: var(--third);
}

.research-title h6 {
    font-size: 18px;
    line-height: normal;
    margin-bottom: 0;
}

.research-title h6 a {
    color: var(--primary);
    display: block;
}

.research-title h6 a:hover {
    color: var(--secondary);
}

.research-title p {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.research-slider .swiper-slide-active .research-title {
    opacity: 1;
    transform: translateY(0) translateX(-50%);
}

.navigation-wrapper {
    position: absolute;
    z-index: 10;
    top: -35%;
    left: 0;
    right: 0;
    transform: translate(0, -50%);
}

.nav-group-slider {
    max-width: 880px;
    padding-left: 16px;
    padding-right: 16px;
    margin-left: auto;
    margin-right: auto;
}

.nav-group-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-research-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: white;
    width: 44px;
    height: 44px;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease-in-out;
}

.nav-research-slider:hover {
    background: var(--primary);
}

.nav-research-slider:hover svg {
    filter: brightness(0) invert(1);
}

.swiper-button-custom-prev {
    transform: translate(-8px, 0);
}

.swiper-button-custom-prev:hover {
    transform: translate(-12px, 0);
}

.swiper-button-custom-next {
    transform: translate(8px, 0);
}

.swiper-button-custom-next:hover {
    transform: translate(12px, 0);
}

.nav-research-slider svg {
    width: 28px;
    height: 28px;
    display: block;
}

.research-slider:hover .nav-research-slider {
    opacity: 1;
    visibility: visible;
}

@media (min-width: 640px) {

    .navigation-wrapper {
        top: 45%;
    }

    .nav-group-slider {
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media (min-width: 768px) {

    .research-slider .swiper-slide {
        width: 500px;
    }

    .research-title {
        bottom: -10%;
        width: 80%;
        padding: 16px;
    }
}

@media (min-width: 1024px) {

    .research-slider .swiper-slide {
        width: 780px;
    }

    .nav-group-slider {
        padding-left: 32px;
        padding-right: 32px;
    }
}

@media (max-width: 767px) {

    .research-title h6 {
        font-size: 14px;
    }
}

/*** Research End ***/

/*** Partner start ***/

.partner-wrapper {
    margin-top: 32px;
}

.partner-slider:first-child {
    border-width: 1px 0px 1px 0px;
    border-style: solid;
    border-color: #E8EAF0;
}

.partner-slider.second {
    border-bottom: 1px solid #E8EAF0;
}

.partner-item {
    padding: 20px 30px;
}

.partner-item img {
    max-width: 200px;
    max-height: 80px;
    object-fit: contain;
}

/*** Partner End ***/

/*** Contact start ***/

.contact {
    background: url('../img/bg-contact.jpg') no-repeat;
    background-size: cover;
    color: white;
}

.title-contact {
    margin-bottom: 42px;
}

.title-contact h6 {
    font-size: 18px;
    margin-bottom: 0;
}

.title-contact h4 {
    font-size: 22px;
    margin-bottom: 0;
}

.sign-form button {
    background: var(--third);
    color: white;
    width: 100%;
    text-transform: uppercase;
    box-shadow: 4px 4px 4px 0px #00000026;
    border-radius: 10px;
}

.sign-form button:hover {
    color: white;
}

@media (min-width: 768px) and (max-width: 991px) {

    .title-contact h4 {
        font-size: 20px;
    }
}

@media (max-width: 767px) {

    .contact {
        background-position: right;
    }
}

/*** Contact End ***/

/*** footer start ***/

.footer-main {
    background: #0054A6;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.social-icon a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: var(--primary);
    border-radius: 50%;
    width: 45px;
    height: 45px;
}

@media (max-width: 767px) {

    .social-icon {
        justify-content: flex-start;
    }
}

.footer-wrapper {
    border-top: 0.3px solid #ffffffcc;
    padding-top: 21px;
    margin-top: 23px;
}

.footer-item h6 {
    color: #B6E8FF;
    text-transform: uppercase;
    font-size: 15px;
}

.footer-item-info h6 {
    text-transform: inherit;
}

.footer-item ul {
    list-style: none;
    padding-left: 13px;
}

.footer-item li {
    display: flex;
    align-items: center;
}

.footer-item li,
.footer-item a {
    color: white;
    line-height: 24px;
}

.footer-item a {
    display: block;
    font-weight: 300;
}

.footer-bottom {
    background: #013D78;
    color: #B6E8FF;
    padding: 12px 0 9px;
}

/*** Footer End ***/

/* ----------------------------------- Other Pages Styles ----------------------------------- */

/*---------------------
  About banner
-----------------------*/

.banner {
    min-height: 646px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.about-banner {
    background: url('../img/bg-about.jpg') center no-repeat;
    background-size: cover;
}

.banner-box {
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8));
    padding: 30px 38px;
    border-radius: 20px;
    box-shadow: 0px 4px 4px 0px #00000026;
    border: 1px solid;
    border-image-source: linear-gradient(255.96deg, rgba(255, 255, 255, 0.3) 0%, rgba(250, 250, 250, 0.8) 100%);
    color: #223568;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: '>';
}

.nav-bread {
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 600;
}

.nav-bread a,
.nav-bread .breadcrumb-item.active {
    color: var(--primary);
}

.banner-box h1 {
    font-size: 42px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 37px;
}

.stu-about {
    background: #DAF2FC;
}

.image-group {
    position: relative;
    text-align: center;
    width: 172px;
    height: 172px;
    margin: 0 auto 36px;
}

.image-group img:first-child {
    animation: rotation360 10s linear infinite;
}

.image-group img:last-child {
    width: 124px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.about-count {
    background: white;
    color: var(--primary);
    border-radius: 20px;
    padding: 20px 24px;
    box-shadow: 0px 4px 4px 0px #00000026;
    position: relative;
}

.about-count .item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.about-count .item:not(:last-child) {
    margin-bottom: 16px;
}

.about-count h4 {
    width: 77px;
    color: var(--third);
    line-height: 28px;
    margin-bottom: 0;
}

.about-count p {
    width: 224px;
    font-size: 16px;
    line-height: 28px;
}

.about-image {
    overflow: hidden;
    border: 1px solid;
    border-image-source: linear-gradient(90.07deg, #FFBABA 0.05%, #3C9FFF 99.94%);
    border-radius: 20px;
    box-shadow: 0px 4px 12.6px 0px #1538987A;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-caption {
    background: white;
    color: var(--primary);
    padding: 5px 0;
    border-radius: 20px;
    box-shadow: 0px 4px 4px 0px #0000000D;
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    margin-top: 12px;
}

.image-caption span {
    color: var(--third);
}

.about-menu {
    border: 1px solid var(--primary);
    border-radius: 10px;
    padding: 15px 13px 33px;
}

.about-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-menu li:not(:last-child) {
    margin-bottom: 24px;
}

.about-menu a {
    text-transform: uppercase;
    display: block;
    background: white;
    padding: 24px 16px;
    border-radius: 10px;
    box-shadow: 0px 4px 4px 0px #00000040;
    color: var(--primary);
    font-size: 24px;
    font-weight: 600;
    text-align: center;
}

.about-menu li.active a,
.about-menu a:hover {
    background: #FFC5C5;
}

.why-item a {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    display: block;
    color: white;
}

.why-thumb::before {
    padding-top: 68.6%;
}

.why-item.large .why-content {
    background: linear-gradient(rgba(250, 250, 250, 0.3) 100%);
    box-shadow: 0px 100px 200px 50px #53537A1A;
    backdrop-filter: blur(20px);
    padding: 34px 22px 17px;
    border-radius: 20px;
    width: 95%;
    transition: all .3s ease;
}

.why-item.large a:hover .why-content {
    bottom: 27px;
    opacity: 1;
}

.why-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 19px;
    margin-top: 16px;
}

.why-content li {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--primary);
    padding: 3px 10px;
    line-height: 29px;
}

.why-item.large .detail {
    position: absolute;
    top: 10px;
    right: 22px;
}

.detail {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    box-shadow: 0px 4px 4px 0px #00000026;
    background: white;
}

.why-item.sm:not(:last-child) {
    margin-bottom: 12px;
}

.why-item.sm .why-thumb::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(270deg, rgba(21, 56, 152, 0) 0%, rgba(21, 56, 152, 0.8) 99.31%);
}

.why-item.sm .images-box::before {
    padding-top: 45%;
}

.why-item.sm .why-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 0 16px 18px;
}

.why-item.sm .detail {
    position: absolute;
    top: 15px;
    right: 8px;
    z-index: 1;
}

.why-content h4 {
    font-size: 20px;
}

.education {
    background: url('../img/bg-education.jpg') center no-repeat;
    background-size: cover;
    box-shadow: 0px 4px 4px 0px #00000026;
}

.education-item {
    background: linear-gradient(180deg, #ACE0FF 0%, #8BCBF1 102.71%);
    height: 100%;
    border-radius: 20px;
    border: 1px solid white;
    box-shadow: 0px 4px 4px 0px #00000026;
    padding: 32px 38px;
}

.education-box-wrapper {
    position: relative;
    overflow: hidden;
    border-left: 3px solid var(--primary);
    border-bottom: 3px solid var(--primary);
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    height: 100%;
}

.education-header {
    background: var(--primary);
    padding: 16px 24px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    box-shadow: 0px 4px 4px 0px #00000026;

}

.education-item:hover .education-header {
    background: var(--third);
}

.education-item:hover .education-box-wrapper {
    border-left-color: var(--third);
    border-bottom-color: var(--third);
}

/*.education-header::before {
    content: '';
    position: absolute;
    top: 83px;
    left: 0;
    width: 0;
    height: 0;
    border-top: 32px solid transparent;
    border-left: 32px solid var(--primary);
    transform: rotate(90deg);
}*/

.education-header h4 {
    background: white;
    color: var(--primary);
    text-align: center;
    text-transform: uppercase;
    border-radius: 30px;
    margin-bottom: 0;
    padding: 12px 0;
}

.education-content {
    padding: 16px 0 60px 16px;
    line-height: 28px;
}

.education-logo {
    width: 71px;
    position: absolute;
    right: 0;
    bottom: 16px;
}

.core-value {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    color: white;
    margin-top: 88px;
}

.core-item {
    max-width: 33%;
    flex: 0 0 33%;
}

.core-middle {
    margin: 0 auto;
    text-align: center;
}

.core-title h4 {
    margin-bottom: 0;
}

.core-middle-wrapper {
    position: relative;
    background: var(--primary);
    display: inline-block;
    border: 0.5px solid white;
    box-shadow: 0px 4px 4px 0px #FFFFFF40;
    border-radius: 140px;
    padding: 38px 44px 81px;
}

.value-item {
    padding-bottom: 8px;
    border-bottom: 1px dashed white;
    position: relative;
}

.value-item::before {
    content: '';
    width: 10px;
    height: 10px;
    position: absolute;
    border-radius: 100%;
    background: white;
    bottom: -5px;
}

.core-left .value-item::before {
    right: 0;
}

.core-right .value-item::before {
    left: 0;
}

.value-item:not(:last-child) {
    margin-bottom: 80px;
}

.history {
    background: url('../img/bg-history.jpg') center no-repeat;
    background-size: cover;
}

.timeline-img {
    position: relative;
    z-index: 2;
    width: 162px;
    height: 162px;
    margin: 0 auto;
    object-fit: cover;
}

.timeline-img::before {
    content: '';
    background: url('../img/about/line-border.png') center no-repeat;
    background-size: cover;
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.timeline-img img {
    padding: 15px;
}

.timeline-date {
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: .64px;
    background: linear-gradient(87.75deg, #0C3D82 29.56%, #529AFF 98.11%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 24px 0 8px;
}

.timeline-text {
    font-size: 13px;
    line-height: 20px;
    height: 80px;
    visibility: hidden;
}

.timeline-item:hover .timeline-text {
    visibility: visible;
}

.slider-wrapper .owl-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
}

.slider-wrapper .owl-dots .owl-dot {
    position: relative;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid var(--primary);
    opacity: .5;
}

.slider-wrapper .owl-dots .owl-dot.active {
    opacity: 1;
}

.slider-wrapper .owl-dots .owl-dot span {
    width: 14px;
    height: 14px;
    background: transparent;
    border-radius: 50%;
    display: block;
    margin: 0 auto;
    padding: 5px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.slider-wrapper .owl-dots .owl-dot.active span {
    background: var(--primary);
}

.our-people {
    background: #EDF6FF;
}

.nav-scroll {
    margin-bottom: 35px;
}

.nav-people-wrapper .nav-tabs {
    gap: 32px;
}

.nav-people-wrapper .nav-tabs li .nav-link {
    border: none;
    font-weight: 700;
    font-size: 18px;
    line-height: 30px;
    color: black;
}

.nav-people-wrapper .nav-tabs li .nav-link.active {
    background-color: transparent;
    border-bottom: 4px solid var(--primary);
    color: var(--primary);
}

.leader-thumb {
    border-radius: 10px;
    border: 0.5px solid #CACACA;
    margin: 0 11px;
}

.leader-thumb::after {
    content: '';
    background: linear-gradient(180deg, rgba(21, 56, 152, 0) 0%, rgba(21, 56, 152, 0.2) 100%);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.leader-thumb::before {
    padding-top: 115%;
}

.leader-item {
    position: relative;
}

.leader-item:hover .leader-thumb::after {
    opacity: 1;
}

.leader-content {
    text-align: center;
    background: white;
    border-radius: 10px;
    box-shadow: 0px 4px 4px 0px #00000026;
    padding: 10px 0;
    width: 100%;
    position: absolute;
    bottom: 11px;
    left: 0;
}

.public-item {
    border: 0.5px solid var(--primary);
    border-radius: 20px;
    box-shadow: 0px 4px 4px 0px #00000026;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
    padding: 24px 50px;
}

.public-thumb {
    width: 10%;
}

.public-content {
    flex: 1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.public-box-content h5 {
    margin-bottom: 0;
}

.public-box-content h5 a {
    color: var(--primary);
    display: block;
}

@media (min-width: 991px) {

    .about-count {
        margin-right: -110px;
    }
}

@media (min-width: 768px) {

    .why-item.large .why-content {
        position: absolute;
        bottom: -200px;
        left: 50%;
        transform: translateX(-50%);
        opacity: 0;
    }
}

@media (max-width: 991px) {

    .banner-box {
        padding-left: 24px;
        padding-right: 24px;
    }

    .about-count p {
        width: auto;
    }

    .education-header {
        padding-left: 12px;
        padding-right: 12px;
    }

    .public-item {
        padding-left: 24px;
        padding-right: 24px;
    }

    .public-content {
        flex-wrap: wrap;
    }

    .public-box-content {
        max-width: 90%;
    }

    .public-content .detail {
        max-width: 10%;
    }
}

@media (max-width: 767px) {

    .banner-box h1 {
        font-size: 32px;
        margin-bottom: 24px;
    }

    .why-item.large a {
        color: var(--primary);
    }

    .why-item.large .why-content {
        background: white;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        width: 100%;
    }

    .why-content ul {
        color: white;
    }

    .why-content h4 {
        font-size: 18px;
    }

    .why-item.sm .why-content p {
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .education {
        background: linear-gradient(179.17deg, #0054A6 0.81%, #649AD3 47.07%, #0054A6 101.05%);
    }

    .core-value {
        gap: 24px;
    }

    .core-item {
        max-width: 100%;
        flex: 0 0 100%;
    }

    .value-item:not(:last-child) {
        margin-bottom: 24px;
    }

    .nav-scroll {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        white-space: nowrap;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar;
    }

    .nav-scroll ul {
        flex-wrap: nowrap;
    }

    .public-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .public-thumb {
        width: 100%;
    }

    .public-content .detail {
        display: none;
    }

    .public-box-content {
        max-width: 100%;
    }
}

/*---------------------
  News
-----------------------*/

.wrapper-sidebar {
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid #F3F4F6;
    margin-bottom: 30px;
}

.wrapper-title {
    background: var(--primary);
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    padding: 15px 21px;
    font-size: 16px;
}

.wrapper-nav ul {
    list-style: none;
    padding: 9px 16px;
    margin: 0;
}

.wrapper-nav li a {
    display: block;
    padding: 9px 13px 11px;
    color: var(--primary);
}

.news-sidebar:not(:last-child) {
    margin-bottom: 27px;
}

.news-sidebar .other,
.news-wrapper-box .other {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 18px;
}

.news-sidebar .icon,
.news-wrapper-box .icon,
.units-item .icon {
    display: inline-block;
    background: #E3F6FD;
    border-radius: 12px;
    padding: 8px;
}

.news-sidebar h5 {
    margin-bottom: 0;
    line-height: 28px;
    color: var(--primary);
    text-transform: uppercase;
}

.item-new {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    border: 1px solid #F3F4F6;
    border-radius: 12px;
    box-shadow: 0px 1px 2px 0px #0000000D;
    padding: 11px 13px;
}

.item-new:not(:last-child) {
    margin-bottom: 8px;
}

.new-thumb {
    width: 30%;
    border-radius: 8px;
}

.new-thumb::before {
    padding-top: 85%;
}

.new-content {
    flex: 1;
    padding-left: 10px;
}

.date-cat {
    margin-bottom: 4px;
}

.date-cat span,
.date-view span {
    font-size: 12px;
    line-height: 16px;
    color: #6B7280;
}

.date-cat span:nth-child(2) {
    display: inline-block;
    background: var(--secondary);
    color: white;
    padding: 5px 9px;
    margin-left: 7px;
    border-radius: 30px;
}

.new-content h6 {
    font-weight: 500;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.new-content h6 a {
    display: block;
    color: var(--dark);
}

.new-content h6 a:hover {
    color: var(--primary);
}

.category-item {
    display: inline-block;
    margin: 4px 2px;
}

.category-item a {
    padding: 8px 12px;
    background: #E3F6FD;
    border-radius: 30px;
    color: var(--primary);
    display: block;
}

.service-item {
    padding: 26px 17px;
}

.service-item:not(:last-child) {
    border: 1px solid #F3F4F6;
}

.service-item a {
    display: block;
    color: var(--primary);
    font-size: 13px;
    margin-bottom: 20px;
}

.date-view {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.social-bottom {
    background: #F9FAFB;
    padding: 14px 7px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.social-item a {
    display: flex;
    align-items: center;
    gap: 6px;
}

.social-item .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--blue);
}

.social-item .text {
    background: var(--blue);
    color: white;
    padding: 8px 10px;
    box-shadow: 0px 4px 4px 0px #00000040;
    border-radius: 8px;
    display: inline-block;
}

.social-item:last-child .icon,
.social-item:last-child .text {
    background: var(--secondary);
}

.news-wrapper-box .breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    content: '/';
}

.news-wrapper-box .breadcrumb a {
    font-weight: 700;
    color: #4B5563;
}

.news-wrapper-box .breadcrumb .breadcrumb-item.active {
    color: var(--primary);
}

.listNews .news-item:not(:last-child) {
    margin-bottom: 20px;
}

.page-navigation {
    margin-top: 40px;
}

.page-navigation ul {
    gap: 12px;
    margin-bottom: 0;
}

.page-navigation .page-link {
    border-radius: 50% !important;
    border-color: transparent;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #374151;
    transition: inherit;
}

.page-navigation .disabled>.page-link,
.page-navigation .page-link.disabled,
.page-navigation .page-item:last-child .page-link {
    background-color: white;
    border-color: var(--primary);
    color: #6B7280;
}

.page-navigation .active>.page-link,
.page-navigation .page-link.active,
.page-navigation a.page-link:hover,
.page-navigation .page-item:last-child .page-link:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
}

/*---------------------
  Units
-----------------------*/

.units {
    background: #CEE7FF url('../img/bg-units.png') center no-repeat;
    background-size: cover;
}

.box-title-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.box-title-wrapper h6 {
    position: relative;
    padding-left: 12px;
}

.box-title-wrapper h6::after {
    content: '';
    position: absolute;
    left: 0;
    background: rgba(120, 152, 217, 0.44);
    width: 1px;
    height: 100%;
}

.units-item {
    background: rgba(235, 245, 255, 1);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.units-content {
    padding: 16px;
}

.units-hover {
    height: 100%;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 700ms;
}

.units-hover::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    top: 100%;
    left: 0;
    background: rgba(0, 129, 255, .5);
    opacity: 0;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 700ms;
}

.units-item:hover .units-hover::before {
    top: 0;
    opacity: 1;
}

.units-item:hover .units-hover {
    opacity: 1;
    visibility: visible;
}

.units-hover a {
    height: 100%;
    display: block;
    color: white;
}

.units-img {
    height: 100%;
}

.units-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.units-box {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.units-box .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: white;
    margin: 0 auto;
}

.units-box .icon img {
    width: 24px;
    height: 24px;
}

.units-content h5 {
    font-weight: 600;
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 18px;
}

.units-item h5 a {
    color: black;
    display: block;
}

.units-item p {
    font-size: 13px;
    line-height: 20px;
    margin-bottom: 16px;
}

.units-item ul,
.units-description ul {
    list-style: none;
    padding: 0;
    margin-bottom: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.units-item li,
.units-description li {
    position: relative;
    background: #E6ECFF;
    color: var(--primary);
    border: 1px dashed var(--primary);
    border-radius: 14px;
    padding: 2px 16px;
    font-size: 15px;
}

.units-item li::before,
.units-description li::before {
    content: '\f111';
    font-family: 'Font Awesome 6 Pro';
    font-weight: 700;
    font-size: 5px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 8px;
    color: #F39C12;
}

.units-wrapper {
    border-radius: 20px;
    margin-top: 100px;
    padding: 25px 50px;
}

.scroll-mobile {
    box-shadow: 0px 4px 4px 0px #00000026;
    border-radius: 10px;
    margin-bottom: 12px;
}

.scroll-mobile .nav-tabs {
    justify-content: space-between;
}

.nav-wrapper .nav-tabs .nav-link {
    padding: 15px 63px;
    background: #F6F9FD;
    color: var(--primary);
    border-radius: 10px;
    font-weight: 600;
    font-size: 22px;
    line-height: 28px;
}

.nav-wrapper .nav-tabs .nav-link.active {
    border-color: transparent;
    background: var(--primary);
    color: white;
}

.nav-wrapper .nav-tabs .nav-link.active img {
    filter: brightness(0) invert(1);
}

.units-image {
    width: 20%;
}

.units-image img {
    width: 100%;
}

.units-description {
    background: #D0EAFF;
    border-radius: 20px;
    box-shadow: 0px 4px 4px 0px #0000001A;
    padding: 34px 34px 17px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.units-description li {
    background: #E6ECFF;
    border: none;
}

.units-description .units-content {
    padding: 0;
    flex: 1;
}

.units-description p {
    margin-bottom: 16px;
}

.item-units {
    border-width: 1px;
    border-top-width: 4px;
    border-style: solid;
    border-color: var(--primary);
    border-radius: 8px;
    padding: 24px 11px 16px;
    height: 100%;
}

.item-units>.icon {
    background: var(--primary);
    display: inline-block;
    border-radius: 50%;
    padding: 15px;
}

.item-units h5 {
    font-weight: 600;
    margin: 15px 0 13px;
}

.item-units p {
    line-height: 28px;
}

.bottom-button {
    border-top: 1px solid #EEEEEE;
    padding-top: 10px;
    margin-top: 12px;
}

.bottom-button .btn-custom {
    background: #E7F1FD;
    box-shadow: 0px 4px 4px 0px #00000026;
    color: var(--primary);
}

.bottom-button .btn-custom:hover {
    background: var(--primary);
    color: white;
}

.bottom-button .btn-custom span.icon {
    padding: 0;
}

@media (max-width: 991px) {

    .scroll-mobile {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        white-space: nowrap;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar;
    }

    .scroll-mobile .nav-tabs {
        flex-wrap: nowrap;
    }
}

@media (max-width: 767px) {

    .box-title-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .box-title-wrapper h6 {
        padding: 0;
    }

    .box-title-wrapper h6::after {
        display: none;
    }

    .units-wrapper,
    .units-description {
        padding-left: 24px;
        padding-right: 24px;
    }

    .units-image {
        width: 100%;
    }
}

/*.units-faculty {
    background: url('../img/bg-faculty.jpg') center no-repeat;
    background-size: cover;
    padding: 17px 0 35px;
}*/

/*---------------------
  Training
-----------------------*/

.training {
    background: url('../img/bg-training.jpg') center no-repeat;
    background-size: cover;
}

.training-list {
    display: grid;
    grid-template-columns: repeat(16, 1fr);
    gap: 14px;
}

.training-list .training-item {
    padding: 0;
    margin: 0;
    border-bottom: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0px 4px 4px 0px #0000001A;
    grid-column: span 4;
}

.training-list .training-item:nth-child(2),
.training-list .training-item:last-child {
    border-top-left-radius: 60px;
    border-bottom-right-radius: 60px;
}

.training-list .training-item:nth-child(3),
.training-list .training-item:nth-child(5),
.training-list .training-item:nth-child(7) {
    border-top-right-radius: 60px;
    border-bottom-left-radius: 60px;
}

.training-list .training-item:nth-child(4),
.training-list .training-item:nth-child(5) {
    border-bottom-right-radius: 60px;
}

.training-list .training-item:nth-child(6) {
    border-top-left-radius: 60px;
    border-bottom-left-radius: 60px;
}

.training-list .training-item:nth-child(8) {
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
}

.training-item.first {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-shadow: none;
}

.box-training-wrapper {
    position: relative;
}

.training-image {
    /* display: none; */
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: all 0.4s ease-in-out;
}

.item-training:hover .training-image {
    /* display: block; */
    opacity: 1;
    visibility: visible;
}

.training-image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    /* border: 2px solid #2388FF; */
}

.training-group {
    position: absolute;
    z-index: 2;
    top: 16px;
    right: 13px;
    width: 57px;
    height: 57px;
}

.training-group img:last-child {
    width: 41px;
}

.training-item .training-content {
    text-align: center;
    width: 100%;
    position: absolute;
    z-index: 2;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
}

.training-list .training-content h4 {
    color: white;
    margin-bottom: 24px;
}

.training-list .icon-box-button .btn-custom {
    color: white;
    border-color: white;
}

.training-list .icon-box-button .btn-custom:hover {
    background: var(--third);
}

.training-list .icon-box-button .btn-custom span.icon {
    background: white;
}

@media (min-width: 992px) and (max-width: 1199px) {

    .training-group {
        width: 40px;
        height: 40px;
    }

    .training-group img:last-child {
        width: 26px;
    }

    .training-list .training-content h4 {
        font-size: 18px;
    }
}

@media (min-width: 992px) {

    .training-list .training-item:not(:first-child)::before {
        content: '';
        width: 100%;
        height: 100%;
        position: absolute;
        z-index: 1;
        top: 100%;
        left: 0;
        background: #981515C2;
        opacity: 0;
        transition-property: all;
        transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        transition-duration: 700ms;
        /*border-radius: 10px;*/
        overflow: hidden;
    }

    .training-list .training-item:not(:first-child):hover::before {
        top: 0;
        opacity: 1;
    }

    .training-list .icon-box-button {
        visibility: hidden;
    }


    .training-list .training-item:hover .icon-box-button {
        visibility: visible;
    }
}

@media (max-width: 991px) {

    .training-list .training-item {
        grid-column: span 6;
    }
}

@media (max-width: 767px) {

    .training-list .training-item {
        grid-column: span 12;
    }
}

/*---------------------
  Enrollment
-----------------------*/

.why-choose {
    background: url('../img/bg-whychoose.jpg') center no-repeat;
    background-size: cover;
}

.why-choose-content {
    background: #FFFFFF66;
    padding: 45px 25px;
    border-radius: 10px;
    border: 1px solid white;
    backdrop-filter: blur(6px);
    box-shadow: 0px 4px 44.4px 0px #0054A687;
}

.why-choose-content ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.why-choose-content li {
    position: relative;
    color: var(--primary);
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    text-transform: capitalize;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 14px;
}

.why-choose-content li::before {
    content: '';
    display: inline-block;
    background: white;
    border-radius: 50%;
    box-shadow: 0px 4px 4px 0px #00000026;
    border: 5px solid var(--secondary);
    width: 26px;
    height: 26px;
}

.why-choose-content li:nth-child(odd)::before {
    border-color: var(--primary);
}

.why-choose-content li:not(:last-child) {
    margin-bottom: 18px;
}

.why-choose-content p {
    flex: 1;
}

.admission {
    background: url('../img/bg-admission.jpg') center no-repeat;
    background-size: cover;
}

.admission-content h5 {
    font-size: 22px;
    line-height: 30px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0;
}

.admission-content h3 {
    font-size: 33px;
    line-height: 43px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.date-admission {
    display: inline-block;
    background: #ffffff59;
    color: #ffdc37;
    padding: 12px 34px;
    font-size: 18px;
    line-height: 24px;
    box-shadow: 0px 4px 4px 0px #00000040;
}

.btn-sign {
    margin-top: 40px;
}

.btn-sign a {
    padding: 13px 18px;
    background: linear-gradient(0deg, #BC2626, #BC2626);
    color: white;
    font-size: 19px;
    line-height: 25px;
    border-radius: 30px;
    border: 0.2px solid white;
    box-shadow: 0px 4px 4px 0px #00000040;
    box-shadow: 4px 4px 4px 0px #FFFFFF40 inset;
    text-transform: uppercase;
}

.scholarship {
    background: var(--primary);
}

.scholarship-content {
    color: white;
    display: flex;
    align-items: center;
    gap: 12px;
}

.scholarship-content h2 {
    position: relative;
    color: var(--third);
    -webkit-text-stroke: 1px white;
    font-family: 'Exo', sans-serif;
    font-weight: 900;
    font-size: 98px;
    margin-bottom: 0;
}

.scholarship-content h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: url('../img/line-title.png') center no-repeat;
    width: 100%;
    height: 61px;
}

.scholarship-content h3 {
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0;
}

.scholarship-item {
    text-align: center;
}

.scholarship-top {
    background: white;
    color: var(--primary);
    padding: 30px 0 54px;
    border: 1px solid #DDDDDD;
    border-radius: 5px;
    box-shadow: 1px 1px 3px 1px #00000026;
}

.scholarship-top h2 {
    color: var(--third);
    font-family: 'Exo', sans-serif;
    font-size: 35px;
    line-height: 45px;
    margin-bottom: 0;
}

.scholarship-top h3 {
    line-height: 36px;
    margin-top: 14px;
    margin-bottom: 0;
}

.scholarship-bottom {
    background: #FFD401;
    color: var(--primary);
    border-radius: 5px;
    padding: 20px 0;
    margin-top: 10px;
}

.scholarship-bottom h6 {
    margin-bottom: 0;
    font-size: 18px;
    line-height: 24px;
}

.scholarship-slider.slider-wrapper .owl-dots .owl-dot {
    background: white;
    opacity: .2;
}

.scholarship-slider.slider-wrapper .owl-dots .owl-dot.active {
    opacity: 1;
}

.commitment {
    background: url('../img/bg-commitment.jpg') center no-repeat;
    background-size: cover;
}

.commitment-content {
    background: #FFFFFF66;
    border: 1px solid white;
    border-radius: 40px;
    backdrop-filter: blur(6px);
    box-shadow: 0px 4px 44.4px 0px #0054A687;
    padding: 30px 50px;
}

.commitment-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.commitment-content li {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.commitment-content ul p {
    line-height: 28px;
    margin: 0;
}

.commitment-content li:not(:last-child) {
    margin-bottom: 12px;
}

.commitment-content li p:first-child {
    width: 72px;
    font-family: 'Exo', sans-serif;
    font-weight: 500;
    font-size: 50px;
    line-height: 76px;
}

.commitment-content li:first-child p:first-child {
    color: var(--primary);
}

.commitment-content li:nth-child(2) p:first-child {
    color: #1474DB;
}

.commitment-content li:nth-child(3) p:first-child {
    color: var(--blue);
}

.commitment-content li:nth-child(4) p:first-child {
    color: #FFAA01;
}

.commitment-content li:nth-child(5) p:first-child {
    color: #FFC300;
}

.commitment-content li:nth-child(6) p:first-child {
    color: var(--secondary);
}

.commitment-content li:nth-child(7) p:first-child {
    color: var(--third);
}

.commitment-content li p:last-child {
    flex: 1;
}

.stu-item {
    position: relative;
}

.stu-item:not(:last-child) {
    margin-bottom: 42px;
}

.stu-thumb .images-box {
    border-top: 1px solid var(--primary);
    border-radius: 20px;
}

.stu-thumb .images-box::before {
    padding-top: 80%;
}

.stu-content {
    width: 100%;
    padding: 12px 35px;
    background: #235BA9;
    color: white;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.stu-content h3,
.stu-content h4 {
    margin-bottom: 0;
}

.stu-content h3,
.stu-content h4 span {
    font-size: 59px;
    line-height: 76px;
    letter-spacing: 1.17px;
    text-shadow: 4px 4px 0px #0000001A;
}

.stu-content h4 span {
    text-shadow: none;
}

@media (max-width: 991px) {

    .scholarship-content h2 {
        font-size: 45px;
    }

    .scholarship-content h2::after {
        bottom: -30px;
    }

    .stu-content {
        padding-left: 24px;
        padding-right: 24px;
    }

    .stu-content h3,
    .stu-content h4 span {
        font-size: 32px;
        line-height: 40px;
    }
}

@media (max-width: 767px) {

    .admission {
        background-position: right;
    }

    .scholarship-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .commitment-content {
        padding-left: 24px;
        padding-right: 24px;
    }

    .stu-content {
        gap: 6px;
    }

    .stu-content h4 {
        font-size: 20px;
    }
}



/*---------------------
  Departments
-----------------------*/
.department-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary);
}

.departments-main,
.department-social {
    display: flex;
    align-self: center;
    gap: 10px;
}

.departments-main {
    justify-content: space-between;
    border-bottom: 1px solid var(--primary);
    padding-bottom: 8px;
    margin-bottom: 8px;
}

.department-social a {
    background: var(--primary);
    width: 32px;
    height: 32px;
    display: flex;
    align-self: center;
    justify-content: center;
}

.department-social a:nth-child(2) {
    background: #1da1f2;
}

.department-social a:last-child {
    background: #848484;
}

.department-social svg {
    width: 15px;
    fill: white;
}

.departments-content h5 {
    color: var(--primary);
    font-weight: 500;
    text-transform: uppercase;
}

.departments-content>span {
    color: #616161;
    display: block;
    margin-bottom: 10px;
}

.departments-content h6 {
    color: var(--primary);
}

.departments-content p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 8px;
}

.departments-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 16px;
    line-height: 24px;
}

.departments-content a {
    display: block;
    color: var(--primary);
}

.video-item {
    text-align: center;
}

.video-item a {
    display: block;
    color: black;
}

.video-thumb {
    position: relative;
    overflow: hidden;
    margin-bottom: 6px;
}

.video-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    color: black;
}

.video-item a:hover .video-icon {
    color: var(--secondary);
}

.video-content p {
    font-size: 15px;
    margin-bottom: 0px;
}

.video-item a:hover p {
    color: var(--primary);
}

@media (max-width: 767px) {

    .departments-main {
        flex-wrap: wrap;
        gap: 12px;
    }
}



/* content grid  */
.service-grid {
    background: #fff;
}

.service-grid-head {
    margin-bottom: 6px;
}

.service-grid-icon {
    width: 60px;
    height: 44px;
    background: #4aa3ff;
    display: grid;
    place-items: center;
}

.service-grid-icon svg {
    width: 26px;
    height: 26px;
    fill: #fff;
}

.service-grid-title {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: #e10000;
}

.service-grid-divider {
    border-top: 2px solid #2b7cff;
    margin: 6px 0 10px;
}

.service-grid-item {
    display: flex !important;
    gap: 10px;
    padding: 6px 0;
    text-decoration: none;
    color: #1f35c8;
    line-height: 1.45;
}

.service-grid-item:hover {
    text-decoration: underline;
}

.service-grid-arrow {
    color: #333;
    font-weight: 700;
    line-height: 1;
    margin-top: 3px;
    flex-shrink: 0;
}

.service-grid-text {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}