.fs-12 {
    font-size: 12px !important;
}

.fs-13 {
    font-size: 1.3rem !important;
}

.fs-14 {
    font-size: 1.4rem !important;
}

.fs-15 {
    font-size: 1.5rem !important;
}

.fs-16 {
    font-size: 1.6rem !important;
}

.fs-17 {
    font-size: 1.7rem !important;
}

.fs-18 {
    font-size: 1.8rem !important;
}

.fs-20 {
    font-size: 2rem !important;
}

.fs-25 {
    font-size: 2.5rem !important;
}

.fs-26 {
    font-size: 2.6rem !important;
}

.fs-28 {
    font-size: 2.8rem !important;
}

.fs-30 {
    font-size: 3rem !important;
}

.object-cover {
    object-fit: cover !important;
}

@media (min-width: 1200px) {

    .container,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl {
        max-width: 1440px;
    }
}

@media (min-width: 1200px) {
    .menu-system .container {
        max-width: 1600px;
    }
}

.menu-system>.container>.row>div:last-child {
    display: flex;
    align-items: center;
}

.block_footer>.container>.row>div:first-child {
    display: flex;
    gap: 7rem;
}

.block_footer {
    padding: 10rem 0;
}

.menu-footer>li>a {
    line-height: 2.4;
    color: #797d88;
    text-transform: capitalize;
}

.title-copyright {
    font-size: 13px;
    color: #797d88;
}

.border-copyright {
    border-top: solid 1px #2c3140;
}

.hover-img {
    overflow: hidden;
}

.hover-img img {
    transform: scale(1);
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    -moz-transform: scale(1);
    transition: all 2s;
    -webkit-transition: all 2s;
    -moz-transition: all 2s;
    -ms-transition: all 2s;
    -o-transition: all 2s;
}

.hover-img:hover img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    -moz-transform: scale(1.1);
}

.fa {
    font-family: 'Font Awesome 6 Pro';
    font-weight: 900;
}

.font-weight-500 {
    font-weight: 500 !important;
}

.font-weight-600 {
    font-weight: 600 !important;
}

.spacing-2 {
    letter-spacing: 2px;
}

.color-red {
    color: red;
}

a {
    color: var(--color-highlight);
}

.object-cover {
    object-fit: cover !important;
}

.object-scale {
    object-fit: scale-down !important;
}

.color-text {
    color: var(--color-text);
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    line-height: 1.4;
}

.rounded {
    border-radius: 0.5rem !important;
}

.text-underline {
    text-decoration: underline;
}

.swiper-button-prev {
    left: -5rem;
}

.swiper-button-next {
    right: -5rem;
}

.swiper:hover .swiper-button-prev {
    left: 1rem;
}

.swiper:hover .swiper-button-next {
    right: 1rem;
}






.header-top>.container>.row>div:last-child {
    display: flex;
    align-items: center;
    justify-content: end;
}

.setting-menu .menu-sect {
    text-align: center;
    width: 100%;
}

.search-section .form-dropdown {
    position: absolute;
    padding: 10px;
    background-color: #ffffff;
    width: 300px;
    top: 100%;
    left: auto;
    right: 0;
    z-index: 1000;
    margin-bottom: 0;
    -webkit-animation: nav_menu_anim_close 0.3s both;
    -o-animation: nav_menu_anim_close 0.3s both;
    animation: nav_menu_anim_close 0.3s both;
    -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    opacity: 0;
    filter: opacity(0);
    visibility: hidden;
    -webkit-box-shadow: 0px 0px 3px rgb(0 0 0 / 15%);
    -moz-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 3px rgb(0 0 0 / 15%);
}

.search-section:hover .form-dropdown {
    -webkit-animation: nav_menu_anim_open 0.3s both;
    -o-animation: nav_menu_anim_open 0.3s both;
    animation: nav_menu_anim_open 0.3s both;
    opacity: 1;
    filter: opacity(1);
    visibility: visible;
    pointer-events: unset;
}

.search-section .form-dropdown input {
    min-height: 4.5rem;
}

.slider-main .swiper-slide-active .swiper-slide--tile {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInDown;
    animation-delay: 0.4s;
}

.slider-main .swiper-slide-active .swiper-slide--description {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInDown;
    animation-delay: 0.3s;
}

.slider-main .swiper-slide-active .btn-submit {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInDown;
    animation-delay: 0.3s;
}

@-webkit-keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown
}

.slider-main,
.slider-main img {
    /* width: 100%; */
    /* object-fit: cover; */
    /* height: 41vw; */
}

.swiper-slider-main .swiper-pagination-bullet {
    background: white;
}

.swiper-pagination-bullet {
    position: relative;
    width: 1.2rem;
    height: 1.2rem;
    margin: 0 4px;
    border-radius: 0;
    background: transparent;
    border: 1px solid var(--color-highlight);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--color-highlight);
}

.swiper-button-prev,
.swiper-button-next {
    width: 4rem;
    height: 4rem;
    background: var(--color-highlight);
    color: white;
    font-size: 1.6rem;
    opacity: 0 !important;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: var(--color-main);
    color: white;
}

.slider-main .swiper-button-prev {
    left: -6rem;
}

.slider-main .swiper-button-next {
    right: -6rem;
}

.slider-main:hover .swiper-button-prev {
    left: 2rem;
}

.slider-main:hover .swiper-button-next {
    right: 2rem;
}

.swiper:hover .swiper-button-prev,
.swiper:hover .swiper-button-next {
    opacity: 1 !important;
}

.product-item-hover:hover {
    box-shadow: 0px 4px 15px rgba(20, 25, 26, 0.2);
}

.swiper .swiper-slide {
    height: auto;
}

.cate-home-section .item:nth-child(2n+2)>.row {
    flex-direction: row-reverse;
}

.cate-home-section .item .img {
    padding-top: 88%;
}

.cate-home-section .cate-bg {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 16rem 0;
}

.instagram-section .image:before {
    content: '';
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgb(0 0 0 / 70%);
    transition: all .5s ease;
    opacity: 0;
    position: absolute;
    z-index: 1;
}

.instagram-section .image:after {
    content: "\f16d";
    font-family: 'Font Awesome 6 Brands';
    font-weight: 400;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    text-align: center;
    color: white;
    font-size: 5rem;
    transition: all .5s ease;
    opacity: 0;
    z-index: 2
}

.instagram-section .swiper-slide:hover .image:before,
.instagram-section .swiper-slide:hover .image:after {
    opacity: 1;
    transition: all .5s ease;
}

.testimonial-section .img img {
    width: 10rem;
    height: 10rem;
    object-fit: cover;
}

footer {
    background: #1c202b;
}

.footer-menu-section ul li {
    margin-bottom: 1rem;
}

.footer-menu-section ul li:last-child {
    margin: 0;
}

