.hover-zoom .hover-zoom_image > * {
    transition: .7s cubic-bezier(.3, 1, .3, 1);
}

.hover-zoom:hover .hover-zoom_image > * {
    transition-property: transform;
    transform: scaleX(1.08) scaleY(1.08);
}

.section-gap {
    padding: 50px 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-heading {
    margin-bottom: 40px;
}

.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;
}

.section-heading .heading-title {
    color: var(--primary-color);
    font-size: 1.8em;
    font-weight: 800;
    line-height: 46px;
    display: flex;
    flex-direction: column;
}

.section-heading .heading-title > span {
    display: block;
    height: 20px;
    pointer-events: none;
    margin-top: -20px;
}

.section-heading .heading-title > span > svg {
    stroke: var(--secondary-color);
    width: auto;
    height: 100%;
}

@media screen and (max-width: 768px) {
    .section-heading .heading-title > span {
        margin-top: 0;
    }
}

.section-heading .heading-title_2 {
    color: var(--bs-black);
    font-size: 1.75em;
    font-weight: 800;
    line-height: 36px;
}

.section-heading .heading-subtitle a {
    color: var(--primary-color);
}

.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 {
        font-size: 1.75em;
        line-height: 26px;
    }

    .section-heading .heading-title_2 {
        font-size: 1.3em;
    }

    .section-heading .heading-desc {
        font-size: 1.075em;
    }
}

.button-theme {
    position: relative;
    overflow: hidden;
    border: 0;
    outline: none;
    box-shadow: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    border-radius: 24px;
    padding: 0 48px;
    height: 48px;
    font-size: 1.15em;
    z-index: 1;
    transition: all .5s cubic-bezier(.75, 0, .125, 1);
    white-space: nowrap;
}

.button-theme.button-theme_sm {
    padding: 0 40px;
    height: 44px;
    font-size: 1em;
}

.button-theme.button-theme_xs {
    padding: 0 32px;
    height: 40px;
    font-size: 1em;
}

.button-theme.button-theme_xxs {
    padding: 0 24px;
    height: 36px;
    font-size: 1em;
}

.button-theme:before,
.button-theme:after {
    content: "";
    z-index: -1;
    transition: transform .5s cubic-bezier(.75, 0, .125, 1);
    position: absolute;
    top: -5px;
    bottom: -5px;
    left: -5px;
    right: -5px;
    transform: translate(-100%);
    font-size: 0;
    pointer-events: none;
    border-radius: 24px;
}

.button-theme.button-theme_primary {
    background: var(--primary-color);
    color: var(--bs-white);
}

.button-theme.button-theme_primary:before,
.button-theme.button-theme_primary:after {
    background: var(--primary-hover);
}

.button-theme.button-theme_secondary {
    background: var(--secondary-color);
    color: var(--bs-white);
}

.button-theme.button-theme_secondary:before,
.button-theme.button-theme_secondary:after {
    background: var(--secondary-hover);
}

.button-theme.button-theme_zalo {
    background: #03a5fa;
    color: var(--bs-white);
}

.button-theme.button-theme_zalo:before,
.button-theme.button-theme_zalo:after {
    background: #0098e7;
}

.button-theme:hover {
    color: var(--bs-white) !important;
}

.button-theme:hover:before,
.button-theme:hover:after {
    transform: translate(0);
}

.button-theme:hover:after {
    transition-delay: .175s;
}

.slider-theme {
    position: relative;
}

.slider-theme_overlay .swiper-slide {
    opacity: 0.2;
    transition: .7s cubic-bezier(.3, 1, .3, 1);
    pointer-events: none;
}

.slider-theme_overlay .swiper-slide.swiper-slide-active,
.slider-theme_overlay .swiper-slide.swiper-slide-next,
.slider-theme_overlay .swiper-slide.swiper-slide-next + .swiper-slide {
    opacity: 1;
    pointer-events: auto;
}

.slider-theme .button-slider {
    padding: 0;
    width: 48px;
    height: 48px;
    font-size: 1.3em;
}

.slider-theme .slider-group {
    margin-top: 24px;
    display: flex;
    align-items: center;
}

.slider-theme .slider-group .slider-group_pagination {
    height: 2px;
    margin-right: 16px;
    background: rgba(0, 0, 0, .1);
    width: auto;
    position: relative;
    flex: 1;
    display: flex;
    justify-content: center;
    line-height: 1;
}

.slider-theme .slider-group .slider-group_pagination.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: var(--primary-color);
}

.slider-theme .slider-group_navigation {
    display: flex;
    align-items: center;
    gap: 8px;
}

.slider-theme .slider-navigation_button {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    padding: 0;
    border: 1px solid rgba(0, 0, 0, 0.2);
    background-color: var(--bs-white);
    height: 48px;
    width: 48px;
    color: var(--bs-black);
}

.slider-theme .slider-navigation_button svg {
    height: 20px;
    width: 20px;
    fill: var(--bs-black);
}

