/* Homepage skin for THPT Nguyen Thi Minh Khai */

:root {
    --mk-blue: #003b91;
    --mk-blue-dark: #00296f;
    --mk-blue-soft: #e7f0ff;
    --mk-green: #17a85b;
    --mk-yellow: #ffd23f;
    --mk-text: #18304f;
    --mk-muted: #64748b;
    --mk-bg: #f2f6fb;
    --mk-shadow: 0 12px 28px rgba(0, 43, 112, .14);
    --mk-font-body: 'Montserrat-Regular', Arial, sans-serif;
    --mk-font-regular: 'Montserrat-Regular', Arial, sans-serif;
    --mk-font-medium: 'Montserrat-Medium', Arial, sans-serif;
    --mk-font-semibold: 'Montserrat-SemiBold', Arial, sans-serif;
    --mk-font-bold: 'Montserrat-Bold', Arial, sans-serif;
    --mk-font-extrabold: 'Montserrat-ExtraBold', Arial, sans-serif;
    --mk-font-black: 'Montserrat-Black', Arial, sans-serif;
    --mk-font-display: 'AvertaStdCY-Extrabold', 'Montserrat-Black', Arial, sans-serif;
    --mk-font-display-semibold: 'AvertaStdCY-Semibold', 'Montserrat-SemiBold', Arial, sans-serif;
    --mk-font-condensed: 'UTM', 'Montserrat-Black', Arial, sans-serif;
}

.mk-header,
.mk-header * {
    box-sizing: border-box;
}

.mk-header {
    position: relative;
    z-index: 30;
    background: #fff;
    color: var(--mk-text);
    font-family: var(--mk-font-body);
}

    .mk-header .grid.wide,
    .mk-stat-strip .grid.wide,
    .mk-home-page .grid.wide,
    footer .grid.wide {
        max-width: 1180px;
    }

.mk-topbar {
    height: 28px;
    background: var(--mk-blue-dark);
    color: #fff;
    font-family: var(--mk-font-medium);
    font-size: 12px;
}

.mk-topbar-inner,
.mk-brand-inner,
.mk-nav-inner {
    height: 100%;
    display: flex;
    align-items: center;
}

.mk-topbar-inner {
    justify-content: space-between;
}

.mk-topbar-left {
    text-transform: uppercase;
    font-family: var(--mk-font-semibold);
    letter-spacing: .2px;
}

.mk-topbar-links {
    display: flex;
    align-items: center;
    gap: 18px;
}

    .mk-topbar-links a {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        color: #fff;
        transition: color .28s ease, transform .28s ease;
    }

        .mk-topbar-links a:hover {
            color: var(--mk-yellow);
            transform: translateY(-1px);
        }

.mk-hotline {
    font-family: var(--mk-font-bold);
}

.mk-brand {
}

.mk-brand-inner {
    position: relative;
    gap: 9px;
}

.mk-logo {
    width: 72px;
    height: 72px;
    flex: 0 0 110px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .mk-logo img {
        width: 66px;
        height: 66px;
        object-fit: contain;
        display: block;
    }

.mk-school span,
.mk-school em {
    display: block;
    color: var(--mk-blue);
    font-family: var(--mk-font-semibold);
    font-size: 11px;
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
}

.mk-school strong {
    display: block;
    margin-top: 1px;
    color: var(--mk-blue);
    font-family: var(--mk-font-condensed);
    font-size: 25px;
    font-weight: normal;
    line-height: 1.05;
    text-transform: uppercase;
}

.mk-school em {
    color: #56657a;
    font-size: 10px;
    margin-top: 2px;
}

.btn-menu-rs {
    margin-left: auto;
    display: none;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    color: var(--mk-blue);
    background: var(--mk-blue-soft);
}

.mk-nav {
    background: #fff;
}

    .mk-nav.fixed {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: #fff;
        box-shadow: var(--mk-shadow);
        z-index: 100;
    }

.mk-nav-inner {
    justify-content: space-around;
    gap: 18px;
}

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

.mk-main-menu > ul {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

    .mk-main-menu > ul > li {
        position: relative;
    }

        .mk-main-menu > ul > li > a {
            display: inline-flex;
            align-items: center;
            min-height: 42px;
            padding: 0 13px;
            color: var(--mk-text);
            font-family: var(--mk-font-bold);
            font-size: 12px;
            text-transform: uppercase;
            white-space: nowrap;
            transition: color .28s ease, background .28s ease;
        }

        .mk-main-menu > ul > li:hover > a {
            color: var(--mk-blue);
            background: var(--mk-blue-soft);
        }

.mk-main-menu .drop {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    box-shadow: var(--mk-shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
    z-index: 50;
}

.mk-main-menu li:hover .drop {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mk-main-menu .drop a {
    display: block;
    padding: 11px 14px;
    color: var(--mk-text);
    border-top: 1px solid #eef3f9;
    font-size: 15px;
    font-family: var(--mk-font-semibold);
    transition: color .28s ease, background .28s ease;
}

    .mk-main-menu .drop a:hover {
        background: #fcdc08;
    }

.mk-searchbox {
    position: relative;
    display: flex;
    align-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--mk-blue);
    overflow: hidden;
    transition: width .3s ease, border-radius .3s ease;
}

    .mk-searchbox:hover,
    .mk-searchbox:focus-within {
        width: 210px;
        border-radius: 999px;
    }

    .mk-searchbox .txt {
        width: 100%;
        height: 100%;
        padding: 0 40px 0 12px;
        border: 0;
        outline: 0;
        background: transparent;
        color: #fff;
        opacity: 0;
    }

    .mk-searchbox:hover .txt,
    .mk-searchbox:focus-within .txt {
        opacity: 1;
    }

    .mk-searchbox .txt::placeholder {
        color: rgba(255, 255, 255, .8);
    }

    .mk-searchbox .btn {
        position: absolute;
        right: 0;
        top: 0;
        width: 34px;
        height: 34px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
    }

.mk-hero {
    background: #d9e7f6;
}

.mk-hero-slide {
    overflow: hidden;
}

    .mk-hero-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.mk-hero .swiper-button-next,
.mk-hero .swiper-button-prev {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .86);
    color: var(--mk-blue);
}

    .mk-hero .swiper-button-next::after,
    .mk-hero .swiper-button-prev::after {
        font-size: 15px;
        font-weight: 700;
    }

.mk-stat-strip {
    position: relative;
    z-index: 5;
    margin-top: -42px;
}

.mk-stat-panel {
    width: 640px;
    max-width: calc(100% - 24px);
    margin-left: auto;
    margin-right: 34px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    padding: 12px 18px;
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--mk-shadow);
}

.mk-stat-item {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    align-items: center;
    gap: 2px 8px;
    padding: 0 8px;
    border-right: 1px solid #dce6f1;
    transition: transform .28s ease;
}

    .mk-stat-item:last-child {
        border-right: 0;
    }

    .mk-stat-item:hover {
        transform: translateY(-3px);
    }

.mk-stat-icon {
    grid-row: span 2;
    color: var(--mk-blue);
    font-size: 22px;
}

.mk-stat-item strong {
    color: var(--mk-blue);
    font-family: var(--mk-font-extrabold);
    font-size: 20px;
    line-height: 1;
}

.cout-star {
    color: var(--mk-blue);
    font-family: var(--mk-font-extrabold);
    font-size: 20px;
    line-height: 1;
}

.mk-stat-item span:last-child {
    color: var(--mk-muted);
    font-family: var(--mk-font-semibold);
    font-size: 10px;
    text-transform: uppercase;
}

.mk-home-page {
    background: #fff;
    color: var(--mk-text);
    font-family: var(--mk-font-body);
}

    .mk-home-page a {
        transition: color .28s ease, transform .28s ease, box-shadow .28s ease, background .28s ease;
    }

.mk-about {
    position: relative;
    padding-top: 74px;
    background: linear-gradient(115deg, #fff 0%, #f5f9ff 48%, #e7f3ff 100%);
    overflow: hidden;
}

.mk-about-grid {
    display: grid;
    grid-template-columns: minmax(0, 480px) minmax(0, 1fr);
    gap: 42px;
    align-items: center;
}

.mk-script-title {
    display: block;
    color: var(--mk-green);
    font-family: '1FTV-VIP-Blacksword';
    font-size: 18px;
    font-style: normal;
}

.mk-about h1 {
    margin: 10px 0 6px;
    color: var(--mk-blue);
    font-family: var(--mk-font-condensed);
    font-size: 56px;
    line-height: 1.05;
    font-weight: normal;
    text-transform: uppercase;
}

    .mk-about h1 small {
        display: block;
        margin-bottom: 5px;
        color: var(--mk-green);
        font-family: var(--mk-font-display-semibold);
        font-size: 16px;
        letter-spacing: .6px;
    }

.mk-slogan {
    color: #d49a00;
    font-family: '1FTV-VIP-Blacksword';
    font-size: 18px;
    font-style: normal;
    margin-bottom: 20px;
}

.mk-about p {
    margin: 0 0 14px;
    color: #334155;
    font-family: var(--mk-font-medium);
    font-size: 15px;
    line-height: 1.65;
    text-align: justify;
}

.mk-primary-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    padding: 12px 21px;
    border-radius: 999px;
    background: var(--mk-blue);
    color: #fff;
    font-family: var(--mk-font-bold);
    font-size: 13px;
    box-shadow: 0 10px 22px rgba(0, 59, 145, .2);
}

    .mk-primary-link:hover {
        color: #fff;
        background: var(--mk-green);
        transform: translateY(-3px);
    }

.mk-about-visual {
    min-height: 370px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mk-about-main-img {
    width: 100%;
    height: 370px;
    object-fit: cover;
    display: block;
    border-radius: 0 0 0 120px;
    box-shadow: var(--mk-shadow);
}

.mk-values article {
    min-height: 128px;
    padding: 18px 14px;
    border: 1px solid #dce8f8;
    border-radius: 8px;
    background: #fff;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 43, 112, .08);
    transition: transform .3s ease, box-shadow .3s ease;
}

    .mk-values article:hover {
        transform: translateY(-5px);
        box-shadow: var(--mk-shadow);
    }

.mk-values i {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--mk-blue-soft);
    color: var(--mk-blue);
    font-size: 25px;
}

.mk-values strong {
    display: block;
    margin-top: 10px;
    color: var(--mk-blue);
    font-family: var(--mk-font-extrabold);
    font-size: 15px;
    text-transform: uppercase;
}

.mk-values span {
    display: block;
    margin-top: 5px;
    color: var(--mk-muted);
    font-family: var(--mk-font-medium);
    font-size: 12px;
    line-height: 1.35;
}

.mk-quality-band {
}

    .mk-quality-band .grid {
        min-height: 62px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        font-size: 16px;
        font-family: var(--mk-font-extrabold);
        text-transform: uppercase;
    }

    .mk-quality-band i {
        width: 42px;
        height: 42px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 2px solid rgba(255, 255, 255, .65);
        border-radius: 50%;
        font-size: 20px;
        background: linear-gradient(180deg, #107af0, #0046ad);
        color: #fff;
    }

.mk-news,
.mk-activities {
    padding: 58px 0;
    background: #fff;
}

.mk-section-title {
    position: relative;
    margin: 0 0 28px;
    color: var(--mk-blue);
    font-family: var(--mk-font-extrabold);
    font-size: 24px;
    line-height: 1.2;
    text-transform: uppercase;
}

    .mk-section-title::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -10px;
        width: 80px;
        height: 3px;
    }

    .mk-section-title.centered {
        text-align: center;
    }

        .mk-section-title.centered::after {
            left: 50%;
            transform: translateX(-50%);
        }

.mk-news-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(0, .78fr) 250px;
    gap: 24px;
    align-items: start;
}

