:root {
    --primary-600: #389E9E;
    --primary-500: #74BBBB;
    --primary-400: #9BCFCF;
    --primary-300: #C3E2E2;
    --primary-200: #D7ECEC;
    --primary-100: #EBF5F5;
    --secondary-600: #F15A22;
    --secondary-500: #F58B64;
    --secondary-400: #F8AC90;
    --secondary-300: #FBCEBD;
    --secondary-200: #FCDED3;
    --secondary-100: #FEEFE9;
    --black-color: #2B323B;
    --dark-grey: #6B7076;
    --grey: #95989D;
    --light-grey: #D5D6D8;
    --extra-light: #EAEBEB;
    --light-bg: #F9F9F9;
    --white-600: rgba(255, 255, 255, 1);
    --white-500: rgba(255, 255, 255, 0.8);
    --white-400: rgba(255, 255, 255, 0.5);
    --white-300: rgba(255, 255, 255, 0.3);
    --white-200: rgba(255, 255, 255, 0.2);
    --white-100: rgba(255, 255, 255, 0.1);
    --bold-font: 'SVN-Nexa Bold';
    --light-font: 'SVN-Nexa Light';
    --heavy-font: 'SVN-Nexa Heavy';
}

@font-face {
    font-family: 'SVN-Nexa Bold';
    src: url('../font/SVN-Nexa\ Bold.ttf');
}

@font-face {
    font-family: 'SVN-Nexa Light';
    src: url('../font/SVN-Nexa\ Light.ttf');
}

@font-face {
    font-family: 'SVN-Nexa Heavy';
    src: url('../font/Nexa-Heavy.otf');
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: var(--white-600);
}

::-webkit-scrollbar {
    width: 4px;
    height: 4px;
    background-color: var(--white-600);
}

::-webkit-scrollbar-thumb {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: var(--primary-600);
}

strong {
    font-family: var(--bold-font);
}

.light-bg {
    background: var(--light-bg) !important;
}

ul,
ol {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

a,
a:hover {
    text-decoration: none;
}

body {
    font-size: 20px;
    font-family: var(--light-font);
    line-height: 32px;
    color: var(--black-color);
    font-weight: 400;
}

body.menu-opened {
    overflow: hidden;
}

body.menu-opened header.fixed-top {
    box-shadow: none;
}

.fw-700 {
    font-weight: 700;
    font-family: var(--bold-font);
}

.container {
    max-width: 1224px !important;
}

.icon {
    display: block;
    width: 24px;
    height: auto;
}

.btn-1 {
    background: var(--primary-600);
    color: var(--white-600);
    display: flex;
    align-items: center;
    width: fit-content;
    border-radius: 4px;
    padding: 10px 20px;
    line-height: 24px;
    opacity: 1;
    border: 1px solid var(--primary-600);
    font-family: var(--light-font);
    transition: all .3s ease-in-out;
}

.btn-icon_left .icon {
    margin-right: 10px;
}

.btn-icon_right .icon {
    margin-left: 10px;
}

.btn-radius_tl {
    border-top-left-radius: 80px;
    padding-left: 24px;
}

.btn-radius_bl {
    border-bottom-left-radius: 80px;
    padding-left: 24px;
}

.btn-radius_br {
    border-bottom-right-radius: 80px;
    padding-right: 24px;
}

.btn-bg_transparent {
    background: transparent;
    color: var(--primary-600);
}

.btn-2 {
    background: transparent;
    border: 1px solid var(--white-600);
    border-radius: 4px;
    display: flex;
    align-items: center;
    width: fit-content;
    padding: 10px 20px;
    color: var(--white-600);
    font-size: 16px;
    line-height: 24px;
    opacity: 1;
    font-family: var(--light-font);
    transition: all .3s ease-in-out;
}

.btn-3 {
    padding: 6px 20px;
    display: flex;
    align-items: center;
    width: fit-content;
    color: var(--white-600);
    background: var(--primary-600);
    font-size: 16px;
    border-radius: 99px;
    font-family: var(--light-font);
    opacity: 1;
    transition: all .3s ease-in-out;
}

.btn-3.white-bg{
    border: 1px solid var(--primary-600);
    background: var(--white-600);
    color: var(--primary-600);
}

.btn-1:hover,
.btn-2:hover,
.btn-3:hover {
    opacity: .85;
}

.btn-1:active,
.btn-2:active,
.btn-3:active {
    opacity: .75;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    font-family: var(--heavy-font);
}

h1.title {
    font-size: 56px;
    line-height: 72px;
}

h2.title {
    font-size: 44px;
    line-height: 64px;
    margin-bottom: 64px;
}

h3.title {
    font-size: 32px;
    line-height: 48px;
}

h4.title {
    font-size: 20px;
    line-height: 32px;
}

a.hover-text {
    position: relative;
    display: block;
    width: fit-content;
    transition: all .3s ease-in-out;
}

a.hover-text::after {
    content: '';
    position: absolute;
    width: 100%;
    left: 0;
    height: .063rem;
    bottom: -.125rem;
    background-color: var(--secondary-600);
    transform-origin: left;
    transform: scaleX(0);
    transition: all .3s ease-in-out;
}

a.hover-text:hover::after {
    transform: none;
}

a.hover-text:hover {
    color: var(--secondary-600);
}

a.hover-text .inner {
    overflow: hidden;
    pointer-events: none;
    display: block;
    position: relative;
}

a.hover-text .inner .hover {
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateY(calc(100% + 1rem));
    transition: transform .3s ease-in-out;
    color: var(--secondary-600);
}

a.hover-text .inner .normal {
    display: block;
    transition: transform .3s ease-in-out;
}

a.hover-text:hover .inner .hover {
    transform: translateY(0);
}

a.hover-text:hover .inner .normal {
    transform: translateY(-100%);
}

@keyframes fadeInBottom {
    from {
        opacity: 0;
        visibility: hidden;
        transform: translateY(20%);
    }

    to {
        opacity: 1;
        visibility: visible;
    }
}

.fadeInBottom {
    animation-name: fadeInBottom;
}

.section {
    padding-top: 120px;
}

.blog-thumb {
    position: relative;
    margin-bottom: 16px;
    border-radius: 16px;
    overflow: hidden;
}

.blog-thumb img {
    width: 100%;
    height: 100%;
}

.blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.blog-category,
.category {
    display: inline-block;
    padding: 2px 12px;
    border-radius: 8px;
    border: 1px solid rgba(43, 50, 59, 0.5);
    color: var(--black-color);
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    background: rgba(43, 50, 59, 0.04);
}

.blog-date {
    display: flex;
    align-items: center;
    color: var(--dark-grey);
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
}

.blog-date span.icon {
    width: 20px;
    margin-right: 5px;
}

.blog-content .title a {
    color: var(--black-color);
    transition: all .3s ease-in-out;
}

.blog-content .title a:hover {
    color: var(--primary-600);
}

.blog-content h4.title {
    line-height: 28px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-badge {
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    padding: 8px 24px 8px 16px;
    background: var(--secondary-600);
    border-bottom-right-radius: 99px;
    color: var(--white-600);
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    border-bottom: 1px solid var(--white-400);
    border-right: 1px solid var(--white-400);
}

.blog-desc {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 0;
    color: var(--dark-grey);
    font-weight: 700;
}

.blog-author {
    margin-top: 16px;
    display: flex;
    align-items: center;
    font-size: 12px;
    line-height: 16px;
    font-weight: 700;
}

.blog-author .author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 8px;
}

.blog-author .author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

a.link {
    color: var(--dark-grey);
    line-height: 28px;
    font-weight: 700;
    font-family: var(--bold-font);
    transition: all .3s ease-in-out;
}

a.link:hover {
    color: var(--primary-600);
}

.pb-60 {
    padding-bottom: 60px !important;
}

.pt-40 {
    padding-top: 40px !important;
}

.pt-80 {
    padding-top: 80px !important;
}

.pb-80 {
    padding-bottom: 80px !important;
}

.nav-tabs {
    border-bottom: none;
    flex-wrap: nowrap;
    width: max-content;
    margin: 0 auto;
}

.nav-tabs .nav-link {
    margin-right: 8px;
    padding: 11px 24px;
    line-height: 28px;
    font-weight: 700;
    color: var(--black-color);
    border-radius: 8px;
    border: 1px solid transparent;
    transition: all .3s ease-in-out;
}

.nav-tabs .nav-item:last-child .nav-link {
    margin-right: 0;
}

.nav-tabs .nav-link.active {
    border-color: var(--primary-600);
    color: var(--primary-600);
    background: var(--primary-100);
}

.nav-tabs .nav-link:hover {
    color: var(--primary-600);
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}

.pagination a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(233, 235, 238, 1);
    border-radius: 8px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    color: var(--black-color);
    cursor: pointer;
    transition: all .3s ease-in-out;
}