@media screen and (max-width: 991px) {
    .slider-theme .slider-navigation_button {
        width: 36px;
        height: 36px;
    }

    .slider-theme .slider-navigation_button svg {
        height: 18px;
        width: 18px;
    }
}

.slider-theme.slider-theme_hover__navigation .button-slider {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-default);
}

.slider-theme.slider-theme_hover__navigation .button-slider_prev {
    left: calc(144px - 15px);
}

.slider-theme.slider-theme_hover__navigation .button-slider_next {
    right: calc(144px - 15px);
}

.slider-theme.slider-theme_hover__navigation:hover .button-slider {
    opacity: 1;
    visibility: visible;
}

.slider-theme.slider-theme_hover__navigation:hover .button-slider_prev {
    left: 144px;
}

.slider-theme.slider-theme_hover__navigation:hover .button-slider_next {
    right: 144px;
}

.slider-theme.slider-theme_emphasis__center .swiper-slide {
    opacity: 0.2;
    transition: opacity 0.3s ease;
}

.slider-theme.slider-theme_emphasis__center .swiper-slide.swiper-slide-active {
    opacity: 1;
}

.slider-theme .slider-pagination {
    margin-top: 30px;
    position: relative;
    left: unset;
    bottom: unset;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-theme .slider-pagination .swiper-pagination-bullet {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 10px;
    height: 10px;
    border-radius: 10px;
    margin: 0 6px;
    transition: var(--transition-default);
    background-color: rgba(255, 255, 255, 0.8);
    position: relative;
    opacity: 1;
    overflow: hidden;
}

.slider-theme .slider-pagination .swiper-pagination-bullet:after {
    content: "";
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    border-radius: 1rem;
    background: var(--primary-color);
    width: 0;
    height: 100%;
    transition: var(--transition-default);
    opacity: 0;
}

.slider-theme .slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 50px;
}

.slider-theme .slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:after {
    opacity: 1;
    animation: animPagination 8s linear forwards;
}

@keyframes animPagination {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

.header {
    position: sticky;
    z-index: 6;
    transition: var(--transition);
    background: var(--bs-white);
    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: -39px;*/
    width: 100%;
}

.header .header-top {
    position: relative;
    background: var(--primary-color);
}

.header .header-top .header-contact .header-contact_item {
    position: relative;
    color: var(--bs-white);
    font-size: 1.075em;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 0;
}

.header .header-top .header-language > .header-language_item {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bs-white);
    border-radius: 50%;
}

.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: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 0;
    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;
}

.header .header-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}

.header .header-logo {
    position: relative;
}

.header .header-logo img {
    height: 74px;
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
}