.mk-card {
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 9px 24px rgba(15, 52, 96, .12);
    overflow: hidden;
}

    .mk-card a {
        display: block;
        color: inherit;
    }

.mk-img {
    display: block;
    overflow: hidden;
    background: #dbe7f5;
}

    .mk-img img,
    .mk-utility img,
    .mk-gallery-grid img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform .35s ease;
    }

.mk-card:hover .mk-img img,
.mk-utility a:hover img,
.mk-gallery-grid a:hover img {
    transform: scale(1.055);
}

.mk-feature-card .mk-img {
    height: 300px;
}

.mk-feature-card h3 {
    margin: 18px 18px 10px;
    color: var(--mk-blue);
    font-family: var(--mk-font-extrabold);
    font-size: 21px;
    line-height: 1.5;
    text-align: justify;
}

.mk-feature-card p {
    margin: 0 18px 14px;
    color: #475569;
    font-family: var(--mk-font-medium);
    font-size: 14px;
    line-height: 1.5;
    text-align: justify;
}

.mk-feature-card em {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0 18px 18px;
    color: var(--mk-blue);
    font-size: 12px;
    font-style: normal;
    font-family: var(--mk-font-bold);
    text-transform: uppercase;
}

.mk-news-small {
    display: grid;
    gap: 16px;
}

.mk-small-news {
    min-height: 0;
}

    .mk-small-news .mk-img {
        height: 136px;
    }

    .mk-small-news .mk-date,
    .mk-activity-card .mk-date {
        display: inline-flex;
        align-items: center;
        gap: 3px;
        margin: 12px 14px 0;
        color: #65758b;
        font-family: var(--mk-font-medium);
        font-size: 12px;
    }

    .mk-small-news strong,
    .mk-activity-card strong {
        display: -webkit-box;
        margin: 7px 14px 8px;
        color: var(--mk-text);
        font-family: var(--mk-font-bold);
        font-size: 15px;
        line-height: 1.4;
        overflow: hidden;
        text-overflow: ellipsis;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        transition: color .28s ease;
    }

    .mk-small-news:hover strong,
    .mk-activity-card:hover strong {
        color: var(--mk-blue);
    }

    .mk-small-news p,
    .mk-activity-card p {
        display: -webkit-box;
        margin: 0 14px 14px;
        color: #64748b;
        font-family: var(--mk-font-medium);
        font-size: 13px;
        line-height: 1.45;
        overflow: hidden;
        text-overflow: ellipsis;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
    }

.mk-utility {
    display: grid;
    gap: 12px;
}

    .mk-utility a {
        display: block;
        overflow: hidden;
        border-radius: 8px;
        box-shadow: 0 8px 20px rgba(0, 43, 112, .11);
    }

.mk-documents {
    padding: 14px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0, 43, 112, .11);
    display: none;
}

    .mk-documents h3 {
        margin: 0 0 10px;
        color: var(--mk-blue);
        font-family: var(--mk-font-extrabold);
        font-size: 15px;
        text-transform: uppercase;
    }

    .mk-documents a {
        display: grid;
        grid-template-columns: 18px minmax(0, 1fr);
        gap: 8px;
        padding: 9px 0;
        color: #334155;
        border-top: 1px solid #edf2f7;
        box-shadow: none;
        border-radius: 0;
        font-size: 13px;
        font-family: var(--mk-font-semibold);
        line-height: 1.35;
    }

        .mk-documents a:hover {
            color: var(--mk-blue);
            transform: translateX(3px);
        }

    .mk-documents i {
        color: var(--mk-green);
        margin-top: 2px;
    }

.mk-notices {
    padding: 48px 0;
    background: #d7e3f6;
}

.mk-notice-swiper {
    overflow: hidden;
}

.mk-notice-card {
    width: 182px;
    min-height: 86px;
    padding: 13px;
    border-radius: 8px;
    background: var(--mk-blue);
}

    .mk-notice-card a {
        display: -webkit-box;
        color: #fff;
        font-size: 13px;
        font-family: var(--mk-font-bold);
        line-height: 1.35;
        overflow: hidden;
        text-overflow: ellipsis;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
    }

    .mk-notice-card:hover {
        background: var(--mk-green);
    }

.mk-activities {
    background: #f7f9fc;
}

.mk-activities-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 250px;
    gap: 28px;
}

.mk-activity-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.mk-activity-card .mk-img {
    height: 155px;
}

.mk-activity-utility img {
    height: auto;
    min-height: 70px;
    max-height: 150px;
}

.mk-gallery {
    padding: 64px 0 76px;
    background: #fff;
}

.mk-gallery-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr);
    grid-auto-rows: 104px;
    gap: 12px;
}

    .mk-gallery-grid a:first-child {
        grid-row: span 2;
    }

