header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transition: transform .3s ease-in, opacity .5s ease-in;
    will-change: transform, opacity;
}

.header-top {
    font-size: 13px;
    padding: 10px 0;
    background-color: var(--primary-color);
    margin-bottom: 10px;
    overflow-x: auto;

}

.header-bottom__wrap {
    border-radius: 50px;
    border: 1px solid #a0870dc2;
    background-color: transparent;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    padding: 20px;
    transition: var(--transition-default);
}


.header-top a {
    color: var(--bs-gray-100);
}

.header-top a i {
    font-size: 11px;
}

.header-top .header-text a + a {
    padding-left: 10px;
    margin-left: 10px;
}

.header-top .header-text a:not(:first-child):before {
    position: absolute;
    content: '';
    left: 0;
    width: 1px;
    height: 10px;
    display: block;
    background-color: var(--bs-white);
    top: 50%;
    transform: translateY(-50%);
}

.header-top .header-social > a {
    width: 22px;
    height: 22px;
}

.header-logo {
    width: 170px;
}

.header-navigation ul > li > a,
.header-navigation ul > li > button {
    font-weight: 600;
    color: var(--bs-gray-800);
    line-height: 1.6;
    padding: 18px 0;
    display: inline-flex;
    background-color: transparent;
    border: 1px solid transparent;
}

