.section-gap {
    padding: 60px 0;
}

.section-gap_small {
    padding: 45px 0;
}

@media screen and (max-width: 992px) {
    .section-gap {
        padding: 45px 0;
    }

    .section-gap_small {
        padding: 30px 0;
    }

}

.section-menu__decor {
    position: absolute;
    overflow: hidden;
    z-index: 1;
    top: 0;
    opacity: 0.8;
    width: 100%;
    height: 100%;
}

.section-menu__decor img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-menu {
    overflow: hidden;
    background-color: #fffef0;
    position: relative;
    padding: 100px 0 100px;
}


.section-heading {
    margin-bottom: 50px;
}

.section-heading .heading-image {
    height: 200px;
    margin-bottom: 24px;
}

.section-heading .heading-image img {
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: cover;
}

.section-heading .heading-sub {
    color: var(--primary-color);
    font-size: 1.15em;
    font-weight: 600;
    margin-bottom: 6px;
    letter-spacing: -.4px;
}

.section-heading .heading-title {
    color: var(--bs-black);
    font-size: 2.5em;
    font-weight: 700;
    line-height: 46px;
}

.section-heading .heading-title_2 {
    color: var(--bs-black);
    font-size: 1.75em;
    font-weight: 700;
    line-height: 36px;
}

.section-menu .section-heading .heading-sub {
    color: var(--bs-white);
    font-size: 1.15em;
    font-weight: 600;
    margin-bottom: 6px;
    letter-spacing: -.4px;
}

.section-menu .section-heading .heading-title {
    color: var(--bs-white);
    font-size: 2.5em;
    font-weight: 700;
    line-height: 46px;
}

.section-heading .heading-desc {
    margin-top: 12px;
    font-size: 1.15em;
    color: var(--body-color);
}

.section-heading .heading-desc p:last-child,
.section-heading .heading-desc ol:last-child,
.section-heading .heading-desc ul:last-child {
    margin-bottom: 0;
}

.section-heading .heading-desc ol,
.section-heading .heading-desc ul {
    padding-left: 0;
}

.section-heading .heading-desc ol li,
.section-heading .heading-desc ul li {
    list-style: none;
}

.section-heading .heading-desc ol li:before,
.section-heading .heading-desc ul li:before {
    display: inline-block;
    margin-right: 6px;
    font-family: "Font Awesome 5 Pro";
    color: var(--primary-color);
    content: "\f1bb";
    font-size: 1.075em;
    font-weight: 900;
}

.section-heading .heading-desc ol li + li,
.section-heading .heading-desc ul li + li {
    margin-top: 6px;
}

@media screen and (min-width: 992px) and (max-width: 1400px) {
    .section-heading .heading-title {
        font-size: 2.3em;
        line-height: 38px;
    }

    .section-heading .heading-title_2 {
        font-size: 1.5em;
    }
}

@media screen and (max-width: 992px) {
    .section-heading {
        margin-bottom: 20px;
    }

    .section-heading .heading-sub {
        font-size: 1.075em;
    }

    .section-heading .heading-title {
        margin-bottom: 20px;
        font-size: 1.75em;
        line-height: 26px;
    }

    .section-heading .heading-title_2 {
        font-size: 1.3em;
    }

    .section-heading .heading-desc {
        font-size: 1.075em;
    }

    .section-menu .section-heading .heading-sub {
        font-size: 1.075em;
    }

    .section-menu .section-heading .heading-title {
        margin-bottom: 20px;
        font-size: 1.75em;
        line-height: 26px;
    }

    .section-menu .section-heading .heading-title_2 {
        font-size: 1.3em;
    }

    .section-menu .section-heading .heading-desc {
        font-size: 1.075em;
    }
}

@media (max-width: 512px) {
    .section-heading .heading-title {
        font-size: 1.4em;
    }
    .custom-btn{
        font-size: 0.85em !important;
    }
}


.button-theme {
    padding: 0.7em 1.75em;
    font-size: 1.15em;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    outline: none;
    box-shadow: none;
    white-space: nowrap;
    overflow: hidden;
    border-radius: 25px;
    transition: var(--transition);
    position: relative;
    z-index: 1;
    border: 0;
}

.button-theme.button-theme_small {
    font-size: 1.075em;
    padding: 0.65em 1.5em;
}

.button-theme > span {
    position: relative;
    overflow: hidden;
    z-index: 3;
}

.button-theme:hover {
    transform: translateY(-3.5%);
}

.button-theme::before {
    background-color: var(--bs-white);
    content: "";
    height: 150px;
    left: -75px;
    position: absolute;
    top: -60px;
    transform: rotate(35deg);
    transition: all 2600ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 15px;
    opacity: 0;
}

.button-theme:hover::before {
    left: 140%;
    transition: all 2300ms cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 0.15;
}

.button-theme.button-theme_primary {
    background: var(--primary-color);
    color: var(--bs-white);
}

.button-theme.button-theme_primary:hover {
    background: var(--primary-hover);
}

.button-theme.button-theme_secondary {
    background: var(--secondary-color);
    color: var(--bs-white);
}

.button-theme.button-theme_secondary:hover {
    background: var(--secondary-hover);
}

.button-theme.button-theme_zalo {
    background: #03a5fa;
    color: var(--bs-white);
}

.button-theme.button-theme_zalo:hover {
    background: #0098e7;
}

@media screen and (min-width: 992px) and (max-width: 1400px) {
    .button-theme {
        padding: 0.5em 1.5em;
        font-size: 1.075em;
    }
}

@media screen and (max-width: 992px) {
    .button-theme {
        padding: 0.5em 1.25em;
        font-size: 1em;
    }

    .button-theme.button-theme_small {
        font-size: 1em;
        padding: 0.4em 1.1em;
    }

}

.slider-theme {
    position: relative;
    user-select: none;
}

.button-slider {
    border-radius: 50%;
    height: 48px;
    width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: var(--primary-color);
    outline: none;
    box-shadow: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.button-slider.swiper-button-disabled {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.button-slider:hover {
    background: var(--primary-hover);
}

.button-slider.button-slider_prev {
    left: -64px;
}

.button-slider.button-slider_next {
    right: -64px;
}

.button-slider svg {
    height: 18px;
    width: 18px;
    transition: var(--transition);
    fill: var(--bs-white);
}

@media screen and (min-width: 992px) and (max-width: 1400px) {
    .button-slider.button-slider_prev {
        left: -24px;
    }

    .button-slider.button-slider_next {
        right: -24px;
    }
}

@media screen and (max-width: 991px) {
    .button-slider {
        height: 36px;
        width: 36px;
        display: none;
    }
}


.separator {
    position: relative;
    display: flex;
    align-items: center;
}

.separator > img {
    margin: 0 5px;
}

.separator::before,
.separator::after {
    content: "";
    height: 2px;
    width: 40px;
    background-color: var(--primary-color);
}

/* =================================
 			HEADER
================================= */

.header {
    position: sticky;
    z-index: 13;
    transition: var(--transition);
    box-shadow: 0 8px 8px -3px rgba(24, 39, 75, 0.05), 0px 6px 8px -3px rgba(24, 39, 75, 0.12);
    top: 0
}

.header.is-scroll {
    position: fixed;
    top: -52px;
    background: var(--bs-white);
    width: 100%;
}

.header .header-top {
    position: relative;
    border-bottom: 1px solid #FFFFFF1F;
    font-size: 13px;
    font-weight: 300;
    padding: 15px 0;
    background-color: var(--primary-color);
}


.header .header-top .header-contact {
    gap: 45px;
}


.header .header-top .header-contact .header-contact_item > i {
    font-size: 1.15em;
}

.header .header-top .header-contact .header-contact_item {
    position: relative;
    color: rgba(var(--bs-white-rgb), 0.85);
    font-size: 1.075em;
    font-weight: 400;
    white-space: nowrap;
}

.header .header-top .header-contact a.header-contact_item:hover {
    color: rgba(var(--bs-white-rgb), 1);
}

.header .header-bottom {
    position: relative;
    background-color: var(--bs-white);
}

.header .header-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}

.header .header-logo {
    position: relative;
}

.header .header-navigation {
    margin-left: auto;
    margin-right: auto;
}

.header .header-logo img {
    height: 110px;
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
}

.header .header-logo.is-scroll img {
    height: 80px;
}

.header .header-logo .logo-secondary {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.header .header-toolbars {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
    padding-left: 35px;
    position: relative;
}


.header .header-toolbars .header-button {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-white);
    font-size: 1.45em;
}

.header.is-scroll .header-toolbars .header-button {
    color: black;
}

.header .header-toolbars .header-button:hover {
    color: var(--primary-color);
}

.header .header-toolbars .header-hamburger {
    display: none;
}

.header .header-navigation ul {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.header .header-language_item > img {
    width: 30px;
    height: 30px;
}


.header .header-navigation > ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header .header-navigation > ul > li {
    width: 100%;
    position: relative;
}


.header .header-navigation > ul > li > a,
.header .header-navigation > ul > li > button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    color: var(--bs-black);
    text-decoration: none;
    font-size: 1.15em;
    font-weight: 600;
    padding: 30px 0;
    background: transparent;
    border: 0;
    outline: none;
    box-shadow: none;
    gap: 6px;
    overflow: hidden;
    transition: all 0.4s;
}


.gradient-mask {
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.8) 0%,
            rgba(0, 0, 0, 0.6) 30%,
            rgba(0, 0, 0, 0.3) 60%,
            rgba(0, 0, 0, 0) 100%
    );
    pointer-events: none;
}

