.section-about::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 25%;
    background-color: var(--fs-color-primary);
}

.about__text-wrapper {
    padding-right: 4rem;
}

.about__text-wrapper .col-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-image img {
    width: 100%;
    height: 100%;
    aspect-ratio: 595/446;
    object-fit: cover;
    border-radius: 1rem;
}

/* About 2 - Video */
.section.section-about-2::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 60%;
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
    background-color: var(--fs-color-primary);
}

/**
* MEDIA 
*/
/* Desktop lớn (Widescreen) */
@media screen and (max-width: 1921px) {
    /* CSS cho màn hình <= 1920px */
}

/* Desktop thường / Laptop lớn */
@media screen and (max-width: 1441px) {
    /* CSS cho màn hình <= 1440px */
}

/* Laptop nhỏ / Tablet landscape lớn */
@media screen and (max-width: 1201px) {
    /* CSS cho màn hình <= 1200px */
}

/* Nest hub */
@media screen and (max-width: 1025px) {

    /* CSS cho màn hình <= 1025px */
    .about__text-wrapper {
        padding-right: 2rem;
    }
}

/* Tablet landscape / Laptop nhỏ */
@media screen and (max-width: 993px) {
    /* CSS cho màn hình <= 992px */
}

/* Ipad Air */
@media screen and (max-width: 821px) {

    /* CSS cho màn hình <= 821px */
    .section-about::before {
        display: none;
    }

    /* ABOUT */
    .about__text-wrapper {
        padding-right: 1rem;

    }

    .about__text-wrapper .about__title {
        padding-right: 1rem;
        margin-bottom: 1.5rem;
    }

    .about__text-wrapper .about__content {
        text-align: justify !important;
    }
}

/* Tablet portrait lớn / Mobile landscape */
@media screen and (max-width: 769px) {

    /* CSS cho màn hình <= 768px */

}

/* Mobile landscape / Phablet */
@media screen and (max-width: 577px) {

    /* CSS cho màn hình <= 576px */
    .section.section-about {
        padding-bottom: 2rem !important;
    }

    .section-about .about-wrapper {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Mobile IP 14Pro Max */
@media screen and (max-width: 431px) {

    /* CSS cho màn hình <= 431px */
    .btn-xem-them-black {
        margin-top: 1.5rem;
    }

    .section.section-about-2::before {
        height: 75%;
    }

    .about-2__content br {
        display: none;
    }
}

/* Mobile portrait lớn (iPhone 6/7/8 Plus) */
@media screen and (max-width: 415px) {

    /* CSS cho màn hình <= 414px */

}

/* Mobile portrait trung bình (iPhone X/11 Pro) */
@media screen and (max-width: 391px) {

    /* CSS cho màn hình <= 390px */

}

/* Mobile portrait nhỏ (iPhone SE, Android nhỏ) */
@media screen and (max-width: 376px) {
    /* CSS cho màn hình <= 375px */
}