:root {
    --primary-color1: #8BC53F;
    --primary-color2: #85C244;
    --primary-color3: #75B851;
    --primary-color4: #5AA868;
    --primary-color5: #349387;
    --primary-color6: #0577AF;
    --primary-color7: #8BC540;
    --gradient: linear-gradient(140.85deg, #8BC53F 27.52%, #85C244 33.29%, #75B851 40.83%, #5AA868 44.79%, #349387 55.4%, #0577AF 68.24%, #0074B3 69.13%);
}

@font-face {
    src: url("../fonts/EncodeSans_Expanded-Bold.ttf");
    font-family: "EncodeSans";
    font-weight: 900;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-thumb {
    background-color: #aaa;
}

::-webkit-scrollbar-track {
    background-color: #f1f1f1;
}

html {
    background-color: #fff !important;
}

#wrapper, #main {
    background: #fff !important;
}

ul, li {
    margin-bottom: 0px !important;
}

.row-0 {
    padding: 0px 0px !important;
}

.pd-0 {
    padding: 0px !important;
}

.row-5 {
    padding: 0px 10px !important;
}

.pd-5 {
    padding: 0px 5px 8px 5px !important;
}

.row-20 {
    padding: 0px 0px !important;
}

.pd-20 {
    padding: 0px 20px 20px 20px !important;
}

.pd-35 {
    padding: 0px 35px 20px 35px !important;
}

.row-7 {
    padding: 0px 7px !important;
}

.pd-7 {
    padding: 0px 7px 7px 7px !important;
}

.noPadding {
    padding-bottom: 0px !important;
}

.mr-1 {
    margin-right: 10px !important;
}

.mr-2 {
    margin-right: 20px;
}

.mr-3 {
    margin-right: 30px;
}

.mr-4 {
    margin-right: 40px;
}

.mr-4 {
    margin-right: 50px;
}

.ml-1 {
    margin-left: 10px;
}

.ml-2 {
    margin-left: 20px;
}

.ml-3 {
    margin-left: 30px;
}

.ml-4 {
    margin-left: 40px;
}

.mt-1 {
    margin-top: 10px;
}

.mt-2 {
    margin-top: 20px;
}

.mt-3 {
    margin-top: 30px;
}

.mt-4 {
    margin-top: 40px;
}

.mt-5 {
    margin-top: 50px;
}

.mb-1 {
    margin-bottom: 10px !important;
}

.mb-2 {
    margin-bottom: 20px !important;
}

.mb-3 {
    margin-bottom: 30px;
}

.mb-4 {
    margin-bottom: 40px;
}

.mb-5 {
    margin-bottom: 50px;
}

.button_style {
    background-color: var(--primary-color);
    color: #fff !important;
    text-align: center;
    padding: 0px 30px;
    font-size: 15px;
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 9;
    font-weight: 800 !important;
    height: 40px;
    line-height: 40px;
    border-radius: 99px;
}

.button_style:before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.3)));
    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);
}

.button_style:hover:before {
    -webkit-animation: shine .75s;
    animation: shine .75s;
}

.button_for_green {
    background: var(--primary-color7) !important;
}

@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}

@keyframes shine {
    100% {
        left: 125%;
    }
}


/**back to top**/
.progress-wrap {
    position: fixed;
    display: block;
    cursor: pointer;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.progress-wrap::after {
    top: 0;
    left: 0;
    z-index: 1;
    display: block;
    text-align: center;
    position: absolute;
    cursor: pointer;
    font-family: 'Font Awesome 6 Pro';
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap svg path {
    fill: none;
}

.progress-wrap svg.progress-circle path {
    box-sizing: border-box;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap {
    bottom: 30px;
    height: 46px;
    width: 46px;
    border-radius: 46px;
    background-color: #ffffff;
    box-shadow: inset 0 0 0 2px #cccccc;
}

.progress-wrap.btn-left-side {
    left: 30px;
}

.progress-wrap.btn-right-side {
    right: 30px;
}

.progress-wrap::after {
    width: 46px;
    height: 46px;
    color: #1f2029;
    font-size: 24px;
    content: '\f341';
    line-height: 46px;
}

.progress-wrap:hover::after {
    color: #1f2029;
}

.progress-wrap svg.progress-circle path {
    stroke: #1f2029;
    stroke-width: 2px;
}

/**menu**/
div#mega-menu-wrap-primary {
    width: 100% !important;
}

#mega-menu-wrap-primary #mega-menu-primary {
    display: flex !important;
    justify-content: space-around;
}

div#mega-menu-wrap-primary ul li a {
    color: var(--primary-color) !important;
    font-weight: 900 !important;
    padding: 0 !important;
    text-transform: unset !important;
    font-size: 18px !important;
    text-align: center !important;
    display: flex !important;
    align-items: center;
}