.header .header-logo .logo-secondary {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.header .header-toolbars {
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    position: relative;
}

.header .header-toolbars .header-button {
    position: relative;
    overflow: hidden;
    border: 0;
    outline: none;
    box-shadow: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    padding: 0 !important;
    width: 44px;
    height: 44px;
    font-size: 1.15em;
    z-index: 1;
    white-space: nowrap;
    color: #000;
    background-color: #E9E9E9;
    border-radius: 9999px;
}

.header .header-toolbars .header-button svg {
    width: 20px;
    height: 20px;
}

.header .header-toolbars .header-button:hover {
    color: var(--bs-white);
}

.header .header-toolbars .header-button:before,
.header .header-toolbars .header-button:after {
    background: var(--primary-hover);
}

.header .header-toolbars .button-theme.button-theme_primary {
    padding: 0 40px;
    height: 44px;
}

.header .header-toolbars .header-hamburger {
    display: none;
}

.header .header-navigation ul {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.header .header-navigation > ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header .header-navigation > ul > li {
    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);
    font-size: 1.15em;
    font-weight: 700;
    padding: 30px 0;
    background: transparent;
    border: 0;
    outline: none;
    box-shadow: none;
    gap: 6px;
    overflow: hidden;
    transition: all 0.4s;
}

.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);
        transition: all .5s cubic-bezier(.3, 1, .3, 1);
        -o-transition: all .5s cubic-bezier(.3, 1, .3, 1);
        -webkit-transition: all .5s cubic-bezier(.3, 1, .3, 1);
        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,
    .header .header-navigation > ul > li > button {
        background: linear-gradient(to right, currentColor, currentColor) 0 1px /0 1px no-repeat;
        background-position-x: right;
        background-position-y: 55px;
        transition: background-size .5s cubic-bezier(.3, 1, .3, 1), color .5s cubic-bezier(.3, 1, .3, 1) !important;
        -o-transition: background-size .5s cubic-bezier(.3, 1, .3, 1), color .5s cubic-bezier(.3, 1, .3, 1) !important;
        -webkit-transition: background-size .5s cubic-bezier(.3, 1, .3, 1), color .5s cubic-bezier(.3, 1, .3, 1) !important;
    }

    .header .header-navigation > ul > li:hover > a,
    .header .header-navigation > ul > li:hover > button {
        background-size: 100% 1px;
        background-position: left 55px;
    }

    .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;
    }

    .header .header-navigation > ul > li > ul > li > ul {
        position: absolute;
        left: 100%;
        width: 100%;
        top: 0;
        -webkit-transform: translateY(-23px);
        -ms-transform: translateY(-23px);
        transform: translateY(-23px);
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        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);
        transition: all .5s cubic-bezier(.3, 1, .3, 1);
        -o-transition: all .5s cubic-bezier(.3, 1, .3, 1);
        -webkit-transition: all .5s cubic-bezier(.3, 1, .3, 1);
        min-width: 200px;
        border-radius: 0 0 4px 4px;
        z-index: 5;
    }

    .header .header-navigation > ul > li > 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 > 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 > 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 > ul > li > a > span:before,
    .header .header-navigation > ul > li > 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 > ul > li > a > span:before {
        top: calc(50% - 7px);
    }

    .header .header-navigation > ul > li > ul > li > ul > li > a > span:after {
        top: calc(50% + 5px);
    }

    .header .header-navigation > ul > li > ul > li > ul > li:hover > a,
    .header .header-navigation > ul > li > 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 > ul > li:hover > a > span,
    .header .header-navigation > ul > li > 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: space-between;
        padding: 10px 0;
        font-size: 1em;
    }

    .header .header-navigation > ul > li > ul > li > a:before {
        /*content: "-";*/
        margin-right: 8px;
    }

    .header .header-navigation > ul > li > 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 > ul > li > a {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: space-between;
        padding: 10px 0;
        font-size: 1em;
    }

    .header .header-navigation > ul > li > 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: 52px;
    }

    .header .header-toolbars .header-hamburger {
        gap: 6px;
        width: 20px;
        height: 32px;
        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 .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-white);
    }

    .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;
    }

    .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 50px 10px calc(var(--bs-gutter-x) * .5);
        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: 8px;
    }

    .header .header-toolbars .header-button {
        display: flex !important;
        width: 36px !important;
        height: 36px !important;
    }

    .header .header-toolbars .header-language .header-language_item img {
        width: 30px;
        height: 30px;
    }

    .header .header-toolbars:before {
        display: none;
    }

    .is-navigation .header .header-navigation {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        height: calc(100vh - 64px);
    }

    .header.is-scroll {
        top: 0;
    }

    .header .header-navigation > ul > li {
        width: 100%;
    }
}

@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 {
    padding: 16px 0;
}

.section-hero .hero-item {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.section-hero .swiper-slide-active .hero-item .hero-item_image {
    animation: zoomOutSlideHero 1s;
}

@keyframes zoomOutSlideHero {
    from {
        transform: scale(1.3);
    }
    to {
        transform: scale(1);
    }
}

.section-hero .hero-item_content {
    width: 100%;
}

.section-hero .hero-item_content .hero-item_title {
    font-size: 3.75em;
    font-weight: 800;
    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);
    font-weight: 500;
    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-pagination {
    margin-top: 0;
    position: absolute;
    bottom: 30px;
    z-index: 2;
}

@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-introduction {
    position: relative;
    overflow: hidden;
}

.section-introduction .introduction-image {
    display: flex;
    align-content: flex-start;
    flex-wrap: wrap;
    position: relative;
}

.section-introduction .introduction-image .introduction-large {
    width: 60%;
    border-radius: 20px;
    overflow: hidden;
    margin-left: auto;
}

.section-introduction .introduction-image .introduction-large img {
    border-radius: 10px;
}

.section-introduction .introduction-image .introduction-thumb {
    width: 100%;
    margin-top: -44%;
    margin-bottom: 0%;
    padding: 21px 0px 0px 0px;
    display: flex;
    position: relative;
}

.section-introduction .introduction-image .introduction-thumb .introduction-thumb_image {
    width: 60.151%;
    display: grid;
    align-items: end;
    justify-content: flex-end;
    background: #fff;
    border-radius: 20px;
}

.section-introduction .introduction-image .introduction-thumb .introduction-thumb_image .introduction-thumb_image__over {
    text-align: center;
    grid-area: 1/-1;
    width: 100%;
    margin: -25% 0% 0% 0%;
    padding: 0 30px;
    border-radius: 20px;
    overflow: hidden;
}

.section-introduction .introduction-image .introduction-thumb .introduction-thumb_image .introduction-thumb_image__bg {
    grid-area: 1/-1;
    width: auto;
    text-align: center;
    max-width: 100%;
    padding: 0 30px;
    border-radius: 10px;
    overflow: hidden;
}

.section-introduction .introduction-image .introduction-thumb .introduction-thumb_image .introduction-thumb_image__bg img {
    border-radius: 10px;
    overflow: hidden;
}

.section-introduction .introduction-image .introduction-thumb .introduction-thumb_counter {
    width: 39.849%;
    align-content: flex-end;
    align-items: flex-end;
}

.section-introduction .introduction-image .introduction-thumb .introduction-thumb_counter .introduction-counter_box {
    text-align: center;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    display: flex;
    padding: 36px 40px;
    background-color: var(--primary-color);
    border-radius: 10px;
}

.section-introduction .introduction-image .introduction-thumb .introduction-thumb_counter .introduction-counter_box .introduction-counter_box__number {
    font-size: 3em;
    font-weight: 700;
    color: var(--bs-white);
    line-height: 1;
}

.section-introduction .introduction-image .introduction-thumb .introduction-thumb_counter .introduction-counter_box .introduction-counter_box__text {
    font-size: 1.3em;
    color: var(--bs-white);
}

.section-introduction .introduction-image .introduction-thumb .introduction-counter_video {
    position: relative;
    z-index: 1;
    transform: translate(-50%, 25%);
    text-align: center;
    font-size: 36px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--bs-white);
    border: 10px solid var(--bs-white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 8px -3px rgba(24, 39, 75, 0.05), 0px 6px 8px -3px rgba(24, 39, 75, 0.12);
}

.section-introduction .introduction-image .introduction-thumb .introduction-counter_video:hover {
    background-color: var(--primary-hover);
    color: var(--bs-white);
}

.section-introduction .introduction-shape .introduction-shape_1 {
    position: absolute;
    right: 0;
    bottom: 120px;
    opacity: 0.07;
    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;
    bottom: 480px;
    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;
}

@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;
}