.pagination a:hover,
.pagination a.active {
    color: var(--white-600);
    background: var(--primary-600);
    border-color: var(--primary-600);
}

.pagination span .icon {
    width: 20px;
}

.pagination a.pagination-item {
    margin-right: 4px;
}

.pagination a.prev {
    margin-right: 16px;
}

.pagination a.next {
    margin-left: 12px;
}

.form-control,.form-select {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: var(--grey);
    padding: 12px;
    border-radius: 8px;
    border: 1px solid var(--light-grey);
    font-family: var(--bold-font);
}

select.form-control {
    padding-right: 40px;
}

.form-control:focus,.form-select:focus {
    border-color: var(--primary-600);
    box-shadow: 0 0 0 .25rem rgba(56, 158, 158, .25)
}

.search-input {
    position: relative;
}

.search .form-control {
    height: 48px;
}

.search-input .icon {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 12px;
    color: var(--dark-grey);
}

.search-result .result-item {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    color: var(--black-color);
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    transition: all .3s ease-in-out;
}

.search-result .result-item:hover {
    color: var(--primary-600);
}

.search-result .result-item span.icon {
    color: var(--dark-grey);
    width: 16px;
    margin-right: 8px;
}

.pr-0{
    padding-right: 0 !important;
}

.pl-0{
    padding-left: 0 !important;
}

.ad-item img {
    width: 100%;
    border-radius: 16px;
}

.ad-item {
    border-radius: 16px;
    margin-bottom: 24px;
}

.ad-item:last-child {
    margin-bottom: 0;
}

.blog-container:not(:last-child) {
    margin-bottom: 64px;
}

.blog-container h2.title {
    margin-bottom: 40px;
}

.blog-list .blog-item {
    display: grid;
    grid-template-columns: 35% 60%;
    column-gap: 24px;
    margin-bottom: 40px;
}

.blog-list .blog-item:last-child {
    margin-bottom: 0;
}

.blog-list .blog-thumb {
    margin-bottom: 0;
    border-radius: 16px;
    aspect-ratio: 3/2;
}

.blog-list .blog-desc {
    -webkit-line-clamp: 4;
}

.blog-content .desc {
    color: var(--dark-grey);
}

.breadcrumb {
    margin-top: 24px;
    padding-top: 24px;
    margin-bottom: 40px;
}

.breadcrumb a {
    display: flex;
    align-items: center;
    color: var(--dark-grey);
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    transition: all .3s ease-in-out;
}

.breadcrumb a:hover {
    color: var(--primary-600);
}

.breadcrumb a .icon {
    margin-right: 4px;
    width: 16px;
}

.tin-tuc header {
    background-image: none;
}

.blog-detail {
    padding-bottom: 120px;
}

.blog-detail h2.title {
    margin-bottom: 40px;
}

.blog-detail p {
    font-size: 16px;
    margin-bottom: 40px;
    font-weight: 600;
}

.blog-detail .list-dot {
    margin-bottom: 40px;
}

.blog-detail figure {
    width: 100%;
    margin-bottom: 40px;
    aspect-ratio: 16/9;
    border-radius: 16px;
    overflow: hidden;
}

.blog-detail figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 24px;
    row-gap: 44px;
}

.blog-grid .blog-item .blog-thumb {
    height: 240px;
}

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

.related-blog {
    padding-bottom: 120px;
}

.related-blog h2.title {
    text-align: center;
    margin-bottom: 64px;
}

.breadcrumb .nav-tabs-wrap {
    margin-bottom: 0;
    padding-bottom: 24px;
}

.overflow-auto{
    overflow-x: auto !important;
    overflow-y: hidden !important;
}

.nav-tabs.style-1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
}

.nav-tabs.style-1 .nav-link {
    display: block;
    text-align: center;
    width: 100%;
    border: none;
    color: var(--dark-grey);
    margin-right: 0;
    padding: 32px;
    border-radius: 0;
}

.nav-tabs.style-1 .nav-item:not(:last-child) .nav-link {
    border-right: 1px solid rgba(43, 50, 59, 0.1);
}

.nav-tabs.style-1 .nav-link:hover {
    color: var(--black-color);
}

.nav-tabs.style-1 .nav-link.active {
    background: transparent;
}

.nav-tabs.style-1 .nav-link .icon {
    width: 48px;
    height: 48px;
    margin: 0 auto;
    margin-bottom: 12px;
}

.nav-tabs.style-1 .nav-link .icon svg {
    width: 100%;
    height: 100%;
}

.nav-tabs.style-1 .nav-link.active,
.nav-tabs.style-1 .nav-link.active {
    color: var(--primary-600);
}

.search-style2 {
    position: relative;
}

.search-style2 input {
    width: 390px;
    padding-left: 40px;
    color: var(--grey);
}

.search-style2 .icon {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 12px;
    width: 20px;
    color: var(--grey);
}

.list-dot li {
    position: relative;
    padding-left: 16px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

.list-dot li::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--black-color);
}

.list-dot li:last-child {
    margin-bottom: 0;
}

.checkbox{
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    cursor: pointer;
}

.checkbox .text{
    margin-left: 10px;
}

.custom-checkbox {
    overflow: hidden;
    position: relative;
    width: 20px;
    height: 20px;
    border: 1px solid var(--light-grey);
    border-radius: 2px;
}

.custom-checkbox.active {
    border-color: var(--primary-600);
}

.custom-checkbox input {
    position: absolute;
    left: 100%;
    opacity: 0;
    visibility: hidden;
}

.custom-checkbox.active .checked.icon {
    opacity: 1;
    visibility: visible;
}

.custom-checkbox .checked {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-600);
    opacity: 0;
    width: 100%;
    visibility: hidden;
}

.custom-checkbox .checked.icon{
    color: var(--white-600);
}

.mobile-menu .language-checkbox .item .checked.icon {
    width: 100%;
    margin-right: 0;
    color: var(--white-600);
}

.mobile-menu .language-checkbox .item .checked.icon svg {
    width: 16px;
}

/* HEADER CSS */
header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    padding: 12px 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(42, 42, 42, 0.29), rgba(102, 102, 102, 0));
    transition: all .3s ease-in-out;
    z-index: 999;
}

.white-header header {
    background-image: none;
    border-bottom: 1px solid var(--light-grey);
    background: var(--white-600);
}

header .logo2,
header.fixed-top .logo1,
.white-header header .logo1 {
    display: none;
}

header.fixed-top .logo2,
.white-header header .logo2 {
    display: block;
}

