body {
    font-family: Montserrat, sans-serif;
}

.social-section img {
    height: 2.5rem;
}

.rounded-1 {
    border-radius: 1rem;
}

.header-01 {
    background: var(--color-highlight);
    color: white;
    padding: 12px 0;
}

.entire-info-website-header > address {
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.header-01 > .container > .row > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.link-top-header a {
    padding: 8px 20px;
    font-weight: 400;
    font-size: 17px;
    background: -webkit-linear-gradient(left,#058DC2,#4ABAB9);
    color: white;
    border-radius: 8px;
}

.link-top-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.header-02 {
    padding: 15px 0;
}

.home .header-02 {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 2;
}

.home .header-02 > .container > .row {
    background-color: white;
    margin: 0 0px 0 0px;
    padding: 10px 5px;
    border-radius: 10px;
}

.header-02 > .container > .row > div:nth-child(2) {
    text-align: center;
}

.zoom-container {
    width: 100%;
    height: 100%;
    max-height: 86rem;
    overflow: hidden;
    display: inline-block;
    position: relative;
}

.zoom-container:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #00000012;
    z-index: 2;
}

.zoom-container img {
    transform-origin: center center;
    animation: zoomInOut 15s ease-in-out infinite;
}

@keyframes zoomInOut {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }
}

.btn-submit {
    background-color: var(--color-highlight);
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 500;
    padding: 1.4rem 3rem;
    position: relative;
    z-index: 1;
    border: none;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    overflow: hidden;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    border-radius: 0.5rem;
}

.btn-submit:hover:before {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
}

.btn-submit:before {
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: -1;
    height: 100%;
    width: 100%;
    content: "";
    background-color: var(--color-highlight);
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: right top;
    -ms-transform-origin: right top;
    transform-origin: right top;
    transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1) 0s, -webkit-transform 500ms 0s;
}

.btn-submit:before {
    background-color: var(--color-main);
}

.btn-submit:hover:before {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
}

.advitex-image-width-mask-el {
    position: relative;
    z-index: 1;
}

.advitex-image-width-mask-el:before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: var(--image-background-color, #E2ECF9);
    -webkit-animation: sliderShape 7s linear infinite;
    animation: sliderShape 3s linear infinite;
    border-radius: 66% 34% 66% 34% / 62% 39% 61% 38%;
    will-change: border-radius, transform, opacity;
    z-index: -1;
}

.advitex-image-width-mask-el:after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid var(--color-highlight);
    -webkit-animation: sliderShape 7s linear infinite;
    animation: sliderShape 5s linear infinite;
    border-radius: 68% 37% 69% 36% / 65% 42% 63% 41%;
    will-change: border-radius, transform, opacity;
    z-index: -1;
}

.advitex-image-width-mask-el img {
    display: block;
    overflow: hidden;
    border-radius: 70% 30% 60% 38% / 65% 41% 60% 33%;
    will-change: border-radius, transform, opacity;
    animation: sliderShape 7s linear infinite;
    -webkit-animation: sliderShape 7s linear infinite;
}

@keyframes sliderShape {
    0% {
        border-radius: 66% 34% 66% 34% / 62% 39% 61% 38%;
        transform: scale(1);
    }

    25% {
        border-radius: 60% 40% 55% 45% / 60% 45% 55% 40%;
        transform: scale(1.03);
    }

    50% {
        border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
        transform: scale(0.98);
    }

    75% {
        border-radius: 70% 30% 65% 35% / 70% 30% 65% 35%;
        transform: scale(1.05);
    }

    100% {
        border-radius: 68% 38% 70% 34% / 68% 39% 64% 40%;
        transform: scale(1);
    }
}

.box-about-home-02 .info-left .item {
    display: flex;
    height: 56px;
    align-items: center;
    padding: 0 10px;
    border-radius: 6px;
}

.box-about-home-02 .info-left .item:nth-child(2n+1) {
    background: #F3F4F6;
}