.footer-menu-section ul li a:hover {
    color: white !important;
    text-decoration: underline;
}

.social-section li {
    margin-right: 1rem;
}

.social-section li a {
    color: var(--color-highlight);
    font-size: 1.6rem;
    width: 3.8rem;
    height: 3.8rem;
    line-height: 3.8rem;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.social-section li a:hover {
    color: var(--color-highlight);
    background: white;
}

.footer-social-minimal {
    width: 100%;
    max-width: 34.5rem;
    min-height: 0.5rem;
    display: flex;
    /* flex-direction: column; */
    align-items: center;
    /* justify-content: center; */
    padding: 0rem 6.8rem;
}

.footer-social-minimal .title-contact-social {
    color: #fff;
    text-align: center;
}

.footer-social-minimal ul {
    width: 16rem;
    gap: 1.4rem 2.4rem;
}

.footer-social-minimal li {
    flex: 0 0 calc(33.333% - 1.6rem);
    display: flex;
    justify-content: center;
    margin: 0;
}

.footer-social-minimal li:nth-child(4) {
    margin-left: calc(16.666% + 0.8rem);
}

.footer-social-minimal li a {
    width: 3.4rem;
    height: 3.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 3rem;
    line-height: 1;
    background: transparent;
    transition: opacity .25s ease, transform .25s ease;
}

.footer-social-minimal li a:hover {
    color: #fff;
    opacity: .72;
    transform: translateY(-0.2rem);
}

.footer-social-minimal li a .fa-youtube {
    font-size: 2.7rem;
}

.btn-contact-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 14.4rem;
    min-height: 5.4rem;
    padding: 1.2rem 3rem;
    border: 0.1rem solid #0070bd;
    border-radius: 999px;
    background: #0070bd;
    color: #fff;
    font-size: 1.6rem;
    line-height: 1.4;
    box-shadow: 0 0.8rem 1.8rem rgba(0, 0, 0, 0.22);
    transition: all .3s ease;
}

.btn-contact-pill:hover {
    background: #fff;
    color: #0070bd;
}

@media (min-width: 993px) {
    .menu-section>ul>li>a {
        position: relative;
        color: var(--color-main);
    }

    .menu-section>ul>li>a:after {
        content: '';
        position: absolute;
        left: 50%;
        bottom: 0.8rem;
        width: 0;
        height: 0.2rem;
        background: #0067b1;
        transform: translateX(-50%);
        transition: width .25s ease;
    }

    .menu-section>ul>li:hover>a,
    .menu-section>ul>li.active>a,
    .menu-section>ul>li>a.active {
        color: #0067b1 !important;
    }

    .menu-section>ul>li:hover>a:after,
    .menu-section>ul>li.active>a:after,
    .menu-section>ul>li>a.active:after {
        width: 4rem;
    }
}

.form-group {
    margin-bottom: 2rem;
}

.form-control {
    border-color: #e4e4e4;
    min-height: 4.7rem;
}

.newsletter .btn-submit {
    position: absolute;
    right: 0.2rem;
    top: 0.2rem;
}

.newsletter .invalid-feedback {
    color: white !important;
}

/*Button Contact Fixed*/
.contact-fixed {
    z-index: 999;
    right: 2rem;
    bottom: 7rem;
    position: fixed;
    height: 6rem;
    width: 6rem;
    background: var(--color-highlight);
    border-radius: 50%;
    cursor: pointer;
}

.contact-fixed__button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 6rem;
    height: 6rem;
    color: var(--white);
    font-size: 1.1rem;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: ease-in .12s all;
    -o-transition: ease-in .12s all;
    transition: ease-in .12s all;
}

.contact-fixed__button.show {
    -webkit-transform: rotate(0) scale(1);
    -ms-transform: rotate(0) scale(1);
    transform: rotate(0) scale(1);
}

.contact-fixed__button i {
    font-size: 2.2rem;
}

.contact-fixed__pulsation {
    width: 8.4rem;
    height: 8.4rem;
    background-color: var(--color-highlight);
    border-radius: 50%;
    position: absolute;
    left: -1.2rem;
    top: -1.2rem;
    z-index: -1;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-animation: arcontactus-pulse 2s infinite;
    animation: arcontactus-pulse 2s infinite;
}

.contact-fixed__pulsation:nth-child(2n) {
    -webkit-animation-delay: .5s;
    animation-delay: .5s;
}

.contact-fixed__close {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 6rem;
    height: 6rem;
    color: var(--white);
    font-size: 2.2rem;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: ease-in .12s all;
    -o-transition: ease-in .12s all;
    transition: ease-in .12s all;
}

.contact-fixed__close.show {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.contact-fixed__list {
    background: center no-repeat var(--white);
    box-shadow: 0 0 10px rgb(0 0 0 / 60%);
    width: 20rem;
    position: absolute;
    bottom: 8rem;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 1.4rem 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 7px;
    -webkit-transform-origin: 80% 105%;
    -ms-transform-origin: 80% 105%;
    transform-origin: 80% 105%;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: ease-out .12s all;
    -o-transition: ease-out .12s all;
    transition: ease-out .12s all;
    z-index: 10000;
}

.contact-fixed__list:before {
    position: absolute;
    bottom: -0.7rem;
    right: 2.5rem;
    left: auto;
    display: inline-block !important;
    border-right: 8px solid transparent;
    border-top: 8px solid #FFF;
    border-left: 8px solid transparent;
    content: '';
}

.contact-fixed__list.show {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.contact-fixed__item {
    display: flex;
    align-items: center;
    padding: 0.8rem 2rem;
    width: 100%;
    color: var(--color-main);
    font-weight: bold;
}

.contact-fixed__item:hover {
    background-color: #eeeeee;
    color: var(--color-text);
}

.contact-fixed__item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    margin-right: 1rem;
    background-color: var(--color-highlight);
    border-radius: 50%;
    padding: 0.8rem;
}

.contact-fixed__item-icon img {
    filter: brightness(0) invert(1);
}

@keyframes arcontactus-pulse {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 1
    }

    50% {
        opacity: .5
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0
    }
}

/*End Button Contact Fixed*/