.mk-album-more {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    color: #fff;
    background: linear-gradient(135deg, var(--mk-blue), #006bd6) !important;
    font-family: var(--mk-font-bold);
    text-align: center;
}

    .mk-album-more i {
        font-size: 30px;
    }

footer {
    background: var(--mk-blue-dark) !important;
}

    footer .footer-bottom {
        background: #02215c !important;
    }

        footer .footer-bottom::before {
            display: none;
        }

        footer .footer-bottom .container span,
        .item-online-footer,
        .item-total-footer {
            color: #fff !important;
        }
/* PSD desktop alignment pass */
@media (min-width: 1390px) {
    .mk-about .grid.wide {
        max-width: 1520px;
    }

    .mk-slogan {
        margin: 12px 0 21px;
        color: #e69830;
        font-family: '1FTV-VIP-Blacksword';
        font-size: 37px !important;
        line-height: 1.1;
    }

    .mk-script-title {
        font-size: 36px !important;
    }

    .mk-about h1 {
        font-size: 47px !important;
    }

    .mk-about {
        padding-top: 126px !important;
        padding-bottom: 180px !important;
    }

        .mk-about p {
            width: 610px !important;
            max-width: 100%;
            margin: 0 0 13px;
            color: #344154;
            font-family: var(--mk-font-medium);
            font-size: 16px !important;
            line-height: 1.48;
            text-align: justify;
        }

    .mk-about-grid {
        position: relative;
        z-index: 2;
        display: grid;
        grid-template-columns: 712px minmax(0, 1fr) !important;
        gap: 42px;
        min-height: 420px;
        align-items: start;
    }
}
/* PSD desktop alignment pass */
@media (min-width: 1024px) {
    .mk-header .grid.wide,
    .mk-stat-strip .grid.wide,
    footer .grid.wide {
        max-width: 1200px;
    }

    .mk-topbar {
        height: 42px;
        font-size: 13px;
    }

    .mk-topbar-inner {
        padding-left: 118px;
    }

    .mk-topbar-links {
        gap: 17px;
    }

    .mk-brand-inner {
        z-index: 3;
    }

    .mk-logo {
        position: absolute;
        left: 0;
        top: -36px;
        z-index: 5;
    }

        .mk-logo img {
            width: 88px;
            height: 88px;
        }

    .mk-school {
        padding-left: 116px;
        margin-top: -2px;
    }

        .mk-school span {
            font-size: 13px;
            line-height: 1;
        }

        .mk-school strong {
            margin-top: 5px;
            font-size: 25px;
            line-height: .95;
        }

    .mk-nav {
        position: relative;
        z-index: 4;
    }

        .mk-nav.fixed {
            margin-top: 0;
            background: #fff;
        }

    .mk-nav-inner {
        justify-content: space-between;
        gap: 13px;
        height: 56px;
    }

    .mk-nav.fixed .mk-nav-inner {
        height: 48px;
        padding-left: 0;
    }

    .mk-home {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
    }

    .mk-main-menu > ul > li > a {
        min-height: 56px;
        padding: 0 10px;
        font-size: 12px;
        line-height: 1;
    }

    .mk-nav.fixed .mk-main-menu > ul > li > a {
        min-height: 48px;
    }

    .mk-searchbox {
        width: 28px;
        height: 28px;
    }

        .mk-searchbox .btn {
            width: 28px;
            height: 28px;
            font-size: 12px;
        }

    .mk-hero-slide img {
        object-position: center center;
    }

    .mk-stat-strip {
        margin-top: -41px;
    }

    .mk-stat-panel {
        width: 612px;
        min-height: 74px;
        margin-right: 68px;
        padding: 13px 17px;
        border-radius: 8px;
    }

    .mk-stat-item {
        grid-template-columns: 30px minmax(0, 1fr);
        padding: 0 11px;
        gap: 3px 8px;
    }

    .mk-stat-icon {
        font-size: 25px;
    }

    .mk-stat-item strong {
        font-size: 17px;
    }

    .mk-stat-item span:last-child {
        font-size: 9px;
    }

    .mk-about {
        padding-top: 70px;
        background: radial-gradient(circle at 91% 21%, rgba(34, 160, 80, .18), transparent 12%), linear-gradient(115deg, #fff 0%, #f6fbff 50%, #e9f5ff 100%);
    }

    .mk-about-grid {
        grid-template-columns: 455px minmax(0, 1fr);
        gap: 42px;
        min-height: 398px;
        position: relative;
        z-index: 2;
    }

    .mk-script-title {
        font-size: 17px;
        color: #68b36f;
    }

    .mk-about h1 {
        margin-top: 8px;
        font-size: 55px;
        line-height: .98;
    }

        .mk-about h1 small {
            margin-bottom: 5px;
            font-size: 19px;
            line-height: 1;
        }

    .mk-slogan {
        margin-top: 10px;
        margin-bottom: 20px;
        color: #d49b1f;
        font-size: 17px;
    }

    .mk-about p {
        max-width: 432px;
        margin-bottom: 12px;
        font-size: 14px;
        line-height: 1.48;
    }

    .mk-primary-link {
        min-width: 238px;
        min-height: 38px;
        justify-content: center;
        margin-top: 12px;
        padding: 10px 18px;
        font-size: 12px;
    }

    .mk-about-visual {
        position: relative;
        min-height: 390px;
        align-items: flex-start;
        justify-content: flex-end;
        padding-top: 14px;
        padding-right: 8px;
    }

    .mk-about-main-img {
        width: 626px;
        height: 370px;
        border-radius: 0 0 0 160px;
        box-shadow: none;
    }

    .mk-about-circle {
        position: absolute;
        z-index: 4;
        display: block;
        overflow: hidden;
        border: 7px solid #fff;
        border-radius: 50%;
        background: #e7eef8;
        box-shadow: 0 12px 28px rgba(0, 43, 112, .18);
    }

        .mk-about-circle img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform .35s ease;
        }

        .mk-about-circle:hover img {
            transform: scale(1.055);
        }

    .mk-about-circle-a {
        left: 116px;
        bottom: -48px;
        width: 144px;
        height: 144px;
    }

    .mk-about-circle-b {
        left: 300px;
        bottom: -62px;
        width: 174px;
        height: 174px;
    }

    .mk-about-circle-c {
        right: 18px;
        bottom: -46px;
        width: 142px;
        height: 142px;
    }

    .mk-values {
        z-index: 5;
        width: 470px;
        padding-bottom: 50px;
        grid-template-columns: repeat(4, 1fr);
        gap: 11px;
    }

        .mk-values article {
            min-height: 128px;
            padding: 16px 8px 10px;
            border-radius: 14px;
            border-color: #d7e6ff;
        }

        .mk-values i {
            width: 58px;
            height: 58px;
            color: #fff;
            background: linear-gradient(180deg, #0c78ec, #0044b6);
            font-size: 24px;
        }

        .mk-values strong {
            margin-top: 9px;
            font-size: 14px;
        }

        .mk-values span {
            font-size: 10px;
            line-height: 1.35;
        }

    .mk-quality-band .grid {
        min-height: 60px;
        font-size: 15px;
    }

    .mk-news {
        padding: 70px 0 66px;
    }

    .mk-section-title {
        margin-bottom: 31px;
        font-size: 25px;
    }

    .mk-news-grid {
        grid-template-columns: 510px 300px 310px;
        gap: 25px;
    }

    .mk-feature-card {
        box-shadow: none;
    }

        .mk-feature-card .mk-img {
            height: 336px;
            border-radius: 6px;
        }

        .mk-feature-card h3 {
            margin: 19px 0 10px;
            font-size: 21px;
            line-height: 1.25;
        }

        .mk-feature-card p {
            margin: 0 0 18px;
            font-size: 14px;
            line-height: 1.55;
        }

        .mk-feature-card em {
            margin: 0;
            padding: 8px 14px;
            border: 1px solid #d8e2f2;
            border-radius: 999px;
            font-size: 10px;
            color: #71809a;
        }

    .mk-news-small {
        gap: 0;
        padding: 13px;
        border: 1px solid #dce6f5;
        border-radius: 8px;
        background: #fff;
        box-shadow: 0 8px 20px rgba(0, 43, 112, .09);
    }

        .mk-news-small .mk-small-news {
            box-shadow: none;
            border-radius: 0;
            overflow: visible;
        }

            .mk-news-small .mk-small-news:first-child .mk-img {
                height: 147px;
                border-radius: 6px;
            }

            .mk-news-small .mk-small-news:not(:first-child) .mk-img,
            .mk-news-small .mk-small-news:not(:first-child) .mk-date,
            .mk-news-small .mk-small-news:not(:first-child) p {
                display: none;
            }

            .mk-news-small .mk-small-news:not(:first-child) a {
                position: relative;
                padding: 11px 0 11px 18px;
                border-top: 1px solid #e3ebf6;
            }

                .mk-news-small .mk-small-news:not(:first-child) a::before {
                    content: "";
                    position: absolute;
                    left: 2px;
                    top: 19px;
                    width: 7px;
                    height: 7px;
                    border-radius: 50%;
                    background: var(--mk-blue);
                }

    .mk-small-news .mk-date {
        font-size: 11px;
        margin: 0;
    }

    .mk-small-news strong {
        margin: 8px 0 0px;
        font-size: 18px;
        line-height: 1.4;
        color: #09359e;
        text-align: justify;
    }

    .mk-news-small .mk-small-news:first-child .w-date-cate-new span.mk-cate-n {
        display: flex;
        color: #4f9e3a;
        border-color: #4f9e3a;
        background: #ecffe7;
    }

    .mk-feature-card .w-date-cate-new span.mk-cate-n {
        display: flex;
    }

    .mk-news-small .mk-small-news:not(:first-child) strong {
        margin: 0;
        color: #3e4a5f;
        font-family: var(--mk-font-medium);
        font-size: 12px;
        line-height: 1.35;
        -webkit-line-clamp: 2;
    }

    .mk-small-news p {
        margin: 0 0 11px;
        font-size: 12px;
    }

    .mk-news-utility {
        gap: 10px;
    }

        .mk-news-utility > a {
            border-radius: 7px;
        }

    .mk-documents {
        display: none;
    }

    .mk-notices {
        padding: 58px 0 54px;
        background: #d8e3f6;
    }

    .mk-notice-card {
        min-height: 88px;
        padding: 14px 15px;
        border-radius: 7px;
        background: #0041b4;
    }

        .mk-notice-card:nth-child(2n+1) {
            background: #fff;
        }

            .mk-notice-card:nth-child(2n+1) a {
                color: #0041b4;
            }

    .mk-activities {
        padding: 60px 0 72px;
        background: #f5f5f5;
    }

    .mk-activities-grid {
        grid-template-columns: minmax(0, 1fr) 310px;
        gap: 34px;
    }

    .mk-activity-list {
        gap: 24px 21px;
    }

    .mk-activity-card {
        box-shadow: none;
        background: transparent;
    }

        .mk-activity-card .mk-img {
            height: 154px;
            border-radius: 7px;
            box-shadow: 0 7px 16px rgba(0, 43, 112, .1);
        }

        .mk-activity-card .mk-date {
            margin: 11px 0 0;
            font-size: 11px;
        }

        .mk-activity-card strong {
            margin: 7px 0 8px;
            font-size: 14px;
            line-height: 1.32;
        }

        .mk-activity-card p {
            margin: 0;
            font-size: 12px;
            line-height: 1.45;
        }

    .mk-activity-utility {
        gap: 15px;
    }

        .mk-activity-utility a {
            border-radius: 7px;
        }

        .mk-activity-utility img {
            width: 100%;
            height: auto;
            max-height: none;
            min-height: 0;
            object-fit: contain;
        }

    .mk-gallery {
        padding: 76px 0 82px;
    }

    .mk-gallery-grid {
        grid-template-columns: 2.1fr repeat(4, 1fr);
        grid-auto-rows: 102px;
        gap: 13px;
    }

        .mk-gallery-grid a {
            border-radius: 10px;
        }

            .mk-gallery-grid a:first-child {
                grid-row: span 2;
            }

    .mk-album-more {
        font-size: 12px;
    }

    footer {
        padding-top: 50px !important;
    }
}

@media (max-width: 1239px) {
    .mk-header .grid.wide,
    .mk-stat-strip .grid.wide,
    .mk-home-page .grid.wide,
    footer .grid.wide {
        width: calc(100% - 32px);
    }

    .mk-news-grid,
    .mk-activities-grid {
        grid-template-columns: 1fr;
    }

    .mk-news-utility,
    .mk-activity-utility {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1023px) {
    .mk-topbar-left {
        padding-left: 75px;
    }

    .mk-topbar-inner {
        justify-content: normal;
    }

    .mk-brand {
        height: 72px;
    }

    .mk-home {
        display: none;
    }

    .mk-logo {
        width: 85px;
        height: 85px;
        flex: 0 0 85px;
    }

        .mk-logo img {
            width: 60px;
            height: 60px;
        }

    .mk-school strong {
        font-size: 19px;
    }

    .btn-menu-rs {
        display: flex;
    }

    .mk-main-menu {
        display: none;
    }

    .mk-nav {
    }

    .mk-nav-inner {
        justify-content: space-between;
    }

    .mk-hero-slide {
    }

    .grid.wide.mk-nav-inner {
        padding: 0;
    }

    .mk-stat-panel {
        margin: -4px auto 0;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        row-gap: 12px;
    }

    .mk-about-grid {
        display: flex;
        flex-direction: column-reverse;
    }

    .mk-values {
        display: grid;
        margin-top: 25px;
        margin-bottom: 25px;
    }

    .mk-values,
    .mk-activity-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mk-news-grid {
        grid-template-columns: 1fr 1fr;
    }

    .mk-news-utility {
        grid-column: 1 / -1;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mk-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 739px) {
    html,
    body {
        max-width: 100%;
        overflow-x: hidden;
    }

    .mk-logo {
        width: 82px !important;
        height: 82px !important;
        flex-basis: 82px !important;
    }

    .mk-about-grid {
        gap: 90px;
    }

    .mk-topbar-left {
        padding-left: 85px;
    }

    .mk-header .grid.wide,
    .mk-stat-strip .grid.wide,
    .mk-home-page .grid.wide,
    footer .grid.wide {
        width: calc(100% - 20px);
    }

    .mk-nav-inner {
        justify-content: space-between;
        padding: 0 !important;
    }

    .mk-topbar {
        padding: 7px 0;
    }

    .mk-topbar-links {
        justify-content: space-between;
        gap: 8px;
        font-size: 11px;
        display: none;
    }

        .mk-topbar-links a {
            gap: 4px;
        }

    .mk-brand {
        height: 56px;
    }

    .mk-home {
        display: none;
    }

    .mk-brand-inner {
        gap: 10px;
    }

    .mk-nav.fixed .header-bottom-left .logo, .mk-nav.fixed .header-bottom-left .logo canvas, .mk-nav.fixed .header-bottom-left .logo img {
        width: 52px !important;
        height: 52px !important;
    }

        .mk-nav.fixed .header-bottom-left .logo.mk-logo {
            flex-basis: 52px !important;
            top: 0;
        }

    .mk-school span,
    .mk-school em {
        font-size: 11px;
    }

    .mk-school strong {
        font-size: 20px;
    }

    .mk-hero-slide {
    }

    .mk-stat-strip {
        margin-top: -13px;
    }

    .mk-stat-panel {
        max-width: 100%;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 12px;
        margin-right: auto;
    }

    .mk-stat-item {
        border-right: 0;
        padding: 4px;
        border-radius: 8px;
        background: #f7fbff;
        grid-template-columns: 26px minmax(0, 1fr);
    }

        .mk-stat-item span:last-child {
            font-size: 11px;
            line-height: normal;
        }

        .mk-stat-item strong {
            font-size: 17px;
        }

    .cout-star {
        font-size: 17px;
    }

    .mk-about {
        padding-top: 30px;
    }

        .mk-about h1 {
            font-size: 32px;
            line-height: 1.2;
        }

    .mk-script-title {
        font-size: 24px;
    }

    .mk-slogan {
        font-size: 19px;
    }

    .mk-about-main-img {
        height: 255px;
        border-radius: 8px;
    }

    .mk-about-visual {
        min-height: auto;
        position: relative;
    }

    .mk-news-grid,
    .mk-news-small,
    .mk-activity-list,
    .mk-news-utility,
    .mk-activity-utility {
        grid-template-columns: 1fr;
    }

    .mk-news-small {
        grid-template-columns: 1fr 1fr;
    }

    .mk-cate-n {
        display: none;
    }

    .mk-small-news:last-child {
        display: none;
    }

    .mk-values {
        display: grid;
        grid-template-columns: 1fr 1fr;
        margin-top: 19px;
    }

    .mk-quality-band .grid {
        min-height: 70px;
        font-size: 11px;
        text-align: left;
        line-height: 1.45;
        gap: 5px;
    }

        .mk-quality-band .grid span {
            flex: 1 1 0;
            color: #003b91;
            font-size: 11px;
            line-height: 1.5;
        }

            .mk-quality-band .grid span b {
                color: #FF9800;
            }

    .mk-news,
    .mk-activities {
        padding: 42px 0;
    }

    .mk-section-title {
        font-size: 20px;
    }

    .mk-news .mk-section-title::after {
        left: 0;
        bottom: -10px;
        width: 57px;
        height: 2px;
        background: #003f9e;
    }

    .mk-news .mk-section-title::before {
        content: "";
        position: absolute;
        left: 0;
        bottom: -14px;
        width: 30px;
        height: 2px;
        background: #003f9e;
    }

    .mk-feature-card .mk-img {
        height: 220px;
    }

    .mk-feature-card h3 {
        font-size: 18px;
    }

    .mk-news .mk-date {
        color: #727272;
        font-family: var(--mk-font-medium);
        font-size: 13px;
        line-height: 1;
        margin-left: 0;
        display: inline-flex;
        align-items: center;
        gap: 2px;
    }

    .w-date-cate-new {
        margin-left: 14px;
        margin-bottom: 3px;
    }

    .mk-news .mk-date i {
        color: #004ec0;
        font-size: 15px;
    }

    .mk-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 116px;
    }

        .mk-gallery-grid a:first-child {
            grid-column: 1 / -1;
        }

    .mk-news-utility {
        grid-column: 1 / -1;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        display: none;
    }

    footer .container,
    footer .footer-bottom .container {
        display: block !important;
    }
}

/* Header + hero PSD final pass */
@media (min-width: 1024px) {
    .mk-header {
        background: #fff;
        box-shadow: 0 1px 0 rgba(11, 41, 91, .12);
    }

    .mk-topbar {
        height: 43px;
        background: #003882;
        line-height: 43px;
    }

    .mk-topbar-inner {
        padding-left: 120px;
    }

    .mk-topbar-left {
        color: #fff;
        font-family: var(--mk-font-Semibold);
        font-size: 15px;
        text-transform: uppercase;
    }

    .mk-topbar-links {
        height: 42px;
        gap: 14px;
    }

        .mk-topbar-links a {
            height: 42px;
            color: #fff;
            font-size: 16px;
            line-height: 1;
            font-weight: normal;
        }

            .mk-topbar-links a i {
                color: #ffd44a;
                font-size: 17px;
            }

            .mk-topbar-links a:hover {
                color: #ffd44a;
                opacity: 1;
                transform: translateY(-1px);
            }

    .mk-hotline {
        margin-right: 2px;
        font-family: var(--mk-font-bold) !important;
    }

    .mk-brand {
    }

    .mk-logo {
        top: -34px;
        width: 96px;
        height: 96px;
    }

        .mk-logo img {
            width: 90px;
            height: 90px;
        }

    .mk-school {
        padding-left: 0;
        transform: translateY(-1px);
    }

        .mk-school span {
            color: #003882;
            font-family: var(--mk-font-extrabold);
            font-size: 16px;
            line-height: 1;
        }

        .mk-school strong {
            font-family: var(--mk-font-condensed);
            font-size: 30px;
            line-height: 1;
        }

    .mk-nav {
        height: 83px;
        background: transparent;
        border-bottom: 0;
    }

    .mk-home {
        width: 35px;
        height: 35px;
        margin-right: 2px;
        border-radius: 50%;
        color: #003882;
        transition: background .3s ease, color .3s ease, transform .3s ease;
        position: relative;
        top: -2px;
    }

        .mk-home:hover {
            background: #003882;
            color: #fff;
            transform: translateY(-1px);
        }

    .mk-main-menu > ul > li > a {
        min-height: 83px;
        padding: 0 15px;
        color: #112e63;
        font-family: var(--mk-font-semibold);
        font-size: 16px;
        line-height: 83px;
        border-radius: 0;
        transition: color .3s ease, background .3s ease, transform .3s ease;
    }

    .mk-main-menu > ul > li:hover > a {
        color: #003882;
        background: #eef5ff;
        transform: translateY(-1px);
    }

    .mk-main-menu .drop {
        left: 0;
        min-width: 228px;
        border-radius: 0 0 8px 8px;
        box-shadow: 0 14px 30px rgba(0, 43, 112, .18);
    }

    .mk-searchbox {
        width: 30px;
        height: 30px;
        background: #003882;
    }

        .mk-searchbox:hover,
        .mk-searchbox:focus-within {
            width: 190px;
        }

        .mk-searchbox .btn {
            width: 30px;
            height: 30px;
            font-size: 12px;
        }

        .mk-searchbox .txt {
            font-family: var(--mk-font-medium);
            font-size: 12px;
        }

    .mk-nav.fixed {
        height: 75px;
        margin-top: 0;
        border-bottom: 1px solid #dbe6f5;
    }

        .mk-nav.fixed .mk-nav-inner {
            height: 75px;
            padding-left: 0;
        }

        .mk-nav.fixed .mk-main-menu > ul > li > a {
            min-height: 52px;
            line-height: 52px;
        }

    .mk-hero {
        margin-top: 0;
        background: #dfe9f6;
    }

    .mk-hero-slide img {
        object-fit: cover;
        object-position: center center;
        transform: none;
    }

    .mk-hero .swiper-button-next,
    .mk-hero .swiper-button-prev {
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, .82);
        color: #003882;
        box-shadow: 0 8px 18px rgba(0, 43, 112, .16);
        opacity: 0;
        transition: opacity .3s ease, transform .3s ease, background .3s ease;
    }

    .mk-hero:hover .swiper-button-next,
    .mk-hero:hover .swiper-button-prev {
        opacity: 1;
    }

    .mk-hero .swiper-button-next:hover:after,
    .mk-hero .swiper-button-prev:hover:after {
        color: #fff;
    }

    .mk-hero .swiper-button-next:hover,
    .mk-hero .swiper-button-prev:hover {
        background: #003882;
        color: #fff;
        transform: scale(1.06);
    }

    .mk-stat-strip {
        margin-top: -42px;
        pointer-events: none;
    }

    .mk-stat-panel {
        width: 620px;
        min-height: 76px;
        margin-right: 72px;
        padding: 13px 18px;
        border-radius: 8px;
        box-shadow: 0 10px 24px rgba(0, 43, 112, .18);
        pointer-events: auto;
    }

    .mk-stat-item {
        grid-template-columns: 31px minmax(0, 1fr);
        padding: 0 10px;
    }

    .mk-stat-icon {
        color: #1e438c;
        font-size: 24px;
    }

    .mk-stat-item strong {
        color: #1e438c;
        font-size: 17px;
    }

    .mk-stat-item span:last-child {
        color: #576778;
        font-size: 9px;
        line-height: 1.2;
    }
}

/* Statistics + about PSD final pass */
@media (min-width: 1024px) {
    .mk-stat-strip {
        position: relative;
        z-index: 8;
        margin-top: -46px;
    }

        .mk-stat-strip .grid.wide {
            max-width: 1200px;
        }

    .mk-stat-panel {
        width: 1000px;
        min-height: 74px;
        margin-left: auto;
        margin-right: 0;
        display: grid;
        grid-template-columns: repeat(6, minmax(0, 1fr));
        padding: 20px 5px;
        border-radius: 8px;
        background: #fff;
        box-shadow: 0 12px 28px rgba(0, 43, 112, .18);
    }

    .mk-stat-item {
        display: grid;
        grid-template-columns: 29px minmax(0, 1fr);
        align-items: center;
        gap: 2px 3px;
        min-height: 40px;
        padding: 0 8px;
        border-right: 1px solid #dce5f1;
        transition: transform .3s ease, color .3s ease;
    }

        .mk-stat-item:last-child {
            border-right: 0;
        }

        .mk-stat-item:hover {
            transform: translateY(-3px);
        }

    .mk-stat-icon {
        grid-row: span 2;
        color: #1d438c;
        font-size: 20px;
        line-height: 1;
    }

    .mk-stat-item strong, .cout-star {
        color: #1d438c;
        font-family: var(--mk-font-extrabold);
        font-size: 18px;
        line-height: 1;
    }

    .mk-stat-item span:last-child {
        color: #66768a;
        font-family: var(--mk-font-semibold);
        font-size: 12px;
        line-height: 1.15;
        text-transform: uppercase;
    }

    .mk-about {
        position: relative;
        min-height: 900px;
        margin-top: -32px;
        padding-top: 75px;
        overflow: hidden;
        background: url(/Design/img/THPTMinhKhai/about.jpg) no-repeat;
        background-size: 100% 100%;
    }

    .mk-about-grid {
        position: relative;
        z-index: 2;
        display: grid;
        grid-template-columns: 570px minmax(0, 1fr);
        gap: 42px;
        min-height: 420px;
        align-items: start;
    }

    .mk-script-title {
        color: #65ac64;
        font-family: '1FTV-VIP-Blacksword';
        font-size: 28px;
        line-height: 1.15;
        text-transform: none;
    }

    .mk-about h1 {
        margin: 10px 0 0;
        color: #09359e;
        font-family: var(--mk-font-black);
        font-size: 44px;
        line-height: 1.3;
        font-weight: normal;
        text-transform: uppercase;
    }

        .mk-about h1 small {
            display: block;
            margin-bottom: 7px;
            color: #65ac64;
            font-family: var(--mk-font-condensed);
            font-size: 26px;
            line-height: 1.4;
            letter-spacing: 0;
        }

    .mk-slogan {
        margin: 12px 0 21px;
        color: #e69830;
        font-family: '1FTV-VIP-Blacksword';
        font-size: 28px;
        line-height: 1.1;
    }

    .mk-about p {
        width: 495px;
        max-width: 100%;
        margin: 0 0 13px;
        color: #344154;
        font-family: var(--mk-font-medium);
        font-size: 14px;
        line-height: 1.48;
        text-align: justify;
    }

    .mk-primary-link {
        min-width: 238px;
        min-height: 38px;
        justify-content: center;
        margin-top: 12px;
        padding: 10px 18px;
        border-radius: 999px;
        background: #0042a8;
        color: #fff;
        font-family: var(--mk-font-medium);
        font-size: 15px;
        box-shadow: 0 8px 18px rgba(0, 66, 168, .18);
    }

        .mk-primary-link:hover {
            background: #23a454;
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 14px 26px rgba(0, 66, 168, .24);
        }

    .mk-about-visual {
        position: relative;
        min-height: 579px;
        display: block;
        padding: 0;
    }

    .mk-about-main-img {
        position: absolute;
        right: 0;
        top: 3px;
        width: 632px;
        height: 501px;
        border-radius: 0;
        object-fit: cover;
        object-position: center center;
        box-shadow: none;
        opacity: 0;
        visibility: hidden;
    }

    .mk-about-circle {
        position: absolute;
        z-index: 5;
        display: block;
        overflow: hidden;
        border: 7px solid #fff;
        border-radius: 50%;
        background: #e8eef8;
        box-shadow: 0 12px 26px rgba(0, 43, 112, .18);
        opacity: 0;
    }

        .mk-about-circle img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform .35s ease;
        }

        .mk-about-circle:hover img {
            transform: scale(1.055);
        }

    .mk-about-circle-a {
        left: -16px;
        bottom: -58px;
        width: 186px;
        height: 186px;
    }

    .mk-about-circle-b {
        left: 170px;
        bottom: -75px;
        width: 230px;
        height: 230px;
    }

    .mk-about-circle-c {
        right: 18px;
        bottom: -55px;
        width: 186px;
        height: 186px;
    }

    .mk-values {
        position: relative;
        z-index: 6;
        width: 486px !important;
        margin-top: 115px;
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 11px;
        opacity: 0;
    }

        .mk-values article {
            min-height: 132px;
            padding: 15px 8px 10px;
            border: 1px solid #d9e8ff;
            border-radius: 15px;
            background: #fff;
            text-align: center;
            box-shadow: 0 9px 22px rgba(0, 43, 112, .1);
            transition: transform .32s ease, box-shadow .32s ease, border-color .32s ease;
        }

            .mk-values article:hover {
                transform: translateY(-5px);
                border-color: #99c3ff;
                box-shadow: 0 16px 32px rgba(0, 43, 112, .17);
            }

        .mk-values i {
            width: 58px;
            height: 58px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: linear-gradient(180deg, #107af0, #0046ad);
            color: #fff;
            font-size: 25px;
            box-shadow: inset 0 -6px 12px rgba(0, 42, 112, .18);
            transition: transform .32s ease;
        }

        .mk-values article:hover i {
            transform: scale(1.06);
        }

        .mk-values strong {
            display: block;
            margin-top: 10px;
            color: #0042a8;
            font-family: var(--mk-font-extrabold);
            font-size: 14px;
            line-height: 1;
            text-transform: uppercase;
        }

        .mk-values span {
            display: block;
            margin-top: 7px;
            color: #2f3e54;
            font-family: var(--mk-font-medium);
            font-size: 12px;
            line-height: 1.32;
        }

    .mk-quality-band {
        z-index: 4;
        opacity: 0;
    }

        .mk-quality-band .grid {
            min-height: 70px;
            justify-content: center;
            gap: 17px;
            color: #fff;
            font-family: var(--mk-font-extrabold);
            font-size: 15px;
            line-height: 1.2;
            text-transform: uppercase;
        }

        .mk-quality-band i {
            width: 46px;
            height: 46px;
            border: 2px solid rgba(255, 255, 255, .8);
            font-size: 21px;
        }
}

@media (min-width: 740px) and (max-width: 1023px) {
    .mk-stat-panel {
        max-width: 720px;
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }

    .mk-about-visual, .mk-about-visual img {
        min-height: 100%;
        height: 100%;
        border-radius: 0;
    }

    .mk-script-title {
        font-size: 26px;
    }

    .mk-about h1 small {
        font-size: 26px;
    }

    .mk-quality-band .grid span {
        flex: 1 1 0;
        color: #003b91;
        font-size: 14px;
        line-height: 1.5;
    }

        .mk-quality-band .grid span b {
            color: #FF9800;
        }

    .mk-slogan {
        font-size: 26px;
    }

    .mk-topbar-links {
        display: none !important;
    }

    .mk-about h1 {
        font-size: 46px;
        margin-bottom: 25px;
    }

    .mk-about-circle {
        display: none;
    }
}

@media (max-width: 739px) {
    .mk-about-circle {
        display: block;
        opacity: 1;
    }

    .mk-about-circle {
        position: absolute;
        z-index: 4;
        display: block;
        overflow: hidden;
        border: 5px solid #fff;
        border-radius: 50%;
        background: #e7eef8;
        box-shadow: 0 12px 28px rgba(0, 43, 112, .18);
    }

        .mk-about-circle img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform .35s ease;
        }

        .mk-about-circle:hover img {
            transform: scale(1.055);
        }

    .mk-about-circle-a {
        left: 0;
        bottom: -48px;
        width: 31%;
        height: 42%;
    }

    .mk-about-circle-b {
        left: 0;
        bottom: -62px;
        width: 144px;
        height: 144px;
        right: 0;
        margin: auto;
    }

    .mk-about-circle-c {
        right: 0;
        bottom: -46px;
        width: 31%;
        height: 42%;
    }
}

/* Featured news PSD final pass */
@media (min-width: 1024px) {
    .mk-news {
        padding: 70px 0 66px;
        background: #fff;
    }

        .mk-news .grid.wide {
            max-width: 1200px;
        }

        .mk-news .mk-section-title {
            margin: 0 0 42px;
            color: #003f9e;
            font-family: var(--mk-font-extrabold);
            font-size: 31px;
            line-height: 1;
            letter-spacing: 0;
        }

            .mk-news .mk-section-title::after {
                left: 0;
                bottom: -10px;
                width: 57px;
                height: 2px;
                background: #003f9e;
            }

            .mk-news .mk-section-title::before {
                content: "";
                position: absolute;
                left: 0;
                bottom: -14px;
                width: 30px;
                height: 2px;
                background: #003f9e;
            }

    .mk-news-grid {
        display: grid;
        grid-template-columns: 513px 316px 311px;
        align-items: start;
        gap: 30px;
    }

    .mk-feature-card {
        overflow: visible;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

        .mk-feature-card a {
            display: block;
        }

        .mk-feature-card .mk-img {
            height: 415px;
            border-radius: 7px;
            box-shadow: 0 8px 20px rgba(0, 43, 112, .08);
        }

            .mk-feature-card .mk-img img {
                object-position: center center;
            }

        .mk-feature-card h3 {
            margin: 24px 0 11px;
            color: #09359e;
            font-family: var(--mk-font-bold);
            font-size: 25px;
            line-height: 1.5;
            transition: color .3s ease;
            text-align: justify;
        }

        .mk-feature-card a:hover h3 {
            color: #0b66d8;
        }

        .mk-feature-card p {
            margin: 19px 0 24px;
            color: #1c1c1c;
            font-family: var(--mk-font-medium);
            font-size: 17px;
            line-height: 1.5;
            text-align: justify;
        }

        .mk-feature-card em {
            min-width: 142px;
            height: 35px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            margin: 0;
            padding: 0 17px;
            border: 1px solid #d8dfe9;
            border-radius: 999px;
            color: #254193;
            background: #fff;
            font-family: var(--mk-font-medium);
            font-size: 14px;
            font-style: normal;
            text-transform: uppercase;
            transition: background .3s ease, color .3s ease, border-color .3s ease, transform .3s ease;
        }

        .mk-feature-card a:hover em {
            background: #003f9e;
            border-color: #003f9e;
            color: #fff;
            transform: translateY(-2px);
        }

    .mk-news .mk-date {
        color: #727272;
        font-family: var(--mk-font-medium);
        font-size: 13px;
        line-height: 1;
    }

        .mk-news .mk-date i {
            color: #004ec0;
            font-size: 15px;
        }

    .mk-news-small {
        display: block;
        padding: 20px 20px 13px;
        border: 1px solid #dfe8f7;
        border-radius: 18px;
        background: #fff;
        box-shadow: 1px 0px 14px 2px rgba(0, 43, 112, .16);
        overflow: hidden;
    }

        .mk-news-small .mk-small-news {
            border-radius: 0;
            background: transparent;
            box-shadow: none;
            overflow: visible;
        }

            .mk-news-small .mk-small-news:first-child {
                padding-bottom: 14px;
            }

                .mk-news-small .mk-small-news:first-child .mk-img {
                    height: 214px;
                    border-radius: 7px;
                    box-shadow: none;
                }

                    .mk-news-small .mk-small-news:first-child .mk-img img {
                        object-position: center center;
                    }

                .mk-news-small .mk-small-news:first-child .w-date-cate-new {
                    margin: 16px 0 0;
                }

                    .mk-news-small .mk-small-news:first-child .w-date-cate-new span.mk-cate
                    .mk-news-small .mk-small-news:first-child strong {
                        margin: 11px 0 0;
                        color: #09359e;
                        font-family: var(--mk-font-bold);
                        font-size: 17px;
                        line-height: 1.5;
                        -webkit-line-clamp: 3;
                        transition: color .3s ease;
                        text-align: justify;
                    }

                .mk-news-small .mk-small-news:first-child:hover strong {
                    color: #0b66d8;
                }

                .mk-news-small .mk-small-news:first-child p {
                    display: none;
                }

            .mk-news-small .mk-small-news:not(:first-child) .mk-img,
            .mk-news-small .mk-small-news:not(:first-child) .mk-date,
            .mk-news-small .mk-small-news:not(:first-child) p {
                display: none;
            }

            .mk-news-small .mk-small-news:not(:first-child) a {
                position: relative;
                display: block;
                padding: 13px 0 12px 16px;
                border-top: 1px dashed #c7cdd7;
                transition: background .3s ease, transform .3s ease;
            }

                .mk-news-small .mk-small-news:not(:first-child) a::before {
                    content: "";
                    position: absolute;
                    left: 0;
                    top: 20px;
                    width: 7px;
                    height: 7px;
                    border-radius: 50%;
                    background: #004ec0;
                    box-shadow: 0 0 0 3px rgba(0, 78, 192, .08);
                    transition: transform .3s ease, background .3s ease;
                }

                .mk-news-small .mk-small-news:not(:first-child) a:hover {
                    transform: translateX(4px);
                }

                    .mk-news-small .mk-small-news:not(:first-child) a:hover::before {
                        background: #23a454;
                        transform: scale(1.15);
                    }

            .mk-news-small .mk-small-news:not(:first-child) strong {
                margin: 0;
                color: #2c2c2c;
                font-family: var(--mk-font-medium);
                font-size: 15px;
                line-height: 1.5;
                -webkit-line-clamp: 2;
                transition: color .3s ease;
                text-align: justify;
                font-weight: normal;
            }

            .mk-news-small .mk-small-news:not(:first-child):hover strong {
                color: #003f9e;
            }

    span.mk-cate-n {
        display: flex;
        font-size: 12px;
        font-family: 'Montserrat-Medium';
        color: #faae29;
        border-radius: 10px;
        border: 1px solid #faae29;
        background: #fff9ee;
        width: max-content;
        height: 22px;
        align-items: center;
        justify-content: center;
        padding: 0 9px;
        display: none;
    }

    .w-date-cate-new {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .mk-news-utility {
        display: grid;
        gap: 10px;
    }

        .mk-news-utility > a {
            display: block;
            overflow: hidden;
            border-radius: 7px;
            box-shadow: 0 8px 20px rgba(0, 43, 112, .12);
            transition: transform .3s ease, box-shadow .3s ease;
        }

            .mk-news-utility > a:hover {
                transform: translateY(-4px);
                box-shadow: 0 16px 30px rgba(0, 43, 112, .2);
            }

            .mk-news-utility > a img {
                width: 100%;
                display: block;
                object-fit: cover;
                transition: transform .35s ease, filter .35s ease;
            }

            .mk-news-utility > a:hover img {
                transform: scale(1.04);
                filter: saturate(1.05);
            }

    .mk-documents {
        display: none;
    }
}

.top-mk-new {
    display: flex;
    align-items: start;
    align-items: flex-start; /* Fixes Safari */
    justify-content: space-between;
}

.btn-link-new {
    display: flex;
    justify-content: center;
}

    .btn-link-new a {
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        min-width: 136px;
        padding: 9px 17px;
        border-radius: 50px;
        background: linear-gradient(135deg, #0069dc 0%, #003f9e 100%) !important;
        color: #fff;
        font-size: 16px;
        font-weight: normal;
        font-family: 'Montserrat-SemiBold';
        text-decoration: none;
        box-shadow: 0 10px 24px rgba(0, 82, 184, 0.25);
        overflow: hidden;
        transition: all 0.3s ease;
    }

        .btn-link-new a span {
            position: relative;
            z-index: 2;
            line-height: normal;
            display: flex;
            align-items: center;
        }

        .btn-link-new a::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, #e69830 0%, #e69830 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .btn-link-new a:hover {
            transform: translateY(-3px);
            box-shadow: 0 14px 30px rgba(22, 163, 74, 0.28);
        }

            .btn-link-new a:hover::before {
                opacity: 1;
            }

            .btn-link-new a:hover::after {
                transform: translateX(4px);
            }

@media (min-width: 740px) and (max-width: 1023px) {
    .mk-news-grid {
        grid-template-columns: 1fr;
    }

    .mk-news-small {
        grid-template-columns: 1fr 1fr;
        gap: 21px;
    }

    .mk-news .mk-date {
        color: #727272;
        font-family: var(--mk-font-medium);
        font-size: 13px;
        line-height: 1;
        margin-left: 0;
        display: inline-flex;
        align-items: center;
        gap: 2px;
    }

    span.mk-cate-n {
        display: none;
    }

    .w-date-cate-new {
        margin-left: 14px;
        margin-bottom: 3px;
    }

    .mk-news .mk-date i {
        color: #004ec0;
        font-size: 15px;
    }

    .mk-small-news .mk-img {
        height: 240px;
    }

    .mk-news-utility {
        grid-column: 1 / -1;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mk-utility img {
        height: auto;
    }

    .mk-activity-card .mk-img {
        height: 240px !important;
    }
}

/* Notices + activities PSD final pass */
.mk-notices {
    padding: 60px 0 60px;
    background: #ced7ec;
}

    .mk-notices .mk-section-title,
    .mk-activities .mk-section-title {
        margin: 0 0 39px;
        color: #09359e;
        font-family: var(--mk-font-extrabold);
        font-size: 30px;
        line-height: 1;
        letter-spacing: 0;
        text-transform: uppercase;
    }

        .mk-notices .mk-section-title::after,
        .mk-activities .mk-section-title::after {
            left: 0;
            bottom: -11px;
            width: 57px;
            height: 2px;
            border-radius: 0;
            background: #003f9e;
        }

        .mk-notices .mk-section-title::before,
        .mk-activities .mk-section-title::before {
            content: "";
            position: absolute;
            left: 0;
            bottom: -15px;
            width: 30px;
            height: 2px;
            background: #003f9e;
        }

.mk-notice-swiper {
    margin: -8px -8px;
    padding: 8px;
    overflow: hidden;
}

    .mk-notice-swiper .swiper-wrapper {
        align-items: stretch;
    }

.mk-notice-card {
    width: auto;
    min-height: 96px;
    height: auto;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .48);
    border-radius: 7px;
    background: #0047bd;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease, background .3s ease, border-color .3s ease;
}

    .mk-notice-card:nth-child(2n+1) {
        background: #fff;
        border-color: #d7e3f3;
    }

    .mk-notice-card a {
        min-height: 110px;
        height: 100%;
        display: flex;
        align-items: center;
        gap: 11px;
        padding: 14px 13px 13px;
        color: #fff;
        text-decoration: none;
    }

    .mk-notice-card:nth-child(2n+1) a {
        color: #003f9e;
    }

.mk-notice-date {
    width: 47px;
    min-width: 47px;
    min-height: 55px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: rgba(255, 255, 255, .16);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .22);
}

.mk-notice-card:nth-child(2n+1) .mk-notice-date {
    background: #eef5ff;
    box-shadow: inset 0 0 0 1px #d4e5fb;
}

.mk-notice-date strong {
    display: block;
    color: currentColor;
    font-family: var(--mk-font-extrabold);
    font-size: 20px;
    line-height: 1;
}

.mk-notice-date em {
    display: block;
    margin-top: 5px;
    color: currentColor;
    font-family: var(--mk-font-semibold);
    font-size: 9px;
    font-style: normal;
    line-height: 1;
    opacity: .88;
    white-space: nowrap;
}

.mk-notice-title {
    display: -webkit-box;
    padding-top: 1px;
    font-family: var(--mk-font-medium);
    font-size: 15px;
    line-height: 1.5;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: left;
}

.mk-notice-card:hover {
    transform: translateY(-5px);
    background: #0060d4;
}

.mk-notice-card:nth-child(2n+1):hover {
    background: #f8fbff;
    border-color: #b9d4f6;
}

.mk-notice-card:hover .mk-notice-title {
    color: inherit;
}

.mk-activities {
    padding: 58px 0 72px;
    background: #f5f5f5;
}

.mk-activities-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    align-items: start;
    gap: 34px;
}

.mk-activity-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px 21px;
}

