.page-other .main {
    margin-top: 97px;
}

footer {
    color: var(--bs-gray-100);
}

footer a {
    color: ghostwhite;
}

footer a:hover {
    color: var(--bs-white);
}

.footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-title {
    font-weight: 600;
    font-size: 1.2em;
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-waves {
    height: 60px;
    width: 100vw;
    margin-bottom: -10px;
}

.footer-waves svg {
    height: 100%;
    width: 100%;
}

.footer-waves .wave {
    height: 100%;
    width: 100%;
    animation: wave 3s linear;
    animation-iteration-count: infinite;
    fill: var(--primary-color)
}

.footer-waves .wave {
    fill: rgb(var(--primary-rgb), 1);
}

#wave3 {
    animation-duration: 7s;
    opacity: 0.3;
}

#wave2 {
    animation-duration: 5s;
    animation-direction: reverse;
    opacity: 0.6;
}

@keyframes wave {
    to {
        transform: translateX(-100%);
    }
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}

.page-home .header-top {
    background-color: transparent;
}

.page-other .header-top,
.page-home .header.is-scroll .header-top {
    background-color: var(--bs-white);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .05);
}

.header-bottom .header-bottom__wrap {
    width: max-content;
    margin: 0 auto;
    border-radius: 0 0 5px 5px;
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 35%);
    background-color: var(--primary-color);
}

.page-home .header-bottom .header-bottom__wrap {
    background-color: transparent;
    box-shadow: unset;
}

.page-home .header.is-scroll .header-bottom .header-bottom__wrap {
    background-color: var(--primary-color);
}

.header-logo {
    width: 100px;
}

.header-heading .header-title {
    color: var(--primary-color);
    font-weight: 800;
    font-size: 1.4em;
    text-shadow: 2px 2px #dddddda1;
    line-height: normal;
}

.header-heading .header-title-1 {
    color: var(--theme-color);
    font-size: 1.6em;
}

.header-top__item {
    color: var(--bs-gray-700);
}

.header-top__item .icon {
    width: 28px;
    height: 28px;
    font-size: 0.8em;
    border: 1px solid var(--bs-gray-400);
}

.header-top__item .icon.hotline {
    transform: rotate(90deg);
}

.header-language__item {
    width: 30px;
    height: 30px;
    opacity: 0.7;
}

.header-language__item.active {
    opacity: 1;
}

.header-bars {
    width: 35px;
    height: 35px;
    font-size: 1.2em;
}

.header .header-navigation > ul {
    display: flex;
    align-items: center;
}

.header .header-navigation > ul > li > a,
.header .header-navigation > ul > li > ul > li > a, .header .header-navigation > ul > li > ul > li > ul > li > a {
    color: var(--bs-gray-800);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: space-between;
    font-weight: 500;
    width: 100%;
    transition: var(--transition-default);
}

.header .header-navigation > ul > li > a {
    white-space: nowrap;
    font-size: 1em;
    padding: 15px;
    color: var(--bs-white);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: .3px;
}

.page-home .header .header-navigation > ul > li > a {
    color: var(--bs-gray-800);
}

.page-home .header.is-scroll .header-navigation > ul > li > a {
    color: var(--bs-white);
}

.header .header-navigation > ul > li:first-child.active a,
.header .header-navigation > ul > li:first-child:hover a,
.page-home .header.is-scroll .header-navigation > ul > li:first-child.active a {
    border-bottom-left-radius: 5px;
}


.header .header-navigation > ul > li:hover > a {
    background-color: var(--primary-hover);
    color: var(--bs-white);
}

.header .header-navigation > ul > li.active > a,
.page-home .header.is-scroll .header-navigation > ul > li.active > a {
    color: var(--primary-color);
    background-color: #e9ebf0;
}

.page-home .header .header-navigation > ul > li.active > a {
    background-color: transparent;
    color: var(--primary-color);
}

.header .header-navigation > ul > li > button {
    background-color: transparent;
    color: var(--bs-white);
}

.header .header-navigation > ul > li > ul > li > button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 12px 20px;
    font-weight: 500;
    color: var(--bs-gray-800);
}