.banner-section .item a {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    overflow: hidden;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

.banner-section .item a:after {
    content: "";
    background-color: #00000014;
    padding: 30px;
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 10px;
    right: 10px;
    opacity: 0;
    -webkit-transform: rotate3d(1, 1, 0, 100deg);
    -moz-transform: rotate3d(1, 1, 0, 100deg);
    -ms-transform: rotate3d(1, 1, 0, 100deg);
    -o-transform: rotate3d(1, 1, 0, 100deg);
    transform: rotate3d(1, 1, 0, 100deg);
    -webkit-transition: all .35s ease;
    -moz-transition: all .35s ease;
    transition: all .35s ease;
}

.banner-section .item a:hover:after {
    opacity: 1;
    -webkit-transition-delay: .14s;
    -moz-transition-delay: .14s;
    transition-delay: .14s;
    -webkit-transform: rotate3d(0, 0, 0, 0deg);
    -moz-transform: rotate3d(0, 0, 0, 0deg);
    -ms-transform: rotate3d(0, 0, 0, 0deg);
    -o-transform: rotate3d(0, 0, 0, 0deg);
    transform: rotate3d(0, 0, 0, 0);
}

.contact-info .item i {
    width: 5rem;
    height: 5rem;
    line-height: 5rem;
    text-align: center;
    background: var(--color-highlight);
    color: white;
    border-radius: 50%;
    font-size: 2.5rem;
}


.product-btn .btn-product-action {
    background: var(--color-highlight);
}

.product-btn .btn-product-action:hover {
    border-color: var(--color-highlight);
    color: var(--color-highlight);
    background: transparent;
}

.view-small .article-item .article-title a {
    font-weight: 400;
    font-size: 1.4rem;
}

.title-line:before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 2px;
    left: 0;
    background: var(--light);
}

.title-line span {
    background: white;
    position: relative;
    padding: 0 2rem;
}

.title-left .title-line span {
    padding-left: 0;
}


.product-image-detail .inner-image {
    padding-top: 100%;
}

.product-image-detail .inner-image img {
    object-fit: scale-down;
}

.invalid-feedback {
    color: #dc3545 !important;
}

.bootstrap-select>.dropdown-toggle {
    min-height: 4.5rem;
}

.toolbar__item a img {
    width: 20px !important;
    height: 20px !important;
}

.product-action .btn-product-action:last-child {
    margin-right: 0;
}

.product-detail-footer .nav li a.active::before {
    background-color: #000001;
}

.product-detail-footer .nav li:last-child {
    padding: 0 !important;
}

.title-article-detail {
    font-size: 2.4rem;
}

.comment-section .list-comment:empty {
    margin: 0;
    padding: 0;
    border: 0;
}

.comment-section .list-comment:empty+.total-comment {
    display: none;
}

.btn-video {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    left: 0;
    margin: 0 auto;
    text-align: center;
    color: white;
    font-size: 2rem;
    width: 5rem;
    height: 5rem;
    background: rgb(0 0 0 / 30%);
    line-height: 5rem;
    border-radius: 50%;
}

body {
    counter-reset: section;
}

.file-number::before {
    counter-increment: section;
    content: counter(section);
}

.list-file .article-title a {
    color: var(--color-main);
}

.about-home-section {
    width: 100%;
}

.about-home-item {
    min-height: 104rem;
    display: flex;
    align-items: center;
    color: #fff;
    background: #071b36;
}

.about-home-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.about-home-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(5, 18, 43, 0.86) 0%, rgba(7, 32, 70, 0.58) 39%, rgba(7, 32, 70, 0.18) 68%, rgba(7, 32, 70, 0.12) 100%);
}

.about-home-item .container {
    z-index: 2;
}

.about-home-content {
    width: min(100%, 66.5rem);
    padding: 7rem 0;
}

.about-home-subtitle {
    position: relative;
    margin-bottom: 18rem;
    padding-top: 2rem;
    font-size: 2.2rem;
    line-height: 1.5;
    font-weight: 700;
    font-family:  'Inter', serif;
    color: #fff;
}

.about-home-subtitle:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4rem;
    height: 0.3rem;
    background: #fff;
}

.about-home-title {
    margin-bottom: 5rem;
    font-size: 3rem;
    line-height: 1.55;
    font-weight: 700;
    font-family: Georgia, 'Times New Roman', serif;
    color: #fff;
}

.about-home-description {
    max-width: 56rem;
    margin-bottom: 4rem;
    font-size: 1.7rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.about-home-description p:last-child {
    margin-bottom: 0;
}

.about-home-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 15.2rem;
    min-height: 4.4rem;
    padding: 1rem 2.8rem;
    border: 0.1rem solid #fff;
    border-radius: 999px;
    font-size: 1.3rem;
    line-height: 1.4;
    font-weight: 700;
    font-family: Georgia, 'Times New Roman', serif;
    color: #fff;
    background: transparent;
    transition: all .3s ease;
}

.about-home-link:hover {
    color: #08214a;
    background: #fff;
}

.highlight-home-section {
    background: #fff;
    border-top: 0.1rem solid #f0f0f0;
    border-bottom: 0.1rem solid #f0f0f0;
    margin-top: -11rem;
    background: white;
    z-index: 9;
    position: relative;
}

.highlight-home-col {
    border-right: 0.1rem solid #e9e9e9;
}

.highlight-home-col:last-child {
    border-right: 0;
}

.highlight-home-item {
    min-height: 22.1rem;
    padding: 1.8rem 2.4rem 4rem;
    color: #303238;
}

.highlight-home-icon {
    min-height: 4.8rem;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    color: #34363a;
}

.highlight-home-icon i {
    font-size: 3.8rem;
    line-height: 1;
    font-weight: 300;
}

.highlight-home-icon img {
    width: 4.2rem;
    height: 4.2rem;
    object-fit: contain;
}

.highlight-home-title {
    min-height: 6rem;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    font-size: 4.5rem;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0;
    color: #303238;
}

.highlight-home-title a {
    color: inherit;
}

.highlight-home-title a:hover {
    color: var(--color-highlight);
}

.highlight-home-description {
    margin-top: 0.8rem;
    text-align: center;
    font-size: 1.3rem;
    line-height: 1.45;
    font-family: 'Inter';
    color: #6f747b;
}

.home-bussiness-layout {
    padding: 8.8rem 0;
}

.business-layout-section {
    position: relative;
    display: flex;
    min-height: 80rem;
    overflow: hidden;
    background: #fff;
}

.business-layout-nav {
    position: relative;
    z-index: 2;
    flex: 0 0 35rem;
    width: 35rem;
    padding: 2.3rem 1.6rem;
    background: #fff;
}

.business-layout-heading {
    position: relative;
    margin: 0 0 31rem;
    padding-top: 1.8rem;
    font-size: 2.4rem;
    line-height: 1.35;
    font-weight: 700;
    font-family: Georgia, 'Times New Roman', serif;
    color: #005faf;
}

.business-layout-heading:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4rem;
    height: 0.3rem;
    background: #0067b1;
}