.header-navigation ul > li > a > span.inner,
.header-navigation ul > li > button > span.inner {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.header-navigation ul > li > a span.normal,
.header-navigation ul > li > a span.hover,
.header-navigation ul > li > button span.normal,
.header-navigation ul > li > button span.hover {
    transition: transform .3s ease-in-out;
    display: block;
}

.header-navigation ul > li > a span.hover,
.header-navigation ul > li > button span.hover {
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateY(calc(100% + 15px));
}

.header-navigation ul > li:hover > a,
.header-navigation ul > li:hover > button {
    color: var(--secondary-color) !important;
}

.header-navigation ul > li:hover > a span.normal,
.header-navigation ul > li:hover > button span.normal {
    transform: translateY(-110%);
}

.header-navigation ul > li:hover > a span.hover,
.header-navigation ul > li:hover > button span.hover {
    transform: translateY(0);
}


.header-navigation ul > li > ul,
.header-navigation ul > li > ul > li > ul {
    position: absolute;
    top: 100%;
    left: 0;
    width: 220px;
    background-color: rgb(var(--primary-rgb), 0.95);
    box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(4px);
    z-index: 10;
    padding: 8px;
    transition: var(--transition-default);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;

}

.header-navigation ul > li > ul > li > ul {
    left: 100%;
    top: 0;
}

.header-navigation ul > li:hover > ul,
.header-navigation ul > li > ul > li:hover > ul {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.header-navigation ul > li > ul > li + li {
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.header-navigation ul > li > ul > li > a {
    padding: 10px 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--bs-white);
}

.header-navigation ul > li > ul > li > a::before {
    position: absolute;
    content: '';
    top: 50%;
    left: -6px;
    height: 1px;
    background-color: #ffffff4a;
    display: block;
    transition: var(--transition-default);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.header-navigation ul > li > ul > li:hover > a::before {
    width: 15px;
    opacity: 1;
    visibility: visible;
}

.header-navigation ul > li > ul > li:hover > a {
    margin-left: 3px;
}

.header-bars {
    width: 32px;
    height: 28px;
}

.header-bars svg {
    width: 26px;
    height: 22px;
}

.header-bars:hover svg .one,
.header-bars:hover svg .four {
    width: 0;
}

.header-bars:hover svg .two {
    transform: translate3d(-5px, -15px, 0);
    width: 90px;
}

.header-bars:hover svg .three {
    transform: translate3d(-30px, 15px, 0);
    width: 90px;
}

.header-language > a {
    color: var(--bs-gray-700);
    font-size: 1.1em;
}

.header-language > a + a {
    margin-left: 5px;
    padding-left: 8px;
}

.header-language > a:last-child::before {
    position: absolute;
    content: '';
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 12px;
    background-color: var(--bs-gray-800);
}

.is-scroll.header {
    background-color: rgb(255 255 255 / 93%);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    box-shadow: 0 20px 20px rgb(155 166 175 / 13%);
    animation: header-scroll 0.6s forwards;
}

@keyframes header-scroll {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.is-scroll.header::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    transition: var(--transition-default);
    background: linear-gradient(90deg, rgba(21, 160, 74, 0) 0, rgb(160 123 21 / 49%) 20%, rgb(175 154 50 / 40%) 80%, rgba(21, 160, 74, 0) 100%);
}

.is-scroll .header-top {
    margin-bottom: 0;
}

.is-scroll .header-bottom__wrap {
    border: 1px solid transparent;
    -webkit-backdrop-filter: unset;
    backdrop-filter: unset;
    padding: 0;
}

.section-hero::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    z-index: 1;
    background: linear-gradient(0deg, rgb(37 39 41 / 0%), rgb(243 250 255));
}

.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 .hero-content {
    background: linear-gradient(to left, rgb(37 39 41 / 18%), rgb(31 54 71 / 61%));
}

.section-hero .hero-content_subtitle,
.section-hero .hero-content_title,
.section-hero .hero-content_desc,
.section-hero .button-theme {
    transform: translateX(30px);
    transition: all 0.8s ease-in-out;
    opacity: 0;
}

.section-hero .hero-content_subtitle {
    font-family: var(--font-heading);
    font-size: 1.1em;
    transition-delay: 0.1s;
}

.section-hero .hero-content_title {
    font-size: 2.4em;
    transition-delay: 0.6s;
}

.section-hero .hero-content_desc {
    backdrop-filter: blur(2px);
    background-color: rgb(149 170 189 / 43%);
    padding: 28px;
    transform: translateX(0);
    transition-delay: 0.8s;
}

.section-hero .button-theme {
    transition-delay: 1s;
}

.swiper-pagination {
    font-size: 1.5em;
    color: #e3e0e0f0;
}

.swiper-pagination .swiper-pagination-current {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 1.6em;
}

.section-hero .swiper-slide-active img {
    transform: scale(1.08);
}

.section-hero .swiper-slide-active .hero-content_subtitle,
.section-hero .swiper-slide-active .hero-content_title,
.section-hero .swiper-slide-active .hero-content_desc,
.section-hero .swiper-slide-active .button-theme {
    transform: translateX(0);
    opacity: 1;
}

footer {
    padding: 50px 0 20px;
    background: var(--primary-gradient);
}

footer a {
    color: #d9dfe7;
}

.footer-company {
    font-size: 1.3em;
}

.footer-logo {
    width: 250px;
    height: 84px;
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
}

.footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-contact li:not(:first-child)::before,
.footer-copyright .footer-text::before {
    position: absolute;
    content: '';
    left: 0;
    width: 1px;
    height: 10px;
    top: 50%;
    transform: translateY(-50%);
    background-color: white;
}

.page-contact .contact-company {
    font-size: 1.5em;
}

.page-contact .contact-item .icon {
    width: 38px;
    height: 38px;
}

.page-contact .contact-map iframe {
    height: 350px !important;
    width: 100% !important;
    border-radius: 10px;
}

.detailContent img {
    max-width: 100% !important;
    height: auto !important;
}

.detailContent iframe {
    max-width: 100% !important;
}

.detailContent strong {
    font-weight: 700 !important;
}

.detailContent h1,
.detailContent h2,
.detailContent h3,
.detailContent h4,
.detailContent h5,
.detailContent h6,
.detailContent strong,
.detailContent b {
    font-weight: 700 !important;
    margin-bottom: 1rem;
}

.detailContent h1 {
    font-size: 1.5em;
}

.detailContent h2 {
    font-size: 1.45em;
}

.detailContent h3 {
    font-size: 1.4em;
}

.detailContent h4 {
    font-size: 1.35em;
}

.detailContent h5 {
    font-size: 1.3em;
}

.detailContent h6 {
    font-size: 1.25em;
}

.detail-article__meta {
    font-size: 0.95em;
    color: #75736a;
    border-bottom: 1px solid rgb(var(--primary-rgb), 0.1);
}

.article-card__title {
    color: var(--bs-gray-800);
    font-size: 1.2em;
}

.article-card__border {
    border-top: 1px solid rgb(var(--primary-rgb), 0.1);
}

.article-card__date {
    color: var(--bs-gray-700);
    font-size: 0.95em;
}

.article-card__image::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    z-index: 4;
    -webkit-transition: height .4s ease-in-out;
    -o-transition: height .4s ease-in-out;
    transition: height .4s ease-in-out;
    background-color: rgba(66, 63, 53, 0.2);
}

.article-card__link {
    font-size: 0.95em;
    letter-spacing: -.3px;
    color: var(--primary-color);
}

.article-card__link .icon-svg {
    width: 50px;
    height: 50px;
}

.article-card__link .icon-svg svg {
    width: 100%;
    height: 100%;
}

.article-card__link .icon-svg svg .after {
    stroke: rgba(255, 255, 255, 0);
    stroke-width: 2;
    stroke-dasharray: 570;
    stroke-dashoffset: 570;
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
}

.article-card__link .hover,
.article-card__link .normal {
    transition: transform .3s ease-in-out;
    line-height: 1.5;
    display: block;
}

.article-card__link .hover {
    position: absolute;
    bottom: 0;
    left: 0;
    color: var(--secondary-color-dark);
    transform: translateY(calc(100% + 1rem));
}

.article-card__link:hover {
    color: var(--secondary-color-dark);
}

.article-card__link:hover .normal {
    transform: translateY(-110%);
}

.article-card__link:hover .hover {
    transform: translateY(0);
}

.article-card__link:hover .icon-svg svg .after {
    animation-name: stroke-circle;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    stroke: var(--secondary-color-dark);
}

.article-card:hover .article-card__image::after {
    height: 100%;
}

.article-card:hover .article-card__image img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.article-card:hover .article-card__title {
    color: var(--primary-color);
}

.button-swiper-related {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    font-size: 1.1em;
    background-color: rgb(var(--secondary-rgb), 0.8);
    box-shadow: 0 5px 20px rgba(0, 0, 0, .2);
    position: absolute;
    border: 1px solid transparent;
    z-index: 3;
    color: var(--bs-white);
    opacity: 0;
}

.button-swiper-related:hover i {
    transform: scale(1.1);
}

.button-swiper-related.btn-prev {
    left: 30px;
}

.button-swiper-related.btn-next {
    right: 30px;
}

.section-swiper:hover .button-swiper-related {
    opacity: 1;
}

.section-swiper:hover .button-swiper-related.btn-prev {
    left: 20px;
}

.section-swiper:hover .button-swiper-related.btn-next {
    right: 20px;
}

.section-swiper:hover .swiper-button-disabled {
    opacity: 0.5;
    pointer-events: none;
}

.card-html .icon {
    width: 55px;
    height: 55px;
}

.section-introduce {
    background-position: top;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

.section-introduce__image {
    box-shadow: 16px 16px 27px 0 rgb(49 66 99 / 27%);
}

.section-form .form-group .form-control {
    border: 1px solid #dee2e659;
    font-size: 14px;
}

.section-form .form-group .form-control::placeholder {
    color: var(--bs-gray-300);
}

.section-feedback::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 70%;
    z-index: 1;
    background-color: var(--primary-color);
}

.card-feedback {
    box-shadow: .20833rem .20833rem .83333rem 0 rgba(0, 0, 0, .08)
}

.card-feedback__image {
    width: 60px;
    height: 60px;
}

.card-feedback__company {
    color: var(--bs-gray-700);
    font-size: 13px;
}

.section-map .map-iframe iframe {
    width: 100%;
    height: 100%;
    vertical-align: middle;
}

.section-map .map-wrap {
    border-radius: 16px;
    padding: 42px;
    box-shadow: rgba(17, 17, 17, 0.08) 0 20px 80px;
    border: 3px solid rgba(var(--primary-rgb), .25);
}

.section-map .map-item__icon {
    width: 32px;
    height: 32px;
}

.section-map .map-item__icon svg path {
    fill: var(--bs-gray-600);
}

.section-map .map-item__text {
    color: var(--bs-gray-800);
    font-size: 1em;
}

.section-map .map-item:hover .map-item__icon svg path {
    fill: var(--primary-color);
}

.section-map .map-item:hover a {
    color: var(--primary-color);
}

.section-gallery .category-gallery__layer {
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .75));
}

