/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/
/*@font-face{font-family:'brandon_text';src:url(./fonts/brandontext-bold-webfont.ttf) format('truetype');font-weight:bold;font-style:normal}
@font-face{font-family:'brandon_text';src:url(./fonts/brandontext-regular-webfont.ttf) format('truetype');font-weight:normal;font-style:normal;}*/

/*body{font-family:  "Custom Font Name",  sans-serif}
.nav > li > a {font-family:  "Custom Font Name", sans-serif;}
h1,h2,h3,h4,h5,h6, .heading-font{font-family: "Custom Font Name", sans-serif;}
.alt-font{font-family: "Custom font name", sans-serif;}*/
/*
a,p,h1, h2, h3, h4, h5, h6,span.widget-title,li{font-family: "brandon_text" !important;}
.stars a{font-family:'fl-icons'!important}
body {
    overflow: hidden;
}


.header-main .nav > li.menu-item > a {
    font-size: 14px;
    color: #2b2b2b;
    padding: 15px 20px;
}
.header-main .nav > li.menu-item {
    margin: 0;
}
*/



/* FONT */
/* @font-face {
    font-family: "Lato";
    src: url("./fonts/Lato-Black.woff2") format("woff2"),
        url("./fonts/Lato-Black.woff") format("woff");
    font-weight: 900;
    font-style: normal;
    font-display: fallback;
} */

@font-face {
    font-family: "Lato Hairline";
    src: url("./fonts/Lato-Hairline.woff2") format("woff2"),
        url("./fonts/Lato-Hairline.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: fallback;
}

@font-face {
    font-family: "Lato";
    src: url("./fonts/Lato-Bold.woff2") format("woff2"),
        url("./fonts/Lato-Bold.woff") format("woff");
    font-weight: bold;
    font-style: normal;
    font-display: fallback;
}

/* @font-face {
    font-family: "Lato";
    src: url("./fonts/Lato-Heavy.woff2") format("woff2"),
        url("./fonts/Lato-Heavy.woff") format("woff");
    font-weight: 900;
    font-style: normal;
    font-display: fallback;
} */

/* @font-face {
    font-family: "Lato";
    src: url("./fonts/Lato-Italic.woff2") format("woff2"),
        url("./fonts/Lato-Italic.woff") format("woff");
    font-weight: normal;
    font-style: italic;
    font-display: fallback;
} */

@font-face {
    font-family: "Lato";
    src: url("./fonts/Lato-Light.woff2") format("woff2"),
        url("./fonts/Lato-Light.woff") format("woff");
    font-weight: 300;
    font-style: normal;
    font-display: fallback;
}

@font-face {
    font-family: "Lato";
    src: url("./fonts/Lato-Medium.woff2") format("woff2"),
        url("./fonts/Lato-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: fallback;
}

@font-face {
    font-family: "Lato";
    src: url("./fonts/Lato-Regular.woff2") format("woff2"),
        url("./fonts/Lato-Regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: fallback;
}

@font-face {
    font-family: "Lato";
    src: url("./fonts/Lato-Semibold.woff2") format("woff2"),
        url("./fonts/Lato-Semibold.woff") format("woff");
    font-weight: 600;
    font-style: normal;
    font-display: fallback;
}

@font-face {
    font-family: "Lato";
    src: url("./fonts/Lato-Thin.woff2") format("woff2"),
        url("./fonts/Lato-Thin.woff") format("woff");
    font-weight: 100;
    font-style: normal;
    font-display: fallback;
}
/* END FONT */

/* scrollbar */
::-webkit-scrollbar {
    width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--fs-color-primary);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--fs-color-primary);
}
/* end scrollbar */

/* ALL */
html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}
@media screen and (min-width: 2000px) {
    html {
        font-size: 100%;
    }
}
body {
    font-family: "Lato", sans-serif;
    font-size: 16px;
    line-height: 1.55;
    font-weight: 400;
    color: var(--color-txt);
    overflow: hidden auto;
}
@media screen and (min-width: 2000px) {
    body {
        font-size: 20px;
    }
}
#main {
    padding-top: var(--size-hd);
}
#main .ss-pd {
    padding: 80px 0px;
}
#main .co-hoi{
	padding: 30px;
}
#main .co-hoi .col {
    padding-bottom: 0;
}
#main .ss-pd-t {
    padding-top: 80px;
}
#main .sec-pd-100,
#footer .sec-pd {
    padding: 10rem 0
}
#main .py-sc-md {
    padding-bottom: var(--pd-section-md);
    padding-top: var(--pd-section-md);
}
/* END ALL */

/* KEYFRAME */
@keyframes txt-left {
    0% {
        opacity: 0;
        transform: translateX(-100%);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(100%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }

    50% {
        opacity: 1;
    }
}
@keyframes shine {
    100% {
        left: 100%;
    }
}
@keyframes fade-left {
    0% {
        opacity: 0;
        transform: translateX(-100%);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}  
@keyframes fade-right {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes fade-up {
    0% {
        opacity: 0;
        transform: translateY(200%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes txt-focus {
    0% {
        -webkit-filter: blur(12px);
        filter: blur(12px);
        opacity: 0;
    }

    100% {
        -webkit-filter: blur(0px);
        filter: blur(0px);
        opacity: 1;
    }
}

@keyframes  backInUp {
    0% {
        -webkit-transform: translateY(1200px) scale(.7);
        transform: translateY(1200px) scale(.7);
        opacity: .7;
    }

    80% {
        -webkit-transform: translateY(0) scale(.7);
        transform: translateY(0) scale(.7);
        opacity: .7;
    }

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



/* END KEYFRAME */


/* root */
    :root {
        --size-hd: 8rem;
        --color-txt: #191919;
        --pd-section-md: 6.5rem;
        --size-hd-mb: 6.2rem
    }
/* end root */

#header .logo a {
    transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -ms-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
}
#header .header-bg-container.fill {
    display: none;
}
#header .header-main::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-color: white;
    transition: 0.5s ease-in-out;
}
#header .header-main,
#header .stuck .header-main {
    height: var(--size-hd) !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    z-index: 50;
    transition: 0.5s ease-in-out;
}
#header .header-wrapper.trans #masthead {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--size-hd) !important;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    z-index: 50;
    transition: 0.5s ease-in-out;
}
#header .header-wrapper.trans:not(.stuck) #masthead::before {
    height: 0;
}
#header .header-wrapper.trans #masthead::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-color: white;
    transition: 0.5s ease-in-out;
}
@media screen and (min-width: 1201px) {
    #header .header-wrapper.trans:not(.stuck) #masthead {
        height: 12rem !important;
    }
}
#header .header-wrapper.trans:not(.stuck) #masthead{
    box-shadow: none;
}
#header .container {
    max-width: 134.5rem;
}
#header .flex-col.hide-for-medium.flex-left.flex-grow li a {
    
    font-size: 1.5rem;
    transition: 0.2s ease-in-out;
    text-transform: capitalize;
}
#header .header-wrapper.trans .flex-col.hide-for-medium.flex-left.flex-grow li a {
    color: #fff;
}
#header .header-wrapper.trans.stuck .flex-col.hide-for-medium.flex-left.flex-grow li a {
    color: var(--color-txt);
}
#header .header-wrapper .flex-col.hide-for-medium.flex-left.flex-grow li a {
    color: var(--color-txt);
}
#header .header-wrapper.trans .flex-col.hide-for-medium.flex-left.flex-grow li .sub-menu a {
    color: var(--color-txt);
}
#header .flex-col.hide-for-medium.flex-left.flex-grow .header-nav.header-nav-main.nav.nav-left li:not(:first-child) {
    margin: 0 0 0 4.8rem;
}
#header .flex-col.hide-for-medium.flex-left.flex-grow .header-nav.header-nav-main.nav.nav-left .sub-menu li:not(:first-child) {
    margin: 0;
}
#header .has-dropdown .icon-angle-down {
    opacity: 1;
    transition: 0.3s ease-in-out;
}
#header a.nav-top-link:hover .icon-angle-down {
    transform: rotate(180deg);
}
#header .flex-col.hide-for-medium.flex-left.flex-grow {
    height: 100%;
    display: flex;
    align-items: center;
}
#header .flex-col.hide-for-medium.flex-left.flex-grow ul.header-nav.header-nav-main.nav.nav-left {
    height: 100%;
}
#header .flex-col.hide-for-medium.flex-left.flex-grow ul.header-nav.header-nav-main.nav.nav-left li.menu-item.menu-item-type-post_type.menu-item-object-page.menu-item-design-default {
    height: 100%;
    display: flex;
    align-items: center;
}
#header .flex-col.hide-for-medium.flex-left.flex-grow ul.header-nav.header-nav-main.nav.nav-left li.menu-item.menu-item-type-post_type.menu-item-object-page.menu-item-design-default.current-menu-item::before {
    width: 100%;
}
#header .flex-col.hide-for-medium.flex-left.flex-grow ul.header-nav.header-nav-main.nav.nav-left li.menu-item.menu-item-type-post_type.menu-item-object-page.menu-item-design-default::before {
    content: "" !important;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    height: 0.2rem;
    background: var(--fs-color-primary);
    width: 0;
    border-radius: 100px;
    transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -ms-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
}
#header .flex-col.hide-for-medium.flex-left.flex-grow ul.header-nav.header-nav-main.nav.nav-left li.menu-item.menu-item-type-post_type.menu-item-object-page.menu-item-design-default.has-dropdown::before {
    content: none !important;
}
#header .header-wrapper.trans .flex-col.hide-for-medium.flex-left.flex-grow ul.header-nav.header-nav-main.nav.nav-left li.menu-item.menu-item-type-post_type.menu-item-object-page.menu-item-design-default::before {
    bottom: 4rem;
}
#header .header-wrapper.trans.stuck .flex-col.hide-for-medium.flex-left.flex-grow ul.header-nav.header-nav-main.nav.nav-left li.menu-item.menu-item-type-post_type.menu-item-object-page.menu-item-design-default::before {
    bottom: 0;
}
#header .flex-col.hide-for-medium.flex-left.flex-grow ul.header-nav.header-nav-main.nav.nav-left li.menu-item.menu-item-type-post_type.menu-item-object-page.menu-item-design-default:hover::before {
    width: 100%;
}
#header .sub-menu.nav-dropdown.nav-dropdown-default {
    padding: 0;
}
#header .sub-menu.nav-dropdown.nav-dropdown-default a:hover {
    color: #fff !important;
}
#header .sub-menu.nav-dropdown.nav-dropdown-default a {
    border: none;
    font-weight: 600;
    position: relative;
    margin: 0;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.2s ease-in-out;
}
#header .sub-menu.nav-dropdown.nav-dropdown-default a:hover::after {
    width: 100%;
}
#header .sub-menu.nav-dropdown.nav-dropdown-default a::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    height: 100%;
    background: var(--fs-color-primary);
    width: 0%;
    z-index: -1;
    transition: all 0.4s ease-in-out;
}
.slide-home .img .img-inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}
.sec-footer {
    overflow: hidden;
}
#footer .footer-br {
    pointer-events: none;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -3;
}
.product-price-container {
    margin-top: 1em;
}
.product-price-container span {
    font-size: 24px;
    color: #c32127;
}
.c-footer-top .custom-logo {
    display: none;
}
.absolute-footer {
    display: none;
}
.c-footer-top .col-inner {
    display: flex;
    justify-content: space-between;
}
.c-footer-top .col-inner a {
    font-size: 1.4rem;
    font-weight: 700;
    transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    color: var(--color-txt);
}
.sec-1 {
    padding-top: 0em !important;
    padding-bottom: 0 !important;
}
.c-footer-top .col-inner a:hover {
    color: var(--fs-color-primary);
}
.c-footer-top .col-inner p {
    --dt: 4rem;
    padding-left: var(--dt);
    margin-left: var(--dt);
    border-left: 1px solid rgba(25, 25, 25, 0.2);
    margin-bottom: 0;
}
.c-footer-top .col-inner p:nth-child(2) {
    border: none;
    padding-left: 0;
    margin-left: 0;
}
.c-footer-top {
    padding-bottom: 3.2rem;
}
.r-footer-mid .dsmall-item {
    padding-bottom: 2.4rem;
}
.r-footer-mid .dsmall-item p {
    margin-bottom: 0;
}
.r-footer-mid .dsmall-item .icon-box-text {
    padding: 1.2rem 2.4rem;
    font-size: 1.8rem;
    font-weight: 600;
    color: white;
    position: relative;
    min-height: inherit;
    flex: 1;
}
.r-footer-mid .dsmall-item .icon-box-text .text {
    height: 100%;
}
.r-footer-mid .dsmall-item .icon-box-text .text p {
    height: 100%;
    display: flex;
    align-items: center;
}
.r-footer-mid .dsmall-item .icon-box:hover .icon-box-text::before {
    width: 200%;
}
.r-footer-mid .dsmall-item .icon-box-text::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.5s ease-in-out;
    background-color: var(--fs-color-primary);
    z-index: -1;
}
#footer .r-footer-mid .dsmall-item .icon-box-img .icon {
    margin-left: 0;
}
#footer .r-footer-mid .dsmall-item .icon-box-img {
    width: 10rem !important;
    flex-shrink: 0;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
}
#footer .r-footer-mid .dsmall-item .icon-box {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    border-radius: 0.6rem;
    overflow: hidden;
    position: relative;
    z-index: 2;
    background-color: white;
    min-height: 10rem;
}
.r-footer-mid .dsmall-item .title {
    font-weight: 600;
    margin-bottom: 1.6rem;
}
.r-footer-mid .dsmall-item .btn-send {
    margin: 0;
}
.r-footer-mid .wpcf7-form {
    margin: 0;
}
.r-footer-mid {
    align-items: flex-end;
    z-index: 1000;
}
.r-footer-mid {
    position: relative;
    padding-bottom: 0.7rem;
    margin-bottom: 3.2rem;
}

.r-footer-mid::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 97.8%;
    height: 0.1rem;
    background-color: var(--fs-color-primary);
}
.r-footer-mid .wpcf7-form .wpcf7-form-control-wrap .wpcf7-form-control {
    border-radius: 0.6rem;
    padding: 26px;
    position: relative;
    margin: 0;
    box-shadow: none;
}
.r-footer-mid .wpcf7-form .btn-send i {
    font-size: 1.8rem;
}
.r-footer-mid .wpcf7-form .btn-send {
    color: var(--fs-color-primary);
    position: absolute;
    right: 0rem;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 100rem;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    transition: 0.3s;
    margin: 0 6px 0 0;
}
.r-footer-mid .footer-connect p {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.3rem 2.4rem;
    border-radius: 0.6rem;
    background-color: white;
    cursor: pointer;
    min-height: 53.6px;
}
.r-footer-mid .footer-connect ul {
    position: absolute;
    width: 100%;
    margin-top: 5px;
    overflow: hidden;
    border-radius: 6px;
}
.r-footer-mid .footer-connect ul li {
    display: flex;
    width: 100%;
    overflow: hidden;
    border-radius: 0.6rem;
}
.r-footer-mid .footer-connect ul a {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.3rem 2.4rem;
    border-radius: 0.6rem;
    background-color: white;
    cursor: pointer;
    min-height: 53.6px;
    color: var(--color-txt);
    transition: 0.3s ease-in-out;
    z-index: 2;
    overflow: hidden;
    width: 100%;
}
.r-footer-mid .footer-connect ul a:hover {
    color: #fff;
}
.r-footer-mid .footer-connect ul a:hover::after {
    left: 0;
    width: 100%;
}
.r-footer-mid .footer-connect ul a::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    background: var(--fs-color-primary);
    transition: all 0.4s ease;
    z-index: -1;
    pointer-events: none;
}
.r-footer-mid .footer-connect ul li {
    margin: 0;
}
.sec-footer .section-content.relative {
    display: flex;
    flex-direction: column;
}
.r-footer-mid .footer-connect p i {
    transition: transform 0.3s ease;
}