.business-layout-tabs {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.business-layout-tab {
    display: block;
    margin: 0 0 2rem;
    padding: 0;
    border: 0;
    background: transparent;
    text-align: left;
    font-size: 2.4rem;
    line-height: 1.35;
    font-weight: 700;
    font-family: Georgia, 'Times New Roman', serif;
    color: #050505;
    cursor: pointer;
    transition: color .25s ease;
}

.business-layout-tab:hover,
.business-layout-tab.active {
    color: #005faf;
}

.business-layout-map {
    position: relative;
    flex: 1 1 auto;
    min-width: 0;
    min-height: 80rem;
    background: #f7f7f7;
}

.business-layout-panel {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s ease, visibility .35s ease;
}

.business-layout-panel.active {
    opacity: 1;
    visibility: visible;
}

.business-layout-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.business-layout-caption {
    position: absolute;
    right: 2.4rem;
    bottom: 2.4rem;
    max-width: 34rem;
    padding: 1.2rem 1.6rem;
    background: rgba(255, 255, 255, 0.9);
    color: #303238;
    font-size: 1.4rem;
    line-height: 1.6;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.08);
}

.tinci-business-section {
    width: 100%;
}

.tinci-business-item {
    min-height: 48.6rem;
    display: flex;
    align-items: center;
    background-color: #1269a7;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    color: #fff;
}

.tinci-business-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 108, 184, 0.66);
}

.tinci-business-item .container {
    z-index: 2;
}

.tinci-business-inner {
    min-height: 30rem;
    display: grid;
    grid-template-columns: minmax(18rem, 30rem) minmax(0, 1fr) minmax(14rem, 24rem);
    align-items: center;
    column-gap: 3rem;
    padding: 7rem 0;
}

.tinci-business-label-wrap {
    align-self: start;
}

.tinci-business-label {
    position: relative;
    padding-top: 2rem;
    font-size: 1.6rem;
    line-height: 1.5;
    font-weight: 700;
    color: #fff;
}

.tinci-business-label:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4rem;
    height: 0.3rem;
    background: #fff;
}

.tinci-business-title {
    text-align: center;
    font-size: 4rem;
    line-height: 1.42;
    font-weight: 500;
    color: #fff;
}

.tinci-business-title span {
    display: block;
    font-size: 4.8rem;
    line-height: 1.2;
    font-weight: bold;
}

.tinci-business-title p:last-child {
    margin-bottom: 0;
}

.tinci-business-action {
    justify-self: end;
    align-self: start;
    padding-top: 4rem;
}

.tinci-business-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 15rem;
    min-height: 4.4rem;
    padding: 1rem 2.8rem;
    border: 0.1rem solid #fff;
    border-radius: 999px;
    color: #fff;
    font-size: 1.3rem;
    line-height: 1.4;
    font-weight: 700;
    font-family: Georgia, 'Times New Roman', serif;
    background: transparent;
    transition: all .3s ease;
}

.tinci-business-link:hover {
    color: #006cb8;
    background: #fff;
}

.intro-video-section {
    width: 100%;
}

.intro-video-item {
    min-height: 58rem;
    display: flex;
    align-items: center;
    background-color: #0b75b8;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    color: #fff;
}

.intro-video-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    /* background: rgba(0, 111, 184, 0.78); */
}

.intro-video-item .container {
    z-index: 2;
}

.intro-video-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(42rem, 64.8rem);
    align-items: center;
    column-gap: 9rem;
    padding: 7rem 0;
}

.intro-video-content {
    text-align: center;
}

.intro-video-title {
    margin-bottom: 0.8rem;
    font-size: 4rem;
    line-height: 1.25;
    font-weight: 700;
    color: #fff;
}

.intro-video-description {
    font-size: 3rem;
    line-height: 1.35;
    font-weight: 500;
    color: #fff;
}

.intro-video-description p:last-child {
    margin-bottom: 0;
}

.intro-video-media {
    position: relative;
    aspect-ratio: 16 / 10;
    background: rgba(255, 255, 255, 0.15);
    overflow: hidden;
    box-shadow: 0 2rem 5rem rgba(0, 45, 90, 0.18);
}

.intro-video-media iframe,
.intro-video-media video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
}

.news-home-section {
    padding: 8.8rem 0;
    background: #fff;
}

.news-home-intro {
    padding-right: 5.6rem;
}

.news-home-heading {
    position: relative;
    margin: 0 0 6rem;
    padding-top: 1.8rem;
    font-size: 2.4rem;
    line-height: 1.35;
    font-weight: 700;
    color: #005faf;
}

.news-home-heading:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4rem;
    height: 0.3rem;
    background: #0067b1;
}

.news-home-card {
    min-height: 29rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 4rem 5.8rem;
    background-color: #f7f7f7;
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
    border: 0.1rem solid #f2f2f2;
}

.news-home-summary {
    margin-bottom: 2.6rem;
    color: #050505;
    font-size: 1.4rem;
    line-height: 1.8;
}

.news-home-summary h3,
.news-home-summary h4,
.news-home-summary strong {
    display: block;
    margin-bottom: 0.6rem;
    color: #050505;
    font-size: 2.3rem;
    line-height: 1.35;
    font-weight: 700;
}

.news-home-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18rem;
    min-height: 4.5rem;
    padding: 1rem 2.8rem;
    border: 0.1rem solid #1f1f1f;
    border-radius: 999px;
    color: #1f1f1f;
    font-size: 1.3rem;
    line-height: 1.4;
    transition: all .3s ease;
}

.news-home-link:hover {
    border-color: #005faf;
    color: #fff;
    background: #005faf;
}

.news-home-list {
    padding-top: 10.6rem;
}

.news-home-item {
    display: grid;
    grid-template-columns: 8rem minmax(0, 1fr);
    column-gap: 2.4rem;
    align-items: center;
    min-height: 12rem;
    padding: 2rem 0;
    border-bottom: 0.1rem solid #e3e3e3;
}

.news-home-date {
    width: 8rem;
    height: 8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    color: #222;
}

.news-home-date:hover {
    color: white;
    background: #0166b3;
}

.news-home-day {
    display: block;
    font-size: 3rem;
    line-height: 1;
    font-weight: 800;
}

.news-home-month {
    display: block;
    margin-top: 0.5rem;
    font-size: 1.4rem;
    line-height: 1.1;
    font-weight: 700;
}

.news-home-title {
    margin: 0;
    font-size: 1.8rem;
    line-height: 1.35;
    font-weight: 400;
}

.news-home-title a {
    color: #050505;
}

.news-home-title a:hover {
    color: #005faf;
}

.article-detail-hero {
    position: relative;
    min-height: 59.6rem;
    display: flex;
    align-items: center;
    background-color: #0b2d55;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    color: #fff;
}

.article-detail-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 27, 65, 0.18);
}

.article-detail-hero .container {
    z-index: 2;
}

.article-detail-hero-title {
    max-width: 66rem;
    margin: 0;
    font-size: 4rem;
    line-height: 1.25;
    font-weight: 800;
    color: #15579b;
}

.article-detail-container {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
}

.article-detail-container .article-content {
    font-size: 1.6rem;
    line-height: 1.8;
}