.mk-activity-card {
    border-radius: 7px;
    background: transparent;
    box-shadow: none;
    overflow: visible;
    transition: transform .3s ease;
}

    .mk-activity-card a {
        display: block;
        color: inherit;
        text-decoration: none;
    }

    .mk-activity-card .mk-img {
        height: 200px;
        display: block;
        overflow: hidden;
        border-radius: 7px;
        background: #e7edf6;
        box-shadow: 0 7px 16px rgba(0, 43, 112, .1);
    }

        .mk-activity-card .mk-img img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
            object-position: center center;
            transition: transform .35s ease, filter .35s ease;
        }

    .mk-activity-card .mk-date {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        margin: 12px 0 0;
        color: #727272;
        font-family: var(--mk-font-medium);
        font-size: 14px;
        line-height: 1;
    }

        .mk-activity-card .mk-date i {
            color: #004ec0;
            font-size: 12px;
            transition: color .3s ease, transform .3s ease;
        }

    .mk-activity-card strong {
        display: -webkit-box;
        margin: 7px 0 8px;
        color: #1c1c1c;
        font-family: var(--mk-font-bold);
        font-size: 16px;
        line-height: 1.5;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        transition: color .3s ease;
        text-align: justify;
    }

    .mk-activity-card p {
        display: -webkit-box;
        margin: 0;
        color: #1c1c1c;
        font-family: var(--mk-font-medium);
        font-size: 15px;
        line-height: 1.5;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-align: justify;
    }

    .mk-activity-card:hover {
        transform: translateY(-5px);
    }

        .mk-activity-card:hover .mk-img {
            box-shadow: 0 16px 30px rgba(0, 43, 112, .16);
        }

            .mk-activity-card:hover .mk-img img {
                transform: scale(1.055);
                filter: saturate(1.05);
            }

        .mk-activity-card:hover strong {
            color: #003f9e;
        }

        .mk-activity-card:hover .mk-date i {
            color: #25a85a;
            transform: translateY(-1px);
        }