.r-footer-mid .footer-connect p.active i {
    transform: rotate(180deg);
}
#footer .c-footer-bot-left .footer-title p {
    font-size: 2.4rem;
    font-weight: 600;
    margin-bottom: 1.6rem;
}
.c-footer-bot-left p {
    margin-bottom: 16px;
}
.c-footer-bot-left p i {
    margin-right: 14px;
    color: var(--fs-color-primary);
    font-size: 2rem;
}
.c-footer-bot-left {
    padding-bottom: 0;
}
.c-footer-bot-right {
    max-width: 41.6666666667%;
    flex-basis: 41.6666666667%;
    padding-bottom: 0;
}
.c-footer-bot-left p:last-child {
    margin-bottom: 0;
}
.r-footer-bot {
    display: flex;
    justify-content: space-between;
}
.r-footer-bot::after {
    content: none;
}
.c-footer-bot-right .col-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.c-footer-social-link {
    margin-left: auto;
}
#footer .c-footer-bot-right .img {
    width: 23.4rem;
    margin-bottom: 24px;
}
#footer .c-footer-social-link a {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 10px;
}
#footer .c-footer-social-link a i {
    background-color: #3a589d;
    border-radius: 99px;
    padding: 2px;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#footer .c-footer-social-link a i.icon-tiktok {
    background-color: #000;
}
#footer .c-footer-social-link a i.icon-youtube {
    background-color: var(--fs-color-primary);
}
#footer .c-footer-social-link a i::before {
    font-size: 1rem;
}
.c-footer-social-link a.facebook::after {
    content: "FACEBOOK";
    color: var(--color-txt);
    font-size: 1.4rem;
}
.c-footer-social-link a.tiktok::after {
    content: "TIKTOK";
    color: var(--color-txt);
    font-size: 1.4rem;
}
.c-footer-social-link a.youtube::after {
    content: "YOUTUBE";
    color: var(--color-txt);
    font-size: 1.4rem;
}
.c-footer-social-link .social-icons.follow-icons {
    display: flex;
    gap: 20px;
}
.c-footer-bot-left .footer-ct a {
    color: var(--color-txt);
    transition: 0.3s ease-in-out;
}
.c-footer-bot-left .footer-ct a:hover {
    color: var(--fs-color-primary);
}
#main .banner-img {
    margin-bottom: 0;
}
.banner-img .img-inner {
    height: 55rem;
}
.banner-img .img-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.banner-posi {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 2.4rem 5.6rem 2.4rem 2.4rem;
    z-index: 2;
}
.banner-breadcrumb-content {
    margin-left: calc((100vw - 126rem) / 2);
    overflow: hidden;
}
.conTact-thanks {
    position: absolute;
    height: 100%;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 0 3.4rem;
    max-width: 60rem;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    flex-direction: column;
    align-items: start;
}
.conTact-thanks p:first-child {
    color: var(--fs-color-primary);
    font-size: 2rem;
    margin: 0;
    font-weight: 600;
}
.conTact-thanks p:last-child {
    color: #565656;
    margin: 0;
}
.banner-breadcrumb-content span {
    opacity: 0;
    visibility: hidden;
    transform: translate(-100%, 0);
    transition: 1s ease-in-out 1s;
}
.banner-breadcrumb-content.is-inview span,
.banner-posi.is-inview .breadcrumb-title h1 {
    opacity: 1;
    visibility: visible;
    transform: translate(0, 0);
}

.breadcrumb-title h1 {
    font-size: 5rem;
    color: #fff;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    transition: 1s ease-in-out 0.8s;
    line-height: 77px;
    opacity: 0;
    visibility: hidden;
    transform: translate(-100%, 0);
}
.banner-posi::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: #C32127;
    z-index: -1;
    transition: 0.5s ease-in-out 0.3s;
} 
.banner-posi.is-inview::before {
    width: 100%;
}
.banner-breadcrumb-content span a {
    color: #fff;
    font-size: 1.4rem;
    margin-right: 5px;
}
.banner-breadcrumb-content .breadcrumb_last {
    margin-left: 5px;
    text-transform: uppercase;
    font-weight: 600;
}
.banner-breadcrumb-content span  {
    color: #fff;
    font-size: 1.4rem;
}
.c-contact-l .contact-content p:first-child {
    font-size: 2.4rem;
    font-weight: 600;
    margin-bottom: 2rem;
}
.c-contact-l .contact-content p {
    margin-bottom: 16px;
    align-items: center;
    display: flex;
}
.c-contact-l .contact-content p i::before {
    width: 18px;
    height: 18px;
    display: block;
}
.c-contact-l .contact-content p i {
    margin-right: 16px;
    color: var(--fs-color-primary);
    font-size: 2rem;
}

.c-contact-l .contact-content p:nth-of-type(2) i {
    margin-bottom: 16px;
}
.c-contact-l .contact-content p:nth-of-type(3) i {
    margin-bottom: 8px;
}
.c-contact-l .contact-content a {
    color: var(--color-txt);
    transition: 0.3s ease-in-out;
}
.c-contact-l .contact-content a:hover {
    color: var(--fs-color-primary);
}
.c-contact-l .contact-content {
    margin-right: 5%;
}
.c-contact-l .contact-map {
    margin-top: 40px;
    width: 83%;
}
.c-contact-l .contact-map p {
    display: block;
    padding-top: calc((292 / 486) * 100%);
    position: relative;
    overflow: hidden;
}
.c-contact-l .contact-map p iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.c-contact-r .col-inner {
    filter: drop-shadow(0px 10px 30px rgba(0, 0, 0, 0.15));
    background-color: #ffffff;
    border-radius: 0.6rem;
    padding: 6.6rem 7rem;
    overflow: hidden;
}
.c-contact-r .col-inner .img.decor  {
    position: absolute;
    left: 0;
    bottom: 0;
    pointer-events: none;
}
.c-contact-r .wpcf7-form p.conTact-tt {
    font-size: 2.4rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--color-txt);
}
#main .c-contact-r .wpcf7-form input.re-input,
#main .c-contact-r .wpcf7-form textarea.re-input {
    box-shadow: none;
    border: none;
    border-bottom: 0.1rem solid rgba(0, 0, 0, 0.1);
    padding: 25px 0;
    font-size: 1.6rem;
    color: var(--color-txt);
    margin-bottom: 0;
}
.f-list {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: stretch;
    align-items: stretch;
    -webkit-align-items: stretch;
    flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -0.5rem;
    margin-bottom: -1rem;
}
.f-item {
    padding: 0 0.5rem;
    margin-bottom: 1rem;
    width: 100%;
}
.f-item-2 {
    width: 50%;
}
.conTact-form-wr .btn {
    margin: 0;
    margin-top: 3.4rem;
    
}

.btn {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    width: fit-content;
    text-align: center;
    cursor: pointer;
    padding: 1.2rem 2rem;
    font-weight: 700;
    transition: 0.5s ease;
    -webkit-transition: 0.5s ease;
    -moz-transition: 0.5s ease;
    -ms-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition-delay: 0s;
    -webkit-transition-delay: 0s;
    -moz-transition-delay: 0s;
    -ms-transition-delay: 0s;
    -o-transition-delay: 0s;
    overflow: hidden;
    position: relative;
    background: var(--fs-color-primary);
    border-radius: 0.6rem !important;
}
.btn:hover::after {
    left: 0;
    width: 100%;
}
.btn::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    background: #ec1d23;
    transition: all 0.3s ease;
    z-index: 1;
}
.btn.send .icon {
    margin-left: 0;
    margin-right: 0.8rem;
}
.btn span {
     z-index: 2;
}
.btn i {
    z-index: 2;
    color: #fff;
    margin-right: 8px;
}
.btn .icon {
    width: 1.6rem;
    height: 1.6rem;
    display: block;
    margin-left: 1.6rem;
    flex-shrink: 0;
    position: relative;
    margin-top: -0.2rem;
    z-index: 2;
    transition: 0.3s ease-in-out;
}
.btn img {
    position: relative;
    z-index: 2;
}
.btn .text {
    font-size: 1.6rem;
    line-height: 1.2;
    position: relative;
    z-index: 2;
    color: white;
    margin-top: -0.2rem;
    font-weight: 600;
}
.m-hidden {
    display: none !important;
}
a.button.contact-button.is-inview {
    padding: 1px 20px;
    border-radius: 5px;
}
.btn .wpcf7-spinner {
    position: absolute;
}

.wpcf7-spinner {
    z-index: 999;
}

.wpcf7-spinner {
    visibility: hidden;
    display: inline-block;
    background-color: #23282d;
    opacity: 0.75;
    width: 24px;
    height: 24px;
    border: none;
    border-radius: 100%;
    padding: 0;
    margin: 0 24px;
    position: relative;
}
#main .wpcf7-response-output {
    margin: 15px 0;
    padding: 0;
    border: none;
    color: #ff0000;
    font-size: 1.2rem;
    text-align: center;
}
.c-contact-r,
.c-contact-l {
    padding-bottom: 0;
}
.c-contact-net-left .titleL p {
    color: var(--fs-color-primary);
    position: relative;
    padding-bottom: 1rem;
    font-weight: 600;
    opacity: 0;
    transition: inherit;
    margin-bottom: 1.2rem;
}
.c-contact-net-left .titleL.is-inview p {
    animation: fade-left 1s ease-out forwards;
}
.c-contact-net-left .titleL p::after {
    content: "";
    width: 0;
    height: 0.2rem;
    background-color: #C32127;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: 0.4s;
    transition-delay: 1.2s;
}
.c-contact-net-left .titleL.is-inview p::after {
    width: 2.6rem;
}
.c-contact-net-left {
    overflow: hidden;
}
.c-contact-net-left .titleL h2 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.4;
    transition: inherit;
    opacity: 0;
    color: var(--color-txt);
    margin-bottom: 0;
}
.c-contact-net-left .titleL.is-inview h2 {
    animation: fade-left 1s ease-out forwards;
    animation-delay: 0.3s;
}
.c-contact-net-left .titleL {
    overflow: hidden;
    transition: 0.4s;
    margin-bottom: 2.4rem;
}
.c-contact-net-left .contact-net-desc p {
    margin-bottom: 2.4rem;
    opacity: 0;
}
.c-contact-net-left .contact-net-desc.is-inview p,
.c-contact-net-left a.btn.is-inview {
    animation: fade-left 1s ease-out forwards;
    opacity: 1;
}
.c-contact-net-left a.btn {
    margin: 0;
    opacity: 0;
}
a.btn span {
    line-height: 1;
}
.c-contact-net-mid .contact-net-map .img-inner {
    display: block;
    padding-top: calc((495 / 232) * 100%);
    position: relative;
    overflow: hidden;
}
.c-contact-net-mid .contact-net-map .img-inner img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.c-contact-net-mid {
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
    opacity: 0;
}
.c-contact-net-mid .col-inner {
    display: flex;
    justify-content: center;
    height: 100%;
}
#main .c-contact-net-mid .col-inner .img.contact-net-map {
    width: 25rem;
    position: relative;
    max-width: 100%;
}

.c-contact-net-right {
    flex-basis: 25%;
    max-width: 25%;
    opacity: 0;
}
.c-contact-net-mid.is-inview,
.c-contact-net-right.is-inview {
    opacity: 1;
    animation: fade-right 1s ease-out forwards;
}
#main .c-contact-net-right .col-inner {
    display: flex;
    flex-direction: column;
    width: 66.6666666667%;
    margin-left: auto;
    margin-right: 0;
}
.contact-net-count-item p {
    margin: 0;
}
.contact-net-count-item p:nth-of-type(1) {
    font-weight: 600;
}
.contact-net-count-item p:nth-of-type(2) {
    font-weight: 600;
    color: var(--fs-color-primary);
    font-size: 4rem;
}
.contact-net-count-item p:nth-of-type(3) {
    font-weight: 400;
}
.contact-net-count-item + .contact-net-count-item {
    padding-top: 4rem;
}
.contact-net-count-item {
    padding-left: 2.4rem;
    position: relative;
}
.contact-net-count-item p:nth-of-type(2)::before {
    content: "";
    position: absolute;
    width: 1.3rem;
    height: 1.3rem;
    border-radius: 100rem;
    background-color: #C32127;
    left: 0;
    top: 65%;
    transform: translate(-50%, -50%) scale(0);
    z-index: 2;
    transition: 0.4s;
    transition-delay: 1s;
}
.contact-net-count-item.is-inview p:nth-of-type(2)::before  {
    transform: translate(-50%, -50%) scale(1);
}
.contact-net-count-item::after {
    content: "";
    position: absolute;
    height: 0%;
    width: 0.1rem;
    background-color: rgba(0, 0, 0, 0.15);
    left: 0;
    top: 0;
    transition: 2s;
}
.contact-net-count-item.is-inview::after {
    height: 100%;
}
.contact-net-count-item:nth-child(1) p:nth-of-type(2)::before {
    top: 50%;
}
.c-contact-net-left,
.c-contact-net-mid,
.c-contact-net-right {
    padding-bottom: 0;
}
.sec-opp {
    background-color: var(--fs-color-primary);
}
.opp-decor .img-inner {
    position: absolute;
    left: 0;
    top: 72px;
}
.c-opp-content h2 {
    font-size: 4rem;
    margin-bottom: 2rem;
    color: #fff;
    white-space: pre-wrap;
}
.c-opp-content p {
    color: #fff;
    margin-bottom: 24px;
    opacity: 0;
}
.c-opp-content.is-inview p {
    animation: txt-focus 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}
.c-opp-content a.btn {
    margin: 0 auto;
    background: #fff;
    color: var(--fs-color-alert);
    transition: 0.3 ease-in-out;
    opacity: 0;
}
.c-opp-content.is-inview a.btn {
    animation: fade-up 1s ease-out forwards;
    opacity: 1;
}
.c-opp-content a.btn:hover {
    color: #fff;
    border-color: var(--fs-color-primary);
}
.c-opp-content .col-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.c-opp-content {
    padding-bottom: 0;
}
.char {
    opacity: 0;
    transform: translateY(20px);
    display: inline-block;
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.char.animated {
    opacity: 1;
    transform: translateY(0);
}
.sec-banner .conTact-thanks {
    opacity: 0;
    transition: 0.3s ease-in-out;
    
}
.sec-banner .conTact-thanks.is-inview {
    animation: fade-right 1s ease-out forwards;
    opacity: 1;
}
.c-culture h2 {
    white-space: pre-wrap;
    margin-bottom: 4rem;
}
.t-title-first h2{
    font-size: 4rem;
    line-height: 1.2;
    font-weight: 600;
    color: #191919;
}
.culture-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
}
#main .sec-culture {
    padding-bottom: 16rem;
}
.r-culture-list {
    display: flex;
    flex-wrap: wrap;
    height: 100%;
}
.c-culture-item {
    max-width: 33.33%;
    flex-basis: 33.33%;
    
}
.c-culture-item p {
    display: none;
}
.c-culture-item h3 {
    margin: 0;
    height: 100%;
    padding: 2.4rem 6.8rem;
    position: relative;
    font-size: 3.2rem;
    color: var(--fs-color-primary);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}
.c-culture-item:nth-child(4),
.c-culture-item:nth-child(5) {
    max-width: 50%;
    flex-basis: 50%;
    margin-top: -6.2rem;
}
.c-culture-item:nth-child(4) {
    display: flex;
    align-items: center;
}
.c-culture-item:nth-child(4)  h3 {
    width: 65%;
    margin-left: auto;
}
.c-culture-item:nth-child(5) h3 {
    width: 65%;
}
.c-culture-item:nth-child(1) h3,
.c-culture-item:nth-child(2) h3,
.c-culture-item:nth-child(3) h3 {
    height: 40rem;
}
h2 {
    white-space: pre-wrap;
    color: var(--color-txt);
}
.c-envi-left h2 {
    margin-bottom: 2rem;
    font-size: 4rem;
    width: 66%;
}
.c-envi-left p {
    color: #565656;
}
.c-envi-right  .box-image div {
    display: block;
    padding-top: calc((547 / 384) * 100%);
    position: relative;
    overflow: hidden;
    border-radius: 0.6rem;
}
.c-envi-right .box-image div img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* slick slide button */
.custom-pagination {
    position: absolute;
    top: 50%;
    left: -30px;
    /* hoặc điều chỉnh theo ý */
    transform: translateY(-50%);
    background-color: #c8102e;
    color: white;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    font-weight: bold;
    font-size: 16px;
    z-index: 10;
    padding: 5px;
}

.custom-pagination span {
    cursor: pointer;
}

.custom-pagination .slide-count {
    display: inline-block;
    text-align: center;
    font-size: 18px;
}


.slide-item img {
    width: 100%;
    height: auto;
    display: block;
}
/* end slick slide button */

