.header {
    position: relative;
    top: 0;
    width: 100%;
    z-index: 20;
    left: 0;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, .15);
    transition: top 0.3s ease-in;
}

.header.is-scroll {
    position: fixed;
    animation: header-scroll 0.5s forwards;
    transition: top 0.3s ease-in;
}

@keyframes header-scroll {
    0% {

        top: -50px;

    }

    100% {
        top: 0;

    }
}

.header-logo {
    width: 220px;
    height: 70px;
}

.header-top {
    padding: 5px 0;
    font-size: 13px;
}

.header-top .header-company {
    font-size: 15px;

}

.header-navigation > ul > li > a,
.header-navigation > ul > li > ul > li > a {
    color: var(--bs-gray-700);
    font-weight: 600;
    padding: 25px 0;
    display: block;
    white-space: nowrap;
    -webkit-transition: var(--transition-default);
    -o-transition: var(--transition-default);
    transition: var(--transition-default);
}

.header-navigation > ul > li > a {
    color: var(--bs-gray-800);
    font-weight: 700;
}

.header-navigation > ul > li:hover > a {
    color: var(--primary-color);
}

.header-navigation > ul > li > ul {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    min-width: 215px;
    background-color: var(--bs-white);
    border-radius: 0 0 5px 5px;
    padding: 0.5rem;
    -webkit-transition: var(--transition-default);
    -o-transition: var(--transition-default);
    transition: var(--transition-default);
    -webkit-box-shadow: 0px 6px 14px -6px rgba(24, 39, 75, 0.12), 0px 10px 32px -4px rgba(24, 39, 75, 0.1);
    box-shadow: 0px 6px 14px -6px rgba(24, 39, 75, 0.12), 0px 10px 32px -4px rgba(24, 39, 75, 0.1);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.header-navigation > ul > li > ul > li > ul {
    position: absolute;
    top: calc(100% + 10px);
    left: 100%;
    z-index: 3;
    min-width: 220px;
    background-color: var(--bs-white);
    border-radius: 0 5px 5px 0;
    padding: 0.5rem;
    -webkit-transition: var(--transition-default);
    -o-transition: var(--transition-default);
    transition: var(--transition-default);
    -webkit-box-shadow: 0px 6px 14px -6px rgba(24, 39, 75, 0.12), 0px 10px 32px -4px rgba(24, 39, 75, 0.1);
    box-shadow: 0px 6px 14px -6px rgba(24, 39, 75, 0.12), 0px 10px 32px -4px rgba(24, 39, 75, 0.1);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.header-navigation > ul > li:hover > ul {
    top: 100%;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.header-navigation > ul > li > ul > li:hover > ul {
    top: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.header-navigation > ul > li > ul > li:not(:last-child),
.header-navigation > ul > li > ul > li > ul > li:not(:last-child) {
    border-bottom: 1px solid rgb(244 241 241);
}

.header-navigation > ul > li > ul > li > a,
.header-navigation > ul > li > ul > li > ul > li > a {
    padding: 0.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    white-space: nowrap;
    color: var(--bs-gray-800);
    font-weight: 700;
    -webkit-transition: var(--transition-default);
    -o-transition: var(--transition-default);
    transition: var(--transition-default);
}

.header-navigation > ul > li > ul > li > a:hover,
.header-navigation > ul > li > ul > li ul > li > a:hover {
    color: var(--primary-color);
}

.header-navigation > ul > li i {
    -webkit-transition: var(--transition-default);
    -o-transition: var(--transition-default);
    transition: var(--transition-default);
}

.header-navigation > ul > li:hover > a span > i {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.header-button {
    border: 0;
    width: 35px;
    height: 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: transparent;
    color: var(--bs-white);
    font-size: 1.2em;
    position: relative;
}


.header-hamburger {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    gap: 4px;
    border-radius: 2px;
    background-color: var(--bs-white);
}

.header-hamburger span {
    height: 2px;
    width: 20px;
    border-radius: 3px;
    background-color: var(--bs-gray-700);
    -webkit-transition: var(--transition-default);
    -o-transition: var(--transition-default);
    transition: var(--transition-default);
}

.header-overlay {
    position: fixed;
    top: 0;
    right: -130%;
    width: 100%;
    height: 200%;
    background: rgb(0 0 0 / 90%);
    backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    z-index: 4;
    -webkit-transition: all 0.45s ease-in-out;
    -o-transition: all 0.45s ease-in-out;
    transition: all 0.45s ease-in-out;
}

.is-navigation .header-overlay {
    right: 0;
    opacity: 1;
    visibility: visible;
    -webkit-transition-delay: .2s;
    -o-transition-delay: .2s;
    transition-delay: .2s;
}

.header-search {
    max-width: 250px;
    width: 100%;
}

.frmSearch-form .form-control {
    height: 36px;
    border: 1px solid gray;
    border-radius: 5px;
    background-color: transparent;
    color: var(--bs-white);
    font-size: 12px;
    width: 100%;
    padding-right: 40px;
}

.frmSearch-input::placeholder {
    color: var(--bs-gray-100) !important;
}

.frmSearch-input::-webkit-input-placeholder,
.frmSearch-input::-moz-placeholder,
.frmSearch-input:-ms-input-placeholder,
.frmSearch-input::-ms-input-placeholder {
    color: var(--bs-gray-100) !important;
}

.frmSearch-input:focus {
    color: var(--bs-white);
    background-color: transparent;
}

.frmSearch-form .frmSearch-button {
    height: 36px;
    width: 36px;
    right: 2px;
    color: var(--bs-gray-100)
}

.header-language__wrap {
    margin: 5px 0;
    font-size: 0.95em;
    font-weight: 600;
}

.header-language__link {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--bs-white);
    padding: 5px;
}

.header-language__link.active {
    opacity: 1;
    padding: 0;
}

.hero-item_image img {
    transform: scale(1.1);
    transition: 7s all ease-in-out;
}

.hero-content {
    transform: skew(-10deg, 0deg);
}

.hero-content__wrap {
    background: rgb(var(--primary-rgb), 0.1);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    padding: 30px 45px;
    opacity: 0;
}

.hero-content__wrap::after {
    position: absolute;
    content: '';
    left: 20px;
    right: 20px;
    top: 0;
    height: 100%;
    z-index: -1;
    background: rgb(var(--primary-rgb), 0.13);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
}

.hero-content_subtitle {
    font-size: 13px;
    border-radius: 30px;
    padding: 4px 10px;
    color: var(--bs-gray-700);
    border: 1px solid var(--primary-color);
    font-weight: 500;
    transform: translateY(20px) skew(10deg);
    transition: all 0.7s ease-in-out;
    transition-delay: 0.1s;
    opacity: 0;
}

.hero-content_title {
    font-weight: 700;
    font-size: 2.2em;
    transform: scale(0.8) skew(10deg);
    transition: all 0.7s ease-in-out;
    transition-delay: 0.6s;
    opacity: 0;
}

.hero-content_title::after {
    position: absolute;
    content: '';
    left: 50%;
    width: 150px;
    bottom: -2px;
    height: 1px;
    background-color: var(--bs-dark);
    transform: translateX(-50%);
}

.hero-content_desc {
    font-size: 1.1em;
    transform: translateY(20px) skew(10deg);
    letter-spacing: 1px;
    transition: all 0.8s ease-in-out;
    transition-delay: 0.8s;
    opacity: 0;
}

.hero-content .button-theme {
    padding: 10px 30px;
    transform: translateY(20px) skew(10deg);
    transition: all 0.8s ease-in-out;
    transition-delay: 1.05s;
    opacity: 0;
}

.swiper-slide-active .hero-content__wrap {
    opacity: 1;
}

.swiper-slide-active .hero-item_image img {
    transform: scale(1);
}

.swiper-slide-active .hero-content_subtitle,
.swiper-slide-active .hero-content_desc,
.swiper-slide-active .hero-content .button-theme {
    transform: translateY(0) skew(10deg);
    opacity: 1;
}

.swiper-slide-active .hero-content_title {
    transform: scale(1) skew(10deg);
    opacity: 1;
}

.section-breadcrumb {
    padding: 100px 0;
}


.section-breadcrumb .breadcrumb-item,
.section-breadcrumb .breadcrumb-item > a {
    color: var(--bs-gray-700);
    font-weight: 500;
}

.section-breadcrumb .breadcrumb-item > a:hover {
    color: var(--primary-color);
}

.section-breadcrumb__bg > img {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-animation: 2s animation-breadcrumb ease-in-out;
    animation: 2s animation-breadcrumb ease-in-out;
}

@-webkit-keyframes animation-breadcrumb {
    0% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes animation-breadcrumb {
    0% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.section-breadcrumb__title {
    font-weight: 600;
    font-size: 2.6em;
    font-family: var(--font-heading);
}

.page-detail .section-breadcrumb .breadcrumb-item.active {
    display: none !important;
}

.page-category .section-breadcrumb::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left bottom, left top, from(#000000de), to(#00000024));
    background: -o-linear-gradient(bottom, #000000de 0%, #00000024 100%);
    background: linear-gradient(0deg, #000000de 0%, #0000005c 100%);
    z-index: 1;
}

.page-category .section-breadcrumb .section-breadcrumb__title {
    color: var(--primary-color);
}

.page-category .section-breadcrumb .breadcrumb-item,
.page-category .section-breadcrumb .breadcrumb-item > a {
    color: var(--bs-gray-200);
}

.page-category .breadcrumb-item + .breadcrumb-item::before {
    color: var(--bs-gray-200);
}

footer {
    background: #191919;
    color: #c9c9c9;
}

.footer-decor {
    width: 80%;
}

.footer-top {
    border-bottom: 1px solid var(--primary-color);
}

.footer-logo {
    max-width: 200px;
}

.footer-title {
    margin-bottom: 25px;
    font-size: 1.2em;
    font-weight: 600;
    color: var(--bs-white);
    text-transform: uppercase;
    font-family: var(--font-title);
    position: relative;
    padding-bottom: 4px;
}

.footer-content {
    color: #c9c9c9;
    line-height: 26px;
}

.footer-list > li > a {
    color: #c9c9c9;
    -webkit-transition: var(--transition-default);
    -o-transition: var(--transition-default);
    transition: var(--transition-default);
}

/*

.footer-list > li > a:hover {
    color: var(--primary-color);
}
*/

.footer-social > a {
    width: 35px;
    height: 35px;
    border: 1px solid var(--bs-gray-600);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: rgba(48, 48, 48, 0.7);
    color: #f5f5f5;
    -webkit-transition: var(--transition-default);
    -o-transition: var(--transition-default);
    transition: var(--transition-default);
    position: relative;
    z-index: 1;
    border-radius: 50%;
    box-shadow: 0px 0px 30px -10px rgb(0 0 0 / 20%);
}

.footer-social > a:hover {
    color: var(--bs-white);
    background-color: var(--secondary-color);
}

.footer .contact-item .icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--secondary-color);
}

.footer .contact-item .title {
    color: var(--bs-gray-200);
}

.footer .contact-item .text {
    font-weight: 500;
    font-size: 1.1em;
}

.footer-contact {
    background-color: rgba(48, 48, 48, 0.4);
    padding: 40px;
    border-radius: 10px;
}

.footer-contact .form-control {
    border-radius: 0;
    height: 42px;
    border: 1px solid gray;
    background-color: transparent;
    color: var(--bs-white);

}

.footer-copyright {
    background-color: rgb(41 38 38);
    padding: 22px 0;
    color: #c9c9c9;
    font-size: 14px;
    border-radius: 8px 0 0 0;
}

.footer-copyright::after {
    position: absolute;
    content: '';
    top: 0;
    left: 100%;
    height: 100%;
    width: 100%;
    z-index: 2;
    display: block;
    background-color: rgb(41 38 38);
}

.footer-copyright ul > li:not(:first-child) {
    margin-left: 12px;
    padding-left: 12px;
}

.footer-copyright ul > li::before {
    position: absolute;
    content: '';
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 10px;
    background-color: #bfbfbf;
}

.footer-scroll {
    height: 100%;
    width: 60px;
    background-color: #494444;
    font-size: 1.1em;
    z-index: 7;
    border-radius: 10px 0 0 0;

}

.footer-scroll:hover {
    background-color: var(--secondary-color);
}

footer a:hover {
    color: var(--primary-color);
}

.section-pagination {
    padding-top: 30px;
}

.section-pagination .pagination .page-item .page-link {
    outline: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    border: 0;
    width: 38px;
    height: 38px;
    background: transparent;
    font-size: 1.3em;
    font-weight: 600;
    border-radius: 50%;
    -webkit-transition: var(--transition-default);
    -o-transition: var(--transition-default);
    transition: var(--transition-default);
    color: var(--bs-gray-600);
    padding: 0;
}

.section-pagination .pagination .page-item.pageactive .page-link {
    color: var(--bs-gray-800);
}

.section-pagination .pagination .page-item .page-link:hover {
    color: var(--primary-color);
}

.section-pagination .pagination .page-item.pageactive .page-link strong {
    font-weight: 700 !important;
}

.detailContent * {
    font-size: 15px;
    font-family: var(--font-theme) !important;
}

.detailContent strong {
    font-weight: 700;
}

.detailContent h1 {
    font-weight: 700;
    font-size: 1.7em;
}

.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: 600;
}

.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;
}

.detail-article__desc {
    background-color: var(--bs-gray-200);
    padding: 20px 25px;
}

.page-category__section:nth-child(odd) {
    margin-top: 50px;
    padding: 50px 0;
    background-color: var(--bs-gray-100);
}

.contact-right {
    background-color: #f9f9f9;

}

.company-address {
    overflow-y: auto;
    height: 690px;
}

.company-address::-webkit-scrollbar-track {
    background: rgb(160 160 160 / 20%);
}

.company-address::-webkit-scrollbar {
    width: 4px;
    height: 4px;
    background: rgb(160 160 160 / 20%);
}

.company-address::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
}

.company-address::-webkit-scrollbar {
    width: 6px;
}

.company-address .company-item:not(:last-child)::after {
    position: absolute;
    content: '';
    left: 50%;
    transform: translateX(-50%);
    height: 1px;
    width: 80%;
    bottom: 0;
    background-color: var(--bs-gray-300);
}

.company-address .company-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-weight: 500;
    padding: 35px;
    position: relative;
    z-index: 2;
    transition: all 0.5s ease;
}

.company-address .company-item:hover {
    background-color: rgb(var(--primary-rgb), 0.1);
}

.company-address .company-item .company-item__title {
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 9px;
    color: var(--primary-color);
    font-size: 1em;
    position: relative;
    padding-bottom: 5px;
}

.company-address .company-item .company-item__title svg {
    width: 16px;
    height: 16px;
    margin-right: 4px;
}

.company-address .company-item .company-item__title svg path {
    fill: var(--primary-color);
}

.company-address .company-item .company-item__title::after {
    position: absolute;
    content: '';
    left: 22px;
    bottom: 0;
    width: 60px;
    height: 1px;
    background-color: var(--primary-color);
}

.company-address .company-item .name {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 5px;
}

.company-address .company-item .address {
    font-weight: 500;
    color: var(--bs-gray-700);
}

.company-address .company-item__contact {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    color: var(--bs-gray-700);
    font-size: 14px;
}

.company-address .company-item__contact span:not(:first-child) {
    margin-left: 10px;
    padding-left: 10px;
    border-left: 1px solid var(--bs-gray-500);
}

.company-address .company-item__contact > span {
    white-space: nowrap;
}

.form-group .form-input,
.form-group .form-textarea {
    color: var(--bs-gray-600) !important;
    background-color: #e7e7e717;
    border: 1px solid #1b49234d;
    height: 50px;
    border-radius: 0;
    padding: 3px 10px 3px 50px;
    font-size: 14px;
}

.form-group .form-input::placeholder,
.form-group .form-textarea::placeholder {
    color: var(--bs-gray-600) !important;
}

.form-group .form-textarea {
    resize: none;
    height: unset;
    padding: 20px;
}

.form-group .icon {
    position: absolute;
    left: 0;
    top: 0;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777b7f;

}

.contact-map iframe {
    max-width: 100% !important;
    width: 100% !important;
    height: 300px !important;
    vertical-align: top;
}


.card-product {
    box-shadow: 0px 0px 0.521rem 0px rgba(0, 0, 0, 0.10);
    padding-bottom: 100px;
}

.card-product-2 {
    background-color: #e9e9e98f;
    border: 1px solid #d1d4d7b8;
}

.card-product .card-body {
    bottom: 12px;
    right: 12px;
    z-index: 2;
    left: 12px;
    border-radius: 10px;
    padding: 25px;
    -webkit-backdrop-filter: blur(29px);
    backdrop-filter: blur(29px);
    background-color: rgba(0, 0, 0, .64);
}

.card-product .card-title {
    /* border-bottom: 1px solid rgb(255, 255, 255, .18);*/
}

.card-product-2 .card-title {
    border-bottom: 1px solid rgba(213, 210, 210, 0.55);
}

.card-product .card-title > h3,
.card-product-2 .card-title > h3 {
    font-weight: 600;
    font-size: 1.1em;
    line-height: 1.4;
    height: 47px;
}

.card-product-2 .card-title > h3 {
    font-weight: 700;
    height: 43px;
}

.card-product .card-link,
.card-product-2 .card-link {
    right: 10px;
    bottom: -15px;
    width: 55px;
    height: 55px;
    font-size: 16px;
    border: 6px solid var(--bs-white);
}

.card-product-2 .card-link {
    right: 5px;
    bottom: -27px;
    width: 50px;
    height: 50px;
}

.card-product .card-image::after,
.card-product-2 .card-image::after {
    background: rgba(255, 255, 255, 0.3);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 1;
}

.card-product:hover .card-image::after,
.card-product-2:hover .card-image::after {
    height: 100%;
    opacity: 0;
    -webkit-transition: all 600ms linear;
    transition: all 600ms linear;
}

.card-product:hover .card-image img,
.card-product-2:hover .card-image img {
    transform: scale(1.05);
}

.card-product:hover .card-body {
    background-color: var(--primary-color);
}

.card-product-2:hover .card-title h3 {
    color: var(--primary-color);
}

.card-product-2 .card-body {
    padding-top: 30px;
}

.section-product + .section-product {
    border-top: 3px solid var(--bs-white);
    padding-top: 30px;
    margin-top: 30px;
}

.section-introduce .bg-decor {
    width: 50%;
}

.introduce-bg__decor::after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    display: block;
    width: 50%;
    height: 50%;
    -webkit-clip-path: polygon(0 0, 0% 100%, 100% 100%);
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
    z-index: -1;
}

.section-introduce__layer {
    font-weight: 500;
    padding: 20px 30px;
    font-size: 16px;
    color: var(--bs-gray-700);
}

.section-introduce__layer .icon {
    width: 60px;
    height: 60px;
}

.section-introduce__layer .number {
    font-weight: 600;
    font-size: 2em;
    font-family: var(--font-heading);
}

.section-introduce-2 {
    height: 70vh;
}

.section-introduce-2 .bg-cut {
    height: 150px;
}

.section-introduce-2:before {
    content: '';
    background: linear-gradient(180deg, rgb(0 0 0 / 5%) 15.85%, rgb(0 0 0 / 27%) 45.36%, rgb(0 0 0 / 68%) 80.84%);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.section-introduce-2 .heading-description {
    font-size: 1.35em;
    line-height: 1.5;
}

.introduce-2__line .line {
    height: 100%;
    width: calc(100% / 6);
    border-right: 1px solid rgba(255, 255, 255, 0.26);
}

.introduce-2__number {
    background: linear-gradient(180deg, rgb(255 101 1) 0%, rgb(145 132 132 / 31%) 84%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 150px;
    font-weight: 700;
    font-family: var(--font-heading);
    transition: all 0.35s ease-in;
}

.introduce-2__title {
    letter-spacing: 1px;
}


.article-card {
    color: var(--bs-gray-600);
    -webkit-box-shadow: 0px 0px 18px 3px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 0px 18px 3px rgba(0, 0, 0, 0.05);
}

.article-card .card-body {
    padding: 20px 25px;
}

.article-card .card-title {
    font-weight: 500;
    font-size: 1.4em;
    font-family: var(--font-heading);
}

.article-card .card-title > a {
    color: var(--bs-gray-800);
}

.article-card .card-text {
    font-weight: 500;
}

.article-card .card-link {
    font-weight: 600;
    letter-spacing: -.5px;
    color: var(--bs-gray-700);
    font-size: 14px;
}

.article-card .card-date {
    font-size: 13px;
    padding: 4px 10px;
    font-weight: 500;
}

.article-card .card-image img {
    transition: 0.6s;
}

.article-card .card-image img:first-child {
    transform: translatex(50%) scalex(2);
    opacity: 0;
    filter: blur(10px);
}

.article-card .card-image img:last-child {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    object-fit: cover;
}

.article-card:hover .card-image img:first-child {
    transform: translatex(0) scalex(1);
    opacity: 1;
    filter: blur(0);
}

.article-card:hover .card-image img:last-child {
    transform: translatex(-50%) scalex(2);
    opacity: 0;
    filter: blur(10px);
}

.article-card:hover .card-link {
    color: var(--primary-color);
}

.section-article__home .list-article .article-card {
    flex-direction: row;
}

.section-article__home .list-article .article-card .article-card__header {
    width: 250px;
    flex-shrink: 0;
}

.section-article__home .list-article .article-card .card-image {
    height: 100%;
}

.section-article__home .list-article .article-card .card-date {
    top: 0 !important;
    bottom: unset !important;
}

.section-article__home .list-article .article-card .card-title > a {
    width: 100%;
    display: block;
}

.section-partner__image {
    max-width: 350px;
}

.card-partner {
    height: 90px;
}

.section-html__youtube {
    animation: 1.4s ease-in-out infinite playButtonRipple;
    height: 100px;
    width: 100px;
}

@keyframes playButtonRipple {
    0% {
        box-shadow: 0 0 0 0 rgb(255, 255, 255), 0 0 0 0 rgb(255, 255, 255);
    }
    to {
        box-shadow: 0 0 0 17px rgba(255, 255, 255, 0), 0 0 0 32px rgba(255, 255, 255, 0);
    }
}

.section-html__youtube svg {
    width: 90px;
    height: 90px;
    animation: spinnerRotate 6s linear infinite;
}

@keyframes spinnerRotate {
    100% {
        transform: rotate(360deg);
    }
}

.section-html .html-item {
    font-weight: 500;
}

.section-html .html-item__number {
    font-size: 2.4em;
    font-weight: 600;
    font-family: var(--font-heading);
}


.detail-product__top {
    height: 55vh;
}

@keyframes height-animation {
    0% {
        height: 60vh;
    }

    100% {
        height: 55vh;
    }
}

.detail-product__top::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left bottom, left top, from(#000000de), to(#00000024));
    background: -o-linear-gradient(bottom, #000000de 0%, #00000024 100%);
    background: linear-gradient(0deg, #000000de 0%, #00000024 100%);
    opacity: 0.7;
    z-index: 1;
}

.detail-product__category {
    bottom: -25px;
}

.detail-product__category ul {
    overflow: hidden;
    border-radius: 10px !important;
    box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.1);
}

.detail-product__category ul > li:not(:first-child)::after {
    position: absolute;
    content: '';
    left: 0;
    width: 1px;
    height: 20px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--bs-gray-500);

}

.detail-product__category ul > li > a {
    padding: 14px 30px;
    color: var(--bs-gray-700);
    font-weight: 500;
    font-size: 1.3em;
    font-family: var(--font-heading);
}

.detail-product__category ul > li > a:hover {
    color: var(--bs-gray-900);
}

.detail-product__bottom {
    margin-top: 60px;
}

.detail-product__desc {
    padding: 25px;
    border-radius: 10px;
    border-left: 2px solid var(--primary-color);
    background-color: rgb(var(--primary-rgb), 0.1);
}

.detail-product__thumb .item-image:hover img {
    transform: scale(1.05);
}

.section-sidebar {

}

.section-sidebar .sidebar-item:not(:last-child) {
    border-bottom: 1px solid var(--bs-gray-200);
}

.section-sidebar .sidebar-heading {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.2em;
    background-color: var(--primary-color);
    border-radius: 8px 0 8px 0;
    padding: 12px 20px;

}

.section-sidebar .sidebar-button {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.1em;
    display: block;
    padding: 14px 18px;
    color: var(--bs-gray-800);
}

.section-sidebar ul > li > a {
    color: var(--bs-gray-700);
    padding: 12px 25px;
    transition: var(--transition-default);
    display: flex;
    align-items: center;
    width: 100%;
    font-weight: 500;
}

.section-sidebar .sidebar-button[aria-expanded="true"],
.section-sidebar .sidebar-button:hover {
    color: var(--primary-color);
}

.section-sidebar ul > li > a:hover {
    color: var(--primary-color);
    background-color: rgb(var(--primary-rgb), 0.1);
}

.section-sidebar ul > li > a.active {
    color: var(--bs-gray-800);
    font-weight: 600;
}

.section-sidebar:last-child ul {
    padding-bottom: 10px;
}

.card-certificate {
    border: 1px solid var(--bs-gray-300);
    opacity: 0.7;
    transform: scale(0.9);
}

.swiper-slide-active .card-certificate {
    opacity: 1;
    transform: scale(1);
}

.section-box .bg-decor {
    width: 55%;
    top: -30px;
}

.section-box__gird .gird-item {
    width: 300px;
    height: 500px;
}

.section-box__gird .gird-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
}

.section-box__gird .gird-item__subtitle,
.section-box__gird .gird-item__text {
    font-weight: 500;
    font-size: 1.1em;
}

.section-box__gird .gird-item__title {
    font-weight: 600;
    font-family: var(--font-heading);
    font-size: 1.8em;
}

.section-box__gird .gird-item__text {
    background: #00000030;
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 5px;
    border-left: 3px solid var(--primary-color);
    opacity: 0;
}

.section-box__gird .gird-item.active {
    width: calc(100% - 600px);
}

.section-box__gird .gird-item.active .gird-item__text {
    opacity: 1;
}