header.fixed-top {
    background: var(--white-600);
    padding: 10px 0;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

header.fixed-top .has-dropdown .nav-link,
.white-header header .has-dropdown .nav-link {
    color: var(--black-color);
}

header.fixed-top .header-wrap_right ul .search-btn,
.white-header header .header-wrap_right ul .search-btn {
    color: var(--black-color)
}

header.fixed-top .header-wrap_right ul a:not(.btn-3){
    color: var(--black-color);
}

header.fixed-top .header-wrap_right ul a:not(.btn-3):hover{
    color: var(--primary-600);
}

.header-wrap_right ul a{
    position: relative;
    color: var(--white-600);
}

.header-wrap_right ul a .product-numb{
    position: absolute;
    top: 1px;
    right: -5px;
    font-weight: 700;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15px;
    height: 15px;
    background: var(--secondary-600);
    color: var(--white-600);
    border-radius: 50%;
}

.header-wrap_right ul a:not(.btn-3):hover,
.white-header .header-wrap_right ul a:not(.btn-3):hover{
    color: var(--primary-600);
}

.white-header .header-wrap_right ul a:not(.btn-3){
    color: var(--black-color);
}

.header-logo {
    display: block;
    max-width: 200px;
}

.header-logo img {
    width: 100%;
    height: auto;
}

.header-nav a {
    color: var(--white-600);
}

.header-nav {
    display: flex;
    align-items: center;
}

.header-nav li {
    display: block;
    margin-left: 32px;
}

.hedear-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.header-wrap_left {
    display: flex;
    align-items: center;
}

.header-wrap_right {
    display: flex;
    align-items: center;
}

.header-wrap_right .btn-2 {
    margin-left: 32px;
}

.header-wrap_right ul {
    display: flex;
    align-items: center;
    margin-right: 32px;
}

.header-wrap_right ul li:not(:last-child) {
    margin-right: 20px;
}

.header-wrap_right ul .lang img {
    width: 24px;
    height: 24px;
}

.header-wrap_right ul .search-btn {
    color: var(--white-600);
}

.header-wrap_right ul .search-btn {
    transition: all .3s ease-in-out;
}

.header-wrap_right ul .search-btn:hover,
.white-header header .header-wrap_right ul .search-btn:hover {
    color: var(--primary-600);
}

.has-dropdown .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    border-radius: 16px;
    border-bottom-left-radius: 80px;
    display: grid;
    grid-template-columns: 60% 40%;
    margin-top: 4px;
    box-shadow: 0 4px 32px 0 rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    animation-duration: 1s;
    animation-fill-mode: both;
    transition: all .3s ease-in-out;
}

.fixed-top .has-dropdown .dropdown {
    margin-top: 10px;
}

.has-dropdown:hover .dropdown {
    animation-name: fadeInBottom;
}

.has-dropdown .dropdown img {
    width: 100%;
}

.has-dropdown .dropdown-img {
    position: relative;
}

.has-dropdown .dropdown-content {
    position: relative;
    padding: 40px 0 40px 40px;
    display: grid;
    grid-template-columns: 50% 41%;
    column-gap: 60px;
    color: var(--black-color);
    border-bottom-left-radius: 80px;
    background: var(--white-600);
}

.has-dropdown .dropdown-content::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 100%;
    width: 20%;
    z-index: 2;
}

.has-dropdown .dropdown-content.style-1 {
    background: var(--primary-600);
}

.has-dropdown .dropdown-content.style-1::after {
    background-image: linear-gradient(to right, rgba(56, 158, 158, 1), rgba(56, 158, 158, 0.86), rgba(56, 158, 158, 0));
}

.has-dropdown .dropdown-content.style-2 {
    background: rgba(97, 145, 67, 1);
}

.has-dropdown .dropdown-content.style-2::after {
    background-image: linear-gradient(to right, rgba(97, 145, 67, 1), rgba(97, 145, 67, 0.86), rgba(97, 145, 67, 0));
}

.has-dropdown .dropdown-content.style-3 {
    background: rgba(16, 116, 188, 1);
}

.has-dropdown .dropdown-content.style-3::after {
    background-image: linear-gradient(to right, rgba(16, 116, 188, 1), rgba(16, 116, 188, 0.89), rgba(16, 116, 188, 0));
}

.has-dropdown .dropdown-content.style-4 {
    background: rgba(241, 90, 34, 1);
}

.has-dropdown .dropdown-content.style-4::after {
    background-image: linear-gradient(to right, rgba(241, 90, 34, 1), rgba(241, 90, 34, 0.89), rgba(241, 90, 34, 0));
}

.has-dropdown .dropdown-content::after {
    background-image: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0));
}

.header-nav .has-dropdown ul li {
    margin-left: 0;
    margin-bottom: 16px;
    line-height: 20px;
}

.has-dropdown .dropdown-content p {
    font-size: 16px;
}

.header-nav .has-dropdown ul li a {
    font-size: 14px;
    font-family: var(--light-font);
    color: var(--black-color);
}

.header-nav li:hover a.nav-link,
.header-nav a.nav-link:hover {
    color: var(--primary-600);
}

.has-dropdown .nav-link {
    position: relative;
    font-size: 16px;
    font-weight: 700;
}

.has-dropdown .nav-link::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: transparent;
    display: none;
    height: 100%;
}

.has-dropdown:hover .nav-link::before {
    display: block;
}

.has-dropdown a.hover-text:hover {
    color: var(--primary-600);
}

.has-dropdown a.hover-text::after {
    background: var(--primary-600);
}