div#mega-menu-wrap-primary ul li a:hover {
    color: var(--primary-color) !important;
}

div#mega-menu-wrap-primary ul li.mega-current-menu-item a {
    color: var(--primary-color) !important;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu {
    -webkit-box-shadow: 0 16px 32px rgba(34, 37, 49, 0.24);
    box-shadow: 0 16px 32px rgba(34, 37, 49, 0.24);
    display: block !important;
    border-radius: 8px !important;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link {
    height: unset !important;
    padding: 0px 10px !important;
    display: block !important;
    -webkit-transition: .4s;
    transition: .4s;
    font-size: 14px !important;
    color: var(--color-1) !important;
    text-transform: unset !important;
    background: #fff !important;
    text-align: left !important;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:hover {
    color: var(--primary-color) !important;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item {
    border-bottom: 1px solid #f2f2f2 !important;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link,
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
    color: #000 !important;
    font-weight: 700 !important;
    margin-bottom: 10px !important;
    text-align: left !important;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link,
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link {
    color: #000 !important;
    text-transform: unset !important;
    font-size: 16px !important;
    text-align: left !important;
}

#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column > ul.mega-sub-menu > li.mega-menu-item {
    padding: 0px !important;
    text-align: left !important;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link:hover,
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link:hover {
    color: var(--primary-color) !important;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu {
    background: #fff !important;
    box-shadow: 0px 0px 16px rgb(0 0 0 / 10%);
    padding: 15px !important;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link,
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
    color: var(--primary-color) !important;
    font-weight: 700 !important;
    margin-bottom: 0px !important;
    text-align: left !important;
    padding-bottom: 5px !important;
    padding-left: 0px !important;
    border-bottom: 1px solid #f2f2f2;
}

/**pagination**/
.pagination {
    width: 100%;
    display: inline-block;
}

.pagination ul li a, .pagination ul li span {
    color: #000;
    border: 1px solid #e9e9e9;
    width: 35px;
    height: 35px;
    padding: 0px;
    line-height: 35px;
    font-weight: normal;
    background: #fff;
    border-radius: 99px !important;
}

.pagination ul li a:hover, .pagination ul li span:hover {
    background: var(--primary-color) !important;
    color: #fff;
    font-weight: normal !important;
    border: 1px solid var(--primary-color) !important;
}

.wp-pagenavi {
    width: 100%;
    display: inline-block;
    margin: 20px 0 0 0;
    text-align: center;
}

.wp-pagenavi a, .wp-pagenavi span {
    background: #fff;
    border: 1px solid #e9e9e9;
    width: 35px;
    height: 35px;
    padding: 0px;
    line-height: 35px;
    font-weight: normal;
    display: inline-block;
    border-radius: 99px !important;
}

.wp-pagenavi a:hover, .wp-pagenavi span.current, .pagination span.current {
    background: var(--primary-color) !important;
    color: #fff;
    font-weight: normal !important;
    border: 1px solid var(--primary-color) !important;
}

/**alert**/
.alert {
    position: relative;
    padding: 10px;
    border: 1px solid transparent;
    border-radius: .25rem;
}

.alert-primary {
    color: #084298;
    background-color: #cfe2ff;
    border-color: #b6d4fe;
}

.alert-secondary {
    color: #41464b;
    background-color: #e2e3e5;
    border-color: #d3d6d8;
}

.alert-success {
    color: #0f5132 !important;
    background-color: #d1e7dd !important;;
    border-color: #badbcc !important;;
}

.alert-danger {
    color: #842029 !important;
    background-color: #f8d7da !important;
    border-color: #f5c2c7 !important;
}

.alert-warning {
    color: #664d03;
    background-color: #fff3cd;
    border-color: #ffecb5;
}

.alert-info {
    color: #055160;
    background-color: #cff4fc;
    border-color: #b6effb;
}

.alert-light {
    color: #636464;
    background-color: #fefefe;
    border-color: #fdfdfe;
}

.alert-dark {
    color: #141619;
    background-color: #d3d3d4;
    border-color: #bcbebf;
}

/**slide**/
body .swiper-button-next, body .swiper-button-prev {
    position: unset;
    width: 50px;
    height: 50px;
    border: none;
    outline: none;
    background-color: #dfebf1;
    box-shadow: 0px 8px 66.67px 0px #2525250D;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-transition: .3s;
    transition: .3s;
    border-radius: 50% !important;
    color: var(--primary-color)
}

body .swiper-nav {
    display: flex;
    gap: 15px;
    justify-content: end;
}

body .swiper-button-next:hover, body .swiper-button-prev:hover {
    background: var(--primary-color) !important;
    color: #fff !important;
}

body .swiper-button-prev.swiper-button-disabled,
body .swiper-button-next.swiper-button-disabled {
    opacity: .35;
    cursor: auto;
    pointer-events: none;
}

body .swiper-button-next:after, body .swiper-button-prev:after {
    content: '' !important;
    font-size: 18px;
    color: #000;
}

.swiper-container {
    overflow: hidden;
}

/**category**/
.category-description {
    box-shadow: 0px 4px 45px 0px #0000000D;
    padding: 20px;
    background: #fff;
    border-radius: 15px;
    font-weight: 300;
    font-size: 16px;
}

.entry-content {
    padding: 0 !important;
    font-weight: 300;
    font-size: 16px;
}

.category-description p
.category-description ul li,
.category-description ol li,
.entry-content p,
.entry-content ul li,
.entry-content ol li {
    margin: 0 0 10px 0 !important;
}

.category-description ul,
.category-description ol,
.entry-content ul,
.entry-content ol {
    margin-left: 15px !important;
}

.category-description table,
.category-description table tr td,
.entry-content table,
.entry-content tr td {
    border-collapse: collapse;
    border: 1px solid #3333;
}

.category-description table tr td,
.category-description table tr th,
.entry-content tr td,
.entry-content tr th {
    padding: 10px;
    color: #333 !important;
}

/**redirect**/
.bt-redirect {
    background: linear-gradient(#fff 0 0) padding-box, /*this is your grey background*/ var(--gradient) border-box;;
    border: 2px solid transparent;
    border-radius: 99px !important;
    padding: 6px 0;
    justify-content: center !important;
    align-items: center;
}

.bt-redirect h4 {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0px !important;
    font-size: 28px;
    line-height: 34px;
    font-weight: 700;
}

.bt-redirect .icon-box-text {
    flex: unset !important;
}

/**home title**/
.home-title {
    display: flex;
    gap: 15px;
    align-items: center;
}

.flex-center {
    justify-content: center !important;
}

.home-title .home-icon img {
    width: 60px;
}

.home-title h3 {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0px !important;
    font-size: 32px;
    line-height: 40px;
    font-weight: 700;
    display: inline-block;
    width: auto;
    font-family: "EncodeSans";
    font-weight: 900;
}

.home-title2 h3 {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0px !important;
    font-size: 32px !important;
    line-height: 40px !important;
    font-weight: 700 !important;
    font-family: "EncodeSans";
}

.home-title2 .icon-box-img {
    margin: 0 0 10px 0;
}

.home-desc {
    width: 700px;
    margin: 20px auto 0;
    text-align: center;
}

/**abouts**/
.abouts p, .abouts2 p {
    font-size: 16px;
    margin: 0 0 10px 0;
}

.abouts2 {
    background: #F2F7FD;
    border-radius: 24px;
    padding: 20px;
}

.button_100 {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.button_100 img, .button_style img {
    width: 28px;
}

/**post item**/
article.box__post .swiper-position {
    position: absolute;
    right: 0;
    top: -63px;
}

.post-item {
    background: #fff;
    box-shadow: 0px 4px 21px 1px #307BC41A;
    border-radius: 20px;
    transition: 0.3s ease-in-out;
}

.post-item .post-thumbnail {
    width: 100%;
    height: 240px;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.3s ease-in-out;
}

.post-item .post-thumbnail img {
    width: 100%;
    height: 100%;
    overflow: hidden;
    object-fit: cover;
    transition: 0.3s ease-in-out;
    border-radius: 20px;
    object-position: center;
}

.post-item .post-content {
    padding: 15px;
}

.post-item .post-content .p-title a {
    font-size: 16px;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 24px;
    height: 50px;
}

.post-item .post-content .p-title a:hover {
    color: #ff3333;
}

.post-item:hover .post-thumbnail img {
    transition: 0.3s ease-in-out;
    transform: scale(1.1);
}

/**category**/
.category-item {
    background: #fff;
    border-radius: 16px;
    padding: 15px !important;
    box-shadow: 0px 1px 4px 0px #0C0C0D0D;
}

.category-item .icon-box-text h3 {
    width: auto;
    display: inline-block;
    margin: 0px !important;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 22px;
    line-height: 30px;
    font-weight: 700;
}

.category-item .icon-box-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.category-item .icon-box-text .button {
    margin: 0px !important;
    height: 40px !important;
    display: flex;
    align-items: center;
    font-size: 15px;
}

.category-item .icon-box-text .button i {
    top: unset;
}

i.icon-angle-right:before {
    content: '\f061' !important;
    font-family: "Font Awesome 6 Pro" !important;
}

.thumb-1 {
    position: absolute !important;
    bottom: -65px;
    right: -75px;
    transform: rotate(45deg);
}

.row-position {
    position: relative;
}

/**Product-item**/
.product-item {
    width: 100%;
    transition: 0.3s ease-in-out;
}

.product-item .product-thumbnail {
    width: 100%;
    height: 280px;
    background: linear-gradient(#fff 0 0) padding-box, /*this is your grey background*/ var(--gradient) border-box;
    border: 1px solid #17151500;
    border-radius: 20px;
    padding: 15px;
    overflow: hidden;
    object-fit: cover;
    transition: 0.3s ease-in-out;
}

.product-item .product-thumbnail img {
    width: 100%;
    height: 100%;
    overflow: hidden;
    object-fit: contain;
    transition: 0.3s ease-in-out;
}

.product-item .product-content {
    padding: 15px 15px 0 15px;
}

.product-item .product-content .p-title a {
    font-size: 16px;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 24px;
    text-align: center;
    height: 50px;
}

.product-item .product-content .p-title a:hover {
    color: #ff3333;
}

.product-item .product-price {
    text-align: center;
    margin: 10px 0 0 0;
}

.product-item .product-price ins span, .product-item .product-price ins, .product-item .product-price b {
    color: #000;
    font-size: 15px;
}

.product-item .product-price del {
    margin-left: 3px;
}

.product-item .product-price del span, .product-item .product-price del {
    font-size: 14px;
}

/**sec new**/
.sec-new .swiper-position {
    position: unset !important;
    top: unset !important;
}

/**footer**/
#footer .footer-title {
    color: #fff;
    font-size: 18px;
    line-height: 24px;
    font-weight: 800;
    font-family: "EncodeSans";
    font-weight: 900;
}

#footer .footer-description {
    color: #fff;
    font-size: 15px;
    font-weight: 300;
}

#footer .menu-redirect .ux-menu-title {
    color: #fff;
    font-size: 15px;
    font-weight: 300;
    text-transform: unset;
    padding: 0px;
    margin: 0 0 10px 0 !important;
    min-height: unset !important;
    height: unset !important;
    line-height: unset !important;
}

#footer p {
    color: #fff;
    font-size: 15px;
    font-weight: 300;
    margin: 0 0 10px 0;
}

#footer p i {
    margin-right: 3px;
}

#footer .footer-support a, .copyright-footer {
    color: #fff;
    font-size: 15px;
    font-weight: 300;
}

#footer .footer-support {
    display: flex;
    align-items: center;
    gap: 15px;
}

#footer .footer-support a img {
    width: 31px;
    object-fit: contain;
}