.section-gallery .category-gallery:hover img {
    transform: scale(1.1);
}

/*

.section-why__sroll {
    height: 700px;
    overflow-y: auto;
    overflow-x: hidden;
}
*/

.why-item:not(:last-child) {
    border-bottom: 1px dashed var(--bs-gray-200);
}

.why-item:not(:last-child)::after {
    position: absolute;
    content: '';
    left: 0;
    width: 0;
    height: 1px;
    bottom: 0;
    transition: var(--transition-default);
    background-color: rgb(var(--secondary-rgb), 0.3);
}

.why-item {
    padding: 25px 280px 25px 0;
}

.why-item .number {
    font-size: 4em;
    -webkit-text-stroke: 1px var(--primary-color);
    -webkit-text-fill-color: transparent;
}

.why-item .title {
    font-size: 1.3em;
    letter-spacing: -.3px;
}

.why-item .image-hover {
    max-width: 250px;
    width: 100%;
    height: 220px;
    transform: rotate(5deg) translateY(-10px);
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
}

.why-item:hover:not(:last-child)::after {
    width: 100%;
}

.why-item:hover .title {
    color: var(--primary-color);
}

.why-item:hover .number {
    -webkit-text-stroke: 1px var(--secondary-color-dark);
}

.why-item.active .image-hover {
    transform: rotate(5deg) translateY(0);
    opacity: 1;
    visibility: visible;
}