header .menu-btn {
    position: relative;
    display: none;
    margin-left: 16px;
    height: 25px;
    width: 25px;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

header .menu-btn span,
header .menu-btn::before,
header .menu-btn::after {
    content: "";
    position: absolute;
    top: calc(50% - 1px);
    left: 0;
    width: 100%;
    border-bottom: 3px solid var(--black-color);
    transition: transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

header.fixed-top .menu-btn span,
header.fixed-top .menu-btn::before,
header.fixed-top .menu-btn::after {
    border-bottom: 3px solid var(--black-color);
}

header .menu-btn::before {
    transform: translateY(-8px);
}

header .menu-btn::after {
    transform: translateY(8px);
}

header .menu-btn.active span {
    transform: scaleX(0);
}

header .menu-btn.active::before {
    transform: rotate(45deg);
    border-color: var(--white-600);
}

header .menu-btn.active::after {
    transform: rotate(-45deg);
    border-color: var(--white-600);
}

header.fixed-top .menu-btn.active::after,
header.fixed-top .menu-btn.active::before {
    border-color: var(--black-color);
}

.search-wrap {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 4px;
    background: var(--white-600);
    padding: 38px;
    border-radius: 16px;
    opacity: 0;
    visibility: hidden;
    animation-duration: 1s;
    animation-fill-mode: both;
    transition: all .3s ease-in-out;
}

header.fixed-top .search-wrap {
    margin-top: 10px;
    box-shadow: 0 4px 32px 0 rgba(0, 0, 0, 0.15);
}

.search-btn.active+.search-wrap {
    animation-name: fadeInBottom;
}

.search-btn.active .active-icon,
.search-btn .unactive-icon {
    display: block;
}

.search-btn.active .unactive-icon,
.search-btn .active-icon {
    display: none;
}

.search-wrap label {
    font-weight: 700;
    line-height: 28px;
    margin-right: 24px;
}

.search-content {
    display: flex;
    justify-content: center;
}

.search-content .search {
    width: 570px;
}

.search-wrap input {
    margin-bottom: 10px;
}

.search-wrap .result-item {
    margin-bottom: 10px;
}

.cart-item {
    display: flex;
    align-items: center;
}

.cart-item h4.title{
    margin-bottom: 0;
}

.cart-item img{
    width: 80px;
}

.header-wrap_right ul.cart-items{
    padding: 0 20px 20px 20px;
    margin-right: 0;
    display: block;
    height: 365px;
    overflow-y: auto;
    overflow-x: hidden;
    border-bottom: 1px solid var(--extra-light);
}

.header-wrap_right ul.cart-items li{
    margin-right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-wrap_right ul:not(.cart-items) li:last-child{
    position: relative;
}

.cart-dropdown{
    position: absolute;
    top: 100%;
    right: 0;
    padding: 40px 0 20px 0;
    margin-top: 4px;
    background: var(--white-600);
    border-radius: 16px;
    box-shadow: 0 4px 32px 0 rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    animation-duration: 1s;
    animation-fill-mode: both;
    width: 380px;
    transition: all .3s ease-in-out;
}

.cart-dropdown .close-cart{
    position: absolute;
    top: 2px;
    right: 10px;
    cursor: pointer;
    transition: all .3s ease-in-out;
}

.cart-dropdown .close-cart:hover{
    color: var(--primary-600);
}

.cart.active+.cart-dropdown{
    animation-name: fadeInBottom;
}

.header-wrap_right ul.cart-items li{
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--extra-light);
}

.header-wrap_right ul.cart-items li:last-child{
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}

.white-header .header-wrap_right ul a:not(.btn-3).remove-item{
    color: red;
}

.cart-item .item-price{
    font-weight: 700;
    color: var(--secondary-600);
    font-size: 16px;
}

.cart-item .item-price span{
    color: var(--black-color);
}

.cart-footer{
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 20px 20px 0 20px;
}

/* MOBILE MENU CSS */
.mobile-menu {
    position: fixed;
    top: 53px;
    bottom: 0;
    right: -100%;
    width: 100%;
    flex-direction: column;
    justify-content: space-between;
    background: var(--white-600);
    z-index: 990;
    overflow-y: auto;
    overflow-x: hidden;
    transition: all 0.6s ease-in-out;
}

.mobile-menu_top {
    padding: 20px;
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu .menu-nav ul {
    width: 100%;
}

.mobile-menu .has-dropdown .nav-link {
    font-size: 20px;
    line-height: 24px;
    color: var(--black-color);
    font-weight: 700;
    font-family: var(--bold-font);
}

.mobile-menu .has-dropdown {
    position: relative;
    padding: 0 16px;
    width: 100%;
    margin-bottom: 8px;
    background: var(--light-bg);
    border-radius: 16px;
    border: 1px solid transparent;
    transition: all .3s ease-in-out;
}

.mobile-menu .has-dropdown.active {
    border-color: var(--primary-600);
}

.mobile-menu .has-dropdown.active a.nav-link {
    border-color: var(--extra-light);
    color: var(--primary-600);
}

.mobile-menu .has-dropdown:hover .dropdown {
    animation: none;
}

.mobile-menu .nav-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid transparent;
}

.mobile-menu .nav-item svg path {
    stroke: var(--black-color);
}

.mobile-menu .nav-item .icon {
    cursor: pointer;
    transition: all .3s ease-in-out;
}

.mobile-menu .nav-item .icon.active {
    transform: rotate3d(1, 0, 0, 180deg);
}

.mobile-menu .has-dropdown .dropdown {
    display: block;
    position: static;
    opacity: 1;
    visibility: visible;
    border-top: none;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    display: none;
    transition: none;
}

.mobile-menu .has-dropdown .dropdown-content::after {
    content: none;
}

.mobile-menu .has-dropdown .dropdown-content {
    padding: 0;
    display: block;
    background: transparent;
    border-radius: 0;
}

.mobile-menu .menu-nav ul .dropdown a {
    color: var(--black-color);
    text-align: left;
    font-size: 20px;
    line-height: 24px;
}

.mobile-menu .menu-nav ul .dropdown li {
    margin-bottom: 8;
}

.mobile-menu .menu-nav ul .dropdown a:hover,
.mobile-menu .menu-nav ul .dropdown a.active {
    color: var(--primary-600);
}

.mobile-menu .menu-nav ul .dropdown a {
    padding: 12px 0;
}

.mobile-menu .search {
    margin-bottom: 16px;
}

.mobile-menu .search-result {
    padding: 16px;
    display: none;
}

.mobile-menu .language {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-top: 1px solid var(--extra-light);
    background: var(--light-bg);
}

.mobile-menu .language .text {
    display: flex;
    align-items: center;
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    font-family: var(--bold-font);
}

.mobile-menu .language .text .icon {
    width: 32px;
    margin-right: 8px;
}

.mobile-menu .language .text .icon img {
    width: 100%;
}

.mobile-menu .language-checkbox {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    transform: translateX(100%);
    background: var(--white-600);
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease-in-out;
}

.mobile-menu .language-checkbox.open {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.mobile-menu .language-checkbox .item {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    font-size: 16px;
    line-height: 24px;
    color: var(--black-color);
    font-weight: 700;
    cursor: pointer;
}

.mobile-menu .language-checkbox .item .icon {
    color: var(--grey);
    margin-right: 12px;
}

.mobile-menu .language-checkbox .item.checkbox {
    justify-content: space-between;
}

/* BANNER CSS */
.banner {
    position: relative;
    line-height: 0;
    height: 100%;
    aspect-ratio: 2.88/1;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-bottom-left-radius: 160px;
}

.banner::after{
    content: '';
    position: absolute;
    right: -8%;
    bottom: -65%;
    display: block;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(56, 158, 158, 0.4);
}

.banner-content::after{
    content: '';
    position: absolute;
    top: -170%;
    left: -25%;
    display: block;
    width: 940px;
    height: 940px;
    border-radius: 50%;
    background-image: linear-gradient(rgba(56, 158, 158, 0.4),rgba(20, 56, 56, 0.4));
    z-index: 2;
}

.banner-content .col-lg-6{ 
    position: relative;
    z-index: 3;
}

.banner .btn-3{
    background: var(--white-600);
    color: var(--primary-600);
    line-height: 28px;
}

.banner-content {
    position: relative;
    color: var(--white-600);
    z-index: 2;
}

.banner-content h1.title {
    font-weight: 850;
    margin-bottom: 16px;
}

.banner-content p {
    font-size: 20px;
    line-height: 28px;
    font-family: var(--light-font);
    margin-bottom: 16px;
}

.banner .background-img {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: rotate3d(0,1,0,180deg);
    border-bottom-right-radius: 160px;
}

.banner .btn-3 .icon{
    width: 16px;
    height: 16px;
    margin-left: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* TRANG CHỦ CSS */
.section-heading{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.section-3 .section-heading{
    display: block;
    max-width: 415px;
}

.section-heading h2.title{
    margin-bottom: 0;
    display: flex;
    align-items: center;
}

.section-3 .section-heading h2.title{
    margin-bottom: 24px;
}

.section-heading h2.title .icon{
    width: 48px;
    margin-right: 10px;
}

.section-1.style-1 .section-heading h2.title .icon,
.section-3.style-1 .section-heading h2.title .icon{
    color: rgba(97, 145, 67, 1);
}

.section-2.style-2 .section-heading h2.title .icon{
    color: rgba(16, 116, 188, 1);
}

.section-heading h2.title svg{
    width: 100%;
    height: auto;
}

.section .btn-3{
    background: transparent;
    color: var(--dark-grey);
    border: 1px solid rgba(107, 112, 118, 0.7);
}

.section .btn-3 .icon,.section-3 .btn-3 .icon{
    width: 20px;
}

.section-3 .btn-3{
    margin-bottom: 18px;
    margin-left: auto;
    background: transparent;
    color: var(--white-600);
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.section-3 .section-heading p{
    padding: 32px 30px;
    border-radius: 4px;
    border-bottom-right-radius: 80px;
    color: var(--white-600);
    line-height: 28px;
    margin-bottom: 0;
    font-weight: 700;
}

.section-3.style-1 .section-heading p{
    background: rgba(97, 145, 67, 1);
}

.section-3{
    position: relative;
    overflow: hidden;
}

.section-3.style-1{
    background: rgba(97, 145, 67, 0.1);
}

.section-3 .background-img {
    position: absolute;
    top: 79px;
    left: 560px;
    z-index: -1;
}

.section-3 .background-img img{
    width: 1170px;
    height: 1170px;
    border-radius: 50%;
    border: 5px solid rgba(97, 145, 67, .7);
}

.section-3.styld-1 .background-img img{
    border: 8px solid rgba(97, 145, 67, 0.5);
}

/* SẢN PHẨM CSS */
.san-pham .nav-tabs.style-1 .nav-link.active,
.san-pham .nav-tabs.style-1 .nav-link.active {
    color: rgba(97, 145, 67, 1);
}

.san-pham.style-2 .nav-tabs.style-1 .nav-link.active,
.san-pham.style-2 .nav-tabs.style-1 .nav-link.active {
    color: rgba(16, 116, 188, 1);
}

.san-pham .section-2 {
    padding-top: 64px;
}

.san-pham .section-2 .nav-tabs {
    display: block;
    width: 100%;
}

.san-pham .section-2 .nav-tabs .nav-link {
    width: 100%;
    margin-bottom: 12px;
    padding: 12px 20px;
    font-size: 16px;
    line-height: 24px;
    border-color: var(--bs-nav-tabs-link-hover-border-color);
}

.san-pham .section-2 .nav-tabs .nav-link.active {
    border-color: rgba(97, 145, 67, 1);
    color: rgba(97, 145, 67, 1);
    background: rgba(97, 145, 67, 0.04);
}

.san-pham .section-2 .nav-tabs .nav-link:hover {
    color: rgba(97, 145, 67, 1);
    border-color: rgba(97, 145, 67, 1);
}

.san-pham .section-2 h3.title {
    margin-bottom: 24px;
    color: rgba(97, 145, 67, 1);
}

.san-pham.style-2 .section-2 .nav-tabs .nav-link.active {
    border-color: rgba(16, 116, 188, 1);
    color: rgba(16, 116, 188, 1);
    background: rgba(16, 116, 188, 0.04);
}

.san-pham.style-2 .section-2 .nav-tabs .nav-link:hover {
    color: rgba(16, 116, 188, 1);
}

.san-pham.style-2 .section-2 h3.title {
    color: rgba(16, 116, 188, 1);
}

.san-pham .section-2 h3.title {
    margin-bottom: 24px;
    color: rgba(97, 145, 67, 1);
}

.san-pham .section-2 p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 24px;
    font-weight: 700;
}

.san-pham .section-2 .form-group {
    margin-bottom: 40px;
}

.san-pham .section-2 .form-group .icon {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 12px;
}

.san-pham .section-2 .section-content:last-child {
    margin-bottom: 0;
}

.san-pham .section-2 h4.title {
    margin-bottom: 12px;
}

.san-pham .section-2 .product-grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 24px;
}

.san-pham .section-2 .section-content {
    margin-bottom: 24px;
}

.product-detail .product-images img {
    width: 346px;
    height: auto;
    margin-bottom: 24px;
}

.product-detail .swiper-button-next {
    right: 0;
}

.product-detail .swiper-button-prev {
    left: 0;
}

.product-detail .product-images {
    background: var(--light-bg);
    padding: 16px 12px 9px 12px;
    border-radius: 16px;
    border: 1px solid var(--extra-light);
}

.product-detail .product-images .swiper-slide {
    text-align: center;
}

.product-detail .product-images .swiper-pagination {
    bottom: 0;
}

.product-detail .product-images .swiper-pagination-bullet-active {
    background: var(--black-color);
}

.product-detail .product-images .swiper-button-next:after,
.product-detail .product-images .swiper-button-prev:after {
    font-size: 20px;
    color: var(--grey);
    font-weight: 700;
}

.product-detail .product-images .swiper-button-next:hover:after,
.product-detail .product-images .swiper-button-prev:hover:after {
    color: var(--primary-600);
}

.product-detail .section-1 h2.title {
    margin-bottom: 32px;
    color: rgba(97, 145, 67, 1);
}

.product-detail p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    margin-bottom: 24px;
}

.product-detail h4.title {
    margin-bottom: 16px;
}

.product-detail .section-1 .btn-3 {
    background: rgba(97, 145, 67, 1);
    border-radius: 8px;
}

.product-detail .section-2 .section-content {
    margin-top: 40px;
}

.product-detail .section-2 h3.title {
    margin-bottom: 24px;
    color: var(--dark-grey);
}

.product-detail .section-2 #youtube-video {
    aspect-ratio: 16/9;
    width: 100%;
    height: auto;
    border-radius: 16px;
}

.product-detail span {
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
}

.product-detail .section-2 ul li {
    margin-bottom: 4px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 24px;
    row-gap: 24px;
}

.product-item {
    text-align: center;
    padding: 16px;
    border-radius: 16px;
    border: 1px solid var(--extra-light);
    background: var(--light-bg);
}

.related-product .product-item{
    background: var(--white-600);
}

.product-thumb img {
    width: 160px;
    margin-bottom: 12px;
}

.product-content h4.title {
    margin-bottom: 4px;
}

.product-content h4.title a {
    color: var(--black-color);
    transition: all .3s ease-in-out;
}

.product-content h4.title a:hover {
    color: var(--primary-600);
}

.product-content .product-desc {
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    margin-bottom: 0;
    color: var(--grey);
}

/* HỆ THỐNG CỬA HÀNG CSS */
.filters{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    column-gap: 40px;
    margin-bottom: 40px;
}

.filters .form-group{
    display: grid;
    grid-template-columns: 32% 63%;
    align-items: center;
    column-gap: 12px;
}

.filters .form-group label{
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    text-align: right;
}

.cua-hang .heading{
    display: grid;
    grid-template-columns: 30% 50% 20%;
}

.cua-hang .heading span{
    font-weight: 700;
    line-height: 28px;
    color: var(--dark-grey);
    padding: 10px 16px;
}

.cua-hang .item{
    display: grid;
    grid-template-columns: 30% 50% 20%;
    border-top: 1px solid var(--extra-light);
}

.cua-hang .item span{
    padding: 26px 16px;
    line-height: 24px;
    font-weight: 700;
}

.cua-hang .item h4.title{
    padding: 26px 16px;
    margin-bottom: 0;
}

/* TIN TỨC CSS */
.tin-tuc .banner-content::after,
.tin-tuc .banner::after{
    content: none;
}

.tin-tuc .banner h1.title{
    margin-bottom: 76px;
}

.tin-tuc .banner{
    align-items: end;
}

.tin-tuc .hot-news {
    position: relative;
    margin-top: -180px;
}

.tin-tuc .hot-news .blog-item{
    padding: 24px;
    border-radius: 16px;
    border-bottom-right-radius: 90px;
    background: rgba(97, 145, 67, 1);
}

.tin-tuc .hot-news .blog-category{
    background: var(--white-600);
    color: rgba(97, 145, 67, 1);
    border-color: rgba(97, 145, 67, 1);
}

.tin-tuc .hot-news .title a{
    color: var(--white-600);
}

.tin-tuc .hot-news .blog-content .title{
    margin-bottom: 16px;
}

.tin-tuc .hot-news .blog-desc{
    font-size: 16px;
    line-height: 24px;
    color: var(--white-500);
    -webkit-line-clamp: 4;
}

.tin-tuc .hot-news .blog-content a.link{
    color: var(--white-600);
    display: flex;
    align-items: center;
    line-height: 28px;
}

.tin-tuc .hot-news .blog-content a.link .icon{
    width: 16px;
    margin-left: 5px;
}
.tin-tuc .blog-heading{
    padding-bottom: 80px;
}

.tin-tuc .blog-heading label{
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    font-family: var(--bold-font);
}

.tin-tuc .blog-heading .filter-item:first-child{
    margin-bottom: 32px;
}

.tin-tuc .blog-heading .blog-filter label{
    margin-bottom: 12px;
}

.tin-tuc .blog-heading ul.categories{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.tin-tuc .blog-heading ul.categories a{
    display: block;
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 8px;
    margin-bottom: 8px;
    border: 1px solid rgba(43, 50, 59, 0.5);
    margin-right: 8px;
    color: var(--black-color);
    transition: all .3s ease-in-out;
}

.tin-tuc .blog-heading ul.categories li:last-child a{
    margin-right: 0;
}

.tin-tuc .blog-heading ul.categories a:hover,
.tin-tuc .blog-heading ul.categories a.active{
    background: rgba(241, 90, 34, 1);
    color: var(--white-600);
    border-color: rgba(241, 90, 34, 1);
}

.tin-tuc .blog-heading .filter-item:last-child label{
    margin-bottom: 0;
}

.tin-tuc .blog-heading .filter-item:last-child{
    display: grid;
    grid-template-columns: 22% auto;
    align-items: center;
}

.tin-tuc .blog-search{
    position: absolute;
    top: 0;
    right: 0;
    width: fit-content;
}

.tin-tuc .blog-search input{
    height: 34px;
    border: none;
    width: 120px;
    padding: 12px;
    transition: all .3s ease-in-out;
}

.tin-tuc .blog-search input:focus{
    border: 1px solid var(--primary-600);
    width: 200px;
}

.tin-tuc .blog-search .icon{
    position: absolute;
    top: 0;
    bottom: 0;
    right: 12px;
}

.tin-tuc .blog-heading .filter-item{
    position: relative;
}

/* GIỎ HÀNG CSS */
.cart-table{
    margin-bottom: 0;
    white-space: nowrap;
}

.cart-table th{
    font-family: var(--heavy-font);
    font-size: 16px;
    line-height: 24px;
}

.cart-table td{
    vertical-align: middle;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
}

.cart-table td a.link{
    color: rgba(97, 145, 67, 1);
}

.cart-table td a.link:hover{
    text-decoration: underline;
}

.cart-table .cart-item{
    color: var(--black-color);
    width: fit-content;
    flex-wrap: wrap;
}

.cart-table .cart-item:hover{
    color: var(--primary-600);
}

.cart-table .remove-item{
    display: flex;
    justify-content: center;
    color: red;
}

.cart-table .price{
    color: var(--primary-600);
    font-family: var(--heavy-font);
}

.table-btns{
    display: flex;
    align-items: center;
    justify-content: end;
    flex-wrap: wrap;
    margin-top: 40px;
}

.table-btns a:first-child{
    margin-right: 15px;
}

/* THANH TOÁN CSS */
.checkout-section .card{
    padding: 20px;
    margin-bottom: 40px;
}

.checkout-section .cart-table{
    white-space: unset;
}

.checkout-section .card h2.title{
    margin-bottom: 40px;
}

form .form-group{
    position: relative;
    margin-bottom: 8px;
}

form .form-control{
    padding: 12px 16px 12px 52px;
}

form .form-control::placeholder{
    color: var(--black-color);
}

.select2-container{
    width: 100%;
}

.select2-container .select2-selection--single{
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: var(--black-color);
    border-radius: 8px;
    border: 1px solid var(--light-grey);
    font-family: var(--bold-font);
    height: auto;
    width: 100%;
}

.select2-container--default .select2-selection--single .select2-selection__rendered{
    line-height: 24px;
    font-family: var(--bold-font);
    color: var(--black-color);
    padding: 12px 16px 12px 52px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow{
    right: 10px;
    height: 100%;
}

.select2-results__option{
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
}

form .form-group .icon{
    position: absolute;
    top: 8px;
    left: 16px;
    color: var(--primary-600);
    z-index: 2;
}

.checkout-section .card-left form{
    margin-bottom: 20px;
}

.checkout-section .cart-item img{
    width: 50px;
}

.checkout-section .cart-item h4.title,
.checkout-section .cart-table .price:not(.total){
    font-size: 16px;
    line-height: 24px;
}

.checkout-section .cart-table tfoot{
    font-family: var(--heavy-font);
    font-size: 24px;
}

.checkout-section .cart-table tfoot td{
    padding-top: 15px;
}

.payment-method .checkbox{
    margin-top: 20px;
    padding: 10px;
    border: 1px solid var(--light-grey);
    border-radius: 8px;
    transition: all .3s ease-in-out;
}

.payment-method .checkbox:hover{
    border-color: var(--primary-600);
    color: var(--primary-600);
}

.checkout-section .card-right .btn-3{
    margin-top: 20px;
    width: 100%;
    justify-content: center;
    border-radius: 8px;
}

.checkout-section .card-right {
    margin-bottom: 0;
}

.checkout-section .order-info div{
    margin-bottom: 15px;
}

.checkout-section .card.success{
    background: #d1e7dd;
    color: #0a3622;
    border-color: #0a3622;
}

.checkout-section .card.error{
    background: #f8d7da;
    color: rgb(220,53,69);
    border-color: rgb(220,53,69);
}

/* ĐĂNG NHẬP CSS */
.login{
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50%;
}

.login::before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 100%;
    width: 100%;
    background-image: url(../images/003f41ef60de8c9fb116ce027d1d5187.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.login::after{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 100%;
    width: 25%;
    background-image: linear-gradient(to left, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0));
    z-index: 2;
}

.login form .btn-3{
    margin: 0 auto;
    margin-top: 20px;
    justify-content: center;
    border-radius: 8px;
}
.login form .form-btns .d-flex .btn-3{
    margin: unset;
    margin-top: 20px;
}
.login form .form-btns .d-flex .btn-3:first-child{
    margin-right: 15px;
}
span.line{
    position: relative;
    margin-top: 20px;
    display: block;
}
span.line span{
    padding: 0 12px;
    background: var(--white-600);
    display: inline-block;
    position: relative;
    z-index: 2;
    font-weight: 600;
    font-size: 15px;
}
span.line::before{
    content: "";
    position: absolute;
    background: var(--light-grey);
    height: 1px;
    width: 100%;
    left: 0;
    top: 50%;
    margin-top: -1px;
}
.btn-3.google-login{
    background: transparent;
    border: 1px solid var(--light-grey);
    color: var(--primary-600);
}
.btn-3.google-login img{
    width: 20px;
    margin-right: 10px;
}
/* TRANG CÁ NHÂN CSS */
.profile .section-1{
    padding: 15px 0;
}

.profile .user-avatar{
    margin-right: 10px;
    width: 120px;
    border-radius: 8px;
    overflow: hidden;
}

.profile .user-avatar img{
    width: 100%;
}

.profile .user-info{
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
}

.san-pham .section-2 .form-group{
    margin-bottom: 8px;
}

.san-pham .section-2 .btn-3{
    border-radius: 8px;
    margin-bottom: 15px;
}

.san-pham .section-2 .form-group .btn-3{
    margin: 0 auto;
}

/* TÁC GIẢ CSS */
.tac-gia .section-1{
    padding: 40px 0;
}

.tac-gia .author-profile{
    display: flex;
    flex-wrap: wrap;
}

.tac-gia .author-avatar img{
    width: 160px;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.tac-gia .author-info{
    margin-left: 10px;
}

.tac-gia .author-info p{
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
}

.tac-gia .author-social{
    list-style-type: none;
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.tac-gia .author-social .btn-3{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.tac-gia .author-social .btn-3 svg{
    width: 20px;
    height: 20px;
}

.tac-gia .author-desc{
    width: 100%;
}

.tac-gia .author-desc p{
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    margin-top: 15px;
    margin-bottom: 0;
}

.tac-gia .author-sidebar .author-avatar img{
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 50%;
}

.tac-gia .author-sidebar .author-profile:not(:last-child){
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--extra-light);
}

.tac-gia .author-sidebar .author-profile {
    color: var(--black-color);
}

.tac-gia .author-sidebar .author-profile:hover h4{
    color: var(--primary-600)
}

/* FOOTER CSS */
footer {
    background: rgba(229, 229, 229, 1);
}

.footer-top {
    background: var(--black-color);
    padding: 14px 0;
}

.footer-top .top-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-top .social {
    display: flex;
    align-items: center;
}

.footer-top .social svg path {
    transition: all .3s ease-in-out;
}

.footer-top .social a:hover svg path {
    fill: var(--primary-600);
}

.footer-top .contact-info {
    display: flex;
    align-items: center;
}

.footer-top .social .icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-top li:not(:last-child) {
    margin-right: 24px;
}

.footer-top .contact-info a {
    display: flex;
    align-items: center;
    color: var(--white-600);
    line-height: 20px;
    font-size: 14px;
    transition: all .3s ease-in-out;
}

.footer-top .contact-info a:hover {
    color: var(--primary-600);
}

.footer-top .contact-info .icon svg path {
    stroke: var(--white-400);
}

.footer-top .contact-info .icon {
    margin-right: 4px;
    width: 20px;
}

.footer-body_top {
    padding: 64px 0 40px 0;
}

footer .logo {
    margin-bottom: 16px;
    display: block;
}

.footer-body_top span {
    display: block;
    font-size: 14px;
    line-height: 20px;
    color: rgba(43, 50, 59, 0.7);
    margin-bottom: 4px;
    font-weight: 700;
}

.footer-body_top h4.title {
    margin-bottom: 16px;
}

.footer-body_top p {
    color: rgba(43, 50, 59, 0.7);
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 16px;
    font-weight: 700;
}

.bo-con-thuong {
    width: 126px;
}

.bo-con-thuong img {
    width: 100%;
}

footer .widget-title {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 16px;
}

footer .widget-list a {
    font-size: 16px;
    line-height: 24px;
    color: var(--black-color);
    margin-bottom: 8px;
    font-weight: 600;
    transition: all .3s ease-in-out;
}

footer .widget-list a:hover {
    color: var(--primary-600);
}

.map iframe {
    width: 100%;
    height: 126px;
    border-radius: 16px;
}

footer .btn-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 24px;
    column-gap: 4px;
}

footer .btn-list a {
    display: flex;
    align-items: center;
    background: var(--black-color);
    border: 1px solid rgba(56, 158, 158, 0.1);
    padding: 12px;
    border-radius: 16px;
    font-weight: 600;
}

footer .btn-list a span {
    color: var(--white-600);
    margin-bottom: 0;
    font-size: 12px;
    line-height: normal;
}

footer .btn-list a .icon {
    width: 20px;
    margin-right: 4px;
}

.footer-body_bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-top: 1px solid rgba(43, 50, 59, 0.1);
}

.footer-body_bottom ul {
    display: flex;
    align-items: center;
}

.footer-body_bottom ul li:not(:last-child) {
    margin-right: 24px;
}

.footer-body_bottom a {
    color: var(--black-color);
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    transition: all .3s ease-in-out;
}

.footer-body_bottom a:hover {
    color: var(--primary-600);
}

.footer-body_bottom span {
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
}

/* COOKIE CSS */
.cookie {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 0;
    background: var(--white-600);
    box-shadow: 0 -4px 16px 0 rgba(0, 0, 0, 0.1);
    z-index: 980;
}

.cookie-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cookie span {
    line-height: 28px;
    font-weight: 700;
}

.cookie-btns {
    display: flex;
    align-items: center;
}

.cookie-btns a {
    padding: 6px 24px;
    border-radius: 8px;
    line-height: 28px;
    font-weight: 700;
    opacity: 1;
    transition: all .3s ease-in-out;
}

.cookie-btns a:hover {
    opacity: .85;
}

.cookie-btns a:active {
    opacity: .75;
}

.cookie-btns a:not(:last-child) {
    margin-right: 10px;
}

.cookie-btns a.decline {
    border: 1px solid var(--dark-grey);
    color: var(--dark-grey);
}

.cookie-btns a.accept {
    color: var(--white-600);
    background: var(--primary-600);
    border: 1px solid var(--primary-600);
}

/* AD POPUP CSS */
#ad-popup .modal-body {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 40px;
}

#ad-popup .modal-body img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
}

#ad-popup .modal-body p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
}

#ad-popup .modal-body .btn-3 {
    min-width: 190px;
    justify-content: center;
    margin: 0 auto;
    line-height: 28px;
}