@media screen and (max-width: 991px) {
    .section-introduction .introduction-image .introduction-large {
        display: none;
    }

    .section-introduction .introduction-image .introduction-thumb {
        margin-top: 0;
        flex-direction: column;
        padding: 0;
    }

    .section-introduction .introduction-image .introduction-thumb .introduction-thumb_image {
        width: 100%;
    }

    .section-introduction .introduction-image .introduction-thumb .introduction-thumb_image .introduction-thumb_image__over {
        margin-top: 0;
    }

    .section-introduction .introduction-image .introduction-thumb .introduction-thumb_image .introduction-thumb_image__bg,
    .section-introduction .introduction-image .introduction-thumb .introduction-thumb_image .introduction-thumb_image__over {
        padding: 0 5px;
    }

    .section-introduction .introduction-image .introduction-thumb .introduction-thumb_counter {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-top: -80px;
    }

    .section-introduction .introduction-image .introduction-thumb .introduction-thumb_counter .introduction-counter_box {
        width: 100%;
        padding-top: 50px;
    }

    .section-introduction .introduction-image .introduction-thumb .introduction-thumb_counter .introduction-counter_box .introduction-counter_box__number {
        font-size: 2.45em;
    }

    .section-introduction .introduction-image .introduction-thumb .introduction-thumb_counter .introduction-counter_box .introduction-counter_box__text {
        font-size: 1.3em;
    }

    .section-introduction .introduction-image .introduction-thumb .introduction-counter_video {
        width: 90px;
        height: 90px;
        border-width: 5px;
        transform: translateY(40px);
    }
}

.section-features .features-list {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    margin-top: 24px;
}

.section-features .features-list .feature-box {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 33.3333333%;
    padding: 24px;
}

.section-features .features-list .feature-box + .feature-box:before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    height: 20%;
    width: 1px;
    background: #f1f1f1;
    z-index: 1;
    transition: all 0.35s ease-in-out;
    opacity: .75;
}

.section-features .features-list .feature-box .feature-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f1f1f1;
    padding: 20px;
}

.section-features .features-list .feature-box .feature-title {
    font-size: 1.15em;
    color: var(--bs-black);
    font-weight: 500;
    text-align: center;
    line-height: 24px;
    margin-top: 8px;
}

.section-features .features-list .feature-box .feature-desc {
    margin-top: 12px;
    font-size: 1.075em;
    color: var(--body-color);
}

@media screen and (min-width: 900px) {
    .section-features .features-list .feature-box {
        width: calc(100% / 6);
    }
}

@media screen and (max-width: 1400px) {
    .section-features .features-list:after {
        width: 100%;
    }
}

@media screen and (min-width: 992px) and (max-width: 1400px) {
    .section-features .features-list .feature-box .feature-title {
        font-size: 1.225em;
    }
}

@media screen and (max-width: 992px) {
    .section-features .features-list {
        flex-wrap: wrap;
    }

    .section-features .features-list .feature-box .feature-title {
        font-size: 1.15em;
    }

    .section-features .features-list .feature-box .feature-desc {
        font-size: 1em;
    }

    .section-features .features-list .feature-box:before {
        display: none;
    }

    .section-features .features-list .feature-box .feature-image {
        width: 60px;
        height: 60px;
    }
}

@media screen and (max-width: 575px) {
    .section-features .features-list .feature-box {
        padding: 20px 12px;
    }
}

.product-card {
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    background-color: transparent !important;
}