.ytp-button {
    position: absolute;
    left: 0;
    top: 50%;
    width: 68px;
    -moz-transition: opacity 0.25s cubic-bezier(0, 0, 0.2, 1);
    -webkit-transition: opacity 0.25s cubic-bezier(0, 0, 0.2, 1);
    transition: opacity 0.25s cubic-bezier(0, 0, 0.2, 1);
    z-index: 63;
    cursor: pointer;
    right: 0;
    margin: 0 auto;
    transform: translateY(-50%);
}
.article-item:hover .ytp-button .ytp-large-play-button-bg {
    -moz-transition: fill 0.1s cubic-bezier(0, 0, 0.2, 1), fill-opacity 0.1s cubic-bezier(0, 0, 0.2, 1);
    -webkit-transition: fill 0.1s cubic-bezier(0, 0, 0.2, 1), fill-opacity 0.1s cubic-bezier(0, 0, 0.2, 1);
    transition: fill 0.1s cubic-bezier(0, 0, 0.2, 1), fill-opacity 0.1s cubic-bezier(0, 0, 0.2, 1);
    fill: var(--red);
    fill-opacity: 1;
}
.content-video .inner-content {
    position: absolute;
    bottom: 0;
    color: white;
    padding: 0 20px 5px;
    z-index: 2;
}

.content-video .article-title a {
    color: white;
}
.content-video .inner-image a:before {
    content: "";
    background-color: var(--black);
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 5px;
    z-index: 1;
    opacity: 0.5;
}

.content-video .inner-image > div {
    padding-top: 58.1% !important;
}

.content-right-article .article-item .article-title {
    font-size: 1.5rem;
}

.content-right-article > .row > div:last-child {
    margin-bottom: 0 !important;
}


.is-mobile .menu-section {
    position: fixed;
    width: 29rem;
    top: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    z-index: 1100;
    background-color: #fff;
    overflow: auto;
    -webkit-transition: all 0.8s ease-in-out;
    transition: all 0.8s ease-in-out;
    -webkit-transform: translate3d(-29rem, 0, 0);
    -moz-transform: translate3d(-29rem, 0, 0);
    -ms-transform: translate3d(-29rem, 0, 0);
    -o-transform: translate3d(-29rem, 0, 0);
    transform: translate3d(-29rem, 0, 0);
    -webkit-transition: transform 0.3s cubic-bezier(0.65, 0.05, 0.51, 0.82);
    transition: transform 0.3s cubic-bezier(0.65, 0.05, 0.51, 0.82);
    -webkit-box-shadow: -0.1rem 0 0.3rem rgba(0, 0, 0, 0.2);
    -moz-box-shadow: -0.1rem 0 0.3rem rgba(0, 0, 0, 0.2);
    box-shadow: -0.1rem 0 0.3rem rgba(0, 0, 0, 0.2);
}

.is-mobile .menu-top {
    display: block;
    position: relative;
    margin: 1.5rem;
}