#footer .footer-menu a {
    color: #fff;
    font-size: 15px;
    font-weight: 300;
    padding: 0px;
    min-height: unset;
    margin: 0 0 10px 0;
}

#footer {
    background: var(--primary-color) url(/wp-content/uploads/2024/08/Layer_1-1.png) !important;
    background-size: contain !important;
}

.absolute-footer {
    background: transparent !important;
}

/**product**/
.category2 .icon-box-img {
    width: 100px;
    background: linear-gradient(#fff 0 0) padding-box, /*this is your grey background*/ var(--gradient) border-box;
    border: 1px solid transparent;
    border-radius: 99px !important;
    padding: 15px;
    justify-content: center !important;
    align-items: center;
    margin: auto;
    height: 100px;
}

.category2 h3 {
    margin: 0px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 24px;
    line-height: 30px;
    font-weight: 700;
}

.swiper-nav.swiper-slide2 {
    display: block;
}

.swiper-slide2 .swiper-button-prev, .swiper-slide2 .swiper-button-next {
    position: absolute !important;
    top: 50%;
    transform: translateY(-50%);
}

.swiper-slide2 .swiper-button-prev {
    left: -70px;
}

.swiper-slide2 .swiper-button-next {
    right: -70px
}

.button_for_outline {
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color) !important;
}