.box-about-home-02 .info-left .item span {
    display: inline-flex;
    align-items: center;
    flex: 0 0 50%;
    max-width: 50%;
}

.box-about-home-02 .info-left .item span>svg {
    margin-right: 10px;
}

.box-about-home-02 .info>.row {
    margin-right: -45px;
    margin-left: -45px;
}

.box-about-home-02 .info>.row>div {
    padding-right: 45px;
    padding-left: 45px;
}

.slogan-landing {
    color: var(--color-highlight);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.box-home-02 {
    margin: 80px 0 80px 0;
}

.article-item .inner-content .link a {
    color: var(--color-highlight);
    font-size: 15px;
}

.box-home-04 {
    margin: 80px 0 80px 0;
}

.box-home-05 {
    padding: 60px 0;
}

.vertical-marquee1 {
    position: relative;
    width: 49%;
    height: 100%;
    overflow: hidden;
}

.vertical-marquee2 {
    position: relative;
    width: 49%;
    height: 100%;
    overflow: hidden;
}

.marquee-content1 {
    position: absolute;
    width: 100%;
    animation: scroll-vertical1 20s linear infinite;
}

.marquee-content2 {
    position: absolute;
    width: 100%;
    animation: scroll-vertical2 20s linear infinite;
}

.vertical-marquee1:hover .marquee-content1, .vertical-marquee2:hover .marquee-content2 {
    animation-play-state: paused;
}

@keyframes scroll-vertical1 {
    0% {
        top: 100%;
    }

    100% {
        top: -100%;
    }
}

@keyframes scroll-vertical2 {
    0% {
        top: -100%;
    }

    100% {
        top: 100%;
    }
}

.bg-content-comment-kh {
    border: 1px solid #E2ECF9;
    padding: 20px;
    border-radius: 20px;
    background-color: white;
    margin-bottom: 15px;
}

.quote-icon {
    font-size: 40px;
    color: var(--color-highlight);
}

.box-home-06 {
    background-color: var(--color-highlight);
    padding: 60px 0;
    border-radius: 50px;
}

.box-home-06 .slogan-landing {
    color: white;
}

.box-home-06 .title-section {
    color: white;
}

footer {
    background-color: var(--color-highlight);
    padding: 30px 0;
    color: white;
}

.copyright {
    text-align: center;
    border-top: 1px solid white;
    padding-top: 25px;
    margin-top: 30px;
    color: white;
}

.title-footer {
    font-size: 24px !important;
    font-weight: bold;
}

#counter .swiper-tile-counter {
    font-size: 25px;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 15px;
}

#counter .value-number {
    font-size: 60px;
    color: var(--color-highlight);
    font-weight: 400;
    margin: 0 0 25px 0;
}

#counter .swiper-description-counter {
    font-size: 18px;
    color: #7E8995;
}

.box-home-07 {
    margin: 80px 0 80px 0;
}

.box-home-08 {
    margin: 80px 0 80px 0;
}

.contact-page .title-section {
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
}

.contact-page .dess-contact-page {
    font-size: 18px;
    margin-bottom: 60px !important;
}

.contact-page .form-control {
    border-radius: 0.3rem;
    border: 1px solid #d5d0d0;
    padding: 1.5rem 2rem;
    height: auto;
}

.contact-page .form-group {
    margin-bottom: 3rem;
}

.banner-page-chung img {
    max-height: 250px;
    width: 100%;
    object-fit: cover;
}

/* Accordion styles */
.accordion .card {
    border: none;
    background: transparent;
    margin-bottom: 16px;
}

.accordion .card-header {
    background: transparent;
    border: none;
    padding: 0;
}

.accordion .btn-link {
    font-size: 2rem;
    font-weight: 700;
    color: #222;
    text-decoration: none;
    padding: 0;
    display: flex;
    align-items: center;
    transition: color 0.2s;
    box-shadow: none;
}