.is-mobile .menu-section.open {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.is-mobile .menu-section .close-sidebar {
    position: absolute;
    font-size: 3rem;
    color: var(--color-main);
    top: -0.5rem;
    right: 0;
}

.is-mobile .menu-section>ul {
    background-color: transparent;
    position: static;
    border-top: 0.1rem solid #e3e3e3;
}

.is-mobile .menu-section>ul li {
    display: block;
    margin-right: 0;
    margin-left: 0;
    border-bottom: 0.1rem solid #e3e3e3;
}

.is-mobile .menu-section>ul li:last-child {
    border-bottom: 0;
}

.is-mobile .menu-section>ul li a {
    height: 5rem;
    line-height: inherit;
    padding: 0 4rem 0 1.5rem !important;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
}

.is-mobile .menu-section>ul>li>a {
    text-align: left;
    color: var(--color-main);
}

.is-mobile .menu-section>ul>li:last-child {
    border-bottom: 0.1rem solid #e3e3e3;
}

.is-mobile .menu-section>ul>li.has-child:hover>a {
    background-color: transparent;
    color: var(--color-main);
}

.is-mobile .menu-section .grower {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    font-size: 14px;
    width: 5rem;
    height: 5rem;
    line-height: 5rem;
    text-align: center;
    cursor: pointer;
    opacity: 1;
    filter: alpha(opacity=100);
    z-index: 1;
    border-left: 0.1rem solid #e3e3e3;
    pointer-events: auto;
}

.is-mobile .menu-section .grower::after {
    content: "\f067";
    font-family: "Font Awesome 6 Pro";
    vertical-align: bottom;
    font-weight: 600;
}

.is-mobile .menu-section .grower.open::after {
    content: "\f068";
}

.is-mobile .menu-section .menu-title {
    font-weight: normal;
    margin-bottom: 0;
    color: var(--color-text);
    font-size: 1.4rem !important;
}

.is-mobile .menu-section .menu-title::before {
    content: none;
}

.is-mobile .menu-section .row-menu {
    display: block;
    margin-right: 0;
    margin-left: 0;
}

.is-mobile .menu-section .row-menu>div,
.is-mobile .menu-section .row-menu li {
    max-width: 100%;
    padding: 0;
}

.is-mobile .menu-section .container-menu {
    min-height: auto !important;
}

.is-mobile .menu-section .container-menu .sub-menu {
    display: none;
    padding: 0;
    margin-bottom: 0 !important;
}

.is-mobile .menu-section .container-menu .sub-menu li {
    border-bottom: 0.1rem solid #e3e3e3;
}

.is-mobile .menu-section .container-menu .sub-menu li:last-child {
    border-bottom: 0;
}

.is-mobile .menu-section .child-indicator {
    display: none;
}

.is-mobile .menu-section .entry-menu {
    background-color: transparent;
    border-top: 0.1rem solid #e3e3e3;
}

.is-mobile .menu-section .entry-menu.dropdown ul {
    border-top: 0.1rem solid #e3e3e3;
    background-color: transparent;
    position: static;
    opacity: 1;
    filter: opacity(1);
    visibility: visible;
    display: none;
    min-width: auto;
    margin: 0;
    padding: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.is-mobile .menu-section .entry-menu.full-width .container-menu {
    padding: 0;
    width: 100%;
}

.is-mobile .menu-section .entry-menu.full-width .container-menu>.row-menu {
    border-bottom: 0.1rem solid #e3e3e3;
}

.is-mobile .menu-section .entry-menu.full-width .container-menu>.row-menu:last-child {
    border-bottom: 0;
}

.is-mobile .menu-section .entry-menu.full-width .container-menu>.row-menu .sub-menu {
    border-top: 0.1rem solid #e3e3e3;
}

.is-mobile .menu-section .entry-menu.multil-column .row-menu>div {
    border-bottom: 0.1rem solid #e3e3e3;
}

.is-mobile .menu-section .entry-menu.multil-column .row-menu:last-child>div {
    border-bottom: 0;
}

.is-mobile .menu-section .entry-menu.multil-column .row-menu .sub-menu {
    border-top: 0.1rem solid #e3e3e3;
}

.is-mobile .menu-section .has-child {
    position: relative;
}

.is-mobile .menu-section .has-child>a {
    position: relative;
}

.is-mobile .menu-section .has-child>a>span {
    display: none !important;
}

.is-mobile .menu-section .has-child>.entry-menu {
    position: static;
    padding: 0;
    min-width: auto;
    width: auto;
    display: none;
    opacity: 1;
    filter: opacity(1);
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.is-mobile .menu-section .has-child>.entry-menu::before {
    content: none;
}

.is-mobile .menu-section .has-child:hover>a {
    background-color: transparent !important;
    color: var(--color-main) !important;
}

.is-mobile .btn-menu-mobile {
    width: 4rem;
    height: 4rem;
    line-height: 4rem;
    text-align: center;
    font-size: 3.5rem;
    display: inline-block;
    color: var(--color-main);
}

.is-mobile .back-drop {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    z-index: 1020;
    opacity: 0;
    filter: opacity(0);
    visibility: hidden;
}

.is-mobile .back-drop.open {
    opacity: 1;
    filter: opacity(1);
    visibility: visible;
}

.is-mobile .setting-menu>.container>.row>div {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.article-item .title {
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}


.setting-menu-mb>.container>.row>div {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (min-width:992px) {
    .header-top .menu-container {
        display: none;
    }

    .setting-menu .menu-sect {
        border-top: 1px solid #eee;
    }

    .setting-menu {
        border-bottom: 1px solid #eee;
    }
}

@media (min-width:1024px) {
    .col-xl-3-custom {
        flex: 0 0 20%;
        max-width: 20%;
    }

    .col-xl-9-custom {
        flex: 0 0 80%;
        max-width: 80%;
    }
}

@media (max-width:992px) {
    .setting-menu .menu-container {
        display: none;
    }

    .footer-mb>.container>.row>div {
        flex: 0 0 50%;
        max-width: 50%;
    }

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

    .product-item .price-amount {
        display: block;
    }

    .product-item .price-amount.old-price {
        display: inline-block;
        margin-left: 0 !important;
    }

    .list-category-right .img-category>div {
        padding-top: 75%;
    }

    .setting-menu-mb .entire-action-header {
        padding-left: 0 !important;
    }

    #nh-admin-bar {
        display: none;
    }

    .slider-main,
    .slider-main img {
        height: 40vh;
        object-position: 9% center;
    }

    .about-home-item {
        min-height: 54rem;
    }

    .about-home-image {
        object-position: 62% center;
    }

    .about-home-overlay {
        background: linear-gradient(90deg, rgba(5, 18, 43, 0.9) 0%, rgba(7, 32, 70, 0.68) 48%, rgba(7, 32, 70, 0.24) 100%);
    }

    .about-home-content {
        width: min(100%, 58rem);
        padding: 5rem 0;
    }

    .about-home-subtitle {
        margin-bottom: 10rem;
    }

    .about-home-title {
        margin-bottom: 3.5rem;
        font-size: 2.5rem;
        line-height: 1.5;
    }

    .about-home-description {
        font-size: 1.5rem;
    }

    .highlight-home-col:nth-child(2n) {
        border-right: 0;
    }

    .highlight-home-col:nth-child(n+3) {
        border-top: 0.1rem solid #e9e9e9;
    }

    .highlight-home-item {
        min-height: 19rem;
        padding: 1.8rem 2rem 3.2rem;
    }

    .highlight-home-title {
        font-size: 4.8rem;
    }

    .business-layout-section {
        min-height: 58rem;
    }

    .business-layout-nav {
        flex-basis: 20rem;
        width: 20rem;
    }

    .business-layout-heading {
        margin-bottom: 22rem;
        font-size: 2.1rem;
    }

    .business-layout-tab {
        margin-bottom: 1.4rem;
        font-size: 2.1rem;
    }

    .business-layout-map {
        min-height: 58rem;
    }

    .tinci-business-item {
        min-height: 42rem;
    }

    .tinci-business-inner {
        min-height: 26rem;
        grid-template-columns: minmax(15rem, 22rem) minmax(0, 1fr) minmax(12rem, 18rem);
        column-gap: 2rem;
        padding: 5rem 0;
    }

    .tinci-business-title {
        font-size: 3rem;
    }

    .tinci-business-title span {
        font-size: 3.8rem;
    }

    .tinci-business-action {
        padding-top: 3rem;
    }

    .intro-video-item {
        min-height: 48rem;
    }

    .intro-video-inner {
        grid-template-columns: minmax(0, 1fr) minmax(34rem, 50rem);
        column-gap: 4rem;
        padding: 5rem 0;
    }

    .intro-video-title {
        font-size: 3rem;
    }

    .intro-video-description {
        font-size: 2.2rem;
    }

    .news-home-section {
        padding: 6rem 0;
    }

    .news-home-intro {
        padding-right: 2rem;
    }

    .news-home-heading {
        margin-bottom: 4rem;
        font-size: 2.1rem;
    }

    .news-home-card {
        padding: 3.2rem;
        background-position: center right;
    }

    .news-home-list {
        padding-top: 8.2rem;
    }

    .news-home-title {
        font-size: 1.6rem;
    }

    .article-detail-hero {
        min-height: 42rem;
        background-position: center;
    }

    .article-detail-hero-title {
        font-size: 4rem;
    }

    .article-detail-container {
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }

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

    .product-content-detail .add-to-cart {
        padding: 0 1rem;
        font-size: 1.2rem;
    }

    .product-quantity input {
        width: 4rem;
    }
}

@media (max-width:991px) {
    [class^="col-"] {
        padding-right: 5px;
        padding-left: 5px;
    }

    .row {
        margin-right: -5px;
        margin-left: -5px;
    }

    .no-gutters {
        margin-right: 0;
        margin-left: 0;
    }

    .cate-home-section .cate-bg {
        padding: 5rem 0;
    }
}

@media only screen and (max-width:767px) {
    .block_footer>.container>.row>div:first-child {
        display: flex;
        gap: 0rem;
        flex-direction: column;
    }

    .footer-social-minimal li:nth-child(4) {
        margin-left: 0;
    }

    .footer-social-minimal ul {
        width: 16rem;
        gap: 1.4rem 1.4rem;
        flex-wrap: nowrap !important;
    }

    .footer-social-minimal {
        padding: 0rem 2.8rem;
    }

    .block_footer {
        padding: 3rem 0;
    }

    .footer-mb>.container>.row>div {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .block-tab.nav .nav-item .nav-link {
        padding: 1rem 1.5rem;
    }

    .btn-mini-cart {
        margin: 0 1rem;
    }

    .btn-submit-mb {
        padding: 1rem 1.5rem !important;
    }

    .btn-submit {
        padding: 1rem 2rem;
    }

    .header-top>.container>.row>div:first-child {
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }

    .header-top>.container>.row>div:last-child {
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }

    .about-home-item {
        min-height: 48rem;
        align-items: flex-end;
    }

    .about-home-image {
        object-position: 64% center;
    }

    .about-home-overlay {
        background: linear-gradient(180deg, rgba(5, 18, 43, 0.42) 0%, rgba(5, 18, 43, 0.82) 44%, rgba(5, 18, 43, 0.94) 100%);
    }

    .about-home-content {
        padding: 16.5rem 0;
    }

    .about-home-subtitle {
        margin-bottom: 5rem;
        font-size: 1.4rem;
    }

    .about-home-title {
        margin-bottom: 2rem;
        font-size: 2.1rem;
        line-height: 1.45;
    }

    .about-home-description {
        margin-bottom: 2.8rem;
        font-size: 1.4rem;
        line-height: 1.7;
    }

    .about-home-link {
        min-width: 13.6rem;
        min-height: 4rem;
        padding: 0.9rem 2.2rem;
        font-size: 1.2rem;
    }

    .highlight-home-col {
        border-right: 0;
        border-top: 0.1rem solid #e9e9e9;
    }

    .highlight-home-col:first-child {
        border-top: 0;
    }

    .highlight-home-item {
        min-height: 16rem;
        padding: 1.8rem 1.6rem 3rem;
    }

    .highlight-home-icon {
        min-height: 4rem;
        justify-content: center;
        margin-bottom: 0.8rem;
    }

    .highlight-home-icon i {
        font-size: 3.2rem;
    }

    .highlight-home-icon img {
        width: 3.6rem;
        height: 3.6rem;
    }

    .highlight-home-title {
        min-height: auto;
        align-items: center;
        font-size: 4rem;
    }

    .highlight-home-description {
        font-size: 1.25rem;
    }

    .business-layout-section {
        min-height: 0;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .business-layout-nav {
        flex: 0 0 auto;
        width: 100%;
        padding: 2.4rem 1.5rem 1.6rem;
        background: #fff;
    }

    .business-layout-heading {
        margin-bottom: 2rem;
        font-size: 2rem;
    }

    .business-layout-tabs {
        flex-direction: row;
        align-items: center;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 0.3rem;
    }

    .business-layout-tab {
        flex: 0 0 auto;
        margin: 0 2.4rem 0 0;
        font-size: 1.8rem;
    }

    .business-layout-map {
        position: relative;
        width: 100%;
        min-height: 36rem;
    }

    .business-layout-panel {
        position: absolute;
    }

    .business-layout-image {
        width: 100%;
        height: 100%;
        min-height: 36rem;
        object-position: center;
    }

    .business-layout-caption {
        right: 1.5rem;
        bottom: 1.5rem;
        left: 1.5rem;
        max-width: none;
        font-size: 1.3rem;
    }

    .tinci-business-item {
        min-height: 42rem;
        align-items: stretch;
        background-position: 64% center;
    }

    .tinci-business-overlay {
        background: rgba(0, 99, 170, 0.72);
    }

    .tinci-business-inner {
        min-height: 42rem;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 4rem 0;
    }

    .tinci-business-label-wrap {
        width: 100%;
        margin-bottom: 5rem;
    }

    .tinci-business-label {
        font-size: 1.4rem;
    }

    .tinci-business-title {
        width: 100%;
        text-align: left;
        font-size: 2.4rem;
        line-height: 1.45;
    }

    .tinci-business-title span {
        font-size: 3rem;
        line-height: 1.25;
    }

    .tinci-business-action {
        justify-self: auto;
        align-self: flex-start;
        padding-top: 3rem;
    }

    .tinci-business-link {
        min-width: 13.6rem;
        min-height: 4rem;
        padding: 0.9rem 2.2rem;
        font-size: 1.2rem;
    }

    .intro-video-item {
        min-height: 0;
        background-position: center;
    }

    /* .intro-video-overlay {
        background: rgba(0, 103, 175, 0.82);
    } */
    .intro-video-inner {
        display: flex;
        flex-direction: column;
        row-gap: 3rem;
        padding: 4.5rem 0;
    }

    .intro-video-content {
        width: 100%;
        text-align: left;
    }

    .intro-video-title {
        font-size: 2.8rem;
        line-height: 1.3;
    }

    .intro-video-description {
        font-size: 1.8rem;
        line-height: 1.5;
    }

    .intro-video-media {
        width: 100%;
        aspect-ratio: 16 / 9;
    }

    .news-home-section {
        padding: 4.5rem 0;
    }

    .news-home-intro {
        padding-right: 0;
        margin-bottom: 3.5rem;
    }

    .news-home-heading {
        margin-bottom: 2.8rem;
        font-size: 2rem;
    }

    .news-home-card {
        min-height: auto;
        padding: 2.6rem 2rem;
        background-position: center right;
        background-size: cover;
    }

    .news-home-summary {
        margin-bottom: 2.2rem;
        font-size: 1.35rem;
    }

    .news-home-summary h3,
    .news-home-summary h4,
    .news-home-summary strong {
        font-size: 2rem;
    }

    .news-home-link {
        min-width: 15.8rem;
        min-height: 4rem;
        padding: 0.9rem 2.2rem;
        font-size: 1.2rem;
    }

    .news-home-list {
        padding-top: 0;
    }

    .news-home-item {
        grid-template-columns: 6.8rem minmax(0, 1fr);
        column-gap: 1.6rem;
        min-height: 10rem;
        padding: 1.8rem 0;
    }

    .news-home-date {
        width: 6.8rem;
        height: 6.8rem;
    }

    .news-home-day {
        font-size: 2.4rem;
    }

    .news-home-month {
        font-size: 1.2rem;
    }

    .news-home-title {
        font-size: 1.5rem;
        line-height: 1.45;
    }

    .article-detail-hero {
        min-height: 32rem;
        background-position: center;
    }

    .article-detail-hero-title {
        font-size: 3.2rem;
    }

    .article-detail-container {
        padding-top: 2.8rem;
        padding-bottom: 2.8rem;
    }

    .article-detail-container .article-content {
        font-size: 1.5rem;
    }
}

/* Sticky Menu System */
.menu-placeholder {
    display: none;
    width: 100%;
}

.menu-system.fixed-menu {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1050;
    background-color: var(--white, #ffffff);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    animation: menuSlideDown 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
    transition: background 0.3s, box-shadow 0.3s;
}

@keyframes menuSlideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Swiper Video Intro Slider */
.swiper-video-intro {
    height: 40rem;
    width: 100%;
    overflow: hidden !important;
}
.swiper-video-intro .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.25 !important;
    visibility: visible !important;
    transform: scale(0.8);
    transition: all 0.4s ease;
    text-align: center;
}
.swiper-video-intro .swiper-slide-next,
.swiper-video-intro .swiper-slide-prev {
    opacity: 0.55 !important;
    transform: scale(0.9);
}
.swiper-video-intro .swiper-slide-active {
    opacity: 1 !important;
    transform: scale(1.15);
}
.swiper-video-intro .intro-video-slide-title {
    font-size: 1.6rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
    transition: all 0.4s ease;
}
.swiper-video-intro .swiper-slide-next .intro-video-slide-title,
.swiper-video-intro .swiper-slide-prev .intro-video-slide-title {
    font-size: 2.0rem;
    color: rgba(255, 255, 255, 0.95);
}
.swiper-video-intro .swiper-slide-active .intro-video-slide-title {
    font-size: 2.6rem;
    font-weight: 700;
    color: #fff;
}

@media only screen and (max-width: 767px) {
    .swiper-video-intro {
        height: 28rem;
    }
    .swiper-video-intro .swiper-slide-active {
        transform: scale(1.1);
    }
    .swiper-video-intro .swiper-slide-next,
    .swiper-video-intro .swiper-slide-prev {
        transform: scale(0.95);
    }
    .swiper-video-intro .intro-video-slide-title {
        font-size: 1.3rem;
    }
    .swiper-video-intro .swiper-slide-next .intro-video-slide-title,
    .swiper-video-intro .swiper-slide-prev .intro-video-slide-title {
        font-size: 1.6rem;
    }
    .swiper-video-intro .swiper-slide-active .intro-video-slide-title {
        font-size: 2.0rem;
    }
}

/* Business Layout Full Screen Mode */
.business-layout-section.layout-full-screen {
    display: block;
    min-height: auto;
    width: 100%;
    position: relative;
    background: #fff;
    padding: 5rem 0 0;
}
.business-layout-section.layout-full-screen .business-layout-container {
    width: 100%;
}
.business-layout-title-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
}
.business-layout-title-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background-color: #005faf;
    color: #fff;
    border-radius: 50%;
    font-size: 1.8rem;
}
.business-layout-title-text {
    margin: 0;
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
}
.business-layout-section.layout-full-screen .business-layout-map {
    width: 100%;
    min-height: 68rem;
    position: relative;
    background: #f7f7f7;
}
.business-layout-section.layout-full-screen .business-layout-panel {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.business-layout-section.layout-full-screen .business-layout-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

@media only screen and (max-width: 767px) {
    .business-layout-section.layout-full-screen {
        padding: 3rem 0 0;
    }
    .business-layout-title-wrap {
        gap: 1rem;
        margin-bottom: 2.5rem;
    }
    .business-layout-title-icon {
        width: 3.2rem;
        height: 3.2rem;
        font-size: 1.4rem;
    }
    .business-layout-title-text {
        font-size: 1.8rem;
    }
    .business-layout-section.layout-full-screen .business-layout-map {
        min-height: 40rem;
    }
}

/* Tinci Business Section & Cards */
.tinci-business-section {
    width: 100%;
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    padding: 10rem 0;
}
.tinci-business-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 108, 184, 0.66);
}
.tinci-business-header {
    display: grid;
    grid-template-columns: minmax(18rem, 24rem) minmax(0, 1fr) minmax(14rem, 20rem);
    align-items: flex-start;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}
.tinci-business-left-title {
    position: relative;
    padding-top: 1.8rem;
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
}
.tinci-business-left-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4rem;
    height: 0.3rem;
    background: #fff;
}
.tinci-business-center {
    text-align: center;
    max-width: 80rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.tinci-business-center-title {
    font-size: 4.8rem;
    line-height: 1.25;
    font-weight: 700;
    color: #fff;
    margin: 0;
}
.tinci-business-center-desc {
    font-size: 3.6rem;
    line-height: 1.35;
    font-weight: 500;
    color: #fff;
}
.tinci-business-right-action {
    display: flex;
    justify-content: flex-end;
    padding-top: 1rem;
}
.tinci-business-more-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 14rem;
    min-height: 4rem;
    padding: 0.8rem 2.4rem;
    border: 0.1rem solid #fff;
    border-radius: 999px;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    background: transparent;
    transition: all 0.3s ease;
}
.tinci-business-more-link:hover {
    background: #fff;
    color: #005faf;
}
.tinci-business-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    position: relative;
    z-index: 2;
}
.tinci-business-card {
    position: relative;
    aspect-ratio: 16 / 11;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 4rem 3rem;
    color: #fff;
    text-decoration: none;
    transition: all 0.4s ease;
}
.tinci-card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 0.6s ease;
}
.tinci-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.85) 100%);
    z-index: 1;
    transition: all 0.4s ease;
}
.tinci-card-default-title {
    position: relative;
    z-index: 2;
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    width: 100%;
    transition: all 0.4s ease;
}
.tinci-card-hover-content {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.2rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    padding: 2rem;
}
.tinci-card-hover-title {
    font-size: 2.4rem;
    font-weight: 700;
    text-align: center;
    color: #fff;
}
.tinci-card-hover-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 12rem;
    min-height: 3.6rem;
    padding: 0.6rem 2rem;
    border: 0.1rem solid #fff;
    border-radius: 999px;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    background: transparent;
    transition: all 0.3s ease;
}