.mk-activity-utility {
    display: grid;
    gap: 15px;
}

    .mk-activity-utility a {
        display: block;
        overflow: hidden;
        border-radius: 12px;
        background: #fff;
        box-shadow: 0 8px 18px rgba(0, 43, 112, .1);
        transition: transform .3s ease, box-shadow .3s ease;
    }

        .mk-activity-utility a:hover {
            transform: translateY(-5px);
            box-shadow: 0 16px 30px rgba(0, 43, 112, .18);
        }

    .mk-activity-utility img {
        width: 100%;
        height: 100%;
        min-height: 0;
        max-height: none;
        display: block;
        object-fit: cover;
        transition: transform .35s ease, filter .35s ease;
        border-radius: 12px;
    }

    .mk-activity-utility a:hover img {
        transform: scale(1.035);
        filter: saturate(1.06);
    }

@media (min-width: 1024px) {
    .mk-notice-swiper .swiper-slide {
        width: calc((100% - 60px) / 6) !important;
    }
}

@media (min-width: 740px) and (max-width: 1023px) {
    .mk-notices {
        padding: 48px 0;
    }

        .mk-notices .mk-section-title, .mk-activities .mk-section-title {
            font-size: 25px;
        }

    .mk-activities-grid {
        grid-template-columns: 1fr;
    }

    .mk-activity-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mk-activity-utility {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

        .mk-activity-utility img {
            height: auto;
        }
}

@media (max-width: 739px) {
    .mk-notices,
    .mk-activities {
        padding: 34px 0;
    }

    .btn-link-new a {
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        min-width: 110px;
        padding: 8px 12px;
        border-radius: 50px;
        background: linear-gradient(135deg, #0069dc 0%, #003f9e 100%) !important;
        color: #fff;
        font-size: 14px;
        font-weight: normal;
        font-family: 'Montserrat-SemiBold';
        text-decoration: none;
        box-shadow: 0 10px 24px rgba(0, 82, 184, 0.25);
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .mk-notices .mk-section-title,
    .mk-activities .mk-section-title {
        margin-bottom: 31px;
        font-size: 20px;
    }

    .mk-notice-swiper {
        margin-right: -16px;
        padding-right: 16px;
    }

    .mk-notice-card a {
        min-height: 92px;
    }

    .mk-activities-grid,
    .mk-activity-utility {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .mk-notice-title {
        display: -webkit-box;
        padding-top: 1px;
        font-family: 'Montserrat-SemiBold' !important;
        font-size: 14px !important;
        line-height: 1.5;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-align: left;
    }

    .mk-activity-utility {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .mk-activity-list {
        gap: 22px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mk-activity-card .mk-img {
        height: 165px;
    }
}

/* Gallery PSD final pass */
.mk-gallery {
    position: relative;
    padding: 50px 0 140px;
    background: #fff;
}

    .mk-gallery .mk-section-title {
        margin: 0 0 39px;
        font-family: var(--mk-font-extrabold);
        font-size: 30px;
        line-height: 1.5;
        letter-spacing: 0;
        text-align: center;
        text-transform: uppercase;
    }

.mk-gallery-grid {
    display: grid;
    grid-template-columns: 2.1fr repeat(4, minmax(0, 1fr));
    grid-auto-rows: 180px;
    gap: 13px;
}

    .mk-gallery-grid a {
        position: relative;
        /* overflow: hidden; */
        border-radius: 10px;
        transition: transform .3s ease, box-shadow .3s ease;
    }

        .mk-gallery-grid a:nth-child(2), .mk-gallery-grid a:nth-child(3) {
            padding-top: 32px;
        }

        .mk-gallery-grid a:nth-child(4) {
            padding-top: 18px;
        }

        .mk-gallery-grid a:nth-child(6), .mk-gallery-grid a:nth-child(7), .mk-gallery-grid a:nth-child(8) {
            padding-bottom: 10px;
        }

        .mk-gallery-grid a:first-child {
            grid-row: span 2;
        }

    .mk-gallery-grid img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        object-position: center center;
        transition: transform .35s ease, filter .35s ease;
        border-radius: 20px;
    }

    .mk-gallery-grid .mk-gallery-item:nth-child(1) img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        object-position: center center;
        transition: transform .35s ease, filter .35s ease;
        -webkit-mask-image: url(/Design/img/THPTMinhKhai/l1.png);
        -webkit-mask-size: 100% 100%;
        -webkit-mask-position: center center;
        -webkit-mask-repeat: no-repeat;
        width: 100%;
        display: block;
        margin: 0px auto;
        max-height: 100%;
        object-fit: cover;
    }

    .mk-gallery-grid .mk-gallery-item:nth-child(3) img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        object-position: center center;
        transition: transform .35s ease, filter .35s ease;
        -webkit-mask-image: url(/Design/img/THPTMinhKhai/l2.png);
        -webkit-mask-size: 100% 100%;
        -webkit-mask-position: center center;
        -webkit-mask-repeat: no-repeat;
        width: 100%;
        display: block;
        margin: 0px auto;
        max-height: 100%;
        object-fit: cover;
    }

    .mk-gallery-grid .mk-gallery-item:nth-child(4) img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        object-position: center center;
        transition: transform .35s ease, filter .35s ease;
        -webkit-mask-image: url(/Design/img/THPTMinhKhai/l3.png);
        -webkit-mask-size: 100% 100%;
        -webkit-mask-position: center center;
        -webkit-mask-repeat: no-repeat;
        width: 100%;
        display: block;
        margin: 0px auto;
        max-height: 100%;
        object-fit: cover;
    }

    .mk-gallery-grid .mk-gallery-item:nth-child(5) img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        object-position: center center;
        transition: transform .35s ease, filter .35s ease;
        -webkit-mask-image: url(/Design/img/THPTMinhKhai/l4.png);
        -webkit-mask-size: 100% 100%;
        -webkit-mask-position: center center;
        -webkit-mask-repeat: no-repeat;
        width: 100%;
        display: block;
        margin: 0px auto;
        max-height: 100%;
        object-fit: cover;
    }

.mk-gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    /* background: rgba(0, 59, 145, .32); */
    opacity: 0;
    transition: opacity .3s ease;
}

    .mk-gallery-overlay i {
        width: 36px;
        height: 36px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(255, 255, 255, .92);
        color: #003f9e;
        font-size: 16px;
        transform: translateY(8px);
        transition: transform .3s ease, background .3s ease, color .3s ease;
    }