.thumb-2 {
    position: absolute !important;
    bottom: 0;
    right: 0;
    z-index: -1 !important;
}

.thumb-3 {
    position: absolute !important;
    bottom: 0;
    left: 0;
    z-index: -1 !important;
}

.thumb-4 {
    position: absolute !important;
    bottom: -70%;
    right: 0;
    z-index: -1 !important;
}

.thumb-5 {
    position: absolute !important;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    z-index: -1 !important;
}

.rowTop {
    margin-top: -250px;
}

.thumb-6 {
    position: absolute !important;
    bottom: 0;
    right: -150px;
    z-index: -1 !important;
}

.redirect2 {
    background: linear-gradient(#fff 0 0) padding-box, /*this is your grey background*/ var(--gradient) border-box;
    border: 1px solid transparent;
    border-radius: 99px !important;
    padding: 10px 15px !important;
}

.redirect2 .icon-box-text h3 {
    width: auto;
    display: inline-block;
    margin: 0px !important;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 22px;
    line-height: 30px;
    font-weight: 700;
}

.redirect2 .icon-box-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.redirect2 .icon-box-text .button {
    margin: 0px !important;
    height: 50px !important;
    display: flex;
    align-items: center;
    width: 50px !important;
    background: #eff5e7;
    box-shadow: unset !important;
    border: 0;
    color: var(--primary-color1) !important;
    font-size: 20px !important;
    padding: 0;
    justify-content: center;
}

.redirect2 .icon-box-text .button i {
    top: unset;
    margin: 0px;
}

/**category**/
.category-banner {
    padding: 200px 0;
    width: 100%;
    position: relative;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

.category-banner .banner-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 9;
    background: rgba(0, 0, 0, 0.4);
}

.category-banner .banner-container {
    position: absolute;
    width: 100%;
    z-index: 10;
    top: 50%;
    transform: translateY(-50%);
}

.category-banner .banner-container h1 {
    color: #fff;
    font-size: 40px;
    line-height: 50px;
    margin: 0 0 15px 0;
}

.breadcrumbs a, .breadcrumbs span {
    color: #fff !important;
    font-size: 18px;
    font-weight: normal;
}

/**post big**/
.post-big {
    width: 100%;
    display: inline-block;
}

.post-big .post-thumbnail {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.3s ease-in-out;
}

.post-big .post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
    transition: 0.3s ease-in-out;
    border-radius: 20px;
}

