/* Landing Page Styles - Ported from view-html/trang_chu/landing.css */
/* @font-face removed — loaded via mpc-base.css */

/* Hero Section */
.hero-section {
    position: relative;
    height: 617px;
    overflow: hidden;
}

.hero-section img {
    width: 100%;
    height: 819px;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* About Section */
.about-section {
    padding: 100px 0 100px 0;
    background: white;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 80px;
    align-items: start;
}

.about-label {
    font-size: 20px;
    color: #828282;
    line-height: 24px;
    height: 24px;
    padding-top: 12px;
}

.about-title {
    font-size: 36px;
    line-height: 44px;
    color: #333333;
    text-transform: uppercase;
    padding-top: 20px;
}

.about-right {
    padding-top: 10px;
}

.about-text,
.description {
    font-size: 20px;
    font-weight: 400;
    line-height: 26px;
    color: #333333;
}

.about-text {
    text-align: justify;
}

/* ========================
   BRAND PARTNER CAROUSEL
   ======================== */
.brand-carousel-section {
    background: #ffffff;
    padding: 36px 0;
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
}

.brand-carousel-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
}

.brand-track-outer {
    overflow: hidden;
    flex: 1;
}

.brand-track {
    display: flex;
    transition: transform 0.4s ease;
    --brand-item-width: 20%;
}

.brand-item {
    flex: 0 0 var(--brand-item-width);
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #eeeeee;
    min-height: 72px;
}

.brand-item:last-child {
    border-right: none;
}

.brand-item img {
    max-height: 80px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.55;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.brand-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.brand-logo-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.06em;
    color: #aaaaaa;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.brand-item:hover .brand-logo-text {
    color: #DF1F28;
}

.brand-arrow {
    background: transparent;
    border: 2px solid #DF1F28;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    padding: 0;
    transition: background 0.25s ease;
}

.brand-arrow:hover {
    background: #DF1F28;
}

.brand-arrow img {
    width: 16px;
    height: 16px;
    transition: filter 0.25s ease;
}

.brand-arrow:hover img {
    filter: invert(1) brightness(5);
}

/* Quick Nav */
.nav-bar {
    width: 868px;
    height: 70px;
    background: #ffffff;
    overflow: hidden;
    display: flex;
    padding-top: 10px;
    margin: 0 auto;
}

.nav-option {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #333333;
    font-size: 18px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.18s ease;
    cursor: pointer;
}

.nav-option:hover {
    background: #f2f2f2;
}