.product-card .card-shape {
    display: none !important;
    position: absolute;
    top: 0;
    bottom: 0;
    opacity: 0.065;
    pointer-events: none;
}

.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;
    border-radius: 12px;
}

.product-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;
}

.product-card .card-header:after {
    position: absolute;
    content: "";
    background-image: linear-gradient(to top, rgb(var(--primary-rgb)), rgba(0, 0, 0, 0));
    transform: scaleY(0);
    transform-origin: bottom;
    pointer-events: none;
    height: 50%;
    width: 100%;
    bottom: 0;
    left: 0;
    transition: var(--transition);
    opacity: 0.6;
}

.product-card:hover .card-header::before {
    left: 140%;
    transition: all 2300ms cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 0.25;
}

.product-card:hover .card-header:after {
    transform: scaleX(1);
}

.product-card:hover .card-header img {
    transform: scale(1.05);
}

.product-card .card-body .card-category {
    margin-bottom: 4px;
    font-weight: 600;
    color: var(--body-color);
}

.product-card .card-body .card-title {
    font-size: 1.15em;
    font-weight: 700;
    color: var(--bs-black);
    line-height: 24px;
    transition: var(--transition);
}

.product-card .card-body .card-title span {
    background: linear-gradient(to right, currentColor, currentColor) 0 1px /0 1px no-repeat;
    background-position-x: right;
    background-position-y: bottom;
    transition: background-size .5s cubic-bezier(.3, 1, .3, 1), color .5s cubic-bezier(.3, 1, .3, 1) !important;
    -o-transition: background-size .5s cubic-bezier(.3, 1, .3, 1), color .5s cubic-bezier(.3, 1, .3, 1) !important;
    -webkit-transition: background-size .5s cubic-bezier(.3, 1, .3, 1), color .5s cubic-bezier(.3, 1, .3, 1) !important;
}

.product-card:hover .card-body .card-title {
    color: var(--primary-color);
}

.product-card:hover .card-body .card-title span {
    background-size: 100% 1px;
    background-position: left bottom;
}

.product-card .card-body .card-desc {
    font-size: 1.075em;
    color: var(--body-color);
    margin-top: 8px;
}

@media screen and (min-width: 992px) and (max-width: 1400px) {
    .product-card .card-body .card-title {
        font-size: 1.15em;
    }

    .product-card .card-body .card-desc {
        font-size: 1em;
    }
}

@media screen and (max-width: 992px) {
    .product-card .card-body {
        padding-left: 0;
        padding-right: 0;
    }

    .product-card .card-body .card-title {
        font-size: 1.1em;
    }

    .product-card .card-body .card-desc {
        font-size: 1em;
        --line: 6;
    }
}

.article-card .card-header {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.article-card .card-body {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.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 .card-body .card-title span {
    background: linear-gradient(to right, currentColor, currentColor) 0 1px /0 1px no-repeat;
    background-position-x: right;
    background-position-y: bottom;
    transition: background-size .5s cubic-bezier(.3, 1, .3, 1), color .5s cubic-bezier(.3, 1, .3, 1) !important;
    -o-transition: background-size .5s cubic-bezier(.3, 1, .3, 1), color .5s cubic-bezier(.3, 1, .3, 1) !important;
    -webkit-transition: background-size .5s cubic-bezier(.3, 1, .3, 1), color .5s cubic-bezier(.3, 1, .3, 1) !important;
}

.article-card:hover .card-body .card-title {
    color: var(--primary-color);
}

.article-card:hover .card-body .card-title span {
    background-size: 100% 1px;
    background-position: left bottom;
}

.article-card .card-body .card-desc {
    font-size: 1.075em;
    color: var(--body-color);
    margin-top: 12px;
}

.article-card .card-body .card-date {
    display: flex;
    align-items: center;
    gap: 4px;
    --bs-text-opacity: 1;
    color: rgba(0, 0, 0, .5) !important;
    font-size: 1em;
    margin-top: 8px;
}

.article-card .card-body .card-date svg {
    width: 18px;
}

.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: 6;
    }
}

.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-gallery {
    position: relative;
    overflow: hidden;
    padding: 60px 0 0;
}

.section-gallery .gallery-bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 52.5%;
    background-attachment: scroll;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top right;
    z-index: -1;
}

.section-gallery .gallery-wrapper {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 40px;
}

.section-gallery .gallery-wrapper .gallery-item:nth-child(1) .gallery-item_box,
.section-gallery .gallery-wrapper .gallery-item:nth-child(4) .gallery-item_box {
    margin-top: calc(var(--bs-gutter-x) * 1.75);
    margin-bottom: calc(var(--bs-gutter-x) * -1.75);
}

.section-gallery .gallery-wrapper .gallery-item:nth-child(2) .gallery-item_box,
.section-gallery .gallery-wrapper .gallery-item:nth-child(5) .gallery-item_box {
    margin-top: calc(var(--bs-gutter-x));
    margin-bottom: calc(var(--bs-gutter-x) * -0.75);
}