.custom-pagination br {
    display: none;
}
.envi-content {
    --dt: 3.2rem;
    position: absolute;
    bottom: var(--dt);
    left: var(--dt);
    right: var(--dt);
    background: rgba(255, 255, 255, 0.88);
    border-radius: 0.6rem;
    padding: 2.4rem;
}
/* .slick-initialized .slick-slide {
    width: 386px !important;
} */
.slick-track {
    display: flex;
}
#main .r-envi {
    max-width: calc(100vw - (100vw - 121.5rem) / 2);
    padding: 0;
    margin: 0;
    margin-left: auto;
}
#main .c-envi-right .slick-slide .box-text {
    padding: 0
}
.c-envi-right .envi-content img {
    margin: 0;
    padding-bottom: 10px;
}
.c-envi-right .envi-content p {
    font-size: 1.4rem;
    font-weight: 700;
    color: #191919;
    font-style:italic;
}
.c-envi-right .envi-content p:last-child {
    color: var(--fs-color-primary);
}
.c-envi-right .slick-track .col.slick-slide {
    padding: 0;
}
.c-envi-right .slick-track .col.slick-slide + .col.slick-slide {
    margin-left: 24px;
}
.custom-pagination .prev-arrow,
.custom-pagination .next-arrow {
    font-size: 1rem;
}
.custom-pagination .slide-count {
    font-size: 1.6rem;
    font-weight: 400;
}
.c-envi-left,
.c-envi-right {
    padding-bottom: 0;
}
.is-divider {
    display: none;
}
.re-gr .post-title {
    padding-bottom: 1.2rem;
    margin-bottom: 1.2rem;
    border-bottom: 0.1rem solid #E6E6E6;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.recruit-date {
    font-size: 1.6rem;
    color: var(--fs-color-primary);
    font-weight: 400;
}
.shop-page-title.category-page-title.page-title.featured-title.dark.is-inview {
    display: none;
}
.recruit-bot {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}
.recruit-bot p {
    font-size: 1.6rem;
    color: #565656;
}
.recruit-bot p.recruit-salary {
    color: var(--fs-color-primary);
    font-weight: 700;
}
.re-gr .post-title a {
    color: var(--color-txt);
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 1.2;
    transition: 0.3s ease-in-out;
}
.re-gr .post-title:hover a {
    color: var(--fs-color-primary);
}
.re-gr .from_the_blog_excerpt {
    font-size: 1.6rem;
    color: #565656;
}
.re-gr .box-text-inner {
    width: 90%;
}
.re-gr a.button {
    margin: 0;
    position: absolute;
    right: 0;
    top: 28%;
    border-radius: 99px;
    padding: 14px 22px;
    color: transparent;
    background-color: var(--fs-color-primary);
}
.re-gr a.button:hover:before {
    transform: rotate(720deg);
    opacity: 1;
}
.re-gr a.button::before {
    content: "";
    position: absolute;
    border-radius: 100rem;
    left: 0.1rem;
    top: 0.1rem;
    right: 0.1rem;
    bottom: 0.1rem;
    border: 0.2rem dashed white;
    transition: 0.6s ease-in-out;
    opacity: 0;
}
.re-gr a.button::after {
    content: "\f054";
    color: #fff;
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.4rem;
    font-weight: 400;
}
.re-gr .box-text {
    padding: 24px;
}
.c-re-gr-right .col.post-item {
    padding: 0 15px;
    margin-bottom: 24px;
    transition: 0.3s ease-in-out;
}
.c-re-gr-right .col.post-item:hover {
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.15);
}
.r-breadcrumb-nor span a {
    color: var(--color-txt);
}
.c-breadcrumb-nor {
    padding-bottom: 0;
}
.c-map-title {
    padding-bottom: 4rem;
}
.c-map-title h2 {
    font-size: 2.4rem;
    margin: 0;
}
.c-system-left li.tab span {
    text-transform: capitalize;
    font-size: 1.4rem;
    color: var(--color-txt);
    font-weight: 400;
}
.c-system-left li.tab.active span {
    color: #fff;
}
.c-system-left li.tab.active {
    background-color: var(--fs-color-primary);
}
.c-system-left li:hover.tab span {
    color: #fff;
}
.c-system-left li:hover.tab {
    background-color: var(--fs-color-primary);
}
.c-system-left li.tab {
    height: 4.8rem;
    border: 1px solid #e6e6e6;
    border-radius: 0.8rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: calc(100% / 3);
    font-size: var(--body14-fs);
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    cursor: pointer;
    margin: 0;
}
.c-system-left ul.nav {
    display: flex;
    align-items: center;
    column-gap: 1.6rem;
    margin-bottom: 1.6rem;
    padding-bottom: 1.6rem;
    border-bottom: 1px solid #e6e6e6;
}
.c-system-left .tab-panels {
    padding-top: 0;
}
.c-system-left .tab-panels .content-item {
    padding: 2.4rem;
    background-color: #f5f5f5;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    border-radius: 0.8rem;
    border-color: var(--fs-color-primary);
}
.c-system-left .tab-panels .content-item + .content-item {
    margin-top: 16px;
}
.c-system-left .tab-panels .content-item p {
    font-size: 1.4rem;
    margin: 0;
}
.c-system-left .tab-panels .content-item p:nth-of-type(1) a {
    color: var(--color-txt);
    transition: 0.3s ease-in-out;
}
.c-system-left .tab-panels .content-item p:nth-of-type(1) a:hover {
    color: var(--fs-color-primary);
}
.c-system-left .tab-panels .content-item p:nth-of-type(1) {
    line-height: 1.5;
    padding-bottom: 8px;
    position: relative;
    margin-bottom: 2.4rem;
}
.c-system-left .tab-panels .content-item p:nth-of-type(1):after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 5.3rem;
    height: 0.1rem;
    background-color: var(--fs-color-primary);
    transition: all 0.8s cubic-bezier(0.61, 0.22, 0.23, 1);
    -webkit-transition: all 0.8s cubic-bezier(0.61, 0.22, 0.23, 1);
}
.c-system-left .tab-panels .content-item p:nth-of-type(2) {
    margin-bottom: 1.2rem;
    display: flex;
}
.c-system-left .tab-panels .content-item p:nth-of-type(2) i {
    margin-top: 5px;
    
}
.c-system-left .tab-panels .content-item p i {
    color: var(--fs-color-primary);
    font-size: 1.6rem;
    margin-right: 5px;
    width: 18px;
}
.c-system-right .col-inner {
    height: 100%;
}
.c-system-right .col-inner p {
    height: 100%;
    overflow: hidden;
    border-radius: 0.8rem;
}
.c-system-left .tab-panels .content-item:hover {
    border: 1px solid var(--fs-color-primary)
}
.c-system-left .panel {
    max-height: 57rem;
    overflow-y: auto;
    padding-right: 5px;
}
.c-system-left,
.c-system-right {
    padding-bottom: 0;
}
.r-breadcrumb-nor .breadcrumb-title {
    display: none;
}
#main .blog-wrapper.blog-single {
    padding: 80px 0
}
.blog-single .large-9 .entry-header-text.entry-header-text-top {
    padding: 0;
    text-align: left;
}
.blog-single .large-9 .entry-header-text h1 {
    font-size: 4rem;
    margin-bottom: 24px;
    color: var(--color-txt);
    font-weight: 700;
}
.blog-single .large-9 .entry-meta,
.blog-single .large-9 .entry-meta a {
    font-size: 1.4rem;
    color: #565656;
    text-transform: capitalize;
}
.blog-single .large-9 .entry-meta::before {
    content: "\f133";
    font-family: "Font Awesome 5 Free";
    color: var(--fs-color-primary);
}
.blog-single h3 {
    font-size: 2.4rem;
    margin: 10px 0;
    color: var(--color-txt);
}
.blog-single h2 {
    font-size: 3rem;
    color: var(--color-txt);
    margin: 10px 0;
}
.blog-single p {
    margin: 10px 0;
}
.blog-single ul {
    padding-left: 10px;
    margin-bottom: 20px;
}
.blog-single a {
    color: var(--color-txt);
    transition: 0.3s ease-in-out;
}
.blog-single a:hover {
    color: var(--fs-color-primary);
}
.blog-single #comments {
    display: none;
}
.blog-single .entry-content,
.blog-single .large-9 {
    padding-bottom: 0;
}

.blog-single .large-3 {
    display: none;
}
.blog-single .large-9 {
    flex-basis: 100%;
    max-width: 100%;
}
.blog-tuyen-dung .blog-single .large-9 {
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
}
.blog-tuyen-dung .blog-single .large-3 {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
    display: block;
    margin-left: auto;
}
.single-post #main {
    background-color: #f7f7f7;
}
.single-post.blog-tuyen-dung #main {
    background-color: #fff;
}
.blog-single .large-9 .article-inner {
    border-radius: 0.6rem;
    background-color: white;
    padding: 7.2rem 9.6rem;
    margin: 0 30px;
}
.blog-tuyen-dung .blog-single .large-9 .article-inner {
    padding: 0;
    margin: 0;
}
.single-post .r-breadcrumb-nor,
.blog-tuyen-dung  .sec-banner {
    display: none;
}
.single-post.blog-tuyen-dung .r-breadcrumb-nor {
    display: block;
}
.r-breadcrumb-nor {
    padding-top: 30px;
}

.blog-tuyen-dung #at_posts_related {
    display: none;
}
#at_posts_related {
    margin: 0 30px;
}
.c-re-gr-right .box-text-inner span.post-date {
    display: none;
}
.blog-tuyen-dung #main .blog-wrapper.blog-single {
    padding-top: 48px;
}
.blog-share .social-icons.share-icons {
    margin-right: 0;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}
.blog-share .social-icons.share-icons::before {
    content: "Chia sẻ";
    font-size: 1.4rem;
    color: #565656;
    font-weight: 700;
}
.blog-share {
    display: flex;
}
.blog-share .social-icons.share-icons a {
    margin: 0;
}
.blog-share .social-icons.share-icons a.email,
.blog-share .social-icons.share-icons a.whatsapp,
.blog-share .social-icons.share-icons a.pinterest {
    display: none;
}
.blog-share .social-icons.share-icons a.facebook {
    background-color: #3a589d !important;
    border-color: #3a589d !important;
}
.blog-share .social-icons.share-icons a.facebook i {
    color: #fff
}
.blog-share .social-icons.share-icons a.twitter {
    background-color: #2478ba !important;
    border-color: #2478ba !important;
}
.blog-share .social-icons.share-icons a.twitter i {
    color: #fff
}
.blog-share .social-icons.share-icons a.linkedin {
    background-color: #0072b7 !important;
    border-color: #0072b7 !important;
}
.blog-share .social-icons.share-icons a.linkedin i {
    color: #fff
}
.blog-share .social-icons.share-icons a {
    transition: 0.3s ease-in-out;
}
.blog-share .social-icons.share-icons a:hover {
    transform: translateY(-5px);
}
#at_posts_related h3.posts-section-title-related {
    font-size: 4rem;
    margin-bottom: 4rem;
    color: var(--color-txt);
    padding: 0;
    margin-top: 80px;
    text-transform: capitalize;
    white-space: pre-wrap
}
.col.post-item .badge.absolute {
    display: none;
}
.col.post-item {
    padding: 0 15px;
    margin-bottom: 24px;
}
.col.post-item .box-text {
    padding: 2rem 2rem 2.4rem 2rem;
    background-color: #fff;
    border-bottom-left-radius: 0.6rem;
    border-bottom-right-radius: 0.6rem;
}
.col.post-item .box-text .box-text-inner {
    text-align: left;
}
.single-post .col.post-item .recruit-bot {
    display: none;
}
.col.post-item .post-date {
    font-size: 1.4rem;
    color: #565656;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}
.col.post-item .post-date i {
    color: var(--fs-color-primary);
}
.col.post-item .post-title {
    margin-bottom: 8px;
}
.col.post-item .post-title a {
    font-weight: 600;
    margin-bottom: 0.8rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 1.6rem;
    transition: 0.3s ease-in-out;
    min-height: 42px;
    color: var(--color-txt);
}
.col.post-item .post-title a:hover {
    color: var(--fs-color-primary);
}
.col.post-item .from_the_blog_excerpt {
    font-size: 1.6rem;
    color: #565656;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
}
.col.post-item .box {
    border-radius: 0.6rem;
    overflow: hidden;
}
.col.post-item .box::before {
    content: "";
    position: absolute;
    height: 0.6rem;
    background-color: #C32127;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    width: 0;
    transition: 0.3s ease-in-out;
    z-index: 100;
}
.col.post-item .box:hover:before {
    width: 100%;
}
.c-re-gr-right .col.post-item .box::before {
    content: none;
}
#main .flickity-button {
    opacity: 1;
    max-height: 36px;
}
.flickity-prev-next-button.next,
.flickity-prev-next-button.previous {
    transform: translateX(0%);
}

#at_posts_related .flickity-prev-next-button.next {
    right: 0%;    
    top: 8%;
}
#at_posts_related .flickity-prev-next-button.previous {
    right: 0%;
    top: 8%;
    left: 92%;
}
 .flickity-button .flickity-button-icon {
    border: none !important;
    background: #cecece;
    transition: 0.3s ease-in-out
}
.flickity-button .flickity-button-icon .arrow {
    color: #fff;
}
.c-re-gr-right .col.post-item .post-title a {
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 2.4rem;
    min-height: initial;
    margin-bottom: 0;
}
#at_posts_related .flickity-button .flickity-button-icon:hover {
    background-color: var(--fs-color-primary);
}
.blog-single .large-3 .c-apply-info,
.blog-single .large-3 .c-apply-relate{
    padding: 3.8rem;
    background-color: #F7F7F7;
    border-radius: 0.6rem;
    margin: 0 15px
}
.blog-single .large-3 h3 {
    font-size: 2.4rem;
    font-weight: 600;
    margin-bottom: 2rem;
    margin-top: 4rem;
}
.blog-single .large-3 .col.post-item .box::before {
    content: none;
}
.blog-single .large-3 .apply-title {
    padding-bottom: 0;
}
.blog-single .large-3 .col.post-item .box-text {
    padding: 0;
    background-color: #F7F7F7;
}
.blog-single .large-3 .col.post-item .post-date,
.blog-single .large-3 .col.post-item .recruit-date,
.blog-single .large-3 .col.post-item .post-meta,
.blog-single .large-3 button.flickity-button {
    display: none;
}
.blog-single .large-3 .col.post-item .post-title a {
    min-height: initial;
}
.blog-single .large-3 .c-apply-relate {
    padding-bottom: 6rem;
}
.blog-single .large-3 .row-slider .flickity-page-dots {
    bottom: -20px;
}
.flickity-page-dots .dot.is-selected,
.row-slider .flickity-page-dots .dot {
    background-color: var(--fs-color-primary);
}
.blog-single .large-3 .c-apply-relate a.button {
    background: transparent;
    border: 0.1rem solid var(--fs-color-primary);
    border-radius: 0.6rem;
    padding: 12px 20px;
    color: var(--fs-color-primary);
    text-transform: capitalize;
    line-height: 1;
    font-size: 1.6rem;
    font-weight: 600;
    transition: 0.5s ease;
    -webkit-transition: 0.5s ease;
    z-index: 2;
    
}
.blog-single .large-3 .c-apply-relate a.button:hover {
    color: #fff;
}
.blog-single .large-3 .c-apply-relate a.button:hover:after {
    width: 100%;
}
.blog-single .large-3 .c-apply-relate a.button::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    background: #ec1d23;
    transition: all 0.3s ease;
    z-index: -1;
}
.blog-single .large-3 .c-apply-info .social-icons a.email,
.blog-single .large-3 .c-apply-info .social-icons a.pinterest,
.blog-single .large-3 .c-apply-info .social-icons a.whatsapp {
    display: none;
}
.blog-single .large-3 .c-apply-info .social-icons a {
    margin: 0;
}
.blog-single .large-3 .c-apply-info .social-icons.share-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}
.blog-single .large-3 .social-icons.share-icons a.facebook {
    background-color: #3a589d !important;
    border-color: #3a589d !important;
}
.blog-single .large-3 .social-icons.share-icons a.facebook i {
    color: #fff
}
.blog-single .large-3 .social-icons.share-icons a.twitter {
    background-color: #2478ba !important;
    border-color: #2478ba !important;
}
.blog-single .large-3 .social-icons.share-icons a.twitter i {
    color: #fff
}
.blog-single .large-3 .social-icons.share-icons a.linkedin {
    background-color: #0072b7 !important;
    border-color: #0072b7 !important;
}
.blog-single .large-3 .social-icons.share-icons a.linkedin i {
    color: #fff
}
.blog-single .large-3 .social-icons.share-icons a {
    transition: 0.3s ease-in-out;
}
.blog-single .large-3 .social-icons.share-icons a:hover {
    transform: translateY(-5px);
}
.blog-single .large-3 .share-icons-title {
    font-size: 1.4rem;
    color: #565656;
}
.blog-single .large-3 .tuyen-dung-thong-tin p {
    color: #565656;
}
.blog-single .large-3 .tuyen-dung-thong-tin p span {
    color: var(--fs-color-primary) !important;
    font-weight: 600;
    white-space: nowrap;
}
.blog-single .large-3 {
    padding-top: 80px;
}
.blog-tuyen-dung .large-9 .blog-share  {
    display: none;
}
.head {
    margin-bottom: 4rem;
}
.c-onews h2 {
    font-size: 4rem;
}
.sec-onews,
.sec-news {
    background-color: #f7f7f7;
}
.sec-onews .col.post-item .box-text {
    padding: 88px 48px
}
.sec-onews .col.post-item .box::before {
    content: none;
}
.sec-onews .col.post-item .post-date {
    margin-bottom: 12px;
}
.sec-onews .col.post-item .post-title a {
    min-height: initial;
    font-size: 2.4rem;
    font-weight: 600;
    color: #191919;
    line-height: 1.2;
}
.sec-onews .col.post-item .from_the_blog_excerpt {
    margin-top: 2.4rem;
    color: #565656;
}
.sec-onews a.button {
    border: none;
    color: var(--fs-color-primary);
    background-color: #fff;
    padding: 0;
    font-size: 1.6rem;
    text-transform: capitalize;
}
.sec-onews a.button:hover {
    background: #fff;
    color: var(--fs-color-primary);
}
.sec-onews a.button:after {
    content: "+";
    color: var(--fs-color-primary);
    font-size: 1.6rem;
    margin-left: 10px;
}
#main .sec-onews .flickity-button.next {
    right: 0;
}
#main .sec-onews .flickity-button.previous {
    left: 0;
}
#main .sec-onews .recruit-bot {
    display: none;
}
.sec-onews .col.post-item {
    margin-bottom: 0;
}
.c-onews {
    padding-bottom: 0;
}
.c-news h2 {
    font-size: 4rem;
}