.mk-gallery-item:hover {
    transform: translateY(-4px);
    /* box-shadow: 0 16px 30px rgba(0, 43, 112, .17); */
}

    .mk-gallery-item:hover img {
        transform: scale(1.06);
        filter: saturate(1.06);
    }

    .mk-gallery-item:hover .mk-gallery-overlay {
        opacity: 1;
    }

        .mk-gallery-item:hover .mk-gallery-overlay i {
            transform: translateY(0);
        }

.mk-album-more {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 22px 18px;
    color: #fff;
    background: linear-gradient(135deg, #0069dc 0%, #003f9e 100%) !important;
    font-family: var(--mk-font-semibold);
    font-size: 15px;
    line-height: 1.25;
    text-align: left;
    object-position: center center;
    transition: transform .35s ease, filter .35s ease;
    -webkit-mask-image: url(/Design/img/THPTMinhKhai/l5.png);
    -webkit-mask-size: 100% 100%;
    -webkit-mask-position: center center;
    -webkit-mask-repeat: no-repeat;
    width: 100%;
    display: block;
    margin: 0px auto;
    max-height: 100%;
    object-fit: cover;
}

    .mk-album-more span {
        position: relative;
        z-index: 1;
    }

    .mk-album-more:hover {
        transform: translateY(-4px);
        box-shadow: 0 16px 30px rgba(0, 43, 112, .2);
    }

        .mk-album-more:hover::before {
            transform: scale(1.18);
        }

        .mk-album-more:hover i {
            transform: translateX(3px) scale(1.04);
        }

@media (min-width: 740px) and (max-width: 1023px) {
    .mk-gallery {
        padding: 58px 0 64px;
    }

    .mk-gallery-grid a:nth-child(2), .mk-gallery-grid a:nth-child(3), .mk-gallery-grid a:nth-child(4) {
        padding: 0;
    }

    .mk-gallery-grid .mk-gallery-item:nth-child(5) img {
        -webkit-mask-image: none;
    }

    .mk-gallery-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        grid-auto-rows: 118px;
    }

        .mk-gallery-grid a:first-child {
            grid-column: span 2;
            grid-row: span 2;
        }
}