@media screen and (max-width: 992px) {
    .section-gallery .gallery-wrapper {
        padding: 0;
    }

    .section-gallery .gallery-bg {
        display: none;
    }

    .section-gallery .gallery-wrapper .gallery-item .gallery-item_box {
        margin: 0 !important;
    }
}

.section-testimonial .testimonial-card {
    position: relative;
    z-index: 2;
    margin-left: 96px !important;
    margin-right: 96px !important;
}

.section-testimonial .testimonial-card .testimonial-image {
    width: 70px;
    height: 70px;
}

.section-testimonial .testimonial-card .testimonial-desc {
    text-align: center;
    font-size: 1.45em;
    font-weight: 500;
    color: var(--bs-dark);
}

.section-testimonial .testimonial-card .testimonial-title {
    text-align: center;
    font-size: 1.225em;
    font-weight: 700;
    color: var(--primary-color);
}

.section-testimonial .testimonial-card .testimonial-sub {
    text-align: center;
    font-size: 1.075em;
    font-weight: 500;
}

.section-testimonial .testimonial-card .testimonial-star {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
    color: #c0bcbc;
    font-size: 1.15em;
}

.section-testimonial .testimonial-card .testimonial-star .is-star {
    color: #F89D20;
}

.section-testimonial .testimonial-card .testimonial-icon {
    color: var(--primary-color);
    box-shadow: 4px 19px 73px #b4b4b46b;
    overflow: hidden;
    background: var(--bs-white);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    width: 70px;
    height: 70px;
    margin-bottom: -35px;
    bottom: 0;
}

@media screen and (max-width: 1400px) {
    .section-testimonial .testimonial-card .testimonial-desc {
        font-size: 1.075em;
    }

    .section-testimonial .testimonial-card .testimonial-title {
        font-size: 1.15em;
    }

    .section-testimonial .testimonial-card .testimonial-sub {
        font-size: 1em;
    }
}

@media screen and (max-width: 991px) {
    .section-testimonial .testimonial-card {
        margin: 0 !important;
    }
}

.footer {
    padding: 70px 0;
    position: relative;
    background-color: #f1f1f1;
}

/*.footer:before {*/
/*	position: absolute;*/
/*	top: 0;*/
/*	left: 0;*/
/*	width: 100%;*/
/*	height: 100%;*/
/*	content: "";*/
/*	background: rgba(0, 0, 0, .65);*/
/*}*/

.footer .footer-logo img {
    height: 74px;
}

.footer .footer-item .footer-name {
    font-size: 1.45em;
    font-weight: 700;
    /*color: var(--bs-white);*/
    color: var(--primary-color);
    line-height: 26px;
}

.footer .footer-item .footer-title {
    font-size: 1.45em;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 26px;
    margin-bottom: 15px;
}

.footer .footer-text {
    font-size: 1.15em;
    /*color: #e7e7e7;*/
    color: #242427;
    line-height: 1.6;
    margin-top: 15px;
}

.footer .footer-text a i {
    color: var(--bs-dark);
}

.footer .footer-text a {
    color: #186430;
}

.footer .footer-divider {
    border-top: 1px solid rgba(128, 127, 127, 0.71);
    margin-bottom: var(--bs-gutter-y);
}

.footer .footer-copyright {
    font-size: 1em;
    color: #b2b2b2;
}

.footer .footer-item .footer-contact {
    display: flex;
    flex-wrap: wrap;
    row-gap: 10px;
    column-gap: 30px;
}

.footer .footer-item .footer-contact .footer-contact_item {
    width: calc(50% - 30px);
}

.footer .footer-item .footer-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer .footer-item .footer-contact .footer-contact_item,
.footer .footer-item .footer-list .footer-list_item {
    color: #333;
    font-size: 1.075em;
}

.footer .footer-item .footer-contact .footer-contact_item b,
.footer .footer-item .footer-list .footer-list_item b {
    color: var(--bs-white);
}

.footer .footer-item .footer-contact a.footer-contact_item:hover,
.footer .footer-item .footer-list .footer-list_item:hover {
    color: var(--primary-color);
}

@media screen and (min-width: 992px) and (max-width: 1400px) {
    .footer .footer-logo img {
        height: 48px;
    }

    .footer .footer-item .footer-name {
        font-size: 1.3em;
        line-height: 20px;
    }

    .footer .footer-item .footer-title {
        font-size: 1.3em;
        line-height: 20px;
    }

    .footer .footer-text {
        font-size: 1.075em;
    }

    .footer .footer-item .footer-contact .footer-contact_item,
    .footer .footer-item .footer-list .footer-list_item {
        color: #e7e7e7;
        font-size: 1em;
    }
}