.sec-news .tabbed-content ul .tab a,
.sec-news .tabbed-content ul li {
    padding: 0;
    margin: 0;
}
.sec-news .tabbed-content ul li+li {
    margin-left: 6rem;
}
.sec-news .tabbed-content ul .tab{
    padding: 24px 0;
    
}
.sec-news .tabbed-content ul .tab.active span {
    color: var(--fs-color-primary);
}
.sec-news .tabbed-content ul .tab span {
    font-size: 1.6rem;
    color: #565656;
}
.sec-news .nav-line-bottom>li>a:before {
    opacity: 1;
    width: 0;
}
.sec-news .nav-line-bottom .tab.active a:before {
    width: 100%;
}
.sec-news .nav-line-bottom .tab:hover a:before {
    width: 100%;
}
.sec-news .nav {
    border-bottom: 0.1rem solid #E8E8E8;
}
.sec-news .tab-panels {
    padding-top: 40px;
}
.c-grows-dec-left,
.c-grows-dec-right {
    padding-bottom: 0;
}
.c-grows-dec-right p {
    margin-bottom: 0;
    font-size: 2.4rem;
}
.c-grows-dec-left h2 {
    font-size: 4rem;
}
#main .sec-grows-tabs {
    padding: 20rem 0 14rem 0;
}
.sec-grows-tabs:after {
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(94.05deg, #000000 -4.82%, rgba(0, 0, 0, 0) 75.97%);
    position: absolute;
    left: 0;
    bottom: 0;
}
#main .c-grows-tabs li {
    border-top: none
}
#main .c-grows-tabs .tab-panels {
    border-left: none;
}
.c-grows-tabs .tabs-title h2 {
    font-size: 4rem;
    margin-bottom: 24px;
    color: #fff;
}
#main .c-grows-tabs .tab-panels {
    padding: 0 15px;
}
.c-grows-tabs {
    padding-bottom: 0;
}
#main .c-grows-tabs .tab-panels .panel.active {
    background-color: rgba(255, 255, 255, 0.88);
    padding: 6rem 10rem;
    border-radius: 0.6rem;
}
#main .c-grows-tabs .tab-panels .panel h3 {
    font-size: 4rem;
    margin-bottom: 2.4rem;
    color: var(--color-txt);
}
#main .c-grows-tabs .tab-panels .panel h4 {
    font-size: 2.4rem;
    margin-bottom: 20px;
    color: var(--fs-color-primary);
}
#main .c-grows-tabs .tab-panels .panel p {
    font-size: 1.6rem;
    margin: 0;
}
.c-grows-tabs .nav {
    padding: 0 15px;
    width: 33.3333333333%;
}
.c-grows-tabs .nav a {
    font-size: 2.4rem;
    margin: 0;
    padding: 10px 20px;
    color: #fff !important;
}
.c-grows-tabs .nav a span{
	 color: #fff !important;
}
.c-grows-tabs .nav li.active a,
.c-grows-tabs .nav li a:hover {
    color: #F3595E;
}
.c-grows-tabs .nav li.active a::before,
.c-grows-tabs .nav li:hover a::before {
    background-color: #C32127;
}
.c-grows-tabs .nav a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 0.7rem;
    background-color: #ffffff;
    transition: inherit;
}
.sec-grows-init h2 {
    font-size: 4rem;
    margin-bottom: 2.4rem;
}
.sec-grows-init {
    background-color: #f7f7f7;
}
#main .c-grows-tabs .tab-panels .panel.active {
    min-height: 450px;
    display: block;
}
#main .c-grows-tabs .tab-panels .panel {
    transition: 0.3s ease-in-out;
    display: none;
    animation: backInUp 0.5s ease-in-out;
}
.r-abi-mid p {
    margin: 10px 0;
    opacity: 0;
}
.r-abi-mid p.is-inview {
    animation: txt-focus 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
    opacity: 1;
}
.c-abi-mid-left,
.c-abi-mid-right {
    padding-bottom: 40px;
}
.r-abi-bot .img-inner {
    display: block;
    padding-top: calc((547 / 384) * 100%);
    position: relative;
    overflow: hidden;
    border-radius: 0.6rem;
}
.r-abi-bot .img-inner:hover:before {
    animation: shine 1s;
}
.r-abi-bot .img-inner::before {
    position: absolute;
    top: 0;
    left: -100%;
    z-index: 2;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
}
.r-abi-bot img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.c-abi-bot-img:nth-child(2) {
    transform: translateY(56px);
}
#main .sec-abi.ss-pd {
    padding-bottom: 140px;
}
.c-abi-bot-img,
.c-abi  {
    padding-bottom: 0;
}
#main .sec-qti {
    padding: 56px 0;
    background-color: var(--fs-color-primary);
}
#main .sec-qti .c-qti {
    color: #fff;
}
#main .sec-qti .c-qti h2 {
    color: #fff;
    margin: 0;
    font-size: 5rem;
    line-height: 77px;
    font-weight: 600;
}
#main .sec-qti .c-qti p {
    margin: 0;
    font-weight: 600;
}
#main .sec-qti .c-qti {
    padding: 0;
}
.r-chart h2 {
    font-size: 4rem;
}
.c-chart {
    padding-bottom: 0;
}
#main .sec-grows-tabs.page-about .c-grows-tabs .tab-panels .panel.active {
    min-height: initial;
}
#main .sec-value .section-bg {
    opacity: 0.1;
}
#main .sec-value h2 {
    font-size: 4rem;
}
#main .sec-value .tabs-value {
    width: 81rem;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    min-height: 530px;
}
#main .sec-value .tab-panels {
    width: 41.5rem;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
    padding-bottom: 4rem;
}
#main .sec-value .tab-panels::before {
    content: "";
    position: absolute;
    top: 12%;
    left: 0;
    width: 100%;
    padding-bottom: 100%;
    border: 0.1rem solid rgba(0, 0, 0, 0.2);
    border-radius: 100rem;
    z-index: -1;
}
.c-value {
    padding-bottom: 0;
}
#main .sec-value li.tab {
    width: 12.5rem;
    height: 12.5rem;
    border-radius: 100rem;
    background-color: #C32127;
    margin: 0 auto;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
}
#main .sec-value li.tab:nth-child(1),
#main .sec-value li.tab:nth-child(3) {
    transform: translateY(11.5rem);
}
#main .sec-value li.tab:nth-child(1) {
    margin-left: 10%;
}
#main .sec-value ul {
    align-items: start;
    width: 90%;
    margin: 0 auto;
}
#main .sec-value li.tab a span {
    font-size: 1.6rem;
    color: #fff;
}
#main .sec-value li.tab.active a {
    display: none;
    
}
#main .sec-value li.tab a {
    animation: zoomIn 0.5s ease-in-out; 
}
#main .sec-value li.tab.active::after {
    display: block;
    opacity: 1;
}

#main .sec-value li.tab::after {
    content: "";
    position: absolute;
    width: 8.6rem;
    height: 8.6rem;
    background-color: #fff;
    background-image: url("https://shgroup.theme.trueads.vn/wp-content/uploads/2025/04/handshake-svg.svg");
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: center;
    border: 2px solid #c8232c;
    border-radius: 50%;
    display: none;
    animation: zoomIn 0.5s ease-in-out;
    opacity: 0;
}
#main .sec-value li.tab:nth-child(2)::after {
    background-image: url("https://shgroup.theme.trueads.vn/wp-content/uploads/2025/04/value-icon.svg");
}
#main .sec-value li.tab:nth-child(3)::after {
    background-image: url("https://shgroup.theme.trueads.vn/wp-content/uploads/2025/04/increase-svg.svg");
}
#main .sec-value .tab-panels .panel {
        display: none;
}
#main .sec-value .tab-panels .panel.active {
    transition: 0.3s ease-in-out;
    animation: backInUp 0.5s ease-in-out;
}
#main .sec-value .tab-panels .panel h3 {
    color: #191919;
    margin-bottom: 34px;
}
#main .sec-value .tab-panels .panel p {
    color: #565656;
}
.sline {
    height: 1.6rem;
    position: relative;
}
.sline.is-inview::before {
    width: 100%;
}
.sline::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    top: 0;
    height: 100%;
    width: 0;
    background-color: #C32127;
    transition: 0.5s ease-in-out 0.3s;
}
.road-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.road-img .img-inner {
    height: 25.7rem;
    overflow: hidden;
    border-radius: 0.6rem;
}
.c-road-silde-item {
    padding-bottom: 0;
}
.road-content {
    height: 25.7rem;
    background-color: #f7f7f7;
    border-radius: 0.6rem;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 2.4rem 4.8rem;
}
#main .road-img:nth-child(odd){
    margin: 0;
    padding-bottom: 4rem;
}
#main .road-img:nth-child(even)
 {
    margin: 0;
    padding-top: 4rem;
}

/* #main .road-img .img-inner.is-inview::before {
    transform: translate(0, 110%);
}

#main .road-img .img-inner::before {
    position: absolute;
    content: "";
    inset: 0;
    background-color: #f8f8f8;
    z-index: 1;
    width: 100%;
    height: 100%;
    transform: translate(0);
    transition: 0.8s ease-out;
    -webkit-transition: 0.8s ease-out;
    -moz-transition: 0.8s ease-out;
    -ms-transition: 0.8s ease-out;
    -o-transition: 0.8s ease-out;
    transition-delay: 0s;
    -webkit-transition-delay: 0s;
    -moz-transition-delay: 0s;
    -ms-transition-delay: 0s;
    -o-transition-delay: 0s;
    pointer-events: none;
    z-index: 3;
}
#main .road-img .img-inner.is-inview::after {
    transform: translate(0, -110%);
}
#main .road-img .img-inner::after {
    position: absolute;
    content: "";
    inset: 0;
    background-color: #f8f8f8;
    z-index: 1;
    width: 100%;
    height: 100%;
    transform: translate(0);
    transition: 0.8s ease-out;
    -webkit-transition: 0.8s ease-out;
    -moz-transition: 0.8s ease-out;
    -ms-transition: 0.8s ease-out;
    -o-transition: 0.8s ease-out;
    transition-delay: 0s;
    -webkit-transition-delay: 0s;
    -moz-transition-delay: 0s;
    -ms-transition-delay: 0s;
    -o-transition-delay: 0s;
    pointer-events: none;
    z-index: 3;
} */
.sec-road .c-road .head.ani-txt h2 {
    font-size: 4rem;
}
.c-road-slide {
    padding-bottom: 0;
}
#main .c-road-silde-item .r-road-content:nth-child(even) {
    padding-top: 4rem;
}
#main .c-road-silde-item .r-road-content:nth-child(odd) {
    padding-bottom: 4rem;
    order: -1;
}
.r-road-content {
    position: relative;
}
.r-road-content::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    height: 0.1rem;
    left: 0;
    right: -3rem;
    background-color: #CECECE;
    top: 0;
}
#main .c-road-silde-item .r-road-content:nth-child(odd)::before {
    bottom: -0.1rem;
    top: unset;
}
.r-road-content .dot {
    position: absolute;
    width: 3rem;
    height: 3rem;
    border-radius: 100rem;
    background-color: #E2E2E2;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    top: -5.5rem;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    overflow: hidden;
}
.slick-current .r-road-content .dot::before,
.slick-current .r-road-content .dot::after {
    display: flex;
}
.r-road-content .dot::before {
    content: "";
    width: 1.4rem;
    height: 1.4rem;
    border-radius: 100rem;
    background-color: var(--fs-color-primary);
    display: block;
    position: relative;
    z-index: 2;
    animation: zoomIn 0.6s ease-in-out;
    display: none;
}
.r-road-content .dot::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: #FFE4E5;
    animation: zoomIn 0.6s ease-in-out;
    display: none;
}
#main .c-road-silde-item .r-road-content:nth-child(odd) .dot {
    bottom: -5.5rem;
    top: unset;
}
.sec-road .slick-next:before,
.sec-road .slick-prev:before {
    color: var(--fs-color-primary);
    font-size: 3.5rem;
}
.sec-road .slick-next,
.sec-road .slick-prev {
    top: 49.2%;
}
.sec-road .slick-prev {
    left: -45px;
}
.sec-road .slick-next {
    right: -45px;
}
.road-content {
    color: var(--fs-color-primary);
}
.road-content h3 {
    font-size: 4.8rem;
    line-height: 74px;
    margin: 0;
    color: var(--fs-color-primary);
}
.road-content p {
    height: 100px;
    overflow-y: auto;
    word-break: break-word;
    margin: 0;
}
.c-road {
    padding-bottom: 0;
}
.pricer {
    position: relative;
    padding: 8.6rem 0;
}
.pricer::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #f7f7f7;
    z-index: -1;
}
.pricer::after {
    content: "";
    position: absolute;
    left: 0;
    height: 100%;
    width: 1.6rem;
    background: var(--fs-color-primary);
    top: 0;
}
.c-pricer-top .col-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.c-pricer-top a.btn {
    margin: 0;
    margin-bottom: auto;
}
.c-pricer-top a.btn span::after {
    content: "\f0a9";
    font-family: "Font Awesome 5 Pro";
}
.c-pricer-top a.btn span::after {
    padding-left: 8px;
    margin-left: 8px;
    border-left: 1px solid #fafafa4d;
}
.c-pricer-top h2 {
    font-size: 4rem;
    font-weight: 600;
    margin: 0;
}
.c-pricer-top {
    padding-bottom: 0;
}
.c-pricer-content button.toggle {
    display: none;
} 
.c-pricer-content .accordion-title {
    padding: 16px 0;
}
.c-pricer-content .accordion-title.active {
    background-color: transparent;
    border-color: #0000004d;
}
.c-pricer-content .accordion-title span {
    font-size: 2.4rem;
    margin: 0;
}

.c-pricer-item-left,
.c-pricer-item-right {
    padding-bottom: 0;
}
.c-pricer-content .accordion-inner p {
    margin: 0;
    color: #565656;
}
.c-pricer-item-right .col-inner
 {
    display: flex;
    align-items: center;
    justify-content: center;
}
.c-pricer-item-left{
    display: flex;
    align-items: center;
}
.c-pricer-content .accordion-title a {
    font-weight: 600;
}
.c-pricer-content .accordion-item {
    position: relative;
}
.c-pricer-item-right {
    position: absolute;
    right: 0;
    top: 7%;
}

.accordion-item {
    transition: transform 2s ease-in-out;
}
.c-pricer-content {
    padding-bottom: 0;
}
.sec-offic .head h2 {
    font-size: 4rem;
    margin: 0;
}
.c-offic-item .box-text {
    padding: 2.3rem 1.3rem;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    /* background-color: #F7F7F7;
    border-radius: 0.6rem; */
}
.c-offic-item .box-image div {
    position: relative;
    padding-top: 100%;
    height: 100%;
    display: block;
    overflow: hidden;
}
.c-offic-item .box-image div:hover::before {
    opacity: 1;
    transform: scale(1);
}
.c-offic-item .box-image div::before {
    content: "";
    position: absolute;
    left: 1rem;
    top: 1rem;
    right: 1rem;
    bottom: 1rem;
    border: 0.1rem solid white;
    z-index: 1;
    transition: 0.3s all ease-in-out;
    transform: scale(1.1);
    opacity: 0;
    border-radius: 0.4rem;
}
.c-offic-item .box-image:hover img {
    transform: translate(-50%, -50%) scale(1.05);
}
.c-offic-item img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s ease-in-out;
}
.c-offic-item .box-text-inner p strong {
    font-size: 1.6rem;
    transition: 0.3s ease-in-out;
}

.c-offic-item .box-text-inner p:nth-child(1) {
    margin-bottom: 4rem;
}
.c-offic-item .box-text-inner p:nth-child(1):hover strong {
    color: var(--fs-color-primary);
}
.c-offic-item .box-text-inner p:nth-child(3),
.c-offic-item .box-text-inner p:nth-child(5) {
    margin-bottom: 16px;
}
.c-offic-item .box {
    display: flex;
    background: #F7F7F7;
    border-radius: 0.6rem;
    overflow: hidden;
    flex-wrap: nowrap;
}
.c-offic-item .box-text {
    width: 50%;
}
.c-offic-item .box-text a {
    font-size: 1.6rem;
    color: var(--fs-color-primary);
    padding-left: 10px;
}
.c-offic-item .box-text i {
    color: var(--fs-color-primary);
}