.header .header-navigation > ul > li > a > i,
.header .header-navigation > ul > li > button > i {
    transition: 0.3s transform ease-in-out;
}

.header .header-navigation > ul > li > ul > li {
    position: relative;
    width: 100%;
}

.header .header-navigation > ul > li > ul > li > a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    white-space: nowrap;
    color: var(--bs-black);
    font-size: 1.075em;
    font-weight: 600;
    padding: 15px 20px;
    background: transparent;
    border: 0;
    outline: none;
    box-shadow: none;
    overflow: hidden;
    gap: 6px;
    transition: all 0.4s;
}

.header .header-navigation > ul > li > ul > li + li {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.header .header-navigation .header-navigation_contact {
    display: none;
}


@media screen and (min-width: 1200px) and (max-width: 1400px) {
    .header .header-top .header-contact .header-contact_item {
        font-size: 1em;
    }

    .header .header-grid {
        gap: 30px;
    }

    .header .header-logo img {
        height: 48px;
    }

    .header .header-navigation > ul {
        gap: 20px;
    }

    .header .header-navigation > ul > li > a, .header .header-navigation > ul > li > button {
        font-size: 1.075em;
        gap: 4px;
    }

    .header .header-navigation > ul > li > ul > li > a {
        font-size: 1em;
    }

    .header .header-toolbars {
        padding-left: 20px;
    }
}

@media screen and (min-width: 1200px) {
    .header .header-navigation > ul > li:hover > a > i,
    .header .header-navigation > ul > li:hover > button > i {
        transform: rotate(180deg);
    }

    .header .header-navigation > ul > li > ul {
        position: absolute;
        top: 100%;
        -webkit-transform: translateY(-23px);
        -ms-transform: translateY(-23px);
        transform: translateY(-23px);
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        left: 0;
        background-color: var(--bs-white);
        -webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
        -webkit-transition: var(--transition);
        -o-transition: var(--transition);
        transition: var(--transition);
        min-width: 200px;
        border-radius: 0 0 4px 4px;
        z-index: 5;
    }

    .header .header-navigation > ul > li:hover > ul {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
    }

    .header .header-navigation > ul > li:hover > a,
    .header .header-navigation > ul > li:hover > button {
        color: var(--primary-color);
    }

    .header .header-navigation > ul > li > a > span,
    .header .header-navigation > ul > li > button > span {
        position: absolute;
        left: 0;
        right: 0;
        bottom: -30px;
        width: 2px;
        height: 0;
        background: var(--primary-color);
        margin: 0 auto;
        transition: all 0.4s ease-in-out 0.13s;
    }

    .header .header-navigation > ul > li > a > span:before,
    .header .header-navigation > ul > li > a > span:after,
    .header .header-navigation > ul > li > button > span:before,
    .header .header-navigation > ul > li > button > span:after {
        position: absolute;
        top: 6px;
        bottom: 0;
        width: 2px;
        background: var(--primary-color);
        content: ""
    }

    .header .header-navigation > ul > li > a > span:before,
    .header .header-navigation > ul > li > button > span:before {
        left: -7px;
    }

    .header .header-navigation > ul > li > a > span:after,
    .header .header-navigation > ul > li > button > span:after {
        right: -7px;
    }

    .header .header-navigation > ul > li:hover > a > span,
    .header .header-navigation > ul > li:hover > button > span {
        bottom: 0;
        transition: all 0.4s ease-in-out 0.1s;
        height: 20px;
    }

    .header .header-navigation > ul > li > ul > li > a > span {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: -30px;
        height: 2px;
        width: 0;
        background: var(--primary-color);
        transition: all 0.4s ease-in-out 0.13s;
    }

    .header .header-navigation > ul > li > ul > li > a > span:before,
    .header .header-navigation > ul > li > ul > li > a > span:after {
        position: absolute;
        right: 6px;
        left: 0;
        height: 2px;
        background: var(--primary-color);
        content: ""
    }

    .header .header-navigation > ul > li > ul > li > a > span:before {
        top: calc(50% - 7px);
    }

    .header .header-navigation > ul > li > ul > li > a > span:after {
        top: calc(50% + 5px);
    }

    .header .header-navigation > ul > li > ul > li:hover > a,
    .header .header-navigation > ul > li > ul > li:hover > button {
        color: var(--primary-color);
        background: rgba(var(--primary-rgb), 0.05);
        padding-left: 30px;
    }

    .header .header-navigation > ul > li > ul > li:hover > a > span,
    .header .header-navigation > ul > li > ul > li:hover > button > span {
        left: 0;
        transition: all 0.4s ease-in-out 0.1s;
        width: 20px;
    }


}

@media screen and (min-width: 992px) and (max-width: 1200px) {
    .header .header-top .header-contact .header-contact_item {
        font-size: 1em;
    }
}

@media screen and (max-width: 1200px) {
    .header .header-navigation {
        position: absolute;
        top: 100%;
        width: 100%;
        margin: 0 auto;
        left: 0;
        z-index: 10;
        transition: var(--transition-default);
        background-color: var(--bs-white);
        display: flex;
        flex-direction: column;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        height: 0;
    }

    .is-navigation .header .header-navigation {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        height: calc(100vh - 101px);
    }

    .is-navigation .header.is-scroll .header-navigation {
        height: calc(100vh - 64px);
    }

    .header .header-navigation > ul {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: 0;
        flex: 1 1 auto;
        padding: 0 calc(var(--bs-gutter-x) * .5);
        overflow-x: hidden;
        overflow-y: auto;
    }

    .header .header-navigation > ul > li > a,
    .header .header-navigation > ul > li > button {
        color: var(--dark-color);
        width: 100%;
        text-align: left;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding: 15px 0;
        font-size: 1.075em;
    }

    .header .header-navigation > ul > li > a > span,
    .header .header-navigation > ul > li > button > span {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: -30px;
        height: 2px;
        width: 0;
        background: var(--primary-color);
        transition: all 0.4s ease-in-out 0.13s;
    }

    .header .header-navigation > ul > li > a > span:before,
    .header .header-navigation > ul > li > a > span:after,
    .header .header-navigation > ul > li > button > span:before,
    .header .header-navigation > ul > li > button > span:after {
        position: absolute;
        right: 6px;
        left: 0;
        height: 2px;
        background: var(--primary-color);
        content: ""
    }

    .header .header-navigation > ul > li > a > span:before,
    .header .header-navigation > ul > li > button > span:before {
        top: calc(50% - 7px);
    }

    .header .header-navigation > ul > li > a > span:after,
    .header .header-navigation > ul > li > button > span:after {
        top: calc(50% + 5px);
    }

    .header .header-navigation > ul > li > a:active,
    .header .header-navigation > ul > li > button[aria-expanded=true] {
        color: var(--primary-color);
        padding-left: 30px;
    }

    .header .header-navigation > ul > li > button > i {
        font-size: 1.15em;
    }

    .header .header-navigation > ul > li > button[aria-expanded=true] > i {
        transform: rotate(180deg);
    }

    .header .header-navigation > ul > li > a:active > span,
    .header .header-navigation > ul > li > button[aria-expanded=true] > span {
        left: 0;
        transition: all 0.4s ease-in-out 0.1s;
        width: 20px;
    }

    .header .header-navigation > ul > li + li {
        border-top: 1px solid var(--bs-gray-300);
    }

    .header .header-navigation > ul > li > ul {
        position: static;
        -webkit-box-shadow: none;
        box-shadow: none;
        min-width: 100%;
        -webkit-transform: translateY(0) !important;
        -ms-transform: translateY(0) !important;
        transform: translateY(0) !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto;
        border-top: 1px solid var(--bs-gray-300);
        padding: 0 0 0 15px;
    }

    .header .header-navigation > ul > li > ul > li > a {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        padding: 10px 0;
        font-size: 1em;
    }

    .header .header-navigation > ul > li > ul > li > a:before {
        content: "-";
        margin-right: 8px;
    }

    .header .header-bottom {
        padding: 6px 0;
    }

    .header .header-grid {
        gap: 20px;
        justify-content: space-between;
    }

    .header .header-logo img {
        height: 70px;
    }

    .header .header-toolbars .header-hamburger {
        gap: 6px;
        width: 20px;
        height: 32px;
        color: var(--bs-white) !important;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        flex-direction: column;
        background: transparent;
        box-shadow: none;
        border: 0;
        outline: none;
        padding: 0;
    }

    .header .header-toolbars .header-hamburger span {
        position: relative;
        width: 20px;
        height: 20px;
        -webkit-transform: translateY(1px);
        -ms-transform: translateY(1px);
        transform: translateY(1px);
        display: block;
    }

    .header .header-toolbars .header-hamburger .hamburger-button > i {
        background-color: var(--bs-black);
        width: 100%;
        height: 2px;
        position: absolute;
        display: block;
        -webkit-transition: var(--transition-default);
        -o-transition: var(--transition-default);
        transition: var(--transition-default);
        left: 0;
    }

    .header.is-scroll .header-toolbars .header-hamburger .hamburger-button > i {
        background-color: var(--bs-black);
    }

    .header .header-toolbars .header-hamburger .hamburger-button > i:nth-child(1) {
        top: 2px;
    }

    .header .header-toolbars .header-hamburger .hamburger-button > i:nth-child(2) {
        top: 10px;
    }

    .header .header-toolbars .header-hamburger .hamburger-button > i:nth-child(3) {
        bottom: 0;
        width: 15px;
        left: auto;
        right: 0;
    }

    .is-navigation .header .header-toolbars .header-hamburger .hamburger-button > i {
        background: var(--bs-black);
    }

    .is-navigation .header .header-toolbars .header-hamburger .hamburger-button > i:nth-child(1) {
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        top: 9px;
    }

    .is-navigation .header .header-toolbars .header-hamburger .hamburger-button > i:nth-child(2) {
        left: 50%;
        width: 0;
    }

    .is-navigation .header .header-toolbars .header-hamburger .hamburger-button > i:nth-child(3) {
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
        bottom: 9px;
        width: 100%;
    }

    .is-navigation .header {
        background: var(--primary-color);
    }

    .header .header-logo .logo-secondary {
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .is-navigation .header .header-logo .logo-primary {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .is-navigation .header .header-logo .logo-secondary {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .is-navigation .header .header-toolbars .header-button {
        color: var(--bs-white);
    }

    .header .header-navigation .header-navigation_contact {
        margin-top: auto;
        border-top: 1px solid rgba(var(--primary-rgb), 0.15);
        background: rgba(var(--primary-rgb), 0.025);
        position: relative;
        overflow: hidden;
        flex-shrink: 0;
        display: block;
    }

    .header .header-navigation .header-navigation_contact:before {
        position: absolute;
        content: '';
        width: 200px;
        height: 300px;
        right: -96px;
        bottom: 0;
        clip-path: polygon(100% 0, 0% 100%, 100% 100%);
        background: var(--primary-color);
    }

    .header .header-navigation .header-navigation_contact .header-navigation_contact__inner {
        padding: 10px 10px 30px 10px;
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .header .header-navigation .header-navigation_contact .header-navigation_contact__item {
        font-size: 1em;
        color: var(--dark-color);
        font-weight: 600;
        transition: var(--transition);
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .header .header-navigation .header-navigation_contact .header-navigation_contact__item > span {
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 4px;
        color: var(--primary-color);
        background: rgba(var(--primary-rgb), 7.5%);
        font-size: 1.15em;
        flex-shrink: 0;
        transition: var(--transition);
    }

    .header.is-scroll {
        top: -37px;
    }
}

@media screen and (max-width: 992px) {
    .header .header-top {
        display: none;
    }

    .header .header-toolbars .button-theme.button-theme_primary {
        display: none;
    }

    .header .header-toolbars {
        padding-left: 0;
        gap: 12px;
    }

    .header .header-toolbars:before {
        display: none;
    }

    .header .header-toolbars .header-hamburger {
        margin-top: -2px;
    }

    .is-navigation .header .header-navigation {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        height: calc(100vh - 64px);
    }

    .header.is-scroll {
        top: 0;
    }

    .header .header-language_item > img {
        width: 24px;
        height: 24px;
    }

    .header .header-logo.is-scroll img {
        height: 70px;
    }

}

@media screen and (min-width: 1024px) and (max-width: 1200px) {
    .header .header-navigation > ul,
    .header .header-navigation .header-navigation_contact .header-navigation_contact__inner {
        max-width: 960px;
        margin: 0 auto;
        width: 100%;
    }
}

@media screen and (min-width: 768px) and (max-width: 992px) {
    .header .header-navigation > ul,
    .header .header-navigation .header-navigation_contact .header-navigation_contact__inner {
        max-width: 720px;
        margin: 0 auto;
        width: 100%;
    }

}

@media screen and (min-width: 575px) and (max-width: 768px) {
    .header .header-navigation > ul,
    .header .header-navigation .header-navigation_contact .header-navigation_contact__inner {
        max-width: 540px;
        margin: 0 auto;
        width: 100%;
    }
}

/* =================================
 			SECTION HERO
================================= */

.torn-divider {
    position: absolute;
    z-index: 9;
    width: 100%;
    bottom: -12%;
    vertical-align: bottom;
    height: 21%;
    transform: rotate(0deg);
    background-size: cover;
}

.section-hero .ratio-video {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 0;
    padding-bottom: 66%;
}

.section-hero .ratio-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.section-hero .hero-item_image img {
    -webkit-transition: all 8s ease-out 0s;
    -moz-transition: all 8s ease-out 0s;
    -ms-transition: all 8s ease-out 0s;
    -o-transition: all 8s ease-out 0s;
    transition: all 8s ease-out 0s;
}

.section-hero .swiper-slide-active .hero-item_image img {
    -webkit-transform: scale(1.12);
    -moz-transform: scale(1.12);
    transform: scale(1.12);
}

.section-hero .hero-item_content {
    width: 100%;
}

.section-hero .hero-item_content .hero-item_title {
    font-size: 3em;
    font-weight: 700;
    color: var(--bs-white);
    text-shadow: .05em .05em 0 rgba(0, 0, 0, 0.2);
    line-height: 1.1;
    transition: 1s cubic-bezier(.175, .885, .32, 1.275) all 0s;
}

.section-hero .hero-item_content .hero-item_desc {
    font-size: 1.225em;
    color: var(--light-color);
    margin-top: 16px;
    transition: 1s cubic-bezier(.175, .885, .32, 1.275) all 0.3s;
}

.section-hero .hero-item_content .hero-item_button {
    margin-top: 24px;
    transition: 1s cubic-bezier(.175, .885, .32, 1.275) all 0.6s;
}

.section-hero .hero-item .hero-item_content .hero-item_title,
.section-hero .hero-item .hero-item_content .hero-item_desc,
.section-hero .hero-item .hero-item_content .hero-item_button {
    transform: translate3d(0, 100px, 0);
    opacity: 0;
}

.section-hero .swiper-slide-active .hero-item .hero-item_content .hero-item_title,
.section-hero .swiper-slide-active .hero-item .hero-item_content .hero-item_desc,
.section-hero .swiper-slide-active .hero-item .hero-item_content .hero-item_button {
    opacity: 1;
    transform: translateZ(0);
}

.section-hero .slider-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    right: 30px;
}

.section-hero .slider-nav .button-slider {
    position: static;
    background: transparent;
    border: 1px solid var(--bs-white);
    opacity: 0.5;
    margin-bottom: 10px;
}

.section-hero .slider-nav .button-slider svg {
    color: var(--bs-white);
}

.section-hero .slider-nav .button-slider:hover {
    background: var(--primary-color);
    border-color: transparent;
    opacity: 1;
}

.section-hero .slider-nav .button-slider:hover svg {
    opacity: 1;
}

.section-hero .slider-nav .button-slider.button-slider_prev svg {
    transform: rotate(90deg);
}

.section-hero .slider-nav .button-slider.button-slider_next svg {
    transform: rotate(90deg);
}

@media screen and (min-width: 992px) and (max-width: 1400px) {
    .section-hero .hero-item_content .hero-item_title {
        font-size: 2.5em;
    }

    .section-hero .hero-item_content .hero-item_desc {
        font-size: 1.15em;
    }
}

@media screen and (max-width: 992px) {
    /*.section-hero .hero-item_content {*/
    /*	padding-right: 50px;*/
    /*}*/
    .section-hero .hero-item_content .hero-item_title {
        font-size: 1.65em;
    }

    .section-hero .hero-item_content .hero-item_desc {
        font-size: 1em;
        display: none;
    }

    .section-hero .slider-nav {
        right: 10px;
        gap: 6px;
    }

    .section-hero .slider-nav .button-slider {
        display: block;
    }

    .section-hero {
        margin-top: 0;
    }
}

/* =================================
 	   SECTION INTRODUCTION
================================= */

.section-introduction {
    position: relative;
    overflow: hidden;
}


.section-introduction .introduction-thumb {
    left: -75px;
    top: 50px;
    width: 200px;
    animation: introduction-thumb 3s infinite ease-in-out;
}

.section-introduction .introduction-counter {
    right: 0;
    transform: translateX(50%);
    bottom: 50px;
    background: var(--primary-color);
    padding: 10px 12px;
}

.disk {
    animation: spin 50s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.section-introduction .introduction-counter .introduction-counter_box {
    border: 1px solid rgb(var(--bs-white-rgb), 0.25);
    padding: 10px 12px;
}

.section-introduction .introduction-counter .introduction-counter_box .introduction-counter_box__number {
    font-size: 3em;
    font-weight: 600;
    color: var(--bs-white);
    line-height: 1;
}

.section-introduction .introduction-counter .introduction-counter_box .introduction-counter_box__text {
    color: var(--bs-white);
    font-size: 1.075em;
    font-weight: 500;
    line-height: 1;
}

.section-introduction .introduction-counter .introduction-counter_box .introduction-counter_box__text p {
    margin-bottom: 0;
}

@keyframes introduction-thumb {
    0% {
        transform: translateY(-8px);
    }
    50% {
        transform: translateY(12px);
    }
    100% {
        transform: translateY(-8px);
    }
}

.section-introduction .introduction-shape .introduction-shape_1 {
    position: absolute;
    bottom: 425px;
    right: 0;
    opacity: 0.29;
    z-index: -1;
    -webkit-animation-name: introduction-shape;
    animation-name: introduction-shape;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

.section-introduction .introduction-shape .introduction-shape_2 {
    position: absolute;
    left: -38px;
    bottom: -65px;
    opacity: 0.6;
    z-index: -1;
}

.section-introduction .elementor-background-overlay {
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0.5;
    z-index: -1;
}


@keyframes introduction-shape {
    0% {
        transform: translateY(-20px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(-20px);
    }
}

.section-introduction .introduction-shape .introduction-shape_3 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -270px;
    bottom: 0px;
    width: 800px;
    height: 800px;
    opacity: 0.06;
    border-radius: 50%;
    background-image: radial-gradient(circle closest-side, rgba(var(--primary-rgb), 1) 44%, rgba(255, 255, 255, 1) 100%);
    z-index: -1;
}

.service-box {
    border-radius: 8px;
    padding: 25px 15px;
    box-shadow: 4px 19px 73px #b4b4b442;
}

.service-box .card-body {
    border-bottom: 1px solid var(--primary-color);
}

.service-box .service-media {
    width: 55px;
    height: 55px;
    position: relative;
    margin-top: 20px;
}

.service-box .service-media::after {
    position: absolute;
    content: '';
    left: 50%;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background-color: rgb(0 106 253 / 14%);
    z-index: 0;
    border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
}

.service-box .service-media > img {
    transition: transform 0.6s ease;
}

.service-box:hover .service-media > img {
    transform: rotateY(360deg);
}

.service-box .service-content__title {
    font-size: 1rem;
    font-weight: 700;
    line-height: var(--bs-body-line-height);
    margin-bottom: 0.625rem;
}

.service-box .service-content__desc {
    color: var(--bs-gray-600);
    font-weight: 500;
}


@media screen and (max-width: 992px) {
    .section-introduction .introduction-image {
        max-width: 85%;
        margin: 0 auto;
    }

    .section-introduction .introduction-image:before {
        width: 10px;
        right: -20px;
    }

    .section-introduction .introduction-image:after {
        width: 10px;
        left: -20px;
    }

    .section-introduction .introduction-thumb {
        width: 150px;
    }

    .section-introduction .introduction-counter {
        transform: unset;
        bottom: 0;
    }

    .section-introduction .introduction-counter .introduction-counter_box .introduction-counter_box__number {
        font-size: 2em;
    }

    .section-introduction .introduction-counter .introduction-counter_box .introduction-counter_box__text {
        font-size: 1em;
    }

    .service-media {
        width: 45px;
        height: 45px;
    }
}


.section-introduction .introduction-image > img {
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.3));
}

.introduction-image .rotating-circle-wrapper {
    position: absolute;
    top: 0;
    right: 20%;
    z-index: 10;
}


.introduction-image .rotating-circle-wrapper .circle-text-container {
    width: clamp(100px, 12vw, 150px);
    height: clamp(100px, 12vw, 150px);
    position: relative;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}


.circle-text-svg {
    width: 100%;
    height: 100%;
    animation: rotate 20s linear infinite;
    transform-origin: center center;
    overflow: visible;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.rotating-text {
    font-size: 2.7em;
    font-weight: 700;
    text-transform: uppercase;
    fill: #9D1E15;
    letter-spacing: 3px;
}

.center-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.center-icon svg {
    width: 32px;
    height: 32px;
}

/* =================================
 		 SECTION PRODUCTS
================================= */

.section-products .section-product:nth-child(odd) {
    background: rgba(var(--primary-rgb), 0.05);
}

.section-product .elementor-background-overlay {
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0.5;
    z-index: 1;
}

.product-card {
    box-shadow: 0 10px 75px 0 rgb(0, 0, 0, 0.15);
    padding: 16px;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    border: 1px solid #000000;
    border-radius: 8px;
}

.product-card .card-action .custom-btn {
    width: 100%;
    font-weight: 500;
    height: auto;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.custom-btn {
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    font-size: var(--text-md);
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: 0.25rem;
    background-color: var(--primary-color);
    color: var(--bs-white) !important;
    position: relative;
    overflow: hidden;
    -webkit-appearance: none;
    transition: all 500ms linear;
}

.custom-btn::before,
.custom-btn::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
}

.custom-btn::before {
    background: var(--primary-color-light);
    width: 120%;
    height: 0;
    padding-bottom: 120%;
    top: -110%;
    left: -10%;
    border-radius: 50%;
    transform: translate3d(0, 68%, 0) scale3d(0, 0, 0);
}

.custom-btn:hover::before {
    transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
    transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}

.custom-btn::after {
    display: none;
    top: 0;
    left: 0;
    background-color: var(--primary-color);
    transform: translate3d(0, -100%, 0);
    transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}

.custom-btn > * {
    position: relative;
    z-index: 3;
}

.custom-btn.custom-btn--sm {
    max-width: max-content;
}

.custom-btn--outline {
    background-color: transparent;
    color: var(--primary-color);
    border: none;
    box-shadow: inset 0 0 0 2px var(--primary-color) !important;
}

.custom-btn--outline:hover {
    color: var(--bs-white);
}

.custom-btn--rounded {
    border-radius: 999px;
}

@media (max-width: 768px) {
    .custom-btn {
        font-size: 0.95rem;
        padding: 0.6rem 1.4rem;
    }

    .button-theme {
        padding: 10px 18px;
        font-size: 0.95rem;
    }
}


.product-card .card-shape {
    position: absolute;
    top: 0;
    bottom: 0;
    opacity: 0.065;
    pointer-events: none;
}

.section-product .product-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0.07;
    z-index: -1;
}

.product-card .card-shape.card-shape_left {
    left: 0;
}

.product-card .card-shape.card-shape_right {
    right: 0;
}

.product-card .card-header {
    position: relative;
    overflow: hidden;
}


.product-card:hover .card-header:after {
    transform: scaleX(1);
}

.product-card:hover .card-header img {
    transform: scale(1.02);
}

.product-card .card-body .card-title {
    font-size: 1.45em;
    font-weight: 700;
    color: var(--bs-black);
    line-height: 24px;
    transition: var(--transition);
}

.product-card:hover .card-body .card-title {
    color: var(--primary-color);
}

.product-card .card-body .card-desc {
    font-size: 1.075em;
    color: var(--body-color);
    margin-top: 8px;
}

.product-card:hover {
    box-shadow: 0 10px 75px 0 rgb(0, 0, 0, 0.25);
}

@media screen and (min-width: 992px) and (max-width: 1400px) {
    .product-card .card-body .card-title {
        font-size: 1.3em;
    }

    .product-card .card-body .card-desc {
        font-size: 1em;
    }
}

@media screen and (max-width: 992px) {
    .product-card {
        padding: 10px;
    }

    .product-card .card-body {
        padding-left: 0;
        padding-right: 0;
    }

    .product-card .card-body .card-title {
        font-size: 1.225em;
    }

    .product-card .card-body .card-desc {
        font-size: 1em;
        --line: 2;
    }
}


/* =================================
 		 SECTION ARTICLES
================================= */


.article-card .card-body {
    display: flex;
    flex-direction: column;
}

.section-article__decor {
    position: absolute;
    overflow: hidden;
    z-index: -1;
    top: 0;
    opacity: 1;
    background: #0000001a;
    width: 100%;
    height: 100%;
}

.section-article__decor > img {
    width: 100%;
    height: 100%;
}

.article-card .card-header:before {
    content: "";
    background-color: var(--bs-white);
    height: calc(100% + 150px);
    left: -40%;
    position: absolute;
    top: -75px;
    transform: rotate(35deg);
    transition: all 2600ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 50px;
    z-index: 1;
    opacity: 0;
}


.article-card:hover .card-header::before {
    left: 140%;
    transition: all 2300ms cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 0.25;
}

.article-card:hover .card-header .img-bv {
    transform: scale(1.05);
}


.article-card .post-date {
    position: absolute;
    left: 5%;
    top: -4%;
    width: 60px;
    font-size: 12px;
    background: var(--bs-white);
    text-align: center;
    padding: 10px 0;
    overflow: hidden;
    border-radius: 5px;
    color: var(--primary-color);
    border-top: 2px solid var(--primary-color);
    box-shadow: 0 6px 14px -6px rgba(24, 39, 75, 0.12), 0 10px 32px -4px rgba(24, 39, 75, 0.1) !important;
    transition: color 0.3s ease-in-out;
    z-index: 2;
}

.article-card .post-date .date-day {
    font-size: 1.7em;
    font-weight: 700;
    line-height: 1.2;
}

.article-card .post-date .date-month-year {
    font-size: 1em;
    line-height: 1.2;
    margin-top: 2px;
    font-weight: 600;
}

.article-card .card-body .card-title {
    font-size: 1.3em;
    font-weight: 700;
    color: var(--bs-black);
    line-height: 24px;
    transition: var(--transition);
}

.article-card .post-date::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    transition: height 0.3s ease;
    z-index: -1;
}

.article-card:hover .post-date::before {
    height: 100%;
}

.article-card:hover .post-date {
    color: var(--bs-white);
}

.article-card:hover .card-body .card-title {
    color: var(--primary-color);
}

.article-card .card-body .card-desc {
    font-size: 1.075em;
    color: var(--body-color);
    margin-top: 8px;
}

.article-card .card-body .card-date svg {
    width: 18px;
    fill: var(--primary-color);
}

.article-card .card-shape {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.12;
    pointer-events: none;
}

@media screen and (min-width: 992px) and (max-width: 1400px) {
    .article-card .card-body .card-title {
        font-size: 1.15em;
        line-height: 20px;
    }

    .article-card .card-body .card-desc {
        font-size: 1em;
    }
}

@media screen and (max-width: 992px) {
    .article-card .card-body .card-title {
        font-size: 1.225em;
    }

    .article-card .card-body .card-desc {
        font-size: 1em;
        --line: 3;
    }
}

.gradient-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    opacity: 0.20;
    border-radius: 50%;
    background-image: radial-gradient(circle closest-side, rgba(var(--primary-rgb), 1) 44%, rgba(255, 255, 255, 1) 100%);
    z-index: -1;
}

@media screen and (max-width: 992px) {
    .gradient-bg {
        display: none;
    }
}


/* =================================
 		 SECTION TESTIMONIAL
================================= */
.section-testimonial {
    background: var(--primary-color);
}

.section-testimonial .section-heading .heading-title {
    font-weight: 700;
    color: var(--bs-white);
    font-size: 1.9em;
    letter-spacing: 0.4px;
}

.section-testimonial .section-heading .heading-sub {
    color: var(--bs-white);
    font-size: 1.1em;
    line-height: 1.8;
}

.section-decor {
    position: absolute;
    left: 0;
    width: 60px;
    height: auto;
    z-index: 2;
    top: 0;
}

.section-testimonial .separator > img {
    filter: brightness(0) invert(1);
}

.section-testimonial .separator::before,
.section-testimonial .separator::after {
    content: "";
    height: 2px;
    width: 40px;
    background-color: var(--bs-white);
}

.section-testimonial .slider-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    font-size: 1.2em;
    background: var(--bs-white);
    border-radius: 50%;
    color: #111827;
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
    -webkit-box-shadow: 0px 2px 4px rgba(97, 97, 97, 0.18), 0px 4px 8px rgba(97, 97, 97, 0.18);
    box-shadow: 0px 2px 4px rgba(97, 97, 97, 0.18), 0px 4px 8px rgba(97, 97, 97, 0.18);
    z-index: 2;
}


.section-testimonial .testimonial-item:before {
    position: absolute;
    content: "";
    background: url('/public/upload/theme/bg-feedback.webp') center center/cover no-repeat;
    opacity: 0.6;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.testimonial-item {
    background-color: #e8f5e9;
    border-radius: 5px;
    padding: 20px;
    border: 2px solid transparent;
    transition: var(--transition);
}

.section-testimonial .testimonial-item .testimonial-image {
    width: 50px;
    height: 50px;
    left: 7%;
}

.section-testimonial .testimonial-item .testimonial-desc {
    text-align: left;
    font-size: 1em;
    font-weight: 500;
    color: var(--bs-dark);
}

.section-testimonial .testimonial-item .testimonial-title {
    text-align: left;
    font-size: 1.1em;
    font-weight: 700;
}

.section-testimonial .testimonial-item .testimonial-sub {
    margin: 5px 0 5px 0;
    text-align: left;
    font-size: 0.8em;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .section-testimonial .separator {
        display: flex;
        justify-content: center;
    }

    .section-testimonial .section-decor {
        display: none !important;
    }

    .section-testimonial .section-heading .heading-title {
        text-align: center;
        margin-bottom: 20px;
        font-size: 1.75em;
        line-height: 26px;
    }

    .section-testimonial .section-heading .heading-sub {
        text-align: center;
        font-size: 1.1em;
    }
}

/*===================================
                gallery
====================================
 */

.section-gallery {
    padding: 70px 0 0;
}

.section-gallery__gird {
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(3, 225px);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
}

.section-gallery__gird .gallery-item_box:nth-child(1) {
    grid-area: 1 / 1 / 2 / 2;
}

.section-gallery__gird .gallery-item_box:nth-child(2) {
    grid-area: 2 / 1 / 3 / 2;
}

.section-gallery__gird .gallery-item_box:nth-child(3) {
    grid-area: 1 / 2 / 3 / 3;
}

.section-gallery__gird .gallery-item_box:nth-child(4) {
    grid-area: 1 / 3 / 2 / 4;
}

.section-gallery__gird .gallery-item_box:nth-child(5) {
    grid-area: 2 / 3 / 3 / 4;
}

.section-gallery__gird .gallery-item_box:nth-child(6) {
    grid-area: 1 / 4 / 2 / 5;
}

.section-gallery__gird .gallery-item_box:nth-child(7) {
    grid-area: 2 / 4 / 4 / 5;
}

.section-gallery__gird .gallery-item_box:nth-child(8) {
    grid-area: 3 / 5 / 4 / 6;
}

.section-gallery__gird .gallery-item_box:nth-child(9) {
    grid-area: 1 / 5 / 3 / 6;
}

.section-gallery__gird .gallery-item_box:nth-child(10) {
    grid-area: 3 / 3 / 4 / 4;
}

.section-gallery__gird .gallery-item_box:nth-child(11) {
    grid-area: 3 / 1 / 4 / 3;
}


.section-gallery .gallery-item_box .layer {
    font-size: 1.8em;
    background: #02100acc;
    background-blend-mode: color-burn;
    backdrop-filter: blur(8px);
    transition: var(--transition-default);
    opacity: 0;
}

.section-gallery .gallery-item_box .layer svg {
    opacity: 0;
    width: 24px;
    height: 24px;
    transition-delay: 0.2s;
}

.section-gallery .gallery-item_box .layer svg line {
    stroke: var(--bs-gray-100);
}


.section-gallery .gallery-item_box:hover {
    cursor: zoom-in;
}

.section-gallery .gallery-item_box:hover .layer, .section-gallery .gallery-item_box:hover .layer svg {
    opacity: 1;
}


@media (max-width: 992px) {
    .section-gallery__gird {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(4, 150px);
        gap: 5px;
    }

    .section-gallery__gird .gallery-item_box:nth-child(6) {
        grid-area: 3 / 1 / 4 / 2;
    }

    .section-gallery__gird .gallery-item_box:nth-child(7) {
        grid-area: 4 / 1 / 5 / 2;
    }

    .section-gallery__gird .gallery-item_box:nth-child(8) {
        grid-area: 3 / 2 / 4 / 3;
    }

    .section-gallery__gird .gallery-item_box:nth-child(9) {
        grid-area: 4 / 2 / 5 / 3;
    }

    .section-gallery__gird .gallery-item_box:nth-child(10) {
        grid-area: 3 / 3 / 4 / 4;
    }

    .section-gallery__gird .gallery-item_box:nth-child(11) {
        grid-area: 4 / 3 / 5 / 4;
    }
}

@media (max-width: 425px) {
    .section-gallery__gird {
        grid-template-rows: repeat(4, 100px);
        gap: 5px;
    }
}


/* =================================
 		 		FOOTER
================================= */

footer {
    background-color: var(--primary-color);
    color: #b4c2cf;
    background-position: center;
    background-size: cover;
    background-repeat: repeat-y;
}

.footer-main{
    padding: 20px;
}

.footer-block {
    min-width: 150px;
}

.footer-block .footer-block__title {
    font-size: 1.25em;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--bs-white);
    position: relative;
    text-transform: capitalize;
    letter-spacing: 0.3px;
    line-height: inherit;
}

.footer-block__text--sm,
.footer-block .footer-block__text {
    color: #f5efef;
    font-size: 1.10em;
    align-items: center;
    gap: 5px;
}

.footer-block + .footer-block {
    margin-top: 25px;
}

.footer a.footer-block__text:hover {
    color: var(--bs-white);
    transition: var(--transition);
    transform: translateX(5px);
}

.footer .footer-list li {
    margin-top: 10px;
}

.footer-block > .footer-block__text + .footer-block__text {
    margin-top: 5px;
}

.footer .footer-terms {
    padding: 20px 0;
    background-color: var(--primary-hover);
}

.footer .footer-socials a.item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    width: 35px;
    border-radius: 50%;
    color: var(--bs-white);
    background-color: #1757b4;
}

.footer .footer-socials a.item:hover {
    background-color: var(--secondary-color);
    color: var(--bs-white);
}

.footer-statistical li:not(:first-child) {
    margin-left: 10px;
    padding-left: 10px;
}

.footer-statistical li:not(:first-child)::before {
    position: absolute;
    content: '';
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #ffffff75;
    height: 20px;
    width: 1px;
    display: block;
}

.footer .footer-social{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}


.footer .footer-social .footer-social__item{
    background: #013d8a;
}

.footer-social .footer-social_facebook {
    background-color: #013d8a;
    color: var(--bs-white) !important;
}

.footer .footer-social a {
    width: 32px;
    height: 32px;
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-gray-600);
    transition: var(--transition);
}