.nav-bar img {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

/* Geo section */
.geo-section {
    padding: 60px 0;
    background: #fff;
    overflow-x: hidden;
}

.map-wrapper {
    padding-left: 0;
    margin-left: calc(-50vw + 50% - 15px);
    width: 50vw;
    max-width: none;
}

.map-wrapper img {
    width: 852px;
    height: 724px;
}

.content-wrapper {
    padding-bottom: 100px;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    width: 555px;
    height: 178px;
}

.info-item {
    display: flex;
    gap: 12px;
    align-items: center;
}

.icon {
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon img {
    width: 60px;
    height: 60px;
}

.description {
    padding-top: 50px;
    width: 557px;
    height: 139px;
}

/* FACILITY */
.facility-left {
    background: linear-gradient(to right, #DF1F28, #FCB248);
    padding: 60px;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-center;
}

/* Tabs */
.facility-tabs {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-right: 15px;
}

/* Tab item */
.tab-item {
    cursor: pointer;
    opacity: 0.7;
    transition: 0.3s;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: #FFFFFF;
    width: 160px;
}

.tab-item:hover {
    opacity: 1;
}

.tab-item.active {
    opacity: 1;
    font-weight: bold;
    font-size: 18px;
    position: relative;
}

.tab-item.active::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 121px;
    height: 2px;
    background-color: #FFFFFF;
    border-radius: 2px;
}

/* Tab content */
.tab-pane {
    display: none;
    font-size: 18px;
    font-weight: normal;
}

.tab-pane.active {
    display: block;
}

/* Thumbnails */
.thumbs {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
}

.thumb {
    width: 123px;
    height: 76px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    z-index: 1000;
    display: block;
    transform: none;
}

.thumb.active {
    border-color: white;
}

/* Image right */
.facility-image {
    overflow: visible;
    padding-right: 0 !important;
}

.facility .container-fluid {
    padding-right: 0;
}

.image-wrapper {
    position: relative;
    padding-top: 120px;
}

.image-wrapper>img {
    width: calc(100% + 80px);
    max-width: none;
    height: 636px;
    object-fit: cover;
    position: relative;
    left: -80px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.next-btn-service img {
    width: 41px;
    height: 41px;
}

/* Next button */
.next-btn-service {
    position: absolute;
    right: 80px;
    top: 56%;
    transform: translateY(-50%);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: transparent;
    font-size: 28px;
    cursor: pointer;
}

/* SERVICE */
.wrapper {
    width: 1400px;
    margin: 60px auto;
    position: relative;
    padding: 20px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title a {
    color: red;
    font-size: 14px;
    text-decoration: none;
}

.slider-viewport {
    overflow: hidden;
    padding: 10px 0;
}

.slider {
    overflow: visible;
    position: relative;
}

.slides {
    display: flex;
    transition: transform .6s ease;
}

.page {
    display: flex;
    width: 100%;
    flex-shrink: 0;
    flex-wrap: wrap;
    row-gap: 20px;
}

.card-item {
    width: 25%;
    padding: 0 10px;
    flex-shrink: 0;
    box-sizing: border-box;
}

.service-card {
    position: relative;
    max-width: 280px;
    transition: .3s;
}

.service-card:hover {
    cursor: pointer;
}

.service-card.active::after,
.service-card:hover::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid #e74c3c;
    pointer-events: none;
    z-index: 10;
}

.service-card img {
    width: 280px;
    height: 443px;
    object-fit: cover;
}

.service-content {
    padding: 20px 0;
    max-width: 280px;
}

.service-title {
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    color: #333333;
    margin-bottom: 12px;
}

.service-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #828282;
    margin-bottom: 25px;
}

.read-more {
    font-size: 14px;
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.service-card.active .read-more,
.service-card:hover .read-more {
    color: #e74c3c;
    text-decoration-color: #e74c3c;
}

/* Hide default active styling when the container is hovered */
.slides:hover .service-card.active:not(:hover)::after {
    display: none;
}

.slides:hover .service-card.active:not(:hover) .read-more {
    color: #4f4f4f;
    text-decoration-color: transparent;
}

.wrapper:has(.arrow:hover) .service-card.active::after {
    display: none;
}

.wrapper:has(.arrow:hover) .service-card.active .read-more {
    color: #4f4f4f;
    text-decoration-color: transparent;
}

/* arrows */
.arrow {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #666;
    cursor: pointer;
    user-select: none;
    z-index: 20;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.arrow:hover {
    background: #e74c3c;
    color: #fff;
    border-color: #e74c3c;
}

.arrow img {
    width: 50px;
    height: 50px;
}

.arrow.left {
    left: -60px;
}

.arrow.right {
    right: -16px;
}

/* dots */
.dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.dot {
    width: 12px;
    height: 12px;
    background: transparent;
    border: 1px solid #999;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background: #FCB248;
    border-color: #FCB248;
}

/* Images library */
.gallery-section {
    padding: 80px 0;
}

.img-box>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

.img-box:hover>img {
    transform: scale(1.05);
}

.next-btn img {
    width: 65px;
    height: 65px;
    transition: 0.4s;
}

.img-box:hover img {
    transform: scale(1.05);
}

.big {
    height: 500px;
}

.small {
    height: 242px;
}

.next-btn {
    position: absolute;
    top: 50%;
    right: 250px;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: transparent;
    font-size: 24px;
    cursor: pointer;
    transition: 0.3s;
}

/* News and Event */
.news-title {
    margin-bottom: 5px;
}

/* WRAPPER */
.news-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* LEFT */
.news-left {
    width: 572px;
    height: 344px;
    background: #f5f5f5;
    padding: 20px;
    overflow: hidden;
    font-weight: 700;
}

.news-left li span {
    font-weight: 400;
}

/* RIGHT */
.news-right {
    width: 572px;
    height: 344px;
}

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

/* LIST */
.news-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.news-list li {
    position: relative;
    padding: 6px 0 6px 18px;
    font-size: 14px;
    border-bottom: 1px solid #ddd;
}

.news-list li::before {
    content: "";
    width: 6px;
    height: 6px;
    background: #333;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 13px;
}

.news-list .date {
    float: right;
    color: #999;
    font-size: 12px;
}

.news-list li a {
    color: #333;
    text-decoration: none;
    font-weight: 700;
}

.news-list li a:hover {
    color: #e74c3c;
}


/* =====================================================
   RESPONSIVE BREAKPOINTS
   ===================================================== */

/* MIN 2200px - Extra Large Screens */
@media (min-width: 2200px) {
    .hero-section {
        height: 850px;
    }

    .hero-section img {
        height: 1050px;
    }

    .nav-bar {
        width: 1200px;
        height: 95px;
    }

    .nav-option {
        font-size: 16px;
    }

    .nav-bar img {
        width: 62px;
        height: 62px;
    }

    .about-section {
        padding: 100px 0 100px 0;
    }

    .about-container {
        max-width: 1950px;
        grid-template-columns: 560px 1fr;
        gap: 150px;
        padding: 0 60px;
    }

    .about-label {
        font-size: 18px;
    }

    .about-title {
        font-size: 54px;
        line-height: 64px;
    }

    .about-text,
    .description {
        font-size: 22px;
        line-height: 34px;
    }

    .btn-outline {
        font-size: 18px;
    }

    .geo-section {
        padding: 80px 0;
    }

    .title2 {
        font-size: 46px;
        line-height: 56px;
    }

    .map-wrapper img {
        width: 1100px;
        height: 940px;
    }

    .info-grid {
        width: 760px;
    }

    .description {
        width: 760px;
    }

    .facility-left {
        padding: 100px;
    }

    .tab-item {
        font-size: 18px;
        width: 200px;
    }

    .tab-item.active {
        font-size: 20px;
    }

    .tab-item.active::before {
        width: 140px;
        left: -35px;
    }

    /* Tab content */
    .tab-pane ul li {
        font-size: 18px;
        line-height: 28px;
        margin-bottom: 4px;
    }

    .btn-outline--white {
        font-size: 18px;
    }

    /* Thumbs */
    .thumbs {
        padding-left: 0 !important;
        gap: 14px;
        justify-content: center;
        margin-top: 20px !important;
    }

    .thumb {
        width: 140px;
        height: 86px;
    }

    .image-wrapper>img {
        width: calc(100% + 80px);
        height: 790px;
    }

    .wrapper {
        width: 1950px;
    }

    .service-card {
        max-width: 350px;
    }

    .service-card img {
        width: 350px;
        height: 560px;
    }

    .service-content {
        max-width: 350px;
    }

    .service-title {
        font-size: 22px;
    }

    .big {
        height: 600px;
    }

    .small {
        height: 290px;
    }

    .news-left,
    .news-right {
        width: 720px;
        height: 430px;
    }
}

/* 1720-2199px - Large Desktop */
@media (min-width: 1720px) and (max-width: 2199px) {
    .hero-section {
        height: 720px;
    }

    .hero-section img {
        height: 920px;
    }

    .nav-bar {
        width: 1000px;
        height: 82px;
    }

    .nav-option {
        font-size: 15px;
    }

    .nav-bar img {
        width: 55px;
        height: 55px;
    }

    .about-section {
        padding: 100px 0 100px 0;
    }

    .about-container {
        max-width: 1680px;
        grid-template-columns: 490px 1fr;
        gap: 115px;
        padding: 0 55px;
    }

    .about-title {
        font-size: 44px;
        line-height: 54px;
    }

    .about-text {
        font-size: 20px;
        line-height: 30px;
    }

    .title2 {
        font-size: 40px;
        line-height: 50px;
    }

    .map-wrapper img {
        width: 990px;
        height: 845px;
    }

    .info-grid {
        width: 690px;
    }

    .description {
        width: 690px;
        font-size: 19px;
        line-height: 29px;
    }

    .facility-left {
        padding: 82px;
    }

    .tab-item {
        font-size: 16px;
        width: 180px;
    }

    .tab-item.active {
        font-size: 18px;
    }

    .tab-item.active::before {
        width: 130px;
        left: -32px;
    }

    .tab-pane ul li {
        font-size: 17px;
        line-height: 27px;
        margin-bottom: 3px;
    }

    .btn-outline--white {
        font-size: 16px;
    }

    .thumbs {
        padding-left: 0 !important;
        gap: 12px;
        justify-content: center;
        margin-top: 18px !important;
    }

    .thumb {
        width: 120px;
        height: 74px;
    }

    .image-wrapper>img {
        width: calc(100% + 80px);
        height: 710px;
    }

    .wrapper {
        width: 1680px;
    }

    .service-card {
        max-width: 315px;
    }

    .service-card img {
        width: 315px;
        height: 500px;
    }

    .service-content {
        max-width: 315px;
    }

    .news-left,
    .news-right {
        width: 650px;
        height: 390px;
    }
}

/* 1368-1719px - Standard Desktop */
@media (min-width: 1368px) and (max-width: 1719px) {
    .about-container {
        max-width: 1400px;
        grid-template-columns: 400px 1fr;
        gap: 80px;
        padding: 0 40px;
    }

    .wrapper {
        width: 1400px;
    }

    .map-wrapper img {
        width: 852px;
        height: 724px;
    }

    .info-grid {
        width: 555px;
    }

    .description {
        width: 557px;
    }

    .image-wrapper>img {
        width: calc(100% + 80px);
        height: 636px;
    }

    .nav-bar {
        width: 868px;
        height: 70px;
    }

    .tab-pane ul li {
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 3px;
    }

    .btn-outline--white {
        font-size: 15px;
    }

    .thumbs {
        padding-left: 0 !important;
        gap: 10px;
        justify-content: center;
        margin-top: 16px !important;
    }

    .thumb {
        width: 110px;
        height: 68px;
    }
}

/* 959-1367px - Small Desktop / Large Tablet */
@media (min-width: 959px) and (max-width: 1367px) {
    .hero-section {
        height: 500px;
    }

    .hero-section img {
        height: 630px;
    }

    .nav-bar {
        width: 100%;
        max-width: 940px;
        height: 70px;
    }

    .nav-bar img {
        width: 46px;
        height: 46px;
    }

    .about-section {
        padding: 80px 0 100px 0;
    }

    .about-container {
        max-width: 100%;
        grid-template-columns: 320px 1fr;
        gap: 60px;
        padding: 0 40px;
    }

    .about-label {
        font-size: 15px;
    }

    .about-title,
    .title2 {
        font-size: 30px;
        line-height: 40px;
    }

    .about-text,
    .description {
        font-size: 16px;
        line-height: 25px;
    }

    .brand-carousel-section {
        padding: 10px 0 20px 0;
    }

    .geo-section {
        padding: 50px 0;
    }

    .geo-section .row {
        display: flex;
        align-items: center;
        width: 100%;
        margin: 0;
    }

    .map-wrapper {
        width: 50vw;
        margin-left: calc(-50vw + 50% - 15px);
        padding-left: 0;
        position: relative;
        flex: 0 0 auto;
    }

    .map-wrapper img {
        width: 100%;
        max-width: 720px;
        height: auto;
        display: block;
    }

    .content-wrapper {
        flex: 1;
        padding-left: 30px;
        padding-right: 40px;
        padding-bottom: 80px;
    }

    .info-grid {
        width: 100%;
        max-width: 100%;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .info-item {
        display: flex;
        gap: 12px;
        align-items: center;
    }

    .description {
        width: 100%;
        max-width: 100%;
        padding-top: 64px;
        height: auto;
    }

    .btn-outline--mt {
        margin-top: 30px;
    }

    .facility {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }

    .facility .text-center.mb-5 {
        margin-bottom: 20px !important;
    }

    .facility-left {
        padding: 40px 30px;
        min-height: auto;
    }

    .tab-item {
        font-size: 13px;
        width: 130px;
    }

    .tab-item.active {
        font-size: 14px;
    }

    .tab-item.active::before {
        width: 90px;
        left: -22px;
    }

    .tab-pane ul {
        padding-left: 18px;
    }

    .tab-pane ul li {
        font-size: 14px;
        line-height: 23px;
        margin-bottom: 2px;
    }

    .facility-bottom-content {
        margin-top: 16px !important;
    }

    .btn-outline--white {
        font-size: 14px;
    }

    .thumbs {
        padding-left: 0 !important;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 14px !important;
    }

    .thumb {
        width: 80px;
        height: 50px;
    }

    .image-wrapper {
        padding-top: 60px;
    }

    .image-wrapper>img {
        width: calc(100% + 30px);
        max-width: none;
        height: auto;
        left: -30px;
    }

    .next-btn-service {
        right: 15px;
    }

    .wrapper {
        width: 100%;
        padding: 20px 60px;
        margin: 50px auto;
    }

    .card-item {
        width: 50%;
    }

    .service-card {
        max-width: 100%;
        margin: 0 auto;
    }

    .service-card img {
        width: 100%;
        max-width: 250px;
        height: 365px;
        display: block;
        margin: 0 auto;
    }

    .service-content {
        max-width: 250px;
        margin: 0 auto;
    }

    .arrow.left {
        left: 10px;
    }

    .arrow.right {
        right: 10px;
    }

    .big {
        height: 420px;
    }

    .small {
        height: 204px;
    }

    .news-wrapper {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .news-left,
    .news-right {
        width: calc(50% - 20px);
        max-width: 100%;
        height: auto;
        min-height: 300px;
    }
}

/* Shared: Tablet + Mobile (<=958px) */
@media (max-width: 958px) {
    .facility-tabs {
        flex-direction: row !important;
        align-items: center !important;
        text-align: center !important;
        gap: 0;
        padding-right: 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
        padding-bottom: 10px;
        justify-content: flex-start;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .facility-tabs::-webkit-scrollbar {
        display: none;
    }

    .tab-item {
        width: auto;
        flex-shrink: 0;
        white-space: nowrap;
    }

    .tab-item.active::before {
        width: 0;
        display: none;
    }

    .tab-item.active {
        font-weight: 700;
    }

    .thumbs {
        padding-left: 0 !important;
        flex-wrap: wrap;
        justify-content: center;
    }

    .btn-outline--white {
        display: flex;
        max-width: 100%;
        padding: 8px 0;
        justify-content: center;
        width: 100%;
    }

    .facility-left {
        min-height: auto;
    }

    .image-wrapper>img {
        width: 100%;
        height: auto;
        left: 0;
        max-width: none;
    }

    .news-left,
    .news-right {
        width: 100%;
        height: auto;
    }
}

/* 640-958px - Tablet */
@media (min-width: 640px) and (max-width: 958px) {
    .hero-section {
        height: 370px;
    }

    .hero-section img {
        height: 470px;
    }

    .nav-bar {
        width: 100%;
        height: auto;
        flex-wrap: wrap;
        padding: 8px;
    }

    .nav-option {
        flex: 1 1 45%;
        font-size: 15px;
        padding: 10px 5px;
        gap: 8px;
    }

    .nav-bar img {
        width: 38px;
        height: 38px;
    }

    .about-section {
        padding: 60px 0 100px 0;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 0 28px;
        max-width: 100%;
    }

    .about-label {
        font-size: 14px;
    }

    .about-title,
    .title2 {
        font-size: 26px;
        line-height: 34px;
    }

    .about-title {
        padding-top: 12px;
    }

    .about-text,
    .description {
        font-size: 15px;
        line-height: 24px;
    }

    .brand-carousel-section {
        padding: 10px 0 20px 0;
    }

    .brand-item {
        padding: 0 16px;
    }

    .geo-section {
        padding: 38px 0;
    }

    .map-wrapper {
        width: 100%;
        margin-left: 0;
        padding: 0 12px;
        margin-bottom: 20px;
    }

    .map-wrapper img {
        width: 100%;
        height: auto;
    }

    .content-wrapper {
        padding: 0 28px 55px;
    }

    .info-grid {
        grid-template-columns: 1fr 1fr;
        width: 100%;
        height: auto;
        gap: 14px;
    }

    .description {
        width: 100%;
        padding-top: 22px;
        height: auto;
    }

    .btn-outline--mt {
        margin-top: 28px;
        font-size: 15px;
    }

    .facility {
        padding-top: 25px !important;
        padding-bottom: 25px !important;
    }

    .facility .text-center.mb-5 {
        margin-bottom: 18px !important;
    }

    .facility-left {
        padding: 30px 24px;
    }

    .facility-left .col-md-4,
    .facility-left .col-md-8 {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    .facility-tabs {
        margin-bottom: 14px;
    }

    .tab-item {
        font-size: 13px;
        padding: 6px 14px;
    }

    .tab-item.active {
        font-size: 14px;
    }

    .tab-pane ul {
        padding-left: 20px;
    }

    .tab-pane ul li {
        font-size: 15px;
        line-height: 24px;
        margin-bottom: 2px;
    }

    .facility-bottom-content {
        margin-top: 18px !important;
    }

    .btn-outline--white {
        font-size: 14px;
    }

    .thumbs {
        gap: 8px;
        margin-top: 12px !important;
    }

    .thumb {
        width: 85px;
        height: 52px;
    }

    .facility-image {
        margin-top: 8px;
    }

    .image-wrapper {
        padding-top: 20px;
    }

    .next-btn-service {
        right: 15px;
    }

    .wrapper {
        width: 100%;
        padding: 18px 28px;
        margin: 38px auto;
    }

    .card-item {
        width: 50%;
    }

    .service-card,
    .service-content {
        max-width: 100%;
    }

    .service-card img {
        width: 100%;
        height: 340px;
    }

    .service-title {
        font-size: 18px;
    }

    .arrow.left {
        left: -5px;
    }

    .arrow.right {
        right: -5px;
    }

    .dots {
        margin-top: 32px;
    }

    .big {
        height: 360px;
    }

    .small {
        height: 174px;
    }

    .news-wrapper {
        flex-direction: column;
        gap: 18px;
        padding: 0 18px;
    }

    .news-left,
    .news-right {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 268px;
    }
}

/* max 639px - Mobile */
@media (max-width: 639px) {
    .hero-section {
        height: 200px;
    }

    .hero-section img {
        height: 260px;
    }

    .nav-bar {
        width: 100%;
        height: auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2px;
        padding: 0;
        overflow: visible;
        background: #e0e0e0;
    }

    .nav-option {
        flex-direction: column;
        font-size: 15px;
        padding: 10px 6px;
        gap: 5px;
        white-space: normal;
        text-align: center;
        line-height: 14px;
        background: #ffffff;
    }

    .nav-bar img {
        width: 32px;
        height: 32px;
        flex-shrink: 0;
    }

    .about-section {
        padding: 32px 0 65px 0;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 0 15px;
    }

    .about-label {
        font-size: 13px;
        line-height: 20px;
    }

    .about-title,
    .title2 {
        font-size: 21px;
        line-height: 29px;
    }

    .about-title {
        padding-top: 10px;
    }

    .about-text {
        font-size: 14px;
        line-height: 22px;
    }

    .btn-outline {
        font-size: 13px;
        padding: 8px 14px;
    }

    .brand-carousel-section {
        padding: 10px 0 30px 0;
    }

    .brand-item {
        padding: 0 10px;
        min-height: 56px;
    }

    .brand-arrow {
        width: 36px;
        height: 36px;
    }

    .brand-arrow img {
        width: 13px;
        height: 13px;
    }

    .brand-logo-text {
        font-size: 13px;
    }


    .geo-section {
        padding: 22px 0;
    }

    .title1 {
        font-size: 12px;
    }

    .map-wrapper {
        width: 100%;
        margin-left: 0;
        padding: 0;
    }

    .map-wrapper img {
        width: 100%;
        height: auto;
    }

    .content-wrapper {
        padding: 0 15px 32px;
    }

    .info-grid {
        grid-template-columns: 1fr 1fr;
        width: 100%;
        height: auto;
        gap: 10px;
    }

    .icon {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }

    .icon img {
        width: 30px;
        height: 30px;
    }

    .description {
        width: 100%;
        font-size: 13px;
        line-height: 21px;
        padding-top: 14px;
        height: auto;
    }

    .btn-outline--mt {
        font-size: 13px;
        margin-top: 18px;
    }

    .facility {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }

    .facility .text-center.mb-5 {
        margin-bottom: 15px !important;
    }

    .facility-left {
        padding: 24px 16px;
    }

    .facility-tabs {
        margin-bottom: 12px;
    }

    .tab-item {
        font-size: 12px;
        line-height: 19px;
        padding: 6px 12px;
    }

    .tab-item.active {
        font-size: 13px;
    }

    #tab-content {
        padding: 0 4px;
    }

    .tab-pane ul {
        padding-left: 18px;
        margin-bottom: 10px;
    }

    .tab-pane ul li {
        font-size: 13px;
        line-height: 22px;
        margin-bottom: 2px;
    }

    .facility-bottom-content {
        margin-top: 16px !important;
    }

    .btn-outline--white {
        font-size: 13px;
    }

    .thumbs {
        gap: 6px;
        margin-top: 12px !important;
    }

    .thumb {
        width: 68px;
        height: 42px;
    }

    .facility-image {
        margin-top: 8px;
    }

    .image-wrapper {
        padding-top: 12px;
    }

    .next-btn-service {
        right: 30px;
        width: 30px;
        height: 30px;
        font-size: 16px;
    }

    .facility-left .col-md-4 {
        margin-bottom: 0;
    }

    .wrapper {
        width: 100%;
        padding: 14px 15px;
        margin: 28px auto;
    }

    .section-title {
        margin-bottom: 22px;
    }

    .section-title h2 {
        font-size: 21px;
        line-height: 29px;
    }

    .section-title a {
        font-size: 12px;
    }

    .card-item {
        width: 100%;
    }

    .service-card,
    .service-content {
        max-width: 100%;
    }

    .service-card {
        margin: 0 auto;
    }

    .service-card img {
        width: 100%;
        height: 260px;
    }

    .service-content {
        padding: 12px 0;
    }

    .service-title {
        font-size: 16px;
        line-height: 23px;
    }

    .service-text {
        font-size: 13px;
        line-height: 20px;
    }

    .arrow {
        width: 34px;
        height: 34px;
        font-size: 17px;
    }

    .arrow.left {
        left: -5px;
    }

    .arrow.right {
        right: -5px;
    }

    .dots {
        gap: 6px;
        margin-top: 22px;
    }

    .dot {
        width: 9px;
        height: 9px;
    }

    .gallery-section {
        padding: 28px 0;
    }

    .gallery-title h2 {
        font-size: 21px;
    }

    .big {
        height: 220px;
    }

    .small {
        height: 106px;
    }

    .next-btn {
        right: 8px;
        width: 34px;
        height: 34px;
        font-size: 17px;
    }

    .news-title {
        font-size: 21px;
    }

    .news-wrapper {
        flex-direction: column;
        gap: 14px;
        padding: 0 15px;
    }

    .news-left,
    .news-right {
        width: 100%;
        height: auto;
        min-height: 210px;
    }

    .news-list li {
        font-size: 12px;
        padding: 4px 0 4px 13px;
    }

    .news-list .date {
        font-size: 10px;
    }
}