#ad-popup .btn-close {
    width: 20px;
    height: 20px;
    padding: 0;
    position: absolute;
    top: 1rem;
    right: 1rem;
}

#ad-popup .popup-right {
    padding-top: 24px;
}

/* RESPONSIVE */
@media only screen and (min-width: 768px) {
    .position-md-relative {
        position: relative !important;
    }
}

@media only screen and (min-width: 992px) {
    .pb-lg-120 {
        padding-bottom: 120px !important;
    }

    .pt-lg-40{
        padding-top: 40px !important;
    }

    .mt-lg-0{
        margin-top: 0 !important;
    }
}

@media only screen and (min-width: 1570px){
    .banner-content::after{
        width: 1300px;
        height: 1300px;
        top: -250%;
        left: -50%;
    }
    .banner::after{
        width: 560px;
        height: 560px;
        bottom: -70%;
    }
    .section-3 .background-img{
        left: 55%;
    }
}

@media only screen and (max-width: 1280.98px) {
    .banner-content p {
        font-size: 18px;
        line-height: 24px;
    }

    .header-nav li {
        margin-left: 13px;
    }

    .header-wrap_right ul {
        margin-right: 15px;
    }
}

@media only screen and (max-width: 1199.98px) {
    .banner-content p {
        font-size: 16px;
    }
    .banner .background-img{
        border-bottom-right-radius: 80px;
    }

    .banner{
        border-bottom-left-radius: 80px;
    }

    h1.title {
        font-size: 44px;
        line-height: 64px;
    }

    h2.title {
        font-size: 32px;
        line-height: 48px;
    }

    h3.title {
        font-size: 20px;
        line-height: 32px;
    }

    h4.title {
        font-size: 18px;
        line-height: 24px;
    }

    .blog-grid .blog-item:not(:last-child) {
        margin-bottom: 40px;
    }

    .filters{
        column-gap: 25px;
    }

    .tin-tuc .blog-heading .filter-item:last-child{
        grid-template-columns: 25% auto;
    }
}