.title-section {
    font-size: 3rem;
    font-weight: 700;
}

/* Hover Effects */
.tinci-business-card:hover .tinci-card-bg {
    transform: scale(1.1);
}
.tinci-business-card:hover .tinci-card-overlay {
    background: rgba(0, 95, 175, 0.75);
}
.tinci-business-card:hover .tinci-card-default-title {
    opacity: 0;
    transform: translateY(-20px);
}
.tinci-business-card:hover .tinci-card-hover-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.tinci-card-hover-btn:hover {
    background: #fff;
    color: #005faf;
}

@media (max-width: 992px) {
    .tinci-business-section {
        padding: 6rem 0;
    }
    .tinci-business-header {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .tinci-business-left-title {
        display: inline-block;
        padding-top: 1.5rem;
    }
    .tinci-business-left-title::before {
        left: 50%;
        transform: translateX(-50%);
    }
    .tinci-business-center-title {
        font-size: 3.6rem;
    }
    .tinci-business-center-desc {
        font-size: 2.6rem;
    }
    .tinci-business-right-action {
        justify-content: center;
    }
    .tinci-business-cards {
        gap: 2rem;
    }
    .tinci-card-default-title {
        font-size: 1.8rem;
    }
    .tinci-card-hover-title {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .tinci-business-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .tinci-business-card {
        aspect-ratio: 16 / 10;
        padding: 3rem 2rem;
    }
}