@media screen and (max-width: 992px) {
    .footer .footer-item .footer-name {
        font-size: 1.15em;
        line-height: 20px;
    }

    .footer .footer-item .footer-title {
        font-size: 1.15em;
        line-height: 20px;
    }

    .footer .footer-text {
        font-size: 1em;
    }

    .footer .footer-item .footer-contact .footer-contact_item,
    .footer .footer-item .footer-list .footer-list_item {
        /*color: #e7e7e7;*/
        font-size: 1em;
    }

    .footer .footer-item .footer-contact {
        column-gap: 20px
    }

    .footer .footer-item .footer-contact .footer-contact_item {
        width: calc(50% - 10px);
    }

    .footer .footer-copyright {
        font-size: 0.925em;
    }
}

@media screen and (max-width: 768px) {
    .footer .footer-item .footer-contact .footer-contact_item {
        width: 100%;
    }

    .footer {
        padding: 40px 0 !important;
    }
}

.search-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 6;
    padding: 100px 0 0;
    background-color: rgba(var(--bs-white-rgb), .85);
    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: 1px solid var(--bs-gray-300);
    border-right: 0;
    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);
}

.inputgroup-search input {
    border-top-left-radius: 99px;
    border-bottom-left-radius: 99px;
}

@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;
    }
}

@media screen and (max-width: 1469px) {
    .inputgroup-search {
        display: none;
    }

    #searchCall {
        display: block;
    }
}

@media screen and (min-width: 1470px) {
    .inputgroup-search {
        display: flex;
    }

    #searchCall {
        display: none;
    }
}

.section-breadcrumb {
    padding: 15px 0;
}

.section-breadcrumb .breadcrumb > .breadcrumb-item {
    color: var(--body-color);
    position: relative;
    font-size: 1.075em;
    font-weight: 500;
}

.section-breadcrumb .breadcrumb > .breadcrumb-item > a {
    color: var(--dark-color);
}

.section-breadcrumb .breadcrumb > .breadcrumb-item > a:hover {
    color: var(--primary-color);
}

.section-breadcrumb .breadcrumb > .breadcrumb-item + .breadcrumb-item {
    padding-left: 24px;
}

.section-breadcrumb .breadcrumb > .breadcrumb-item + .breadcrumb-item:before {
    font-family: "Font Awesome 5 Pro";
    float: none;
    padding-right: 0;
    content: "\f105";
    top: calc(50% - 1px);
    -webkit-transform: translateX(200%) translateY(-50%);
    -ms-transform: translateX(200%) translateY(-50%);
    transform: translateX(200%) translateY(-50%);
    left: -2px;
    color: var(--dark-color);
    font-size: 15px;
    position: absolute;
    font-weight: 400;
    line-height: 1;
}

@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;
    }
}

.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;
}

@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;
    }
}

.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: 800;
    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;
}

.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: 800;
    background-color: var(--primary-color);
    font-size: 1.3rem;
    letter-spacing: 0.5px;
    /*margin-bottom: 15px;*/
    color: #fff;
    padding: 3px 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.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);*/
    background: var(--primary-color);
    color: #fff;
    padding: 3px 10px;
    margin-bottom: 10px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.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: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    color: var(--bs-white);
    background: var(--primary-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: 80px;
    right: 20px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 5;
}

.floating .floating-zalo img {
    width: 100%;
    height: 100%;
}

.floating .floating-contact {
    position: fixed;
    bottom: 30px;
    left: 50px;
    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 .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;
}

.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);
}

@media screen and (max-width: 768px) {
    .floating .floating-contact {
        bottom: 20px;
        left: 40px;
        gap: 10px;
    }

    .floating .floating-contact .floating-contact_item {
        padding: 0;
    }

    .floating .floating-contact .floating-contact_item .floating-contact_text {
        display: none;
    }

    .floating .floating-contact .floating-contact_item .floating-contact_icon {
        width: 44px;
        height: 44px;
    }

    .floating .floating-return {
        bottom: 20px;
        right: 10px;
    }

    .floating .floating-zalo {
        right: 10px;
        bottom: 70px;
    }
}

@-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;
    }
}

.footer-map iframe {
    max-width: 100% !important;
    height: 250px;
}

.section-scrolling {
    background: #f4f9f4;
    padding: 30px 0;
    position: relative;
}

.section-scrolling:before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.25) 0%, transparent 70%);
    top: -100px;
    left: -100px;
    filter: blur(40px);
    z-index: 0;
}

.section-scrolling::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.2) 0%, transparent 70%);
    bottom: -100px;
    right: -100px;
    filter: blur(50px);
    z-index: 0;
}

.section-scrolling,
.section-scrolling .scrolling-container {
    gap: 12px;
}

.section-scrolling .scrolling-container {
    flex: 0 0 auto;
}

.section-scrolling .scrolling-container .scrolling-item {
    gap: 10px;
    border: 0;
    flex: 1;
    padding: 0 32px;
}

.section-scrolling .scrolling-container .scrolling-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: #dfe6df80;
}