.c-offic-item,
.c-offic,
.c-subsi-left,
.c-subsi-right {
    padding-bottom: 0;
}
.c-subsi-item .box-image div {
    position: relative;
    padding-top: 100%;
    border-radius: 0.6rem;
    overflow: hidden;
}
.c-subsi-item .box-image div::before {
    content: "";
    position: absolute;
    left: 1rem;
    top: 1rem;
    right: 1rem;
    bottom: 1rem;
    border: 0.1rem solid white;
    z-index: 1;
    transition: 0.3s all ease-in-out;
    transform: scale(1.1);
    opacity: 0;
    border-radius: 0.4rem;
}
.c-subsi-item .box-image:hover div::before  {
    opacity: 1;
    transform: scale(1);
}
.c-subsi-item .box-image img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s ease-in-out;
}
.c-subsi-item .box-image:hover img {
    transform: translate(-50%, -50%) scale(1.05);
}
#main .c-subsi-item .box-text {
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    background: #FFFFFF;
    box-shadow: 0px 1rem 2rem rgba(0, 0, 0, 0.15);
    border-radius: 0.6rem;
    width: calc(100% - 2.4rem);
    padding: 0;
}
.c-subsi-item .box-text .box-text-inner {
    padding: 1.5rem 1.7rem;
}
.c-subsi-item .box-text .box-text-inner p {
    font-weight: 600;
    color: #C32127;
    font-size: 1.4rem;
}
.c-subsi-item {
    padding-bottom: 5rem;
}
.c-subsi-right .slick-next:before,
.c-subsi-right .slick-prev:before {
    color: var(--fs-color-primary);
    font-size: 3rem;
}
.c-subsi-left h2 {
    margin-bottom: 0;
    font-size: 4rem;
}
.head.ani-txt h2 {
    font-size: 4rem;
    margin: 0;
}
.r-prize-list .c-prize-item .box {
    position: relative;
    cursor: pointer;
    overflow: hidden;
}
.r-prize-list .gallery-col .box-image {
    display: block;
    padding-top: calc((1 / 1) * 100%);
    position: relative;
    overflow: hidden;
    background-color: #F7F7F7;
    border-radius: 0.6rem;
}
.r-prize-list .gallery-col img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    object-fit: contain;
}
.r-prize-list .gallery-col .box-text p {
    color: #191919;
    font-weight: 600;
    text-align: center;
    font-size: 1.6rem;
}
.c-prize {
    padding-bottom: 0;
}
.home #main {
    padding-top: 0;
}
.sec-file {
    background-color: #F0F0F0;
}
.c-file-content p {
    color: var(--fs-color-primary);
    position: relative;
    padding-bottom: 1rem;
    font-weight: 600;
    opacity: 0;
    transition: inherit;
    padding-bottom: 10px;
    margin-bottom: 12px;
}
.c-file-content p.is-inview {
    animation: fadeUp 1s ease-out forwards;
    opacity: 1;
}
.c-file-content p::after {
    content: "";
    width: 0;
    height: 0.2rem;
    background-color: var(--fs-color-primary);
    position: absolute;
    bottom: 0;
    left: 0;
    transition: 0.4s;
    transition-delay: 1.2s;
    left: 50%;
    transform: translateX(-50%);
}
.c-file-content p.is-inview::after {
    width: 2.6rem;
    transition-delay: 0.5s;
}
.c-file-content h2 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.4;
    transition: inherit;
    opacity: 0;
    margin: 0;
}
.c-file-content h2.is-inview {
    /* opacity: 1; */
    animation: fadeUp 1s ease-out forwards;
    animation-delay: 0.3s;
}
.r-file-content {
    margin-bottom: 24px;
}
#main .r-file-wr {
    margin-top: -10rem;
    padding-bottom: 100px;
}
.c-file-wr {
    padding-bottom: 0;
}
/* #main .df-popup-thumb img {
    height: revert-layer;
} */
#main .df-posts>.df-popup-thumb {
    width: calc(25% - 30px);
}
.df-popup-thumb .df-book-page1,
.df-popup-thumb .df-book-page2 {
    display: none;
}
#main .df-popup-thumb .df-book-wrapper {
    box-shadow: none;
}
.df-popup-thumb:hover .df-book-wrapper,
.df-popup-thumb:hover .df-book-cover {
    transform: none  !important;
}
#main .df-popup-thumb .df-book-title {
    opacity: 1;
    color: #000;
    box-shadow: none;
    font-size: 1.6rem;
    bottom: -10%;
    transition: 0.4s ease-in-out;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
#main .df-popup-thumb .df-book-cover {
    box-shadow: none;
    overflow: visible;
    display: block;
    padding-top: calc((1 / 1) * 100%);
    position: relative;
}
#main .df-popup-thumb .df-book-cover img {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 80%;
        height: 80%;
        object-fit: contain;
}
#main .df-posts>.df-popup-thumb:hover span.df-book-title {
    color: var(--fs-color-primary);
}
#main .df-posts {
    max-width: 100%;
    text-align: start;
}

.r-cata.bot {
    padding: 80px 0;
}
.sec-qc {
    background-color: var(--fs-color-primary);
}
#main .r-about-product-slider {
    max-width: calc(100vw - (100vw - 121.5rem) / 2);
    padding: 0;
    margin: 0;
    margin-left: auto;
    padding-left: 1.5rem;
}
#main .r-about-pro {
    max-width: 100%;
}
.c-about-pro-right {
    height: 26rem;
    margin-top: 2.4rem;
    position: relative;
    pointer-events: none;
}
.c-about-pro-right .col-inner .qc-img-br {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    margin-top: 2.4rem;
}
.c-about-pro-right .col-inner .qc-img-br img {
    width: 100%;
    height: 100%;
}
#main .c-about-pro-right .col-inner .qc-img {
    width: 70%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    pointer-events: none !important;
}
.c-about-pro-left .col-inner {
    padding: 6.4rem 1.5rem 6.4rem 0;
}
.c-about-pro-left .col-inner p {
    font-size: 2.4rem;
    margin: 0;
    line-height: 37.2px;
    color: #fff;
    font-weight: 700;
}
.c-about-pro-left a.btn {
    margin: 0;
    margin-top: 2.4rem;
    border: 1px solid #fff
}
.c-about-pro-left a.btn span::after {
    content: "\f054";
    font-family: "Font Awesome 5 Pro";
    margin-left: 10px;
    font-weight: 400;
}
.r-about-pro {
    align-items: flex-end;
}
.c-cata .gallery-col .box {
    position: relative;
    border-radius: 0.6rem;
    overflow: hidden;
}
.c-cata .gallery-col .box-image {
    display: block;
    padding-top: calc((1 / 1) * 100%);
    position: relative;
    overflow: hidden;
}
.c-cata .gallery-col .box-image img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    object-fit: contain;
}
.c-cata .gallery-col .box-text {
    padding: 0;
}
.c-cata .gallery-col .box-text p{
    font-weight: 600;
    transition: 0.3s ease-in-out;
    color: #191919;
    font-size: 1.6rem;
    text-align: center;
}
.c-cata .gallery-col:hover .box-text p {
    color: var(--fs-color-primary);
}
.c-cata {
    padding-bottom: 0;
}
.field-list .product-category:nth-child(1) {
    flex-basis: 100%;
    max-width: 100%;
}
.field-list .product-category:nth-child(1) .box-image div {
    padding-top: 17.5%;
}
.field-list .product-category .box-image div {
    display: block;
    padding-top: calc((435 / 588) * 48.2%);
    position: relative;
    overflow: hidden;
    border-radius: 0.6rem;
}
.field-list .product-category .box-image img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.field-list .product-category .box {
    overflow: hidden;
    position: relative;
}
.field-list .product-category .box::before {
    position: absolute;
    content: "";
    inset: 0;
    background-color: #f8f8f8;
    z-index: 1;
    width: 100%;
    height: 100%;
    transform: translate(0);
    transition: 0.8s ease-out;
    -webkit-transition: 0.8s ease-out;
    -moz-transition: 0.8s ease-out;
    -ms-transition: 0.8s ease-out;
    -o-transition: 0.8s ease-out;
    transition-delay: 0s;
    -webkit-transition-delay: 0s;
    -moz-transition-delay: 0s;
    -ms-transition-delay: 0s;
    -o-transition-delay: 0s;
    pointer-events: none;
    z-index: 3;
}
.field-list .product-category .box.is-inview::before {
    transform: translate(0, 110%);
}
.field-list .product-category .box::after {
    position: absolute;
    content: "";
    inset: 0;
    background-color: #f8f8f8;
    z-index: 1;
    width: 100%;
    height: 100%;
    transform: translate(0);
    transition: 0.8s ease-out;
    -webkit-transition: 0.8s ease-out;
    -moz-transition: 0.8s ease-out;
    -ms-transition: 0.8s ease-out;
    -o-transition: 0.8s ease-out;
    transition-delay: 0s;
    -webkit-transition-delay: 0s;
    -moz-transition-delay: 0s;
    -ms-transition-delay: 0s;
    -o-transition-delay: 0s;
    pointer-events: none;
    z-index: 3;
}
.field-list .product-category .box.is-inview::after {
    transform: translate(0, -110%);
}
.field-list .product-category .box-image div::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 66.67%, #000000 100%);
}
.field-list .product-category .box-text {
    z-index: 2;
}
.field-list .product-category .box-text .box-text-inner {
    position: absolute;
    z-index: 2;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 2.4rem;
    column-gap: 1.6rem;
    pointer-events: none;
}
.field-list .product-category .box-text .box-text-inner h5.header-title {
    color: white;
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 1.5;
}
.field-des {
    color: white;
    position: relative;
    transition: 0.5s linear;
    overflow: hidden;
    margin-top: 1.6rem;
}
@media screen and (min-width: 1201px) {
    .field-des {
        max-height: 0;
        margin-top: 0;
    }
}
.field-des::before {
    content: "";
    position: absolute;
    width: 1rem;
    background-color: #C32127;
    height: 100%;
    top: 0;
    left: 0;
    transition: 0.3s ease-in-out;
}
@media screen and (min-width: 1201px) {
    .field-des::before {
        height: 0;
    }
}
.field-des .text {
    overflow: hidden;
    margin-left: 3rem;
}
.field-des .text-inner {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: 0.3s ease-in-out;
    transform: translate(-100%, 0);
    font-size: 1.6rem;
}

@media screen and (min-width: 1201px) {
    .field-des .text-inner {
        opacity: 0;
        visibility: hidden;
        transform: translate(-100%, 0);
    }
}
@media screen and (hover: hover) and (min-width: 1201px) {
    .field-list .product-category .box:hover .field-des {
        max-height: 15rem;
        transition: 0.6s ease-in-out;
        margin-top: 1.6rem;
    }
}
@media screen and (hover: hover) and (min-width: 1201px) {
    .field-list .product-category .box:hover .field-des::before {
        height: 100%;
        transition: 0.5s ease-in-out 0.6s;
    }
}
@media screen and (hover: hover) and (min-width: 1201px) {
    .field-list .product-category .box:hover .field-des .text-inner {
        opacity: 1;
        visibility: visible;
        transform: translate(0, 0);
        transition: 0.4s ease-in-out 1s;
    }
}

.category-page-row .large-9 p.text-center,
.category-page-row .large-9 .all-title-order .title-order,
.category-page-row .large-9 .shop-container .term-description  {
    display: none;
}
.sidebar-inner  {
    border: 1px solid #e6e6e6;
    padding: 0 15px;
}
.c-widget .widget-title h2 {
    margin: 0;
    font-size: 1.6rem;
    padding: 16px 0;
    border-bottom: 0.1rem solid #e6e6e6;
}
.category-page-row .large-3 {
    flex-basis: 20%;
    max-width: 20%;
}
.category-page-row .large-9 {
    flex-basis: 80%;
    max-width: 80%;
}
.category-page-row .large-3 .product-category.col {
    padding: 0 10px;
}
.category-page-row .large-3 .widget-list .box-text {
    padding: 0;
}
.category-page-row .large-3 .widget-list .box-text{
    margin-top: 16px;
}
.c-widget {
    padding-bottom: 0;
}
.category-page-row .large-3 .widget-list .box-text-inner h5 {
    font-size: 1.6rem;
    color: #565656;
    transition: 0.3s ease-in-out;
}
.category-page-row .large-3 .widget-list .box-text-inner h5:hover {
    color: var(--fs-color-primary);
}
.product-small.box a.quick-view {
    display: none;
}