@media only screen and (max-width: 991.98px) {
    body {
        font-size: 16px;
        line-height: 24px;
    }

    form .form-group .icon{
        top: 14px;
    }

    .login{
        left: 0;
        right: 0;
        width: 100%;
    }

    .login::before{
        width: 100%;
        left: 0;
        right: 0;
        filter: blur(20px);
        z-index: 1;
    }

    .login::after{
        content: none;
    }

    .login .breadcrumb,.login .checkout-section{
        position: relative;
        z-index: 3;
    }

    .checkout-section .card{
        padding: 10px;
    }

    .blog-container:not(:last-child) {
        margin-bottom: 80px;
    }

    .ad-item:first-child {
        margin-top: 40px;
    }

    .related-blog h2.title {
        margin-bottom: 40px;
    }

    .header-wrap_right ul a .product-numb{
        top: -5px;
    }

    .small-banner {
        aspect-ratio: unset;
        height: 480px;
    }

    .blog-list .blog-desc {
        -webkit-line-clamp: 3;
    }

    .search-wrap {
        display: none;
    }

    header {
        background: var(--white-600);
    }

    header .logo1 {
        display: none;
    }

    header .logo2 {
        display: block
    }

    header .menu-btn.active::after,
    header .menu-btn.active::before {
        border-color: var(--black-color);
    }

    .section {
        padding-top: 80px;
    }

    .blog-detail {
        padding-bottom: 80px;
    }

    .section-2,
    .section-3,
    .section-4,
    .section-5 {
        padding-bottom: 80px;
    }

    .related-blog {
        padding-bottom: 80px;
    }

    .header-nav {
        display: none;
    }

    header {
        padding: 15px 0;
    }

    header .menu-btn {
        display: block;
        margin-right: 15px;
    }

    .blog-category,
    .category {
        font-size: 12px;
        line-height: 18px;
    }

    .blog-grid {
        column-gap: 15px;
    }

    .footer-body_top {
        padding: 40px 0;
    }

    .footer-info {
        margin-bottom: 30px;
    }

    #ad-popup .modal-body {
        grid-template-columns: 100%;
    }

    #ad-popup .popup-left {
        padding-top: 24px;
    }

    #ad-popup .popup-right {
        padding-top: 16px;
    }

    #ad-popup .modal-body img {
        aspect-ratio: 16/9;
    }

    a.link {
        font-size: 16px;
        line-height: 20px;
    }

    .breadcrumb {
        margin-top: 68px;
        padding-top: 16px;
    }

    .nav-tabs .nav-link {
        padding: 13px 14px;
        font-size: 16px;
        line-height: 24px;
        margin-right: 4px;
        font-family: var(--light-font)
    }

    h2.title {
        margin-bottom: 40px;
    }

    .contact-link {
        margin-bottom: 40px;
    }

    .product-detail .product-images {
        margin-bottom: 40px;
    }

    .product-detail .section-1 h2.title {
        margin-bottom: 16px;
    }

    .product-detail p {
        margin-bottom: 16px;
    }

    .product-detail .section-1 .product-desc {
        margin-bottom: 40px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 24px;
    }

    .san-pham .section-2 .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .banner-content::after{
        left: -40%;
    }

    .banner::after{
        bottom: -70%;
        right: -20%;
    }

    .section-3 .background-img{
        display: none;
    }

    .section-3 .btn-3{
        color: rgba(97, 145, 67, 1);
        border-color: rgba(97, 145, 67, 0.7);
    }

    .filters{
        grid-template-columns: repeat(2,1fr);
        row-gap: 12px;
    }

    .filters .form-group label{
        text-align: left;
    }

    .filters .form-group{
        grid-template-columns: 25% 72%;
    }

    .tin-tuc .hot-news{
        margin-top: 0;
        margin-bottom: 80px;
    }

    .blog-heading .col-lg-6:first-child{
        order: 2;
    }

    .tin-tuc .blog-heading .filter-item:last-child {
        grid-template-columns: 15% auto;
    }

    .tin-tuc .blog-filter{
        display: grid;
        grid-template-columns: 100%;
    }

    .tin-tuc .blog-filter .filter-item:first-child{
        order: 2;
        margin-bottom: 0;
        margin-top: 20px;
    }

    .tin-tuc .blog-heading{
        padding-bottom: 40px;
    }

    .tin-tuc .banner h1.title{
        margin-bottom: 0;
    }

    .tin-tuc .banner{
        align-items: center;
        justify-content: center;
    }

    .tin-tuc .banner h1.title{
        text-align: center;
    }
}