@media (max-width: 739px) {
    .mk-gallery {
        padding: 30px 0 50px;
    }

        .mk-gallery .mk-section-title {
            margin-bottom: 0;
            font-size: 18px;
            text-align: left;
            line-height: normal;
        }

        .mk-gallery .top-mk-new {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

    .mk-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 118px;
        gap: 10px;
    }

        .mk-gallery-grid a:first-child {
            grid-column: 1 / -1;
            grid-row: span 2;
        }

        .mk-gallery-grid a {
            border-radius: 20px;
        }

    .mk-album-more {
        min-height: 118px;
        padding: 16px;
        font-size: 14px;
    }
}

/* Footer Minh Khai PSD final pass */
.mk-footer {
    position: relative;
    padding: 50px 0 20px;
    background: #082a71 !important;
    color: #fff;
}

    .mk-footer::before {
        content: "";
        position: absolute;
        left: 0;
        top: -95px;
        right: 0;
        width: 100%;
        pointer-events: none;
        background: url(/Design/img/THPTMinhKhai/footer.png) no-repeat;
        height: 100%;
        margin: auto;
        object-fit: cover;
        background-size: 100% 100%;
    }

    .mk-footer .grid.wide {
        position: relative;
        z-index: 1;
    }

.mk-footer-main {
    display: grid;
    grid-template-columns: 450px 250px 118px 253px;
    align-items: start;
    gap: 37px;
}

.mk-footer h2,
.mk-footer h3,
.mk-footer p,
.mk-footer ul {
    margin: 0;
}

.mk-footer-school h2 span {
    display: block;
    color: #fff;
    font-family: var(--mk-font-medium);
    font-size: 23px;
    line-height: 1.5;
    text-transform: uppercase;
}

.mk-footer-school h2 strong {
    position: relative;
    display: inline-block;
    margin-top: 12px;
    padding-bottom: 13px;
    color: #3ec8ff;
    font-family: var(--mk-font-extrabold);
    font-size: 32px;
    line-height: 1;
    text-transform: uppercase;
}

    .mk-footer-school h2 strong::after,
    .mk-footer h3::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100px;
        height: 1px;
        background: #16d9ff;
    }

.mk-footer-contact-list {
    display: grid;
    gap: 9px;
    margin-top: 27px !important;
    padding: 0;
    list-style: none;
}

    .mk-footer-contact-list li {
        display: flex;
        align-items: center;
        gap: 9px;
        min-width: 0;
        color: #fff;
        font-family: var(--mk-font-medium);
        font-size: 15px;
        line-height: 1.25;
    }

    .mk-footer-contact-list i {
        width: 16px;
        color: #16d9ff;
        font-size: 16px;
        text-align: center;
        transition: transform .3s ease, color .3s ease;
    }

.mk-footer a {
    color: inherit;
    text-decoration: none;
    transition: color .3s ease, transform .3s ease, border-color .3s ease, background .3s ease, box-shadow .3s ease;
}

.mk-footer-contact-list li:hover i {
    color: #30e189;
    transform: translateY(-2px);
}

.mk-footer-contact-list a:hover {
    color: #16d9ff;
}

.mk-footer-hotline {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    margin-top: 28px;
    color: #3ec8ff !important;
}

    .mk-footer-hotline > i {
        font-size: 39px;
        transform: rotate(-14deg);
        transition: transform .3s ease, color .3s ease;
    }

    .mk-footer-hotline span {
        display: grid;
        gap: 3px;
        font-family: var(--mk-font-semibold);
        font-size: 16px;
        line-height: 1;
    }

    .mk-footer-hotline strong {
        display: block;
        color: #3ec8ff;
        font-family: var(--mk-font-extrabold);
        font-size: 24px;
        line-height: 1;
    }

    .mk-footer-hotline:hover > i {
        color: #30e189;
        transform: rotate(-14deg) scale(1.08);
    }