.post-big .post-content {
    width: 100%;
    padding: 15px 0 0 0;
}

.post-big .post-content h4 {
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 18px;
    line-height: 28px;
    color: var(--primary-color);
    margin: 0px 0 10px 0;
}

.post-big .post-content .post-date {
    color: #A1A1A1;
    font-size: 15px;
    margin: 0 0 15px 0;
}

.post-big .post-content .post-desc {
    color: #A1A1A1;
    font-size: 15px;
    margin: 15px 0 0 0;
}

.post-big .post-content h4:hover {
    color: #ff3333
}

.post-big .post-thumbnail:hover img {
    transition: 0.3s ease-in-out;
    transform: scale(1.1);
}

.post-small {
    width: 100%;
    display: flex;
    flex-flow: wrap;
}

.post-small a {
    display: flex;
    flex-flow: wrap;
}

.post-small .post-thumbnail {
    width: 220px;
    height: 180px;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.3s ease-in-out;
}

.post-small .post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
    transition: 0.3s ease-in-out;
    border-radius: 20px;
}

.post-small .post-content {
    width: calc(100% - 220px);
    padding-left: 15px;
}


.post-small .post-content h4 {
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 16px;
    line-height: 25px;
    color: var(--primary-color);
    margin: 0px 0 10px 0;
}