.section-scrolling .scrolling-container .scrolling-item .scrolling-item_image {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2em;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.section-scrolling .scrolling-container .scrolling-item .scrolling-item_image p {
    margin-bottom: 0;
}

.section-scrolling .scrolling-container .scrolling-item .scrolling-item_title {
    display: flex;
    flex-direction: column;
    color: #3b3939;
    font-weight: 500;
    line-height: 1.3;
    font-size: 1.15em;
}

.section-scrolling .scrolling-container .scrolling-item .scrolling-item_title strong {
    font-weight: 900;
    color: var(--primary-color);
    font-size: 1.75em;
}

@keyframes scrolling-left {
    0% {
        transform: translateZ(0);
        visibility: visible;
    }
    100% {
        transform: translate3d(-100%, 0, 0);
    }
}

@media screen and (max-width: 768px) {
    .section-scrolling {
        padding: 12px;
    }

    .section-scrolling .scrolling-container {
        flex: 0 0 auto;
        width: max-content;
        will-change: transform;
        animation-iteration-count: infinite;
        animation-timing-function: linear;
        animation-duration: 35s;
        animation-play-state: running;
        animation-name: scrolling-left;
    }

    .section-scrolling .scrolling-container .scrolling-item {
        padding: 0 12px;
        flex: 0 0 auto;
    }

    .section-scrolling .scrolling-container .scrolling-item .scrolling-item_image {
        width: 44px;
        height: 44px;
        font-size: 1.5em;
    }

    .section-scrolling .scrolling-container .scrolling-item .scrolling-item_title {
        font-size: 1.075em;
    }

    .section-scrolling .scrolling-container .scrolling-item .scrolling-item_title strong {
        font-size: 1.6em;
    }

    .section-scrolling .scrolling-container .scrolling-item:not(:last-child)::after {
        display: none;
    }

}

.section-why {
    background-color: rgba(var(--secondary-rgb), 0.05);
}

.section-why .nav-tabs {
    --bs-nav-tabs-border-width: 0;
    --bs-nav-tabs-border-radius: 0;
    border-bottom: 0;
    width: 100%;
    position: relative;
    gap: 45px;
}

.section-why .nav-tabs:before {
    content: "";
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    width: 2px;
    height: 100%;
    background: rgba(var(--bs-black-rgb), .1);
}

.section-why .nav-tabs .nav-link {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0 24px;
    color: rgba(var(--bs-black-rgb), .9);
    border: 0;
    border-radius: 0;
    width: 100%;
    position: relative;
    background-color: transparent;
    text-align: left;
    transition: var(--transition-default);
    margin-bottom: 0;
}

.section-why .nav-tabs .nav-link:before {
    content: "";
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--primary-color)) 2px 0 / 2px 0 no-repeat;
    background-position-x: left;
    background-position-y: bottom;
    transition: background-size .5s cubic-bezier(.3, 1, .3, 1), color .5s cubic-bezier(.3, 1, .3, 1) !important;
    -o-transition: background-size .5s cubic-bezier(.3, 1, .3, 1), color .5s cubic-bezier(.3, 1, .3, 1) !important;
    -webkit-transition: background-size .5s cubic-bezier(.3, 1, .3, 1), color .5s cubic-bezier(.3, 1, .3, 1) !important;
}

.section-why .nav-tabs .nav-link .nav-link_title {
    color: currentColor;
    font-size: 1.45em;
    font-weight: 500;
}

.section-why .nav-tabs .nav-link .nav-link_desc {
    font-size: 1.075em;
    display: none;
}

.section-why .nav-tabs .nav-link .nav-link_desc p:last-child,
.section-why .nav-tabs .nav-link .nav-link_desc ol:last-child,
.section-why .nav-tabs .nav-link .nav-link_desc ul:last-child {
    margin: 0;
}

.section-why .nav-tabs .nav-link.active .nav-link_title {
    color: var(--primary-color);
}

.section-why .nav-tabs .nav-link.active:before {
    background-size: 2px 100%;
    background-position: left top;
}

.section-why .nav-tabs .nav-link.active .nav-link_desc {
    display: block;
}

@media screen and (max-width: 991px) {
    .section-why .nav-tabs {
        gap: 20px;
    }

    .section-why .nav-tabs .nav-link .nav-link_title {
        font-size: 1.15em;
    }

    .section-why .nav-tabs .nav-link .nav-link_desc {
        font-size: 1em;
    }
}

@media screen and (max-width: 768px) {
    #sliderTestimonials {
        padding-top: 40px;
    }

    #sliderTestimonials .slider-nav {
        position: absolute;
        top: 10px;
        width: 100%;
        left: 0;
        display: flex;
        justify-content: center;
    }

    #sliderTestimonials .button-slider {
        opacity: 1;
        visibility: visible;
        top: 15px;
        position: unset;
        width: 35px;
        height: 35px;
    }

    #sliderTestimonials .button-slider:first-child {
        margin-right: 10px;
    }
}