.mk-footer h3 {
    position: relative;
    display: inline-block;
    padding-bottom: 11px;
    color: #3ec8ff;
    font-family: var(--mk-font-medium);
    font-size: 19px;
    line-height: 1;
    text-transform: uppercase;
    font-weight: normal;
}

    .mk-footer h3::after {
        width: 78px;
    }

.mk-footer-about p {
    margin-top: 19px;
    color: rgba(255, 255, 255, .94);
    font-family: var(--mk-font-regular);
    font-size: 14px;
    line-height: 1.45;
    text-align: justify;
}

.mk-footer-about a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 18px;
    color: #3ec8ff;
    font-family: var(--mk-font-semibold);
    font-size: 15px;
}

    .mk-footer-about a:hover {
        color: #30e189;
        transform: translateX(4px);
    }

.mk-footer-nav ul {
    display: grid;
    gap: 10px;
    margin-top: 22px !important;
    padding: 0;
    list-style: none;
}

.mk-footer-nav li a {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding-left: 12px;
    color: #fff;
    font-family: var(--mk-font-regular);
    font-size: 15px;
    line-height: 1.1;
}

    .mk-footer-nav li a::before {
        content: "\203A";
        position: absolute;
        left: 0;
        top: -1px;
        color: #fff;
        transition: color .3s ease, transform .3s ease;
    }

    .mk-footer-nav li a:hover {
        color: #16d9ff;
        transform: translateX(6px);
    }

        .mk-footer-nav li a:hover::before {
            color: #30e189;
            transform: translateX(-2px);
        }

.mk-footer-map {
    width: 270px;
    height: 290px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 18px 34px rgba(0, 15, 56, .16);
    transition: transform .3s ease, box-shadow .3s ease;
}

    .mk-footer-map iframe {
        width: 100%;
        height: 100%;
        display: block;
    }

    .mk-footer-map:hover {
        transform: translateY(-5px);
        box-shadow: 0 24px 42px rgba(0, 15, 56, .25);
    }

.mk-footer-cta {
    min-height: 102px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto 252px;
    align-items: center;
    gap: 30px;
    margin-top: 41px;
    padding: 15px 20px;
    border-radius: 8px;
    background: linear-gradient(100deg, #10d8d9 0%, #18d0ae 46%, #31b954 100%);
    box-shadow: 0 18px 34px rgba(0, 15, 56, .14);
}

.mk-footer-copy {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #fff;
    font-family: var(--mk-font-semibold);
    font-size: 15px;
    line-height: 1.38;
}

    .mk-footer-copy img {
        width: 66px;
        height: 66px;
        object-fit: contain;
        transition: transform .35s ease;
    }

    .mk-footer-copy:hover img {
        transform: rotate(-4deg) scale(1.05);
    }

.mk-footer-social-wrap {
    display: flex;
    align-items: center;
    gap: 19px;
    color: #fff;
    font-family: var(--mk-font-semibold);
    font-size: 14px;
}

.mk-footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .mk-footer-social a {
        width: 43px;
        height: 43px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(255, 255, 255, .86);
        border-radius: 50%;
        color: #fff;
        font-size: 18px;
    }

        .mk-footer-social a:first-child {
            background: #fff;
            color: #0aa6d6;
        }

        .mk-footer-social a:hover {
            background: #083985;
            border-color: #083985;
            color: #fff;
            transform: translateY(-4px);
            box-shadow: 0 12px 22px rgba(0, 38, 96, .22);
        }

.mk-footer-download {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    padding: 12px 18px;
    border-radius: 7px;
    background: #082a71;
    color: #fff !important;
    text-transform: uppercase;
    box-shadow: 0 12px 24px rgba(0, 38, 96, .17);
}

    .mk-footer-download > i {
        font-size: 41px;
    }

    .mk-footer-download span {
        display: grid;
        font-family: var(--mk-font-bold);
        font-size: 25px;
        line-height: 1.2;
        font-weight: normal;
    }

    .mk-footer-download em {
        color: #25e17f;
        font-family: var(--mk-font-extrabold);
        font-size: 15px;
        font-style: normal;
    }

    .mk-footer-download:hover {
        background: #003f9e;
        transform: translateY(-4px);
    }

.mk-footer-bottom-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 20px;
    color: #fff;
    font-family: var(--mk-font-medium);
    font-size: 15px;
}

    .mk-footer-bottom-line a {
        color: #30e189;
    }

        .mk-footer-bottom-line a:hover {
            color: #16d9ff;
        }

.mk-footer-counter {
    display: flex;
    align-items: center;
    gap: 28px;
    font-family: var(--mk-font-semibold);
}

    .mk-footer-counter div {
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }

    .mk-footer-counter i {
        color: #16d9ff;
        transition: color .3s ease, transform .3s ease;
    }

    .mk-footer-counter div:hover i {
        color: #30e189;
        transform: translateY(-2px);
    }

@media (min-width: 740px) and (max-width: 1023px) {
    .mk-footer {
        padding-top: 58px;
    }

    .mk-footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .mk-footer-school h2 span {
        font-size: 18px;
    }

    .mk-footer-school h2 strong {
        font-size: 25px;
    }

    .mk-footer::before {
        content: "";
        position: absolute;
        left: 0;
        top: -64px;
        right: 0;
        width: 100%;
        pointer-events: none;
        background: url(/Design/img/THPTMinhKhai/footer.png) no-repeat;
        height: 37%;
        margin: auto;
        object-fit: cover;
        background-size: 100% 100%;
    }

    .mk-footer-map {
        width: 100%;
    }

    .mk-footer-cta {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .mk-footer-social-wrap {
        justify-content: space-between;
    }
}

@media (max-width: 739px) {
    .mk-footer {
        padding: 44px 0 92px;
    }

        .mk-footer::before {
            content: "";
            position: absolute;
            left: 0;
            top: -30px;
            right: 0;
            width: 100%;
            pointer-events: none;
            background: url(/Design/img/THPTMinhKhai/footer.png) no-repeat;
            height: 14%;
            margin: auto;
            object-fit: cover;
            background-size: 100% 100%;
        }

    .mk-footer-main,
    .mk-footer-cta {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .mk-footer-school h2 span {
        font-size: 16px;
    }

    .mk-footer-school h2 strong {
        font-size: 23px;
    }

    .mk-footer h3 {
        font-size: 16px;
    }

    .mk-footer-nav ul {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-auto-rows: 16px;
        gap: 10px;
    }

    .mk-footer-map {
        width: 100%;
        height: 210px;
    }

    .mk-footer-cta {
        margin-top: 36px;
        padding: 18px;
    }

    .mk-footer-copy {
        font-size: 13px;
        gap: 7px;
    }

        .mk-footer-copy img {
            width: 50px;
            height: 50px;
        }

    .mk-footer-social-wrap,
    .mk-footer-bottom-line,
    .mk-footer-counter {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .mk-footer-download span {
        font-size: 23px;
    }

    .mk-footer-counter {
        width: 100%;
        display: flex;
        justify-content: space-around;
        flex-direction: row;
    }

    .mk-footer-download {
        width: max-content;
        gap: 2px;
        padding: 12px 10px;
    }

    /*Img*/
    .mk-gallery-grid .mk-gallery-item:nth-child(1) img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        object-position: center center;
        transition: transform .35s ease, filter .35s ease;
        -webkit-mask-image: none;
        -webkit-mask-size: 100% 100%;
        -webkit-mask-position: center center;
        -webkit-mask-repeat: no-repeat;
        width: 100%;
        display: block;
        margin: 0px auto;
        max-height: 100%;
        object-fit: cover;
    }

    .mk-gallery-grid .mk-gallery-item:nth-child(3) img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        object-position: center center;
        transition: transform .35s ease, filter .35s ease;
        -webkit-mask-image: url(/Design/img/THPTMinhKhai/l2.png);
        -webkit-mask-size: 100% 100%;
        -webkit-mask-position: center center;
        -webkit-mask-repeat: no-repeat;
        width: 100%;
        display: block;
        margin: 0px auto;
        max-height: 100%;
        object-fit: cover;
    }

    .mk-gallery-grid .mk-gallery-item:nth-child(4) img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        object-position: center center;
        transition: transform .35s ease, filter .35s ease;
        -webkit-mask-image: url(/Design/img/THPTMinhKhai/l3.png);
        -webkit-mask-size: 100% 100%;
        -webkit-mask-position: center center;
        -webkit-mask-repeat: no-repeat;
        width: 100%;
        display: block;
        margin: 0px auto;
        max-height: 100%;
        object-fit: cover;
    }

    .mk-gallery-grid .mk-gallery-item:nth-child(5) img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        object-position: center center;
        transition: transform .35s ease, filter .35s ease;
        -webkit-mask-image: none;
        -webkit-mask-size: 100% 100%;
        -webkit-mask-position: center center;
        -webkit-mask-repeat: no-repeat;
        width: 100%;
        display: block;
        margin: 0px auto;
        max-height: 100%;
        object-fit: cover;
    }

    .mk-gallery-overlay {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        /* background: rgba(0, 59, 145, .32); */
        opacity: 0;
        transition: opacity .3s ease;
    }

        .mk-gallery-overlay i {
            width: 36px;
            height: 36px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(255, 255, 255, .92);
            color: #003f9e;
            font-size: 16px;
            transform: translateY(8px);
            transition: transform .3s ease, background .3s ease, color .3s ease;
        }

    .mk-gallery-item:hover {
        transform: translateY(-4px);
        /* box-shadow: 0 16px 30px rgba(0, 43, 112, .17); */
    }

        .mk-gallery-item:hover img {
            transform: scale(1.06);
            filter: saturate(1.06);
        }

        .mk-gallery-item:hover .mk-gallery-overlay {
            opacity: 1;
        }

            .mk-gallery-item:hover .mk-gallery-overlay i {
                transform: translateY(0);
            }

    .mk-album-more {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 22px 18px;
        color: #fff;
        background: linear-gradient(135deg, #0069dc 0%, #003f9e 100%) !important;
        font-family: var(--mk-font-semibold);
        font-size: 13px;
        line-height: 1.25;
        text-align: left;
        object-position: center center;
        transition: transform .35s ease, filter .35s ease;
        -webkit-mask-image: none;
        -webkit-mask-size: 100% 100%;
        -webkit-mask-position: center center;
        -webkit-mask-repeat: no-repeat;
        width: 100%;
        display: block;
        margin: 0px auto;
        max-height: 100%;
        object-fit: cover;
    }

    .mk-gallery-grid a:nth-child(2), .mk-gallery-grid a:nth-child(3) {
        padding-top: 0;
    }

    .mk-gallery-grid a:nth-child(4) {
        padding-top: 0;
    }

    .mk-gallery-grid a:nth-child(6), .mk-gallery-grid a:nth-child(7), .mk-gallery-grid a:nth-child(8) {
        padding-bottom: 0;
    }
}