.post-small .post-content .post-date {
    color: #A1A1A1;
    font-size: 15px;
    margin: 0 0 15px 0;
}

.post-small .post-content .post-desc {
    color: #A1A1A1;
    font-size: 15px;
    margin: 15px 0 0 0;
}

.post-small .post-content h4:hover {
    color: #ff3333
}

.post-small .post-thumbnail:hover img {
    transition: 0.3s ease-in-out;
    transform: scale(1.1);
}

section.category-entry {
    margin: 40px 0;
}

/**single**/
.post-related {
    width: 100%;
    display: inline-block;
    margin: 30px 0;
}

.header-single h1 {
    color: var(--primary-color);
    font-size: 35px;
    line-height: 35px;
    margin: 0 0 10px 0;
}

.header-single .post-date {
    color: #A1A1A1;
    font-size: 15px;
    margin: 0 0 15px 0;
}

.w1000 {
    width: 950px !important;
    margin: auto !important;
    display: block;
    max-width: 950px !important;
}

.single-post-thumbnail {
    width: 100%;
    margin: 30px 0;
    border-radius: 20px;
}

.single-post-thumbnail img {
    width: 100%;
    border-radius: 20px;
}

.product-info p.price.product-page-price del, .product-info p.price.product-page-price del span {
    color: #d9d9d9 !important;
}

.product-info p.price.product-page-price ins bdi {
    color: var(--primary-color) !important;
    font-size: 22px;
}

h1.product-title.product_title.entry-title {
    color: var(--primary-color) !important;
    font-size: 25px;
}

.product-short-description {
    width: 100%;
    display: inline-block;
    margin: 0 0 10px 0;
}

.product-short-description ul, .product-short-description ol {
    margin-left: 20px !important;
}

.product-short-description p, .product-short-description ul li, .product-short-description ol li {
    color: #727272;
    margin: 0 0 10px 0;
}

button.single_add_to_cart_button.button.alt.wp-element-button {
    background: var(--primary-color) !important;
    box-shadow: unset !important;
    border-radius: 50px !important;
    border: 0px !important;
}

input.plus.button.is-form {
    border-radius: 0 50px 50px 0;
}

.quantity .button.minus {
    border-radius: 50px 0 0 50px !important;
}

.quantity .button.minus, input.plus.button.is-form {
    background: transparent !important;
    width: 30px !important;
}

.qty {
    box-shadow: unset !important;
    width: 70px !important;
    min-width: 70px !important;
}

.product-info .price-wrapper {
    display: flex;
    align-items: center;
}

.product-info .price-wrapper span.dot {
    margin: 0 10px;
    color: #d9d9d9;
}

.product-info .price-wrapper span.ship img {
    margin-right: 10px;
    width: 20px;
}

.product-info .price-wrapper span.ship {
    color: #5375A6;
    font-size: 15px;
    display: flex;
    align-items: center;
}

.product-info .product-stock {
    color: #06C270;
    margin: 20px 0;
    font-size: 16px;
}

.shop-page-title, .category-page-title {
    display: none;
}

.product-info .product-rating {
    width: 100%;
    display: inline-block;
    margin: 0 0 20px 0;
}

.product-info .product-rating i.active {
    color: #FFCC00;
}

.product-info .product-rating i {
    font-size: 13px;
    color: #CFCFCF;
}

form.cart {
    margin: 20px 0;
}

button.single_add_to_cart_button.button.alt {
    background: var(--primary-color) !important;
    border-radius: 99px !important;
}

.product-main {
    padding-top: 20px !important;
}

/*contact**/
.formOjbect.contact {
    width: 100%;
    background: #fff;
    margin: auto;
    -webkit-box-shadow: 0 2px 16px rgba(0, 0, 0, .1);
    box-shadow: 0 2px 16px rgba(0, 0, 0, .1);
    border-radius: 10px;
    padding: 15px;
}

p#billing_address_1_field {
    width: 100%;
}

.input-object, .woocommerce-billing-fields__field-wrapper .input-text {
    width: 100%;
    border-radius: 5px !important;
    -webkit-box-shadow: unset !important;
    box-shadow: unset !important;
    font-size: 15px;
    margin-bottom: 10px !important;
}