.accordion .btn-link.collapsed {
    color: #222;
}

.accordion .btn-link:not(.collapsed) {
    color: var(--color-highlight);
}

.accordion .btn-link::before {
    content: '+';
    font-size: 1.5rem;
    margin-right: 10px;
    color: var(--color-highlight);
    transition: transform 0.2s;
}

.accordion .btn-link[aria-expanded="true"]::before {
    content: '–';
    color: var(--color-highlight);
}

.accordion .card-body {
    color: #888;
    padding-left: 32px;
    padding-bottom: 10px;
    padding-top: 0;
    border: none;
    background: transparent;
}

/* Orange button */
.btn-connect {
    display: inline-block;
    margin-top: 32px;
    background: #ffb357;
    color: #fff;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    padding: 12px 32px;
    font-size: 1.1rem;
    transition: background 0.2s;
    box-shadow: 0 2px 8px rgba(255,179,87,0.08);
}

.btn-connect:hover {
    background: #ff7948;
    color: #fff;
    text-decoration: none;
}

/* Video/Image right column */
.bg-video-html {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    min-height: 350px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-video-html img, .bg-video-html video {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
}

.bio-image {
    width: 20rem;
    height: 20rem;
    border-radius: 100%;
    border: 3px solid var(--color-highlight);
    overflow: hidden;
    margin: 0 auto 2rem auto;
}

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

.bio-name {
    font-size: 2.6rem;
    font-weight: bold;
    margin-bottom: 2rem;
    text-transform: capitalize;
}

.bio-social {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    margin: 3rem 0;
}

.bio-social img {
    height: 3.5rem;
}

.bio-contact--link {
    display: flex;
    align-items: center;
    gap: 2rem;
    border: 2px solid;
    color: black;
    padding: 1rem;
    border-radius: 3rem;
    font-weight: bold;
}

.bio-contact--link img {
    width: 4rem;
}

.bio-contact {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 1rem;
}

footer .logo-section img {
    filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
    .header-01 > .container > .row > div {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: column;
    }

    .link-top-header a {
        padding: 4px 3px;
        font-size: 12px;
        text-align: center;
        position: relative;
        margin-left: -15px;
    }

    .home .header-02 > .container > .row {
        margin: 0px -5px 0 -5px;
        padding: 10px 0px;
    }

    .swiper-slide--tile {
        font-size: 5rem;
    }

    .is-mobile .swiper-slider-main .swiper-slide .swiper-slide--wrap {
        text-align: center;
    }

    .swiper-slide--wrap {
        top: 30%;
    }

    .zoom-container {
        max-height: 45rem;
    }

    .title-section {
        font-size: 25px;
    }

    footer {
        padding: 40px 0 40px 0;
    }

    .vertical-marquee1 {
        height: 500px;
    }

    .box-about-home-02 .info>.row>div {
        padding-right: 15px;
        padding-left: 15px;
    }

    .box-about-home-02 .info>.row {
        margin-right: -15px;
        margin-left: -15px;
    }

    .box-home-02 {
        margin: 40px 0 40px 0;
    }

    .box-home-04 {
        margin: 40px 0 40px 0;
    }

    .box-home-07 {
        margin: 40px 0 40px 0;
    }

    .bg-content-comment-kh {
        padding: 5px;
    }

    .advitex-image-width-mask-el {
        margin-bottom: 30px;
    }

    .swiper-slider-main .swiper-slide img {
        height: 20rem;
    }

    .home .header-02 {
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 2;
    }

    .logo-section img {
        height: 4rem;
        object-fit: contain;
    }

    .box-home-05 {
        padding: 60px 0 10px 0;
    }
       
    .box-home-08 {
        margin: 0px 0 40px 0;
    }
    
.bo-loc-tim-kiem .form-control {
    height: auto;
    padding: 1.4rem 3rem;    
}
}