.search-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 6;
    padding: 100px 0 0;
    background-color: rgba(var(--primary-rgb), .65);
    backdrop-filter: blur(5px);
    -webkit-transform: translateY(-110%);
    transform: translateY(-110%);
    -webkit-transition: opacity 600ms ease, -webkit-transform 600ms ease;
    transition: opacity 600ms ease, -webkit-transform 600ms ease;
    transition: transform 600ms ease, opacity 600ms ease;
    transition: transform 600ms ease, opacity 600ms ease, -webkit-transform 600ms ease;
    display: flex;
    flex-direction: column;
}

.search-popup .search-form {
    padding-bottom: 30px
}

.search-popup .frmSearch-form {
    max-width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.search-popup .frmSearch-form .frmSearch-input {
    width: 100%;
    background-color: var(--bs-white);
    font-size: 1.15em;
    border: none;
    outline: none;
    height: 52px;
    padding: 0 16px;
    border-radius: 4px 0 0 4px;
    color: var(--dark-color);
    font-weight: 600;
}

.search-popup .frmSearch-form .button-theme {
    width: 66px;
    height: 52px;
    border-radius: 0 4px 4px 0;
    font-size: 1.3em;
}

.search-popup .search-close {
    position: absolute;
    top: 15px;
    right: 35px;
    border: transparent;
    outline: none;
    box-shadow: none;
    border-radius: 4px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.35);
    color: var(--dark-color);
    font-size: 1.225em;
    transition: var(--transition-default);
}