textarea#order_comments {
    border-radius: 5px !important;
    -webkit-box-shadow: unset !important;
    box-shadow: unset !important;
    font-size: 15px;
    margin-bottom: 10px !important;
}

.btnObject {
    border-radius: 5px !important;
}

form.wpcf7-form.init {
    margin: 0;
}

/**header**/
.header-support {
    display: flex;
    gap: 15px;
}

.header-support a img {
    width: 30px;
}

.header-hotline a {
    background: #F2F7FD;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 20px;
    border-radius: 99px;
    font-weight: bold;
    font-size: 16px;
    color: var(--primary-color);
}

.header-hotline a img {
    width: 25px;
}

.br-sticky-buttons {
    --size: 40px;
    --shadow: 0 0 10px 5px rgba(0, 0, 0, .1);
    display: flex;
    flex-direction: column;
    gap: 10px;
    bottom: 0;
    right: 0;
    z-index: 20;
    transform: translateY(-50%);
    background: var(--primary-color);
    padding: 10px !important;
    border-radius: 30px 0 0 30px;
}

.br-sticky-buttons:before, .br-sticky-buttons:after {
    content: "";
    position: absolute;
    right: 0;
    height: 30px;
    width: 60px;
    pointer-events: none;
}

.br-sticky-buttons:before {
    top: -30px;
    border-radius: 0 0 50px 0;
    box-shadow: 30px 1px 0 0 var(--primary-color);
}

.br-sticky-buttons:after {
    bottom: -30px;
    border-radius: 0 50px 0 0;
    box-shadow: 30px -1px 0 0 var(--primary-color);
}

.br-sticky-buttons__item {
    width: var(--size);
    aspect-ratio: 1;
    list-style: none;
}

/* button */
.br-sticky-buttons a {
    text-decoration: none;
    border-radius: var(--size);
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
}

.br-sticky-buttons a[title="Hotline"] {
    animation: animate 1.5s ease infinite;
}

.br-sticky-buttons a[title="Hotline"] .br-sticky-buttons__item-image {
    padding: 7px;
}

/* icon */
.br-sticky-buttons__item-image {
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0);
}

/* text */
.br-sticky-buttons__item-text {
    padding: 5px 25px 5px 0;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    display: none;
}

@keyframes animate {
    0% {
        transform: rotate(0deg) scale(1) skew(1deg);
    }
    10% {
        transform: rotate(-25deg) scale(1) skew(1deg);
    }
    20% {
        transform: rotate(25deg) scale(1) skew(1deg);
    }
    30% {
        transform: rotate(-25deg) scale(1) skew(1deg);
    }
    40% {
        transform: rotate(25deg) scale(1) skew(1deg);
    }
    50% {
        transform: rotate(0deg) scale(1) skew(1deg);
    }
    100% {
        transform: rotate(0deg) scale(1) skew(1deg);
    }
}

/* Hide FB chat plugin */
.fb_reset {
    opacity: 0;
    pointer-events: none;
}


/****************************
 * Sticky Buttons Responsive
****************************/
@media only screen and (max-width: 480px) {
    .br-sticky-buttons {
        padding: 5px !important;
        border-radius: 20px 0 0 20px;
    }

    .br-sticky-buttons:before, .br-sticky-buttons:after {
        width: 50px;
    }

    .br-sticky-buttons:before {
        box-shadow: 20px 1px 0 0 var(--primary-color);
    }

    .br-sticky-buttons:after {
        box-shadow: 20px -1px 0 0 var(--primary-color);
    }
}

.ps-fixed {
    position: fixed;
}

.t {
    transition: all .3s ease;
}

.img-wrapper-contain > img {
    object-fit: contain;
}

.br-sticky-buttons a img {
    width: 100%;
    height: 100%;
}

.br-sticky-buttons__item:last-child .br-sticky-buttons__item-image {
    padding: 7px;
}

.br-sticky-buttons__item:last-child a {
    animation: animate 1.5s ease infinite;
}

div#masthead li.html.custom.html_topbar_left {
    margin: 0 20px !important;
}

div#masthead li.html.custom.html_topbar_right {
    margin: 0px !important;
}

/**doi-tac**/
.tab-dt ul li {
    width: 28% !important;
}