.product-small.col .image-fade_in_back {
    background-color: #f5f5f5;
    border-radius: 0.8rem;
    position: relative;
    overflow: hidden;
    padding-top: 100%;
    height: initial;
    position: relative;
}
.product-small.col .image-fade_in_back img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.product-small.col .product-title a  {
    display: -webkit-inline-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    color: #191919;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    margin-block: 0.6rem;
    font-size: 1.8rem;
    line-height: 1.4;
}
.product-small.col .product-title a:hover {
    color: var(--fs-color-primary);
}
a.btn.read-more-button {
    color: #fff;
    z-index: 1;
    display: flex;
    gap: 10px;
    font-size: 1.6rem;
    padding: 8px 20px;
    margin-top: 10px;
}
a.btn.read-more-button::after {
    z-index: -1;
}
a.btn.read-more-button::before {
    content: url("https://shgroup.theme.trueads.vn/wp-content/uploads/2025/04/ic-phone.svg");
    background-position: center;
    background-size: cover;
    display: block;
    filter: brightness(0) saturate(100%) invert(91%) sepia(0%) saturate(7462%) hue-rotate(275deg) brightness(109%) contrast(106%);
    width: 24px;
    height: 24px;
}
.product-small.col .box-excerpt {
    --pos: 1.6rem;
    position: absolute;
    left: 50%;
    bottom: var(--pos);
    transform: translate(-50%, 3rem);
    width: calc(100% - (var(--pos) * 2));
    background: rgba(0, 0, 0, 0.4);
    border-radius: 0.4rem;
    padding: 0.8rem;
    transition: all 0.8s cubic-bezier(0.61, 0.22, 0.23, 1);
    -webkit-transition: all 0.8s cubic-bezier(0.61, 0.22, 0.23, 1);
    -moz-transition: all 0.8s cubic-bezier(0.61, 0.22, 0.23, 1);
    -ms-transition: all 0.8s cubic-bezier(0.61, 0.22, 0.23, 1);
    -o-transition: all 0.8s cubic-bezier(0.61, 0.22, 0.23, 1);
    opacity: 0;
    pointer-events: none;
}
@media (hover: hover) {
    .product-small.col:hover .box-excerpt {
        transform: translate(-50%, -14rem);
        opacity: 1;
        pointer-events: auto;
    }
}
.product-small.col .box-excerpt li,.product-small.col .box-excerpt {
    color: #fff;
    margin-bottom: 0;
    font-size: 1.6rem;
}
.c-pro-details-left .image-tools.absolute {
    display: none;
}
.c-pro-details-left .product-thumbnails .is-nav-selected a,
.c-pro-details-left .product-thumbnails a:hover {
    border-color: var(--fs-color-primary);
    border-radius: 0.4rem;
    padding: 8px;
}
.c-pro-details-left .product-thumbnails a {
    padding: 8px;
}
.c-pro-details-left .flickity-button {
    display: none;
}
.c-pro-details-left .woocommerce-product-gallery__image {
    border: 1px solid #e6e6e6;
    border-radius: 0.4rem;
    padding: 8px;
}
.c-pro-details-right h1.product-title {
    font-size: 2.5rem;
    border-bottom: 0.1rem solid #e6e6e6;
    padding-bottom: 1.6rem;
    line-height: 1.3;
    color: var(--color-txt);
    margin: 0;
}
.c-pro-details-right .product-short-description {
    padding: 12px 0 12px 20px;
    color: #565656;
    border-bottom: 0.1rem solid #e6e6e6;
}
.c-pro-details-right .product-short-description li {
    margin: 0;
    font-size: 1.6rem;
}
.c-pro-details-right .product-short-description ul {
    margin: 0;
}
.r-aside-discount {
    padding: 16px 0;
}
.r-aside-discount .c-aside-discount .col-inner {
    background-color: #fff2f3;
    padding: 3.2rem;
    border-radius: 0.8rem;
}
.aside-discount-title h3 {
    font-size: 2.4rem;
    margin: 0;
    color: var(--color-txt);
}
.aside-discount-title h3::before {
    content: url("https://shgroup.theme.trueads.vn/wp-content/uploads/2025/04/ic-checked.svg");
    background-size: cover;
    background-position: center;
    width: 40px;
    height: 40px;
}
.aside-discount-title h3 {
    display: flex;
    align-items: center;
    column-gap: 1.6rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid #e6e6e6;
}
.aside-discount-list p {
    margin: 0;
    margin-top: 12px;
}
.aside-discount-list p::before {
    content: url("https://shgroup.theme.trueads.vn/wp-content/uploads/2025/04/ic-checked-red.svg");
    background-size: cover;
    background-position: center;
    width: 12px;
    height: 9px;
    margin-right: 16px;
}
.aside-discount-list p span{
    padding: 1.2rem 1.6rem;
    border-radius: 0.8rem;
    background-color: var(--fs-color-primary);
    border: 1px solid var(--fs-color-primary);
    color: #fafafa;
    display: inline-block;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    margin-inline: 1.2rem;
}
@media (hover: hover) {
    .aside-discount-list p span:hover {
        background-color: #fafafa;
        color: var(--fs-color-primary);
    }
}
.c-aside-discount {
    padding-bottom: 0;
}
.c-pro-details-right a.btn.read-more-button {
    margin: 0;
    margin-top: 10px;
    padding: 10px 24px;
}
.c-pro-details-right a.btn.read-more-button::before {
    width: 24px;
    height: 24px;
}
.r-des {
    padding: 60px 0;
    padding-bottom: 0;
}
.c-des-left ,
.c-des-right {
    border: 1px solid #e6e6e6;
    padding: 46px 25px;
    border-bottom: none;
}
.c-des-right {
    border-left: none;
}
.des-title h3 {
    font-size: 2.4rem;
    color: var(--color-txt);
    margin: 0;
}
.c-des-right .thong-so-ky-thuat th {
    width: 35%;
    padding-block: 1.4rem;
    text-transform: initial;
    font-weight: 400;
    font-size: 1.6rem;
}
.c-des-right .thong-so-ky-thuat td {
    color: #808080;
    padding-block: 1.4rem;
    font-size: 1.6rem;
}
.c-des-left,
.c-des-right {
    padding-bottom: 0;
}
#main .sec-pro-related {
    padding: 65px 0;
    background-color: #f5f5f5;
}
#main .product-section {
    border: none;
}
h3.product-section-title-related {
    text-align: center;
    color: var(--color-txt);
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 5;
    padding-inline: 2.4rem;
    font-size: 2.4rem;
    font-weight: 400;
    text-transform: initial;
}
h3.product-section-title-related::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    left: 0;
    width: 38%;
    height: 0.1rem;
    background-color: var(--fs-color-primary);
}
h3.product-section-title-related::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(50%);
    right: 0;
    width: 38%;
    height: 0.1rem;
    background-color: var(--fs-color-primary);
}
.sec-pro-related .row.large-columns-4 {
    margin-top: 2.4rem;
}
.sec-pro-related .product-small.col .image-fade_in_back {
    background-color: #fff;
}
#main .sec-hfield .field-list .product-category:nth-child(1) {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
}
#main .sec-hfield .field-list .product-category .box-image div,
#main .sec-hfield .field-list .product-category:nth-child(1) .box-image div {
    padding-top: 100%;
}
#main .sec-hfield .field-list .product-category .box::before,
#main .sec-hfield .field-list .product-category .box::after {
    content: none;
}
.hintro-br {
    position: absolute;
    z-index: -1;
    pointer-events: none;
    top: -10rem;
    right: 0;
    opacity: 0.1;
}
.c-hintro-left p {
    font-size: 2.4rem;
    margin-bottom: 2.4rem;
    font-weight: 500;
}
.c-hintro-left p:nth-child(1) {
    color: var(--fs-color-primary);
    position: relative;
    padding-bottom: 1rem;
    font-weight: 600;
    opacity: 0;
    transition: inherit;
    margin-bottom: 1.2rem;
    font-size: 1.6rem;
}
.c-hintro-left p:nth-child(1).is-inview {
    animation: txt-left 1s ease-out forwards;
}
.c-hintro-left p:nth-child(1):after {
    content: "";
    width: 0;
    height: 0.2rem;
    background-color: var(--fs-color-primary);
    position: absolute;
    bottom: 0;
    left: 0;
    transition: 0.4s;
    transition-delay: 1.2s;
}
.c-hintro-left p:nth-child(1).is-inview:after {
    width: 2.6rem;
}
.c-hintro-left h3 {
    font-size: 4rem;
    line-height: 1.2;
    font-weight: 600;
    color: #191919;
    margin-bottom: 2.4rem;
    transform: translate(0px, 200px);
    transition: 1s ease-in-out;
    opacity: 0;
}
.title-all h3{
	    font-size: 4rem;
    line-height: 1.2;
    font-weight: 600;
    color: #191919;
}
.hintro-info.is-inview  h3,
.hintro-info.is-inview  p:nth-child(3),
.hintro-info.is-inview  p:nth-child(4),
.hintro-info.is-inview  p:nth-child(5) {
    transform: translate(0px, 0);
    opacity: 1;
}
.c-hintro-left p:nth-child(3) {
    color: var(--fs-color-primary);
    padding-left: 2.4rem;
    border-left: 0.4rem solid var(--fs-color-primary);
    margin-bottom: 1.2rem;
    font-size: 2.4rem;
    font-weight: 600;
    transform: translate(0px, 230px);
    transition: 1.2s ease-in-out;
    opacity: 0;
}
.c-hintro-left p:nth-child(4) {
    transform: translate(0px, 260px);
    transition: 1.4s ease-in-out;
    opacity: 0;
}
.c-hintro-left p:nth-child(5) {
    transform: translate(0px, 290px);
    transition: 1.6s ease-in-out;
    opacity: 0;
}
.c-hintro-left  a.btn span::after {
    content: "\f0a9";
    font-family: "Font Awesome 5 Pro";
}

.c-hintro-left a.btn span::after {
    padding-left: 8px;
    margin-left: 8px;
    border-left: 1px solid #fafafa4d;
}
.c-hintro-right-slide {
    padding: 0;
}
.c-hintro-right-slide .box-image div {
    display: block;
    padding-top: 130%;
    position: relative;
    overflow: hidden;
}
.c-hintro-right-slide .box-image div::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #fff;
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(50%, rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
    opacity: 0;
    z-index: 2;
    transform: skew(30deg);
    left: -50%;
}
.c-hintro-right-slide .box-image div:hover:after {
    left: 150%;
    transition: all 0.7s ease-in-out;
    opacity: 1;
}
.c-hintro-right-slide .box-image div::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 79.07%, #000000 100%);
}
.c-hintro-right-slide img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.r-hintro-right-slide .slick-list {
    border-radius: 0.6rem;
}
#main .r-hintro {
    max-width: calc(100vw - (100vw - 122.5rem) / 2);
    padding: 0;
    margin: 0;
    margin-left: auto;
    padding-left: 1.5rem;
}
.r-hintro-right-slide .box-text p {
    font-size: 1.6rem;
    margin: 0;
    color: #fff;
    font-weight: 600;
}
.r-hintro-right-slide .box-text {
    z-index: 10;
}
.sec-hqti .section-content {
    position: relative;
    overflow: hidden;
    padding: 10.4rem 0;
}
.sec-hqti .section-content::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    background: linear-gradient(253.85deg, #FFFFFF 32.97%, rgba(255, 255, 255, 0) 51.65%);
}
@media screen and (max-width: 1600px) {
    .sec-hqti .section-content::before {
        width: 130%;
    }
}
.hqti-br {
    left: 0;
    top: -15%;
    right: 0;
    bottom: 0;
    z-index: -2;
    position: absolute;
}
.hqti-br img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.r-hqti-content {
    padding: 0 10rem;
}
.c-hqti-content {
    max-width: 50%;
    margin-left: auto;
    flex-basis: 50%;
    padding: 0;
}
.c-hqti-content .hqti-title h2 {
    font-size: 3.4rem;
    margin-bottom: 80px;
    color: #000;
    font-weight: 700;
}
.c-hqti-content .hqti-title h2 span {
    color: var(--fs-color-primary);
}
.r-qti-list .c-qti-item {
    padding: 0 12px 24px;
}
.r-qti-list .c-qti-item {
    border-bottom: 0.1rem solid #0000001a
}
.r-qti-list .c-qti-item:nth-child(2n+1) {
    border-right: 0.1rem solid rgba(0, 0, 0, 0.1);
}
.r-qti-list .c-qti-item:nth-last-child(1),
.r-qti-list .c-qti-item:nth-last-child(2) {
    border-bottom: none;
}
.r-qti-list .c-qti-item h3 {
    font-size: 5rem;
    font-weight: 600;
    color: var(--fs-color-primary);
    white-space: nowrap;
    margin: 0;
}
.r-qti-list .c-qti-item p {
    margin: 0;
}
.hfield-br {
    position: absolute;
    top: 10rem;
    left: 0;
    background-color: #F7F7F7;
    width: 100%;
    bottom: 0;
    z-index: -2;
    border-left: 1.6rem solid #C32127;
}
#main .c-hfield-left {
    flex-basis: 20%;
    max-width: 20%;
    padding-bottom: 0;
    padding-top: 8rem;
    margin-right: 4rem;
    padding-right: 0;
}
#main .c-hfield-right {
    flex-basis: 80%;
    max-width: 80%;
    padding-bottom: 0;
    
}
#main .sec-hfield .section-content.relative {
    position: static !important;
}
#main .sec-hfield .r-hfield.field-list {
    max-width: calc(100vw - (100vw - 125.5rem) / 2);
    padding: 0;
    margin: 0;
    margin-left: auto;
    display: flex;
    flex-wrap: nowrap;
}
.c-hfield-right .slider-nav-reveal {
    overflow: visible;
}
.c-hfield-right .slider-nav-reveal .flickity-prev-next-button.previous {
    left: -32px !important;
    top: 50%;
    transform: translateX(0%);
}
.c-hfield-right .slider-nav-reveal .flickity-prev-next-button.next {
    left: -32px !important;
    top: 55%;
    transform: translateX(0%);
}
.c-hfield-right .slider-nav-reveal .flickity-prev-next-button,
.c-hfield-right .slider-nav-reveal .flickity-prev-next-button:hover {
    box-shadow: none;
    background-color: transparent;
}
.c-hfield-left .col-inner h3 {
    color: var(--fs-color-primary);
    position: relative;
    padding-bottom: 1rem;
    font-weight: 600;
    opacity: 0;
    transition: inherit;
    margin: 0;
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
}
.c-hfield-left .col-inner h3.is-inview {
    animation: txt-left 1s ease-out forwards;
}
.c-hfield-left .col-inner h3:after {
    content: "";
    width: 0;
    height: 0.2rem;
    background-color: var(--fs-color-primary);
    position: absolute;
    bottom: 0;
    left: 0;
    transition: 0.4s;
    transition-delay: 1.2s;
}
.c-hfield-left .col-inner h3.is-inview:after {
    width: 2.6rem;
}
.c-hfield-left .col-inner h2 {
    font-size: 4rem;
    color: var(--color-txt);
}
.c-hfield-left .col-inner p {
    color: #565656;
}
.c-hnews .col-inner h3 {
    color: var(--fs-color-primary);
    position: relative;
    padding-bottom: 1rem;
    font-weight: 600;
    opacity: 0;
    transition: inherit;
    margin: 0;
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
}
.c-hnews .col-inner h3.is-inview {
    animation: txt-left 1s ease-out forwards;
}
.c-hnews .col-inner h3:after {
    content: "";
    width: 0;
    height: 0.2rem;
    background-color: var(--fs-color-primary);
    position: absolute;
    bottom: 0;
    left: 0;
    transition: 0.4s;
    transition-delay: 1.2s;
}
.c-hnews .col-inner h3.is-inview:after {
    width: 2.6rem;
}
.sec-hnews .tabbed-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    overflow: hidden;
}
.sec-hnews .tabbed-content .tab-panels {
    grid-column: 1 / -1;
}
.sec-hnews .tabbed-content ul.nav {
    grid-column: 2 / -1;
    justify-content: flex-end;  
}
.sec-hnews .tabbed-content h4.uppercase.text-left {
    font-size: 4rem;
    line-height: 1.2;
    font-weight: 600;
    color: #191919;
    margin-bottom: 0;
    line-height: 73px;
}
.sec-hnews .tabbed-content ul.nav a {
    font-size: 1.6rem;
    padding: 24px 0;
    color: #565656;
}
.sec-hnews .tabbed-content ul.nav li + li {
    margin-left: 6rem;
    margin-right: 0;
}
.sec-hnews .tabbed-content ul.nav li.active a {
    color: var(--fs-color-primary);
}
.sec-hnews .tabbed-content ul.nav li:hover a {
    color: var(--fs-color-primary);
}
.sec-hnews .tabbed-content h4.uppercase.text-left:after {
    content: "";
    width: 1000%;
    height: 1px;
    background-color: #E8E8E8;
    bottom: 0;
    display: block;
}
.c-hnews-side-right .col.post-item .box-text {
    padding: 0;
    background-color: transparent;
    padding-left: 10px;
}
.c-hnews-side-right .col.post-item .image-cover {
    border-radius: 6px;
}
.c-hnews-side-right .col.post-item .box::before {
    content: none;
}
.c-hnews-side-left .col-inner,
.c-hnews-side-left .col-inner .row.large-columns-2.medium-columns-1,
.c-hnews-side-left .col-inner .row.large-columns-2.medium-columns-1 .post-item .box 
 {
    height: 100%;
}
.c-hnews-side-left .col-inner .row.large-columns-2.medium-columns-1 .post-item .box .box-image {
    height: 60%;
}
.c-hnews-side-left .col-inner .row.large-columns-2.medium-columns-1 .post-item .box .box-text {
    height: 40%;
}
.c-hnews-side-left,
.c-hnews-side-right,
.c-hnews {
    padding-bottom: 0;
}
.partner-decor {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    pointer-events: none;
}
.c-partner-title {
    padding-bottom: 0;
}
.sec-partner .slick-next:before,
.sec-partner .slick-prev:before {
    color: var(--fs-color-primary);
    font-size: 3rem;
}
.sec-partner .slick-slider-partner .partner-item:not(:last-child) .img-inner {
    border-right: 1px solid rgba(0, 0, 0, 0.2);
}

.partner-img:nth-child(1) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.sec-partner .slick-slider-partner .partner-item .img-inner {
    padding-top: 50%;
    position: relative;
}
.sec-partner .slick-slider-partner .partner-item img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 70%;
    object-fit: contain;
}
.partner-item {
    padding: 0;
}
.sec-partner  .slick-slider-partner .img {
    margin: 0;
}
.sec-partner .slick-prev {
    left: -40px;
}
.sec-partner .slick-next {
    right: -40px;
}
.header-inner .flex-left .header-nav .nav-icon {
    display: none;
}
#main-menu .header-search-form.search-form,
#main-menu .account-item,
#main-menu .header-newsletter-item,
#main-menu .header-social-icons {
    display: none !important;
}
#main-menu a {
    font-size: 1.4rem;
}
.r-conTact-thanks {
    display: none;
}
.blog-tuyen-dung .sec-opp {
    display: none;
}
.c-offic-item .box-text-inner p:nth-child(3) {
    color: #565656;
} 





        


/* RESPONSIVE */