.box-contact .box-contact__hotline {
    border: 1px solid #ffffff85;
    padding: 8px 22px;
}

.box-contact .box-contact__hotline .icon {
    width: 35px;
    height: 35px;
    border: 4px solid #092e47b5;
}

.section-table::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(to right, #f3f0db63 40%, #c293424d);
}

.section-table .card-price {
    padding: 40px 35px;

}

.section-table .card-price .card-text {
    line-height: 1.6;
}

.section-table .card-price .line {
    width: 80px;
    height: 1px;
    background-color: #ffffff63;
}

.section-table .card-price .card-text ul {
}

.section-table .card-price .link-default {
    width: max-content;
    padding: 9px 25px;
}

.section-table .swiper-slide:nth-child(1) .card-price,
.section-table .swiper-slide:nth-child(2) .card-price {
    color: #ffffffb0;
}

.section-table .swiper-slide:nth-child(1) .card-price .card-title,
.section-table .swiper-slide:nth-child(2) .card-price .card-title {
    color: var(--bs-white);
}

.section-table .swiper-slide:nth-child(2) .card-price .link-default {
    background-color: var(--bs-white);
    color: var(--bs-gray-800);
}

.section-table .swiper-slide:nth-child(3) .card-price {
    background-color: var(--bs-white) !important;
}

.section-table .swiper-slide:nth-child(3) .card-price .line {
    background-color: rgba(32, 43, 56, 0.39);
}

.section-value .value-box {
    background-color: rgb(255 255 255 / 23%);
    backdrop-filter: blur(6px);
    padding: 30px;
}

.section-value .value-box .number {
    font-size: 3em;
    letter-spacing: -.3px;
}

.section-value .value-box .image {
    width: 60px;
    height: 60px;

}

.section-value .value-box .image::after,
.section-value .value-box::before {
    position: absolute;
    content: '';
    bottom: -4px;
    right: -5px;
    width: 40px;
    height: 40px;
    display: block;
    border-radius: 50%;
    z-index: -1;
    background-color: rgb(var(--secondary-rgb), 0.3);
}

.section-value .value-box::before {
    bottom: 0;
    height: 3px;
    background-color: var(--secondary-color);
    width: 80%;
    left: 50%;
    transform: translateX(-50%);
}

.section-box .card-box__layer {
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .75));
}