.tab-dt ul li a {
    display: flex;
    background: #F2F7FD;
    color: var(--primary-color);
    text-transform: unset;
    font-size: 20px;
    line-height: 26px;
    gap: 5px;
    padding: 5px 30px !important;
    border-radius: 20px 20px 0 0 !important;
    justify-content: center;
}

.tab-dt ul li.active a {
    background: var(--primary-color) !important;
    color: #fff !important;
}

.tab-dt ul li a span {
    display: inline-block;
    width: auto !important;
}

.tab-dt ul li a img {
    width: 50px !important;
    height: 50px !important;
}

.tab-dt ul li.active a img {
    filter: brightness(0) invert(1) !important;
}

.tab-dt .tab-panels {
    padding-top: 30px;
}

.r-radius img {
    border-radius: 20px !important;
}

.dt-title {
    align-items: center;
}

.dt-title h4 {
    color: var(--primary-color);
    font-size: 30px;
    line-height: 38px;
    margin: 0px;
}

.partner-item {
    box-shadow: 0px 4px 21px 1px #307BC41A;
    border-radius: 20px;
}

.partner-item .partner-thumbnail {
    width: 100%;
    height: 240px;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.3s ease-in-out;
}

.partner-item .partner-thumbnail img {
    width: 100%;
    height: 100%;
    overflow: hidden;
    object-fit: cover;
    transition: 0.3s ease-in-out;
    border-radius: 20px;
    object-position: center;
}

.partner-item:hover .partner-thumbnail img {
    transition: 0.3s ease-in-out;
    transform: scale(1.1);
}

.partner-item .partner-content {
    padding: 15px;
    text-align: center;
}

.partner-item .partner-content .p-title a {
    font-size: 16px;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 24px;
}

.partner-item .partner-content .p-title a:hover {
    color: #ff3333;
}

.partner-item .partner-content .p-button {
    margin: 15px 0 0 0;
}

.button_outline_primary {
    color: var(--primary-color) !important;
    background: #fff;
    border: 1px solid var(--primary-color) !important;
}

.p-background .partner-tab-item {
    display: none;
    position: relative;
    z-index: 99;
    background: #F2F7FD;
    padding: 40px 0;
}


.partner-tab-item h3 {
    color: var(--primary-color) !important;
    font-size: 30px;
    line-height: 40px;
    margin: 0 0 30px 0;
}

.p-background .partner-tab-item:before, .p-background .partner-tab-item:after {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    background-size: 100% !important;
}

.p-background .partner-tab-item:before {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: url('/wp-content/uploads/2024/09/Vector-8.png') no-repeat;
}

.p-background .partner-tab-item:after {
    right: 0;
    bottom: 0px;
    background: url('/wp-content/uploads/2024/09/Vector-7.png') no-repeat;
}

.partner-item {
    position: relative;
}

.partner-item:before {
    display: none;
    content: '';
    background: url(http://namson.bacninhit.vn/wp-content/uploads/2024/09/line.png);
    width: 50px;
    height: 50px;
    background-size: 100% !important;
    position: absolute;
    bottom: -65px;
    background-repeat: no-repeat;
    left: 50%;
    transform: translateX(-50%);
}

.partner-item.active:before {
    display: block;
}

.swiper-partner {
    overflow: hidden;
    padding: 10px 10px 50px 10px;
}

.partner-tab-item.active {
    display: block;
}

/**gt**/
.button_style i.icon-angle-down:before {
    content: '\f063';
    font-family: 'Font Awesome 6 Pro';
}

.col-100 .col-inner {
    height: 100%;
}

.image-gt {
    padding: 30px !important;
    background: linear-gradient(#fff 0 0) padding-box, /*this is your grey background*/ var(--gradient) border-box;
    border: 2px solid transparent;
    border-radius: 20px;
    height: 100% !important;
    display: flex;
    align-items: center;
}

.featured_text {
    margin: 0 0 10px 0;
}

.featured_text p {
    margin: 0;
}

.home-title3 {
    display: flex;
    align-items: center;
}

.w-5 {
    max-width: 20% !important;
}


.mt-10 {
    margin-top: 50px !important;
}

.banner_tt {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0px !important;
    font-size: 45px;
    line-height: 55px;
    font-weight: 700;
    display: inline-block;
    width: auto;
    font-family: "EncodeSans";
    font-weight: 900;
}