@media only screen and (max-width: 820px) {
    .footer-top .top-wrap {
        flex-direction: column;
        align-items: start;
    }

    .footer-top .contact-info {
        margin-top: 12px;
    }

    .filters{
        grid-template-columns: 100%;
    }
}

@media only screen and (max-width: 767.98px) {
    body {
        font-size: 14px;
        line-height: 20px;
    }

    .nav-tabs.style-1 .nav-link {
        padding: 20px;
    }


    .nav-tabs.style-1 .nav-link .icon {
        width: 32px;
        height: 32px;
    }

    .row>* {
        padding-left: 20px;
        padding-right: 20px;
    }

    .checkout-section .cart-table tfoot{
        font-size: 18px;
    }

    .breadcrumb {
        margin-top: 53px;
    }

    h1.title {
        font-size: 32px;
        line-height: 48px;
    }

    h3.title {
        font-size: 18px;
        line-height: 24px;
    }

    h4.title {
        font-size: 16px;
        line-height: 20px;
    }

    .icon {
        width: 20px;
    }

    .btn-icon_right .icon {
        margin-left: 5px;
    }

    .btn-icon_left .icon {
        margin-right: 5px;
    }

    .btn-3 {
        font-size: 16px;
        padding: 6px 14px;
    }

    .btn-2 {
        padding: 6px 14px;
    }

    .header-wrap_right ul {
        margin-right: 10px;
    }

    .header-wrap_right ul li:not(:last-child) {
        margin-right: 10px;
    }

    header {
        padding: 10px 0;
    }

    .header-logo {
        max-width: 160px;
    }

    .btn-icon_left .icon {
        margin-right: 5px;
    }

    .blog-grid,
    .section-2 .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-thumb {
        margin-bottom: 12px;
    }

    .footer-widget {
        margin-bottom: 30px;
    }

    .footer-body_top {
        padding: 30px 0 0 0;
    }

    .footer-top .contact-info {
        flex-wrap: wrap;
    }

    .product-detail .product-images {
        padding: 16px 0 9px 0;
    }

    .banner-content::after{
        top: -135%;
        left: -15%;
        width: 574px;
        height: 574px;
    }

    .banner::after {
        bottom: -25%;
        right: -10%;
        width: 174px;
        height: 174px;
    }

    .cua-hang .heading{
        display: none;
    }

    .cua-hang .item{
        grid-template-columns: 100%;
        padding: 16px 0;
    }

    .cua-hang .item span{
        padding: 0;
    }

    .cua-hang .item h4.title{
        padding: 0;
        margin-bottom: 8px;
    }

    .cua-hang .item:first-child{
        border-top: none;
    }

    .tin-tuc .blog-heading .filter-item:last-child {
        grid-template-columns: 100%;
    }

    .tin-tuc .blog-heading .filter-item:last-child label{
        margin-bottom: 12px;
    }
}