.section-box .card-box__layer .button-theme {
    font-weight: 600;
    font-size: 13px;
}

.section-box .card-box__layer .button-theme .icon-svg {
    width: 50px;
    height: 50px;
}

.section-box .card-box__layer .title {
    border-bottom: 1px solid #ffffff4f;
    padding-bottom: 10px;
}

.section-box .card-box:hover img {
    transform: scale(1.07);
}

.section-box .card-box:hover .card-box__layer {
    background: linear-gradient(180deg, transparent, rgb(5 35 55 / 97%));
}

.video-item .icon {
    background-color: red;
    width: 58px;
    height: 38px;
    border-radius: 10px;
}

.video-item .icon svg {
    width: 45px;
    height: 40px;
}

.gallery-item .layer {
    background-color: #332b1e9c;
    opacity: 0;
}

.gallery-item .layer .icon {
    width: 50px;
    height: 50px;
    transform: rotate(45deg) scale(0);
    transition: all 400ms ease;
}

.gallery-item .layer .icon svg {
    width: 25px;
    height: 25px;
}

.gallery-item:hover,
.video-item:hover {
    cursor: zoom-in;
}

.gallery-item:hover .icon {
    transform: rotate(0deg) scale(1);
    transition-delay: 400ms;
}

.gallery-item:hover .layer {
    opacity: 1;
}

.gallery-item:hover img,
.video-item:hover img {
    transform: scale(1.05);
}

.category-gallery__title,
.category-video__title {
    font-size: 1.2em;
}

.category-gallery__date,
.category-video__date {
    color: var(--bs-gray-700);
}

.card-gallery .icon,
.card-video .icon {
    width: 65px;
    height: 65px;
    bottom: 10px;
    right: 10px;
    top: unset;
    left: unset;
}

.card-gallery .icon svg,
.card-video .icon svg {
    z-index: 2;
    width: 52px;
    height: 52px;
    transition: var(--transition-default);
}

.card-gallery .icon::before,
.card-gallery .icon::after,
.card-video .icon::before,
.card-video .icon::after {
    content: '';
    position: absolute;
    transform-origin: center center;
    z-index: 1;
    border-radius: 50%;
    transition: var(--transition-default);
}


.card-gallery .icon::before,
.card-video .icon::before {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgb(var(--secondary-rgb), 0.6);
}


.card-gallery .icon::after,
.card-video .icon::after {
    width: 80%;
    height: 80%;
    left: 10%;
    top: 10%;
    border-radius: 50%;
    border: 1px solid var(--bs-white);
    opacity: .5;
}

.card-gallery:hover .icon::before,
.card-video:hover .icon::before {
    transform: scale(.6);
    background-color: var(--secondary-color);
    box-shadow: 0 1rem 1rem 0 rgba(255, 255, 255, 0.4);
}

.card-gallery:hover .icon svg,
.card-video:hover .icon svg {
    transform: scale(.8) rotate(90deg);
}

.card-gallery:hover .card-gallery__image,
.card-video:hover .card-video__image {
    box-shadow: 12px 5px 14px 0 rgba(22, 40, 79, 0.2);
}

.card-gallery:hover .card-gallery__image img,
.card-video:hover .card-video__image img {
    transform: scale(1.08);

}

.card-gallery:hover .category-gallery__title,
.card-video:hover .card-video__title {
    color: var(--primary-color);
}

.page-gallery .page-gallery__line,
.page-video .page-video__line {
    height: 1px;
    width: 90%;
    background-color: var(--bs-gray-200);
    display: block;
}

.scroll-top {
    width: 20px;
    height: 180px;
    right: 12px;
    bottom: 30px;
    font-size: 12px;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    z-index: 15;
    letter-spacing: 1px;
}

.scroll-top.is-show {
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
}

.scroll-top span {
    width: auto;
    height: auto;
    transform: rotate(-90deg);
}

.scroll-top::after {
    content: '';
    position: absolute;
    left: 10px;
    top: 130px;
    width: 1px;
    height: 100px;
    background-color: currentColor;
    display: block;
    opacity: .5;
}

.scroll-top:hover span {
    padding-left: 5px;
}