/* r1*/
@media screen and (max-width: 1024px) {
.sec-hnews .tabbed-content ul.nav {
    grid-column: 1 / -1;
    justify-content: center;
}
.sec-hnews .tabbed-content h4.uppercase.text-left {
    grid-column: 1 / -1;
    font-size: 3.5rem;
}
.c-hfield-left .col-inner h2 {
    font-size: 3.5rem;
}
.c-hfield-right .slider-nav-reveal .flickity-prev-next-button.previous {
    top: 47%;
}
#main .sec-hfield .field-list .product-category .box-image div,
#main .sec-hfield .field-list .product-category:nth-child(1) .box-image div {
    padding-top: 112%;
}
.hfield-br {
    border-left: 0.3rem solid var(--fs-color-primary);
    top: 0;
}
#main .c-hfield-left {
    flex-basis: 30%;
    max-width: 30%;
}
.r-qti-list .c-qti-item h3 {
    font-size: 4.5rem;
}
.c-hqti-content .hqti-title h2 {
    font-size: 2.9rem;
}
.c-hintro-left a.btn {
    margin-bottom: 0;
}
#main .r-hintro {
    padding-left: 0;
}
    .c-hintro-left,
    .c-hintro-right {
        flex-basis: 100%;
        max-width: 100%;
    }
    #main .slide-home .flickity-slider .img .img-inner {
        padding-top: 40vh !important;
    }
    .c-about-pro-left .col-inner {
        padding: 5.4rem 1.5rem 5.4rem 0;
    }
    .c-about-pro-right .col-inner .qc-img-br .img-inner {
        height: 26rem;
    }
    .c-about-pro-left .col-inner p {
        font-size:2rem;
    }
    #main .ss-pd-t,
    .r-cata.bot {
        padding-top: 40px;
    } 
    .c-subsi-right .slick-prev {
        left: 29%;
        top: -15%;
    }
    .c-subsi-right .slick-next {
        right: 65%;
        top: -15%;
    }
    .c-subsi-left {
        max-width: 100%;
        flex-basis: 100%;
        padding-bottom: 2.4rem;
    }
    .c-subsi-right {
        max-width: 100%;
        flex-basis: 100%;
    }
    .c-offic-item .box-text-inner p strong {
        font-weight: 600;
    }
    .c-offic-item .box-text-inner p:nth-child(3) {
        min-height: 67px;
    }
    .c-offic-item .box-text-inner p:nth-child(1) {
        margin-bottom: 2rem;
    }
    #main .c-pricer-item-right .img  {
        width: 75% !important;
    }
    .c-pricer-item-right {
        flex-basis: 16.6666666667%;
        max-width: 16.6666666667%;
        top: 13%;
    }
    .c-pricer-item-left {
        max-width: 83.3333333333%;
        flex-basis: 83.3333333333%;
    }
    .c-pricer-content .accordion-inner {
        padding-bottom: 45px;
    }
    .c-pricer-content .accordion-title span {
        font-size: 2rem;
    }
    .accordion-title.active {
        padding-top: 35px;
    } 
    .pricer::after {
        width: 0.4rem;
    }
    .pricer {
        padding: 40px 0;
    }
    .road-content h3 {
        font-size: 4.3rem;
    }
    #main .sec-value ul {
        width: 83%;
    }
    #main .sec-value .tab-panels .panel h3 {
        font-size: 1.6rem;
    }
    .sec-grows-tabs.page-about .grows-tabs-content h2,
    .sec-road .c-road .head.ani-txt h2,
    .c-subsi-left h2 {
        font-size: 3.5rem;
        font-weight: 600;
    }
    .head.ani-txt h2 {
        font-weight: 600;
        font-size: 3.5rem;
    }
    #main .sec-qti .c-qti h2 {
        font-size: 4.5rem;
    }
    .aside-discount-title h3 {
        font-weight: 400;
    }
    .c-pro-related {
        padding-bottom: 0;
    }
    .sec-pro-related .product-small.col{
        max-width: 33.33%;
        flex-basis: 33.33%;
    }
    .r-des {
        padding: 40px 0;
    }
    .c-pro-details-right h1.product-title {
        font-size: 2.4rem;
        font-weight: 400;
    }
    #main .sec-product-detail.ss-pd {
        padding: 65px 0
    }
    .field-list .product-category .box-text .box-text-inner h5.header-title {
        font-size: 2rem;
    }
    .field-list .product-category .box-image div::before {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 39.67%, #000000 100%);
    }
    .field-des .text-inner {
        transform: translate(0%, 0);
        -webkit-line-clamp: 2;
    }
    .col.post-item .from_the_blog_excerpt {
        -webkit-line-clamp: 2;
    }
    #main .sec-grows-init {
        padding: 30px 0;
    }
    #main .c-grows-tabs .tab-panels .panel.active {
        min-height: 394px;
    }
    #main .c-grows-tabs .tab-panels .panel h4 {
        font-size: 2rem;
    }
    .c-grows-tabs .nav li a {
        font-size: 2rem;
    }
    #main .c-grows-tabs .tab-panels .panel.active {
        padding: 30px 20px
    }
    .c-grows-tabs .nav {
        padding-left: 0;
    }
    .c-grows-dec-right p {
        font-size: 2rem;
    }
    .c-grows-dec-left h2,
    .c-grows-tabs .tabs-title h2,
    #main .c-grows-tabs .tab-panels .panel h3,
    .sec-grows-init h2 {
        font-size: 3.5rem;
        font-weight: 600;
    }
    #main .grows-dec,
    #main .sec-grows-tabs {
        padding: 30px 0
    }
    #at_posts_related .flickity-prev-next-button.previous {
        left: 90%;
    }
    #at_posts_related .flickity-prev-next-button.next {
        right: 2%;
    }
    #at_posts_related {
        margin: 0;
    }
    #at_posts_related h3.posts-section-title-related {
        font-size: 3.5rem;
        text-transform: capitalize;
    }
    .blog-single .large-9 .entry-header-text h1,
    .blog-single h2 {
        font-weight: 600;
    }
    #main .blog-wrapper.blog-single {
        padding: 40px 0;
    }
    .blog-single .large-9 {
        padding: 0 15px;
    }
    .blog-single .large-9 .article-inner {
        margin: 0;
    }
    .sec-onews .col.post-item .post-title a {
        font-size: 2rem;
    }
    .sec-onews .col.post-item .box-text {
        padding: 24px;
    }
    .head.ani-txt h2 {
        font-size: 3.5rem;
    }
    .blog-tuyen-dung .blog-single .large-3 {
        flex-basis: 41.6666666667%;
        max-width: 41.6666666667%;
    }
    .blog-single .large-9 .entry-header-text h1 {
        font-size: 3.5rem;
    }
    .c-re-gr-right .col.post-item .post-title a {
        font-size: 2rem;
    }
    .c-re-gr-left,
    .c-re-gr-right {
        max-width: 100%;
        flex-basis: 100%;
    }
    .c-envi-left h2 {
        font-size: 3.5rem;
        width: 76%;
    }
    .c-culture {
        padding-bottom: 0;
    }
    .c-culture-item:nth-child(5) h3,
    .c-culture-item:nth-child(4) h3 {
        width: 100%;
    }
    #main .c-culture-item {
        padding: 0 12px !important;
        margin-bottom: 2.4rem;
    }
    .c-culture-item .culture-name {
        border: 0.2rem solid var(--fs-color-primary);
        padding: 2.4rem;
        border-radius: 0.6rem;
    }
    .c-culture-item:nth-child(4),
    .c-culture-item:nth-child(5) {
        margin-top: 0rem;
    }
    .c-culture-item {
        max-width: 50%;
        flex-basis: 50%;
    }
    .c-culture-item:last-child {
        margin: auto;
    }
    .c-culture-item p {
        text-align: center;
    }
    .c-culture-item h3 {
        padding: 0;
        font-size: 2.7rem;
        margin-bottom: 1.6rem;
    }
    .c-culture-item:nth-child(1) h3, .c-culture-item:nth-child(2) h3, .c-culture-item:nth-child(3) h3 {
        height: initial;
    }
    .c-culture-item p {
        display: flex;
        margin: 0;
    }
    .culture-border {
        display: none;
    }
    .t-title-first h2 {
        font-size: 3.5rem;
    }
    #header .header-main,
    #header .stuck .header-main {
        height: var(--size-hd-mb) !important;
    }
    #main {
        padding-top: var(--size-hd-mb);
    }
    #header .logo a {
        width: 12rem;
    }
    #header .logo-left .logo {
        margin: 0;
        width: 150px;
    }
    #header .header-inner .flex-left .header-nav li.menu-item {
        display: none !important;
    }
    .header-inner .flex-left .header-nav .nav-icon {
        display: unset;
        margin-left: auto !important;
    }
    #header .header-wrapper .flex-col.hide-for-medium.flex-left.flex-grow li a {
        color: var(--fs-color-primary);
        font-size: 1.8rem;
        padding-left: 10px;
    }
    #header .header-wrapper .flex-col.hide-for-medium.flex-left.flex-grow li a::before {
        content: "";
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        height: 2.8rem;
        width: 0.1rem;
        left: 0;
        background-color: var(--fs-color-primary);
    }
    .banner-posi {
        padding: 2.4rem;
    }
    .banner-breadcrumb-content {
        margin-left: 0;
    }
    .breadcrumb-title h1 {
        font-size: 4.5rem;
        line-height: 69px;
    }
    .r-conTact-thanks {
        display: unset;
        padding: 3rem 2rem;
    }

    .r-conTact-thanks p:nth-child(1) {
        font-size: 3.5rem;
        margin: 0;
        color: var(--fs-color-primary);
    }
    .r-conTact-thanks p:nth-child(2) {
        font-size: 1.6rem;
        margin: 0;
        color: #565656;
    }
    .r-conTact-thanks .content {
        padding-bottom: 0;
    }
    #main .sec-pd-100 {
        padding: 4rem 0;
    }
    .c-contact-l .contact-content p:first-child,
    .c-contact-r .wpcf7-form p.conTact-tt,
    #footer .c-footer-bot-left .footer-title p{
        font-size: 2rem;
    }
    .c-contact-l .contact-map {
        width: 100%;
    }
    .c-contact-net-left .titleL h2,
    .contact-net-count-item p:nth-of-type(2),
    .c-opp-content h2 {
        font-size: 3.5rem;
    }
    #main .ss-pd {
        padding: 40px 0;
    }
    .opp-decor .img-inner {
        top: 10px;
    }
    .c-footer-top .col-inner p {
        --dt: 2rem;
    }
    .c-footer-top .col-inner {
        justify-content: center;
    }
    .r-footer-mid .dsmall-item .icon-box-text .text p{
        font-size: 1.6rem;
    }
    .blog-tuyen-dung .blog-single .large-3 {
        padding-right: 15px;
        padding-left: 15px;
    }

    .blog-tuyen-dung .blog-single .large-9 {
        padding: 0 15px;
    }
    .hintro-info.is-inview h3 {
        font-size: 3.5rem;
    }
    .sec-hnews .tabbed-content ul.nav a {
        padding-top: 0;
    }
}

/* r9*/
@media screen and (max-width: 992px) and (min-width: 768px) and (orientation: landscape) {
    .field-list .product-category .box-text .box-text-inner h5.header-title {
        font-size: 1.8rem;
    } 
    .c-hintro-left p,
    .c-hintro-left p:nth-child(3) {
        font-size: 2rem;
    }
    #main .slide-home .flickity-slider .img .img-inner {
        padding-top: 100vh !important;
    }
    .sec-prize .r-prize-list .gallery-col  {
        max-width: 33.33%;
        flex-basis: 33.33%;
        padding-bottom: 0;
    }
    .c-offic-item .box {
        align-items: center;
    }
    .c-offic-item .box-text-inner p:nth-child(3) {
        min-height: initial;
    }
    .c-offic-item {
        max-width: 100%;
        flex-basis: 100%;
        margin-bottom: 2.4rem;
    }
    .c-pricer-item-right {
        top: 17%;
    }
    #main .sec-value h2 {
        font-size: 3.5rem;
    }
    #main .ss-pd-t {
        padding-top: 40px;
    }
    #main .c-grows-tabs .nav {
        width: 100%;
        padding: 0 15px;
        margin-bottom: 24px;
    }
    .sec-pro-related .product-small.col {
        max-width: 50%;
        flex-basis: 50%;
    } 
    h3.product-section-title-related::before,
    h3.product-section-title-related::after {
        width: 36%;
    }
    .c-des-left,
    .c-des-right {
        max-width: 50%;
        flex-basis: 50%;
    }
    #at_posts_related .flickity-prev-next-button.next {
        top: 4%;
    }
    #at_posts_related .flickity-prev-next-button.previous {
        left: 88%;
        top: 4%;
    }
    .blog-single .large-9 .article-inner {
        padding: 48px;
    }
    .envi-slide .slick-slide .box {
        border-radius: 0.6rem;
        overflow: hidden;
    }
    .envi-content {
        position: static;
        padding: 2.4rem;
        background: #f7f7f7;
        border-radius: 0;
    }
    .c-envi-right .box-image div {
        border-radius:  0;
    }
    .custom-pagination {
        display: none;
    }
    .c-envi-left h2 {
        width: 27%;
    }
    .c-envi-left,
    .c-envi-right {
        flex-basis: 100%;
        max-width: 100%;
    }
    .c-system-left .tab-panels .content-item+.content-item {
        margin-top: 0;
    }
    .c-system-left .tab-panels .col.small-12.large-12 .col-inner {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        overflow: hidden;
        gap: 10px;
    }
    .c-system-left .panel {
        overflow-x: hidden;
    }
    .c-system-right {
        margin-top: 20px;
    }
    .c-system-right .col-inner {
        min-height: 72rem;
    }
    .c-system-left,
    .c-system-right {
        flex-basis: 100%;
        max-width: 100%;
    }
    .c-contact-l .contact-content {
        margin: 0;
    }
    .c-contact-r .col-inner {
        padding: 2rem;
        height: 100%;
    }
    .c-contact-l .contact-map p {
        margin-bottom: 0;
    }
    .c-footer-top .col-inner p {
        --dt: 1rem;
    }
    .r-footer-mid .dsmall-item:first-child {
        flex-basis: 100%;
        max-width: 100%;
    }
    .r-footer-mid .dsmall-item{
        flex-basis: 50%;
        max-width: 50%;
    }
}