.header .header-navigation > ul > li > ul > li:not(:last-child), .header .header-navigation > ul > li > ul > li > ul > li:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header .header-navigation > ul > li > ul > li:hover > a, .header .header-navigation > ul > li > ul > li > ul > li:hover a {
    color: var(--primary-color);
    background-color: rgb(var(--primary-rgb), 0.06);
}

.header .header-navigation > ul > li > ul, .header .header-navigation > ul > li > ul > li > ul {
    background-color: var(--bs-white);
    position: absolute;
    left: 0;
    width: 250px;
    top: 100%;
    z-index: 4;
    border-radius: 3px;
    transition: var(--transition-default);
    box-shadow: 0 4px 8px rgb(97 97 97 / 14%), 0 8px 16px rgb(97 97 97 / 14%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.header .header-navigation > ul > li > ul > li > ul {
    left: 100%;
    top: 0;
}

.header .header-navigation > ul > li:hover > ul, .header .header-navigation > ul > li > ul > li:hover > ul {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.header .header-navigation > ul > li:hover > a {
    color: var(--bs-white);
}

.header .header-navigation > ul > li > a > i {
    transition: var(--transition-default);
}

.header .header-navigation > ul > li:hover > a i {
    transform: rotate(180deg);
}

.header .header-overlay {
    background: rgb(0 0 0 / 91%);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 5;
    transition: var(--transition-default);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.is-navigation .header .header-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.close-navigation {
    width: 30px;
    height: 30px;
}

.hamburger-button {
    width: 36px;
    height: 36px;
    gap: 5px;
}

.hamburger-button:focus {
    border: 1px solid transparent;
}

.hamburger-button > span {
    background-color: var(--bs-gray-100);
    height: 2px;
    border-radius: 3px;
    display: flex;
    width: 22px;
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    padding: 100px 0;
}

.hero-content_subtitle {
    transform: scale(1.2);
    transition: all 0.7s ease-in-out;
    transition-delay: 0.3s;
    opacity: 0;
}

.hero-content_title {
    font-weight: 700;
    font-size: 2.5em;
    transform: scale(1.2);
    transition: all 0.7s ease-in-out;
    transition-delay: 0.6s;
    opacity: 0;
}

.hero-content_desc {
    font-size: 1.1em;
    color: var(--bs-gray-200);
    transform: scale(1.1);
    transition: all 0.7s ease-in-out;
    transition-delay: 0.8s;
    opacity: 0;
}

.hero-content_button {
    transform: scale(1.1);
    transition: all 0.7s ease-in-out;
    transition-delay: 1s;
    opacity: 0;
}

.hero-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.section-hero::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 40%;
    z-index: 2;
    background: linear-gradient(to bottom, #ffffff 20%, #ffffff00);
}

.section-hero .button-swiper {
    border: 1px solid var(--bs-red);
    color: var(--bs-red);
}

.section-hero .button-swiper:hover {
    color: var(--bs-white);
    border: 1px solid var(--primary-color);
}

.section-hero img {
    -webkit-transition: all 8s ease-out 0s;
    -moz-transition: all 8s ease-out 0s;
    -ms-transition: all 8s ease-out 0s;
    -o-transition: all 8s ease-out 0s;
    transition: all 8s ease-out 0s;
    transform: scale(1);
}

.section-hero .swiper-slide-active img {
    transform: scale(1.06);
}

.swiper-slide-active .hero-content_subtitle,
.swiper-slide-active .hero-content_title,
.swiper-slide-active .hero-content_desc,
.swiper-slide-active .hero-content_button {
    transform: scale(1);
    opacity: 1;
}

.section-intro .bg-intro {
    right: 30px;
    width: 300px;
}

.section-counter {
    padding: 100px 0 30px 0;
}

.section-counter::after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    z-index: 1;
    background: rgb(var(--primary-rgb), 0.1);
}

.col:not(:first-child) .counter-item {
    border-left: 1px solid #ffffff1f;
}

.counter-item {
    padding: 40px 30px 30px 30px;
}

.counter-item__image {
    width: 90px;
    height: 90px;
    margin-top: -100px;
}

.counter-item__image > span.image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 30px;
}

.counter-item_desc {
    font-size: 1.15em;
    color: var(--bs-gray-100);
}

.section-products {
    background: rgb(var(--primary-rgb), 0.1);
}

.section-products .decor-1 {
    width: 240px;
    height: 374px;
    pointer-events: none;
}

.card-product {
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
}

.card-product .card-title {
    font-size: 1.25em;
    color: var(--bs-gray-800);
    line-height: normal;
}

.card-product:hover .card-title {
    color: var(--primary-color);
}

.card-product:hover img {
    transform: scale(1.1);
}

.section-tab__top > ul {
    overflow-x: auto;
}

.section-tab .nav-link {
    color: var(--bs-gray-800);
    font-size: 1em;
    border-radius: 3px;
    background-color: transparent;
    border: 1px solid rgb(var(--primary-rgb), 0.2);
    padding: 7px 25px;
}

.section-tab .nav-link.active {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid rgb(var(--primary-rgb), 1);
}

.section-services {
    padding: 80px 0;
}

.section-services::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(to bottom, #242539bd 20%, #0a0a12de);
}

.section-services .button-swiper {
    border: 1px solid var(--bs-white);
    color: var(--bs-white);
}

.section-services .button-swiper:hover {
    background-color: var(--bs-white);
    color: var(--primary-color);
}

.card-service {
    font-size: 16px;
    padding-top: 50px;
    box-shadow: 0px 0px 30px 0px #0000001a;
}

.card-service .card-image {
    width: 170px;
    height: 170px;
    border: 8px solid var(--bs-white);
}

.card-service .card-title {
    font-size: 1.1em;
}

.card-service:hover .card-image img {
    transform: scale(1.05);
}

.article-card {
    border: 1px solid #dae5ec;
    border-radius: 10px;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
}

.article-card__image {
    border-radius: 5px;
}

.article-card__date {
    color: #98a1a7;
    padding: 10px 0;
    border-top: 1px solid #dae5ec;
    font-size: 0.9em;
    font-weight: 500;
}

.article-card__title {
    font-size: 1.15em;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: normal;
}

.article-card__title > a {
    color: var(--bs-gray-800);
}

.article-card:hover .article-card__title > a {
    color: var(--primary-color);
}

.article-card:hover .article-card__image img {
    transform: scale(1.1) rotate(1deg);
}

.card-article__text {
    color: var(--bs-gray-600);
}

.article-card.article-card-2 {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.article-card.article-card-2 .article-card__image {
    flex-shrink: 0;
    width: 220px;
    height: 165px;
}

.article-card.article-card-2 .article-card__body {
    padding-top: 0 !important;
}

.section-articles .decor-1 {
    width: 230px;
    height: 490px;
    pointer-events: none;
}

.section-certificate .certificate-bg {
    width: 270px;
    height: 240px;
    pointer-events: none;
}

.section-contact .contact-map iframe {
    width: 100% !important;
    height: 450px !important;
}

.detailContent * {
    font-family: var(--font-theme) !important;
}

.detailContent strong {
    font-weight: 700;
}

.detailContent h1 {
    font-weight: 700;
    font-size: 1.6em;
}

.detailContent h2 {
    font-size: 1.6em;
    font-weight: 700;
}

.detailContent h3 {
    font-size: 1.5em;
    font-weight: 700;
}

.detailContent h4 {
    font-size: 1.4em;
    font-weight: 700;
}

.detailContent h5 {
    font-size: 1.3em;
    font-weight: 700;
}

.detailContent h6 {
    font-size: 1.2em;
    font-weight: 700;
}

.detailContent img {
    max-width: 100% !important;
    height: auto !important;
}

.detailContent iframe {
    max-width: 100% !important;

}

.sidebar-left {
    background-color: rgb(var(--primary-rgb), 0.05);
}

.sidebar-left .sidebar-left__item:not(:last-child) {
    border-bottom: 1px solid var(--bs-gray-300);
}

.sidebar-left .heading {
    font-weight: 700;
    background-color: var(--primary-color);
    padding: 12px 20px;

}

.sidebar-left__heading {
    font-weight: 600;
    font-size: 1em;
    display: inline-block;
    padding: 14px 18px;
    color: var(--bs-gray-800);
}

a.sidebar-left__heading:hover {
    color: var(--primary-color);
}

.sidebar-left ul > li {
    margin-bottom: 10px;
}

.sidebar-left ul > li > a {
    font-weight: 500;
    color: var(--bs-gray-800);
}

.sidebar-left ul > li > a:hover {
    color: var(--primary-color);
}

.sidebar-left:last-child ul {
    padding-bottom: 10px;
}

.sidebar-item__heading {
    padding-left: 40px;
    font-weight: 700;
    font-size: 1.3em;
}

.sidebar-item__heading::before,
.sidebar-item__heading::after {
    content: '';
    display: inline-block;
    height: 0.25rem;
    background: var(--primary-color);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.sidebar-item__heading::before {
    width: 1.125rem;
    left: 0;
    border-radius: 99px;
}

.sidebar-item__heading::after {
    width: 0.25rem;
    left: 1.5rem;
    border-radius: 100%;
}

.sidebar-item ul > li > a {
    color: var(--bs-gray-800);
    font-weight: 500;
    font-size: 1em;
}

.sidebar-item ul > li > a:hover {
    color: var(--primary-color);
}

.sidebar-item ul > li > a > i {
    transform: translateY(3px);
}

.section-heading .heading-title.detail-article__title {
    font-size: 1.7em;
}

.detail-article__heading {
    border-bottom: 1px solid var(--bs-gray-200);
}

.detail-article__meta {
    color: var(--bs-gray-700);
}

.detail-article__desc {
    background-color: var(--bs-gray-200);
    padding: 10px;
    border-radius: 5px;
}

.detail-product__price {
    font-size: 1.1em;
    color: var(--bs-gray-700);
}

.detail-product__price .price-current {
    font-size: 1.2em;
}

.detail-product__table {
    background-color: #f8f7f7;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 20px;
}

.detail-product__table .table-item:nth-child(odd) {
    background-color: rgb(var(--primary-rgb), 0.1);
}

.detail-product__table .table-item {
    font-size: 1em;
    padding: 10px 12px;
}

.detail-product__table .table-item .title {
    font-weight: 600;
    font-size: 1em;
    width: 150px;
    flex-shrink: 0;
}

.detail-product__table .table-item .text {
    border-left: 1px solid #f8f9fa;
    padding-left: 10px;
}

.detail-product .product-image_item {
    border: 1px solid var(--bs-gray-300);
    border-radius: 3px;
    height: 80px;
    padding: 5px;
}

.detail-product .product-image_item:hover {
    cursor: pointer;
    opacity: 0.9;
}

.detail-product .swiper-slide-thumb-active .product-image_item {
    border: 1px solid var(--primary-color);
}

.detail-product__button .button-theme {
    min-width: 200px;
    background-color: rgb(var(--primary-rgb), 1);
}

.detail-product__button .button-theme i {
    font-size: 10px;
    background-color: var(--bs-white);
    width: 20px;
    height: 20px;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-product__button .button-theme:hover i {
    transform: unset;
}

.detail-product__button .button-theme::before,
.detail-product__button .button-theme::after {
    background-color: var(--primary-hover);
}

.page-contact .company-title {
    font-size: 1.5em;
    line-height: 1.4;
}

.page-contact .contact-list .contact-item {
    font-size: 1.1em;
}

.page-contact .contact-list .contact-item .icon {
    border: 1px solid rgb(var(--primary-rgb), 0.1);
    width: 45px;
    height: 45px;
}

.page-contact .contact-list .contact-item .icon > span {
    width: 35px;
    height: 35px;
    background-color: rgb(var(--primary-rgb), 0.1);
    color: var(--primary-color);
}

.page-contact .contact-list .contact-item a {
    color: var(--bs-gray-800);
    display: inline-block;
    line-height: normal;
}

.page-contact .contact-list .contact-item a:hover {
    color: var(--primary-color);
}

.page-contact .contact-list .contact-item .list-email a:not(:first-child) {
    margin-left: 10px;
    padding-left: 10px;
}

.page-contact .contact-list .contact-item .list-email a:not(:first-child)::before {
    position: absolute;
    content: '';
    left: 0;
    width: 1px;
    height: 12px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--bs-gray-600);
}

.page-contact .contact-map iframe {
    width: 100% !important;
    height: 420px !important;
}

.page-contact__form .decor-1 {
    pointer-events: none;
    width: 440px;
    height: 440px;
}

.section-logo .swiper-pagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    background-color: var(--bs-white);
}

.card-logo img {
    object-fit: contain !important;
    padding: 10px;
}