@media only screen and (max-width: 575.98px) {
    .mobile-menu {
        display: flex;
    }

    .header-logo {
        max-width: 110px;
    }

    .blog-list .blog-item {
        grid-template-columns: 100%;
    }

    .blog-list .blog-meta {
        margin-top: 12px;
    }

    h1.title {
        font-size: 28px;
        line-height: 48px;
    }

    h2.title {
        font-size: 26px;
        line-height: 36px;
    }

    .mobile-menu .menu-img {
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        filter: blur(10px);
    }

    .mobile-menu .menu-img::after {
        width: 100%;
        background-image: linear-gradient(to right, rgba(56, 158, 158, 1), rgba(56, 158, 158, 0.4), rgba(56, 158, 158, 1));
    }

    .blog-grid,
    .section-2 .blog-grid {
        grid-template-columns: 100%;
    }

    .blog-grid .blog-item .blog-thumb {
        height: auto;
    }

    .blog-grid .blog-item .blog-thumb {
        aspect-ratio: 3/2;
    }

    .footer-top .contact-info a {
        margin-bottom: 5px;
        font-size: 12px;
    }

    .footer-body_bottom {
        flex-direction: column;
    }

    .footer-body_bottom span {
        margin-top: 5px;
    }

    .cookie-wrap {
        flex-direction: column;
        text-align: center;
    }

    .cookie-wrap span {
        margin-bottom: 10px;
        font-size: 18px;
        line-height: 24px;
    }

    .cookie {
        padding: 10px 0;
    }

    .product-grid {
        grid-template-columns: 100%;
    }

    .san-pham .section-2 .product-grid {
        grid-template-columns: 100%;
    }

    .product-detail .product-images img {
        width: 170px;
    }

    .mobile-menu{
        top: 45px;
    }

    .section .btn-3{
        margin: 0 auto;
        margin-top: 40px;
    }
}

@media only screen and (max-width: 480px) {

    header .menu-btn {
        margin-left: 0;
    }

    .mobile-menu .btn-3 {
        display: flex;
    }

    .search-style2 input,
    .search-style2 {
        width: 100%;
    }

    .tac-gia .author-social .btn-3 svg{
        width: 16px;
        height: 16px;
    }

    .tac-gia .author-social .btn-3{
        margin-right: 10px;
    }

    .tac-gia .author-avatar img{
        width: 120px;
    }
}

@media only screen and (max-width: 430px) {
    .filters .form-group {
        grid-template-columns: 35% 65%;
    }
}

@media only screen and (max-width: 410px){
    .banner-content::after {
        top: -120%;
        left: -50%;
    }
}

@media only screen and (max-width: 387.98px){
    .table-btns{
        flex-direction: column;
    }
    .table-btns a:first-child{
        margin-bottom: 15px;
        margin-right: 0;
    }
}

@media only screen and (max-width: 360px) {
    .nav-tabs.style-1 {
        width: max-content;
    }

    footer .widget-list a {
        font-size: 14px;
    }

    h2.title {
        font-size: 24px;
    }
}