/* r7*/
@media screen and (max-width: 768px) {
.c-hnews-side-left,
.c-hnews-side-right {
    max-width: 100%;
    flex-basis: 100%;
}
.c-hnews-side-left .col.post-item {
    max-width: 50%;
    flex-basis: 50%;
}
.sec-hnews .tabbed-content h4.uppercase.text-left {
    font-size: 2.7rem;
}
.sec-hnews .tabbed-content ul.nav li+li {
    margin-left: 4rem;
}
#main .sec-hfield .field-list .product-category:nth-child(1) {
    flex-basis: 50%;
    max-width: 50%;
}
#main .sec-hfield .r-hfield.field-list {
    flex-wrap: wrap;
}
#main .c-hfield-right {
    flex-basis: 100%;
    max-width: 100%;
    padding: 0 15px;
    margin-bottom: 25px;
}
#main .c-hfield-left {
    max-width: 100%;
    flex-basis: 100%;
    padding: 0 15px;
    margin-bottom: 24px;
}
.r-qti-list .c-qti-item h3 {
    font-size: 3.4rem;
}
.c-hqti-content .hqti-title h2 {
    font-size: 2.4rem;
}
.sec-hqti .section-bg.fill.bg-fill.bg-loaded {
    opacity: 0.3;
}
.sec-hqti .section-content::before {
    content: none;
}
.c-hqti-content {
    max-width: 100%;
    flex-basis: 100%;
}
.c-hintro-left p:nth-child(3),
.c-hintro-left p {
    font-size: 1.7rem;
}
.hintro-info.is-inview h3 {
    font-size: 2.7rem;
}
.c-about-pro-left .col-inner p {
    line-height: initial
}
#main .c-about-pro-right .col-inner .qc-img {
    width: 85%;
}
.sec-prize .r-prize-list .gallery-col {
    padding-bottom: 0;
}
.c-subsi-item .box-text .box-text-inner p {
    font-size: 1.2rem;
}
.c-subsi-right .slick-next {
    right: 63%;
}
#main .sec-subsi.ss-pd {
    padding-top: 0;
}
.c-offic-item .box-text-inner p:nth-child(3) {
    min-height: initial;
}
.c-offic-item .box-text {
    width: 60%;
}
#main .c-offic-item .box-image  {
    width: 40% !important;
}
.c-offic-item {
    padding: 0 15px;
    margin-bottom: 24px;
    max-width: 100%;
    flex-basis: 100%;
}
#main .c-pricer-item-right .img {
    width: 90% !important;
}
.c-pricer-item-right {
    top: 16%;
}
.c-pricer-content .accordion-inner p::before {
    top: -5.6rem;
    bottom: -1.8rem;
}
.c-pricer-content .accordion-inner {
    padding-bottom: 30px;
}
.accordion-title.active {
    padding-top: 25px;
}
.c-pricer-content .accordion-title span {
    font-size: 1.7rem;
}
.road-content h3 {
    font-size: 3.3rem;
    line-height: 51px;
}
#main .ss-pd-t {
    padding-top: 40px;
}
.sec-grows-tabs.page-about .grows-tabs-content h2,
.sec-road .c-road .head.ani-txt h2,
.c-subsi-left h2,
#main .sec-value h2 {
    font-size: 2.7rem;
}
#main .sec-qti .c-qti h2 {
    font-size: 3.4rem;
    line-height: 52px;
}
#main .sec-qti .c-qti {
    max-width: 50%;
    flex-basis: 50%;
    padding: 0 15px;
    margin-bottom: 24px;
}
.sec-pro-related .product-small.col {
    max-width: 50%;
    flex-basis: 50%;
} 
.c-pro-details-left {
    margin: auto;
    max-width: 70%;
    flex-basis: 70%;
}
.c-des-right {
    max-width: 50%;
    flex-basis: 50%;
    padding: 30px 32px;
}
.c-des-left {
    max-width: 50%;
    flex-basis: 50%;
    padding: 30px 15px;
}
.c-pro-details-right
{
    max-width: 100%;
    flex-basis: 100%;
}
.c-widget {
    padding: 0;
}
.widget-list .product-category {
    padding-bottom: 0;
}
#main .category-page-row {
    margin-top: 80px;
}
.shop-page-title.category-page-title {
    padding: 0 !important;
    height: 0;
}
.page-title-inner.flex-row .flex-col.flex-grow div:first-child {
    display: none;
}
.shop-page-title.category-page-title.page-title .page-title-bg {
    display: none;
}
.shop-page-title.category-page-title.page-title {
    display: block;
}
.category-filtering.category-filter-row a {
    margin: 0;
}
.category-filtering.category-filter-row {
    position: absolute;
    background: var(--fs-color-primary);
    top: 639px;
    z-index: 5;
    padding: 15px 60px;
    color: #fff;
    font-size: 1.8rem;
    border-radius: 0.6rem;
    right: 39%;
}

    .category-page-row .large-3,
    .category-page-row .large-9 {
        flex-basis: 100%;
        max-width: 100%;
    }
    .field-list .product-category .box-text .box-text-inner h5.header-title {
        font-size: 1.7rem;
    }
    .field-list .product-category {
        flex-basis: 50%;
        max-width: 50%;
    }
    .c-grows-init .col.post-item {
        flex-basis: 50%;
        max-width: 50%;
    }
    #main .c-grows-tabs .tab-panels .panel.active {
        min-height: 301px;
    }
    .c-grows-tabs .nav {
        width: 100%;
        margin-bottom: 2.4rem;
    }
    .c-grows-dec-left h2,
    .c-grows-tabs .tabs-title h2,
    #main .c-grows-tabs .tab-panels .panel h3,
    .sec-grows-init h2 {
        font-size: 2.7rem;
        font-weight: 600;
    }
    .c-grows-dec-left,
    .c-grows-dec-right {
        max-width: 100%;
        flex-basis: 100%;
    }
    .blog-single .large-9 .article-inner {
        padding: 48px;
    }
    .sec-news .col.post-item {
        flex-basis: 33.33%;
        max-width: 33.33%;
    }
    .sec-news .tabbed-content ul li+li {
        margin-left: 3rem;
    }
    .head.ani-txt h2 {
        font-size: 2.7rem;
    } 
    .sec-onews .col.post-item .post-title a {
        font-size: 1.7rem;
    }
    #block_widget-2 {
        margin-top: 0;
    }
    .blog-tuyen-dung #main .blog-wrapper.blog-single {
        padding-bottom: 0;
    }
    .blog-single .large-3 {
        padding-top: 0;
    }
    .blog-single h3 {
        font-size: 1.7rem;
    }
    .blog-single .large-9 .entry-header-text h1 {
        font-size: 2.7rem;
    } 
    .blog-tuyen-dung .blog-single .large-3,
    .blog-tuyen-dung .blog-single .large-9 {
        flex-basis: 100%;
        max-width: 100%;
    }
    .recruit-bot {
        flex-wrap: wrap;
    }
    .c-envi-left h2 {
        width: 33%;
        font-size: 2.7rem;
    }
    .envi-slide .slick-slide .box {
        border-radius: 0.6rem;
        overflow: hidden;
    }

    .envi-content {
        position: static;
        padding: 2.4rem;
        background: #f7f7f7;
        border-radius: 0;
    }

    .c-envi-right .box-image div {
        border-radius: 0;
    }

    .custom-pagination {
        display: none;
    }

    .c-envi-left h2 {
        width: 27%;
    }

    .c-envi-left,
    .c-envi-right {
        flex-basis: 100%;
        max-width: 100%;
    }
    .t-title-first h2 {
        font-size: 2.7rem;
    } 
    .c-culture-item:nth-child(4) .culture-name h3 {
        height: initial;
    }
    .c-culture-item .col-inner,
    .c-culture-item .col-inner .culture-name {
        height: 100%;
    }
    .c-culture-item h3 {
        font-size: 2.2rem;
    }
    .c-system-left .tab-panels .content-item+.content-item {
        margin-top: 0;
    }

    .c-system-left .tab-panels .col.small-12.large-12 .col-inner {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        overflow: hidden;
        gap: 10px;
    }

    .c-system-left .panel {
        overflow-x: hidden;
    }

    .c-system-right {
        margin-top: 20px;
    }

    .c-system-right .col-inner {
        min-height: 72rem;
    }

    .c-system-left,
    .c-system-right {
        flex-basis: 100%;
        max-width: 100%;
    }
    #footer .c-footer-bot-right .img {
        display: none;
    }
    #footer .c-footer-top .col-inner p {
        padding: 0 0.8rem;
        margin-bottom: 1.6rem;
        border: none;
        --dt: 0;
    }
    .c-footer-top .col-inner {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        overflow: hidden;
    }
    #footer .c-footer-top .custom-logo {
        width: 23.4rem;
        margin: 0 auto;
        margin-bottom: 4.8rem;
        display: block;
        grid-column: 1 / -1;
    }
    .r-footer-mid .dsmall-item:first-child {
        flex-basis: 100%;
        max-width: 100%;
    }
    .r-footer-mid .dsmall-item {
        flex-basis: 50%;
        max-width: 50%;
    }
    .contact-net-count-item p:nth-of-type(2)::before {
        top: 50%;
    }
    .contact-net-count-item:nth-child(1) p:nth-of-type(2)::before,
    .contact-net-count-item:nth-child(1)::after {
        content: none;
    }
    .contact-net-count-item {
        width: 33.3333333333%;
    }
    .contact-net-count-item+.contact-net-count-item {
        padding-top: 0;
    }
    #main .c-contact-net-right .col-inner {
        flex-direction: row;
        width: 100%;
        background-color: #ffffff;
        padding: 1rem 0;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
        border-radius: 0.6rem;
    }
    .c-contact-net-left .titleL h2,
    .contact-net-count-item p:nth-of-type(2),
    .c-opp-content h2 {
        font-size: 2.7rem;
    }
    .c-contact-net-left,
    .c-contact-net-right,
    .c-contact-net-mid {
        max-width: 100%;
        flex-basis: 100%;
    }
    .c-contact-r .col-inner {
        padding: 2rem;
        width: 50rem;
        margin: auto;
    }
    .c-contact-l .contact-content p:first-child,
    .c-contact-r .wpcf7-form p.conTact-tt,
    #footer .c-footer-bot-left .footer-title p {
        font-size: 1.7rem;
    }
    .c-contact-r,
    .c-contact-l {
        max-width: 100%;
        flex-basis: 100%;
    }
    .r-conTact-thanks p:nth-child(1) {
        font-size: 2.7rem;
    }
    .breadcrumb-title h1 {
        font-size: 3.4rem;
        line-height: 52.7px;
    }
    #header .logo-left .logo {
        order: 1;
    }
    #header .medium-logo-center .flex-right .nav>li>a:hover {
        color: var(--fs-color-primary);
    }
    #header .medium-logo-center .flex-right .nav>li>a {
        color: var(--fs-color-primary);
        font-size: 1.8rem;
        padding-left: 10px;
    }
    #header .medium-logo-center .flex-right .nav>li>a::before {
        content: "";
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        height: 2.8rem;
        width: 0.1rem;
        left: 0;
        background-color: var(--fs-color-primary);
    }
    #footer .sec-pd {
        padding: 4rem 0;
    }
    
}

/* r3 */
@media screen and (max-width: 549px) {
    .c-hnews-side-right .col.post-item .box-vertical .box-image {
        width: 30% !important;
    }
	.conTact-thanks {
    position: static;
    padding: 0px 1.4rem;
}
	.banner-posi {
    bottom: -32px;
}
    .c-hnews-side-right .col.post-item .box.box-vertical {
        display: flex;
        align-items: flex-start ;
    }
    .c-hnews-side-left .recruit-bot,
    .c-hnews-side-right .recruit-bot {
        display: none;
    }
    .c-hnews-side-left .col-inner .row.large-columns-2.medium-columns-1 .post-item .box .box-image,
    .c-hnews-side-left .col-inner .row.large-columns-2.medium-columns-1 .post-item .box .box-text {
        height: initial;
    }
    .sec-hnews .tabbed-content {
        position: relative;
    }
    .sec-hnews .tabbed-content ul {
        position: absolute;
        left: 0;
        width: 100%;
        background-color: white;
        border-radius: 0.8rem;
        flex-wrap: wrap;
        display: none;
        top: 18%;
        z-index: 1000;
    }
.sec-hnews .tabbed-content ul.nav a {
    padding-bottom: 0;
}
.sec-hnews .tabbed-content ul.nav li+li {
    margin: 0;
}
.sec-hnews .tabbed-content ul.nav li {
    width: 100%;
    padding: 1.2rem 2.4rem;
}
.sec-hnews .tabbed-content .sidebar-dropdown-button {
    grid-column: 1 / -1;
    padding: 14px 24px;
}
.field-list .product-category .box-text .box-text-inner {
    text-shadow: none;
}
.c-hfield-left .col-inner h2 {
    font-size: 2.7rem;
    font-weight: 600;
}
    .r-qti-list .c-qti-item {
        max-width: 50%;
        flex-basis: 50%;
    }
    .c-hqti-content .col-inner {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
.r-hqti-content {
    padding: 0 1.5rem;
}
#main .slide-home .flickity-slider .img .img-inner {
    padding-top: 60vh !important;
}
.c-about-pro-left .col-inner p {
    font-size: 1.7rem;
}
.c-about-pro-left .col-inner {
    padding: 4rem 1.5rem 0 0;
}
.c-cata .row.large-columns-4 .gallery-col {
    padding-bottom: 0;
}
.c-subsi-right .slick-prev {
    left: 48%;
}
.c-subsi-right .slick-next {
    right: 35%;
}
.c-offic-item .box-text {
    width: 100%;
}
#main .c-offic-item .box-image {
    width: 100% !important;
} 
.c-offic-item .box {
    flex-wrap: wrap;
}
.c-pricer-item-right {
    top: 35%;
    right: -10px;
}
.c-pricer-content .accordion-inner p::before {
    top: -9.44rem;
    bottom: -3rem;
}
.c-pricer-content .accordion-title.active span {
    width: 73.333333%;
    display: inline-block;
}
.c-pricer-item-right {
    flex-basis: 26.6666666667%;
    max-width: 26.6666666667%;
}
.c-pricer-item-left {
    max-width: 73.333333%;
    flex-basis: 73.333333%;
}
.c-pricer-top .col-inner {
    flex-wrap: wrap;
    margin-bottom: 4rem;
}
.c-pricer-top .head.ani-txt {
    width: 90%;
    margin-bottom: 2.4rem;
}
.road-content {
    padding: 2.4rem
}
#main .sec-value .tabs-value {
        min-height: 500px;
}
#main .sec-value .tab-panels .panel p {
    font-size: 1.4rem;
}
#main .sec-value ul {
    width: 90%;
}
#main .sec-value li.tab:nth-child(1),
#main .sec-value li.tab:nth-child(3) {
    transform: translateY(7.5rem);
}
#main .sec-value li.tab {
    width: 10rem;
    height: 10rem;
}
#main .c-grows-tabs .tab-panels {
    padding: 0;
}
#main .sec-qti .c-qti:nth-child(3),
#main .sec-qti .c-qti:nth-child(4) {
    margin-bottom: 0;
}
#main .sec-qti .c-qti p {
    font-weight: 700;
}
#main .r-abi-bot {
    padding: 0 12px;
}
#main .sec-abi.ss-pd {
    padding-bottom: 40px;
}
.c-abi-bot-img:nth-child(2) {
    transform: translateY(20px);
}
.c-abi-bot-img {
    margin-bottom: 8px;
    padding: 0 4px;
    flex-basis: 33.33%;
    max-width: 33.33%;
}
#main .sec-pro-related .product-small.col {
    padding-bottom: 0;
}
a.btn.read-more-button {
    font-size: 1.4rem;
}
.product-small.col .product-title a {
    font-size: 1.6rem;
}
h3.product-section-title-related::before,
h3.product-section-title-related::after {
    width: 28%;
}
#main .sec-pro-related {
    padding: 40px 0;
}
.r-des {
    padding-bottom: 0;
}
.c-des-right {
    max-width: 100%;
    flex-basis: 100%;
    padding-right: 15px;
    padding-left: 15px;
}
.c-des-left  {
    max-width: 100%;
    flex-basis: 100%;
}
.aside-discount-list p span {
    padding: 5px 10px;
}
.c-pro-details-right .product-short-description li,
.aside-discount-list p,
.c-pro-details-right a.btn.read-more-button,
.c-des-right .thong-so-ky-thuat th,
.c-des-right .thong-so-ky-thuat td {
    font-size: 1.4rem;
}
.c-pro-details-right h1.product-title,
.aside-discount-title h3,
h3.product-section-title-related,
.des-title h3 {
    font-size: 1.6rem;
}
.c-pro-details-left {
    padding-bottom: 20px;
}
.r-breadcrumb-nor {
    font-size: 1.2rem;
}
#main .sec-product-detail.ss-pd {
    padding: 40px 0;
} 
.c-pro-details-left {
    max-width: 100%;
    flex-basis: 100%;
}
.category-filtering.category-filter-row {
    width: 50%;
    right: 25%;
}
.field-des {
    margin-top: 1rem;
}
.field-list .product-category {
    padding-bottom: 25px;
}
.field-des .text {
    margin-left: 1.5rem;
}
.field-des::before {
    width: 0.3rem;
}
.sec-field .box-overlay.dark .box-text,
.sec-field .box-shade.dark .box-text {
    text-shadow: none;
}
.field-list .product-category .box-text .box-text-inner h5.header-title {
    color: var(--color-txt);
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.field-des {
    color: var(--color-txt);
}
.field-list .product-category .box-text .box-text-inner {
    position: static;
    margin: 0;
}
.field-list .product-category .box-text  {
    position: static;
    padding: 0;
    padding-top: 10px;
}
.c-grows-tabs .nav li a {
    font-size: 1.6rem;
}
#main .c-grows-tabs .tab-panels .panel h4 {
    font-size: 1.7rem;
}
.c-grows-dec-right p {
 font-size: 1.7rem;
}
#at_posts_related .flickity-prev-next-button.previous {
    width: 26px !important;
    left: 81%;
    top: -9%;
}
#at_posts_related .col.post-item {
    max-width: 50%;
    flex-basis: 50%;
}
.blog-share {
    margin-top: 30px;
}
.blog-single .large-9 .article-inner {
    padding: 24px
}

#at_posts_related .flickity-prev-next-button.next {
    right: 3%;
    top: -9%;
    width: 26px !important;
}


#at_posts_related h3.posts-section-title-related {
    font-size: 2.7rem;
}
.sec-news .tabbed-content .nav li a,
.sec-news .tabbed-content .nav li a span {
    width: 100%;
}
.sec-news .tabbed-content .nav li {
    width: 100%;
    padding: 14px 24px;
    margin: 0;
}
.sec-news .tabbed-content .nav {
    display: none;
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: absolute;
    width: 100%;
    z-index: 1000;
    border-radius: 6px;
    top: 12%;
}

.sidebar-dropdown-button {
        width: 100%;
        background-color: var(--fs-color-primary);
        color: #fff;
        padding: 9px 12px;
        border-radius: 6px;
        text-align: left;
        cursor: pointer;
        border: none;
        line-height: 1;
        font-size: 1.6rem;
        font-weight: 400;
        margin-bottom: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-right: 0;
    }

    .sidebar-dropdown-button i {
        transition: transform 0.3s ease;
    }
    .col.post-item .box::before {
        content: none;
    }
    .col.post-item .from_the_blog_excerpt,
    .col.post-item .post-date {
        font-size: 1.3rem;
    }
    .col.post-item .post-title a {
        font-size: 1.4rem;
        min-height: initial;
    }
    .col.post-item .box-text {
        padding: 16px;
    }
    .sec-news .recruit-bot {
        display: none;
    }
    .sec-news .col.post-item {
        flex-basis: 50%;
        max-width: 50%;
    }
    #main .sec-onews .flickity-button.next,
    #main .sec-onews .flickity-button.previous {
        width: 30px !important;
    }
    .blog-single .large-3 .row-slider .flickity-page-dots {
        bottom: 0px;
    } 
    .blog-single .large-3 h3 {
        font-size: 1.7rem;
        margin: 20px 0;
    }
    .blog-single .large-3 .c-apply-info,
    .blog-single .large-3 .c-apply-relate {
        padding: 15px;
    }
    .re-gr a.button {
        padding: 12px 20px;
    }
    .col.post-item .post-title a,
    .col.post-item .post-title p {
        width: 100%;
    }
    .recruit-bot p {
        width: 100%;
    }
    .col.post-item .post-title {
        flex-wrap: wrap;
        gap: 1rem;
    }
    .c-re-gr-right .col.post-item .post-title a {
        font-size: 1.7rem;
    }
    .c-envi-left h2 {
        width: 47%;
    }
    .c-culture-item:nth-child(4),
    .c-culture-item:nth-child(5),
    .c-culture-item {
        max-width: 100%;
        flex-basis: 100%;
    }
    :root {
        --pd-section-md: 4rem;
    }
    .c-map-title h2 {
        font-size: 1.6rem;
    }
    .c-footer-bot-right .col-inner {
        align-items: center;
        padding-top: 20px;
    }
    .c-footer-bot-right {
        flex-basis: 100%;
        max-width: 100%;
    }
    .r-footer-mid .wpcf7-form .wpcf7-form-control-wrap .wpcf7-form-control {
        font-size: 1.6rem;
    }
    .r-footer-mid .dsmall-item {
        flex-basis: 100%;
        max-width: 100%;
    }
    .r-footer-mid .dsmall-item .icon-box-text .text p {
        font-size: 1.5rem;
    }
    #footer .c-footer-top .custom-logo {
        width: 18rem;
    }
    .c-footer-top .col-inner {
        grid-template-columns: repeat(2, 1fr);
    }
    .opp-decor .img-inner {
        top: 37px;
    }
    .c-contact-r .col-inner {
        width: 100%;
    }
    .banner-posi {
        padding: 1.6rem;
        width: 100%;
    }
    .breadcrumb-title h1 {
        font-size: 2.4rem;
        line-height: 37.2px;
    }
}