.search-popup .search-close:hover {
    background: rgba(255, 255, 255, 0.5);
}

.search-popup .search-result {
    padding-bottom: 50px;
    flex: 1 1 auto;
    height: 100%;
    overflow-y: auto;
}

.search-popup .search-result .section-heading {
    margin-bottom: 20px;
}

.search-popup .search-result .section-heading .heading-title {
    font-size: 2em;
}

.isOpen,
.is-overflow {
    overflow: hidden;
    height: 100vh;
}

.isOpen .search-popup {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

@media screen and (max-width: 992px) {
    .search-popup .frmSearch-form .frmSearch-input {
        height: 44px;
    }

    .search-popup .frmSearch-form .button-theme {
        height: 44px;
    }

    .search-popup .search-result .section-heading .heading-title {
        font-size: 1.5em;
    }

    .search-popup .search-close {
        top: 5px;
        right: 5px;
        width: 32px;
        height: 32px;
    }
}

.section-breadcrumb {
    padding: 0 0 15px;
}

.section-breadcrumb .breadcrumb-img {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.section-breadcrumb__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.section-breadcrumb .breadcrumb-img > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.section-breadcrumb .breadcrumb-title {
    font-size: 1.75rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.5;

}

.section-breadcrumb .breadcrumb-list {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem 1rem;
}

.section-breadcrumb .breadcrumb > .breadcrumb-item {
    display: inline-flex;
    align-items: center;
    font-size: 1em;
    font-weight: 500;
    color: var(--bs-gray-400);
}

.section-breadcrumb .breadcrumb > .breadcrumb-item > a {
    color: var(--bs-white);
}

.section-breadcrumb .breadcrumb > .breadcrumb-item > a:hover {
    color: var(--primary-color);
}

.section-breadcrumb .breadcrumb > .breadcrumb-item + .breadcrumb-item {
    padding-left: 10px;
}

.breadcrumb-item + .breadcrumb-item::before {
    float: left;
    padding-right: .5rem;
    color: var(--bs-white);
    content: var(--bs-breadcrumb-divider, "/");
}

.section-breadcrumb__bg {
    position: absolute;
    z-index: 9;
    width: 100%;
    bottom: -35%;
    vertical-align: bottom;
    height: 65%;
    transform: rotate(0deg);
    background-size: cover;
}


@media screen and (max-width: 991px) {
    .section-breadcrumb .breadcrumb .breadcrumb-item {
        display: none;
    }

    .section-breadcrumb .breadcrumb .breadcrumb-item:nth-child(1),
    .section-breadcrumb .breadcrumb .breadcrumb-item:nth-child(2) {
        display: block;
    }
}

@media (max-width: 768px) {

    .section-breadcrumb .breadcrumb-img {
        height: 200px;
    }

    .section-breadcrumb .breadcrumb-title {
        font-size: 1.4em;
    }

    .section-breadcrumb .breadcrumb-list .breadcrumb-item,
    .section-breadcrumb .breadcrumb-list .breadcrumb-item > a {
        font-size: 0.85rem;
        text-align: center;
    }

    .breadcrumb-list > ol {
        gap: 0 !important;
    }

    .section-breadcrumb .breadcrumb-list {
        flex-wrap: wrap;
        gap: 0.25rem;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
        padding-bottom: 0 !important;
    }

    .section-breadcrumb__content {
        padding: 1.75rem 1rem;
    }

    .d-hide-on-mobile {
        display: none !important;
    }
}

.section-pagination {
    padding-top: 40px;
}

.section-pagination .pagination {
    margin-bottom: 0;
    justify-content: center;
    gap: 10px;
}

.section-pagination .pagination li a {
    padding: 0;
    width: 20px;
    height: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: transparent;
    color: var(--dark-color);
    border: 0;
    letter-spacing: 1px;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.section-pagination .pagination .page-item .page-link {
    border-radius: 50%;
    background: #D4D4D8;
    height: 35px;
    min-width: 35px;
    color: var(--bs-white);
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    letter-spacing: 0;
}

.section-pagination .pagination .page-item.pageactive .page-link,
.section-pagination .pagination .page-item .page-link:hover {
    background: var(--primary-color);
}

.contact-form .form-group .form-input,
.contact-form .form-group .form-textarea {
    color: var(--dark-color) !important;
    background-color: rgb(var(--primary-rgb), 0.05);
    border: 1px solid rgb(var(--primary-rgb), 0.35);
    height: 54px;
    border-radius: 0;
    padding: 3px 10px 3px 65px;
    font-weight: 600;
    font-size: 1.075em;
}

.contact-form .form-group .form-input::placeholder,
.contact-form .form-group .form-textarea::placeholder {
    color: var(--bs-gray-700) !important;
    font-weight: 400;
}

.contact-form .form-group .form-textarea {
    resize: none;
    height: unset;
    padding: 20px;
}

.contact-form .form-group .icon {
    position: absolute;
    left: 0;
    top: 0;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.contact-form .form-group .icon::after {
    position: absolute;
    content: '';
    top: 50%;
    right: 0;
    background: #d1d9dd;
    height: 70%;
    width: 1px;
    transform: translateY(-50%);
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-list .contact-list_item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.contact-list a.contact-list_item {
    width: max-content;
}

.contact-list a.contact-list_item:hover .contact-list_item__content .contact-list_item__value {
    color: var(--primary-color);
}

.contact-list .contact-list_item .contact-list_item__icon {
    width: 55px;
    height: 55px;
    background-color: rgb(var(--primary-rgb), 0.05);
    border: 1px solid rgb(var(--primary-rgb), 0.35);
    border-radius: 6px;
    color: var(--primary-color);
    font-size: 2em;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-list .contact-list_item .contact-list_item__content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-list .contact-list_item .contact-list_item__content .contact-list_item__title {
    font-size: 1.075em;
    font-weight: 700;
    color: var(--dark-color);
}

.contact-list .contact-list_item .contact-list_item__content .contact-list_item__value {
    font-size: 1.15em;
    color: var(--body-color);
    line-height: 1.3;
}

.map-contact {
    padding-top: 50px;
}

.map-contact > iframe {
    width: 100%;
    vertical-align: bottom;
}

.section-map .section-gap_small {
    padding: 10px 0 0;
}

@media screen and (max-width: 992px) {
    .contact-list .contact-list_item {
        align-items: flex-start;
    }

    .contact-list .contact-list_item .contact-list_item__icon {
        width: 44px;
        height: 44px;
        font-size: 1.5em;
    }

    .contact-list .contact-list_item .contact-list_item__content .contact-list_item__value {
        font-size: 1.075em;
    }

    .section-map .section-gap_small {
        padding: 30px 0 0;
    }
}

.page-article {
    background: rgb(var(--primary-rgb), 0.05);
}

.article-detail {
    border-radius: 20px;
    background: var(--bs-white);
    padding: 24px;
}

.article-detail .article-detail_title {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 2em;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.article-detail .article-detail_meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #e9e9e9;
    gap: 15px;
}

.article-detail .article-detail_meta .article-detail_meta__item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 400;
    color: var(--body-color);
}

.article-detail .article-detail_meta .article-detail_meta__item > svg {
    fill: var(--body-color);
    width: 15px;
    height: 15px;
}

.article-detail .article-detail_desc {
    padding: 16px;
    background: rgb(var(--primary-rgb), 0.05);
    border-left: 3px solid var(--primary-color);
    border-radius: 12px;
    font-size: 1.075em;
    font-style: italic;
    margin-bottom: 16px;
}

.article-detail .article-detail_desc p:last-of-type,
.article-detail .article-detail_desc ol:last-of-type,
.article-detail .article-detail_desc ul:last-of-type {
    margin-bottom: 0;
    color: var(--body-color);
}

.article-detail .article-detail_share {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: flex-start;
    padding-top: 15px;
    margin-top: 15px;
    border-top: 1px solid #e9e9e9;
    gap: 5px;
}

@media screen and (max-width: 992px) {
    .article-detail {
        padding: 16px;
    }

    .article-detail .article-detail_title {
        font-size: 1.5em;
    }

    .article-detail .article-detail_desc {
        padding: 12px;
        font-size: 1em;
    }
}

.detail-content {
    line-height: 1.6;
    color: var(--dark-color);
}

.detail-content p,
.detail-content ol,
.detail-content ul,
.detail-content blockquote {
    margin-bottom: 16px;
    font-size: 15px;
}

.detail-content ul,
.detail-content ol {
    padding-left: 16px;
    line-height: 1.6;
}

.detail-content h1,
.detail-content h2,
.detail-content h3,
.detail-content h4,
.detail-content h5,
.detail-content h6 {
    margin-bottom: 10px;
    font-weight: 700;
}

.detail-content h1 b,
.detail-content h1 strong,
.detail-content h2 b,
.detail-content h2 strong,
.detail-content h3 b,
.detail-content h3 strong,
.detail-content h4 b,
.detail-content h4 strong,
.detail-content h5 b,
.detail-content h5 strong,
.detail-content h6 b,
.detail-content h6 strong,
.detail-content strong,
.detail-content b {
    font-weight: 700;
}

.detail-content h1 {
    font-size: 1.6em;
}

.detail-content h2 {
    font-size: 1.525em;
}

.detail-content h3 {
    font-size: 1.45em;
}

.detail-content h4 {
    font-size: 1.375em;
}

.detail-content h5 {
    font-size: 1.3em;
}

.detail-content h6 {
    font-size: 1.225em;
}

.detail-content img {
    max-width: 100% !important;
    height: auto !important;
    margin-bottom: 15px;
}

.detail-content blockquote {
    padding: 15px 15px 15px 45px;
    border-left: 5px solid var(--primary-color);
    background: rgba(var(--primary-rgb), .05);
    position: relative;
}

.detail-content blockquote:before {
    position: absolute;
    content: "\f10d";
    font-family: "Font Awesome 5 Pro";
    font-size: 1.5em;
    color: var(--primary-color);
    top: 10px;
    left: 10px;
    -webkit-transform: rotateX(180deg);
    transform: rotateX(180deg);
    font-weight: 700;
    line-height: 1;
}

.detail-content iframe {
    max-width: 100% !important;
}

@media screen and (max-width: 992px) {
    .detail-content p,
    .detail-content ol,
    .detail-content ul,
    .detail-content blockquote {
        font-size: 14px;
    }

    .detail-content h1 {
        font-size: 1.45em;
    }

    .detail-content h2 {
        font-size: 1.375em;
    }

    .detail-content h3 {
        font-size: 1.3em;
    }

    .detail-content h4 {
        font-size: 1.225em;
    }

    .detail-content h5 {
        font-size: 1.15em;
    }

    .detail-content h6 {
        font-size: 1.075em;
    }
}

.page-product {
    background: rgba(var(--primary-rgb), 0.05);
}

.page-product .product-box {
    border-radius: 20px;
    background: var(--bs-white);
    padding: 20px;
}

.product-box .section-heading {
    margin-bottom: 10px;
}

.page-product .product-images .product-avatar_image {
    overflow: hidden;
    position: relative;
    border-radius: 8px;
}

.page-product .product-images .product-avatar_image:after {
    position: absolute;
    content: "";
    display: block;
    width: 27px;
    height: 27px;
    top: 15px;
    right: 15px;
    background: url(/public/upload/theme/zoom.png) center no-repeat;
    background-size: contain;
    -webkit-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
    opacity: 0;
    -webkit-transform: scale(0.6);
    -ms-transform: scale(0.6);
    transform: scale(0.6);
    z-index: 2;
    pointer-events: none;
}

.page-product .product-images .product-avatar_image:hover::after {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.page-product .product-images .product-thumb {
    margin-top: 10px;
    position: relative;
}

.page-product .product-images .product-thumb .product-thumb_image {
    border-radius: 10px;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 5px;
    position: relative;
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
    visibility: visible;
    border: 1px solid var(--bs-gray-300);
}

.page-product .product-images .product-thumb .product-thumb_image img {
    overflow: hidden;
    border-radius: 5px;
    opacity: 0.7;
}

.page-product .product-images .product-thumb .swiper-slide-thumb-active .product-thumb_image {
    border-color: var(--primary-color);
}

.page-product .product-images .product-thumb .swiper-slide-thumb-active .product-thumb_image img {
    opacity: 1;
}

.page-product .product-images .product-thumb .swiper-slide-thumb-active .product-thumb_image img {
    opacity: 1;
}

.page-product .product-title {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 2em;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.page-product .product-category {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    font-size: 1.075em;
    margin-bottom: 10px;
}

.page-product .product-category > span {
    font-weight: 600;
    color: var(--dark-color);
    margin-right: 5px;
}

.page-product .product-category a {
    color: var(--bs-black);
    font-weight: 700;
}

.page-product .product-category a:not(:first-of-type):before {
    content: ',';
    color: var(--bs-black) !important;
}

.page-product .product-category a:hover {
    color: var(--primary-color);
}

.page-product .product-desc {
    font-size: 1.075em;
    color: var(--body-color);
}

.page-product .product-buttons {
    display: flex;
    margin-top: 12px;
    gap: 12px;
}

.page-product .product-share {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: flex-start;
    padding-top: 15px;
    margin-top: 15px;
    border-top: 1px solid #e9e9e9;
    gap: 5px;
}

.page-product .product-share .product-share_text {
    font-size: 1.075em;
    color: var(--body-color);
}

@media screen and (max-width: 992px) {
    .page-product .product-box {
        padding: 16px;
    }

    .page-product .product-title {
        font-size: 1.5em;
    }

    .page-product .product-category {
        font-size: 1em;
    }

    .page-product .product-desc {
        font-size: 1em;
    }

    .page-product .product-buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
    }

    .page-product .product-share .product-share_text {
        font-size: 1em;
    }
}

.floating {
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.floating.isShow {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.floating .floating-return {
    position: fixed;
    bottom: 30px;
    right: 20px;
    width: 40px;
    height: 40px;
    color: var(--bs-white);
    background: var(--secondary-color);
    border-radius: 50%;
    font-size: 1.6em;
    box-shadow: 0 21px 51px rgba(3, 31, 114, 0.16) !important;
    cursor: pointer;
    border: 0;
    outline: none;
    z-index: 5;
}

.floating .floating-zalo {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 5;
}

.floating .floating-contact {
    position: fixed;
    bottom: 30px;
    left: 60px;
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.floating .floating-contact .floating-contact_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    height: 46px;
    border-radius: 5px;
    background: var(--secondary-color);
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
    color: var(--bs-white);
    padding-left: 24px;
    padding-right: 10px;
    padding-top: 2px;
}

.floating .floating-contact .floating-contact_item .floating-contact_icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--secondary-color);
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
    position: absolute;
    top: 50%;
    left: -37.5px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    padding: 15px;
}

.floating .floating-contact .floating-contact_item .floating-contact_icon:before {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-name: hover-ripple-out;
    animation-name: hover-ripple-out;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    content: '';
    display: block;
    position: absolute;
    background: var(--secondary-color);
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
    opacity: 0.8;
    width: 100%;
    height: 100%;
}

.floating .floating-contact .floating-contact_item .floating-contact_icon .floating-contact_icon__inner {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--secondary-color);
    border: 2px solid var(--bs-white);
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
    font-size: 1.45em;
    color: var(--bs-white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 2;
}

.floating .floating-contact .floating-contact_item .floating-contact_icon .floating-contact_icon__inner i {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-name: zoom-icon;
    animation-name: zoom-icon;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
}

.floating .floating-contact .floating-contact_item .floating-contact_text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    line-height: 1.2;
}

.floating .floating-contact .floating-contact_item > a,
.floating .floating-contact .floating-contact_item > :-webkit-any-link {
    color: var(--bs-white) !important;
    text-decoration: none;
}


.floating .floating-contact .floating-contact_item .floating-contact_text .floating-contact_text__title {
    font-size: .925em;
    color: var(--bs-white);
}

.floating .floating-contact .floating-contact_item .floating-contact_text .floating-contact_text__number {
    font-size: 1.075em;
    font-weight: 700;
    color: var(--bs-white);
}

.floating .floating-contact .floating-contact_item:nth-of-type(even),
.floating .floating-contact .floating-contact_item:nth-of-type(even) .floating-contact_icon,
.floating .floating-contact .floating-contact_item:nth-of-type(even) .floating-contact_icon:before,
.floating .floating-contact .floating-contact_item:nth-of-type(even) .floating-contact_icon .floating-contact_icon__inner {
    background: var(--primary-color);
}

.floating .floating-contact .floating-contact_item:hover,
.floating .floating-contact .floating-contact_item:hover .floating-contact_icon,
.floating .floating-contact .floating-contact_item:hover .floating-contact_icon:before,
.floating .floating-contact .floating-contact_item:hover .floating-contact_icon .floating-contact_icon__inner {
    background: var(--secondary-hover);
}

.floating .floating-contact .floating-contact_item:nth-of-type(even):hover,
.floating .floating-contact .floating-contact_item:nth-of-type(even):hover .floating-contact_icon,
.floating .floating-contact .floating-contact_item:nth-of-type(even):hover .floating-contact_icon:before,
.floating .floating-contact .floating-contact_item:nth-of-type(even):hover .floating-contact_icon .floating-contact_icon__inner {
    background: var(--primary-hover);
}

@-webkit-keyframes hover-ripple-out {
    50% {
        width: calc(100% + 15px);
        height: calc(100% + 15px);
        opacity: 0;
    }
}

@keyframes hover-ripple-out {
    50% {
        width: calc(100% + 15px);
        height: calc(100% + 15px);
        opacity: 0;
    }
}

@-webkit-keyframes zoom-icon {
    100% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
}

@keyframes zoom-icon {
    100% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
}

.modal-theme .modal-close {
    position: absolute;
    border: 0;
    outline: none;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: var(--bs-black);
    top: -34px;
    right: -34px;
    border-radius: 50%;
    z-index: 3;
    background: rgba(255, 255, 255, 0.75);
}

.modal-theme .modal-close:hover {
    background: rgba(255, 255, 255, 1);
}

@media screen and (max-width: 992px) {
    .modal-theme .modal-close {
        top: 5px;
        right: 5px;
    }

    .floating .floating-contact {
        left: 50px;
        gap: 20px;
    }

    .floating .floating-contact .floating-contact_item {
        height: 38px;
        padding-left: 10px;
    }

    .floating .floating-contact .floating-contact_item .floating-contact_icon .floating-contact_icon__inner {
        width: 38px;
        height: 38px;
    }

    .floating .floating-contact .floating-contact_item .floating-contact_icon {
        width: 48px;
        height: 48px;
    }

    .floating .floating-contact .floating-contact_item .floating-contact_text .floating-contact_text__title {
        font-size: .75em;
    }

    .floating .floating-contact .floating-contact_item .floating-contact_text .floating-contact_text__number {
        font-size: 1em;
    }

    .floating .floating-zalo {
        bottom: 85px;
    }

}


/*----------------------------------*
		*  End: Theme CSS
		*----------------------------------*/


.image-box {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    height: 450px; /* Đặt chiều cao cố định */
}

.image-box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-box .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 300;
    text-align: center;
    border-radius: 12px;
}

.text-article {
    z-index: 11;
    font-weight: 700;
    bottom: 20px;
    left: 20px;
    right: 20px;
    color: var(--bs-white);
}

.article-card .card-date {
    font-weight: 400;
}

.article-card .limit {
    font-size: 1.2em;
}


.info-wrapper > iframe {
    width: 100%;
    border-radius: 12px;
    height: 450px !important;
}

@media screen and (max-width: 768px) and (max-width: 992px) {
    .info-wrapper > iframe {
        margin-top: 20px;
        width: 100%;
        height: 300px;
        border-radius: 8px;
    }

    .image-box {
        padding-bottom: 60%;
    }

    .image-box .overlay {
        font-size: 0.9rem;
    }
}


/*=========================================
		* GOP Y
*========================================*/


.feedback-form .form-group__star {
    display: flex;
    gap: 20px;
}

.feedback-form .form-group .form-input,
.feedback-form .form-group .form-textarea {
    color: var(--dark-color) !important;
    background-color: rgb(var(--primary-rgb), 0.05);
    border: 1px solid rgb(var(--primary-rgb), 0.35);
    height: 54px;
    border-radius: 0;
    font-weight: 600;
    font-size: 1.075em;
}

.feedback-form .form-group .form-input::placeholder,
.feedback-form .form-group .form-textarea::placeholder {
    color: var(--bs-gray-700) !important;
    font-weight: 400;
}

.feedback-form .form-group .form-textarea {
    resize: none;
    height: unset;
    padding: 20px;
}

.feedback-form .form-label {
    font-weight: 700;
    font-size: 1.1em;
    width: 140px;
}

.feedback-form .comment-form .form-item {
    position: relative;
}

.feedback-form .form-item.form-star {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
}

.feedback-form .form-item.form-star input {
    position: absolute;
    top: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.feedback-form .form-item.form-star label {
    font-size: 1.25rem;
    padding-right: 5px;
    cursor: pointer;
}

.feedback-form .form-item.form-star input:checked ~ label {
    color: var(--primary-hover);
}

.feedback-form .form-item.form-star input:checked ~ label .far {
    font-weight: 900;
}


.feedback-form .form-item.form-star label:hover,
.feedback-form .form-item.form-star label:hover ~ label,
.feedback-form .form-item.form-star input:checked + label:hover,
.feedback-form .form-item.form-star input:checked + label:hover ~ label,
.feedback-form .form-item.form-star input:checked ~ label:hover,
.feedback-form .form-item.form-star input:checked ~ label:hover ~ label,
.feedback-form .form-item.form-star label:hover ~ input:checked ~ label {
    color: var(--primary-hover);
}

.feedback-form .form-item.form-star label:hover .far,
.feedback-form .form-item.form-star label:hover ~ label .far,
.feedback-form .form-item.form-star input:checked + label:hover .far,
.feedback-form .form-item.form-star input:checked + label:hover ~ label .far,
.feedback-form .form-item.form-star input:checked ~ label:hover .far,
.feedback-form .form-item.form-star input:checked ~ label:hover ~ label .far,
.feedback-form .form-item.form-star label:hover ~ input:checked ~ label .far {
    font-weight: 900;
}

.custom-file-label {
    display: inline-block;
    background: rgba(0, 0, 0, 0.3);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}

.real-file-input {
    display: none;
}

.img-preview-box {
    margin-top: 10px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.preview-image {
    max-width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 6px;
    display: block;
}

.close-btn {
    position: absolute;
    top: -6px;
    right: -6px;
    background: red;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
}

@media screen and (max-width: 992px) {
    .section-feedback .separator {
        display: flex;
        justify-content: center;
    }

    .section-feedback .custom-decor,
    .section-feedback .section-heading {
        text-align: center;
    }

    .custom-file-label {
        width: 100%;
        text-align: center;
    }

    .feedback-form .custom-btn__gopy {
        display: flex;
        justify-content: center;
    }

    .feedback-form .custom-btn__gopy .button-theme {
        padding: 10px 20px;
        width: 100%;
    }
}





