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

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

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

:root {
    --primary-color2: #ffb500;
}

.absolute-footer, html {
    background-color: #fff !important;
}

@font-face {
    src: url('../fonts/OpenSans-Bold.ttf');
    font-family: "Open San";
    font-weight: bold;
}

@font-face {
    src: url('../fonts/OpenSans-Regular.ttf');
    font-family: "Open San";
    font-weight: normal;
}

#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: 5px 25px;
    font-size: 15px;
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 9;
    border-radius: 5px;
}

.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;
}

@-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;
}

/**product item**/
.product-item {
    border: 2px solid #eaeaea;
    padding: 0.75rem;
    transition: 0.3s ease-in-out;
}

.product-item .product-thumbnail {
    width: 100%;
    height: 180px;
    overflow: hidden;
    transition: 0.3s ease-in-out;
}

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

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

.product-item .product-content {
    width: 100%;
    padding: 15px 0 0 0;
    text-align: center;
}

.product-item .product-content .product-price ins, .product-item .product-content .product-price ins span, .product-item .product-content .product-price b {
    color: #ff3333;
    font-size: 16px;
    font-weight: 700;
}

.product-item .product-content .product-price del {
    color: gray;
    font-size: 14px;
    margin-left: 5px;
}

.product-item .product-content h4 {
    margin: 0 0 5px 0;
}

.product-item .product-content h4 a {
    color: #111113;
    font-size: 20px;
    line-height: 30px;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.product-item .product-content h4 a:hover {
    color: var(--primary-color2) !important;
}

.product-item .product-content .product-category {
    font-size: 17px;
    font-weight: 500;
    margin: 0 0 5px 0;
}

.product-item .product-cart {
    margin: 12px 0 10px 0;
}

.product-item .product-cart a {
    color: #000 !important;
    background: transparent !important;
    font-weight: 700 !important;
    font-size: 13px;
    text-transform: uppercase;
    border: 1px solid var(--primary-color2) !important;
    border-radius: 50px !important;
    margin: 0px !important;
    min-height: 2.5em;
    padding: 0 1.2em;
    line-height: 2.5em;
}

.product-item .product-cart a:hover {
    background: var(--primary-color2) !important;
    color: #fff !important;
}

/**slide**/
body .swiper-button-next, body .swiper-button-prev {
    height: 2.75rem;
    width: 2.75rem;
    border-radius: 0.125rem;
    background-color: rgb(0 0 0 / var(--tw-bg-opacity));
    --tw-bg-opacity: 0.3;
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

body .swiper-button-next:hover, body .swiper-button-prev:hover {
    --tw-bg-opacity: 0.6;
}

body .swiper-button-next::after, body .swiper-button-prev::after {
    font-size: 1.5rem;
    line-height: 2rem;
}


/**category**/
.category-box {
    background: #f5f5f5;
    padding: 0.75rem;
    width: 100%;
    border: 2px solid #eaeaea;
}

.category-box .category-thumbnail {
    width: 100%;
    height: 350px;
    overflow: hidden;
    transition: 0.3s ease-in-out;
}

.category-box .category-thumbnail img {
    width: 100%;
    height: 100%;
    transition: 0.3s ease-in-out;
    object-fit: cover;
}

.category-box .category-content {
    margin: 1.5rem 0 0 0;
    text-align: center;
}

.category-box .category-content h4 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    line-height: 2rem;
}

.category-box .category-content h4 a {
    color: #111113;
    font-size: 1.5rem;
    line-height: 2rem;
}

.category-box .category-content h4 a:hover {
    color: var(--primary-color2)
}

.button_for_primary {
    font-size: 1.125rem;
}

.button_for_primary:hover {
    background: var(--primary-color2);
    color: #fff !important;
}

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

/**post item**/
.post-item {
    background: #f7f6fa;
    width: 100%;
    transition: 0.3s ease-in-out;
}

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

.post-item .post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s ease-in-out;
}

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

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

.post-item .post-meta i {
    color: var(--primary-color);
    margin-right: 2px;
}

.post-item .post-meta {
    display: flex;
    justify-content: space-evenly;
    font-size: 13px;
    color: #000;
    border-bottom: 1px solid #ccc;
    padding: 0 0 8px 0;
    margin: 0 0 8px 0;
}

.post-item .post-content h4 a {
    font-size: 20px;
    line-height: 28px;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-align: left;
    height: 55px;
}

.post-item .post-content h4 {
    margin: 0 0 10px 0 !important;
}

.post-item .post-content h4 a:hover {
    color: var(--primary-color)
}

.post-item .post-content {
    position: relative;
}

.post-item .post-content .post-desc {
    color: #616161;
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 20px;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    font-family: "Open San";
    font-weight: normal;
}

.post-item .post-content .post-btn a {
    padding: 5px 20px !important;
    font-weight: 700 !important;
    font-size: 13px;
    text-transform: uppercase;
}

.post-item .post-content .post-btn {
    position: unset !important;
    margin: 0px !important;
    float: none !important;
    text-align: center;
    border-top: 1px solid #eaeaea;
    padding-top: 13px !important;
}

/**post big**/
.post-big {
    width: 100%;
    transition: 0.3s ease-in-out;
}

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

.post-big .post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s ease-in-out;
}

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

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

.post-big .post-meta {
    text-align: left;
    font-size: 13px;
    color: #ffffff80;
    padding: 0 0 5px 0;
    margin: 0 0 5px 0;
    font-weight: 700;
}

.post-big .post-meta span:first-child {
    border-right: 1px solid #ffffff80;
    padding-right: 6px;
}

.post-big .post-meta span:last-child {
    padding-left: 6px;
}

.post-big .post-content h4 a {
    font-size: 1rem;
    line-height: 1.5rem;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-align: left;
    color: var(--primary-color2)
}

.post-big .post-content h4 {
    margin: 0 0 8px 0 !important;
}

.post-big .post-content h4 a:hover {
    color: var(--primary-color2)
}

.post-big .post-content .post-desc {
    color: #fff;
    font-size: 14px;
    line-height: 18px;
}

/**post list**/
.post-list {
    width: 100%;
    display: flex;
    flex-flow: wrap;
    transition: 0.3s ease-in-out;
}

.post-list:not(:last-child) {
    margin-bottom: 20px;
}

.post-list .post-thumbnail {
    width: 180px;
    height: 140px;
    overflow: hidden;
    transition: 0.3s ease-in-out;
}

.post-list .post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s ease-in-out;
}

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

.post-list .post-content {
    width: calc(100% - 180px);
    padding: 0 0 0 20px;
}

.post-list .post-meta {
    text-align: left;
    font-size: 13px;
    color: #ffffff80;
    padding: 0 0 5px 0;
    margin: 0 0 5px 0;
    font-weight: 700;
}

.post-list .post-meta span:first-child {
    border-right: 1px solid #ffffff80;
    padding-right: 6px;
}

.post-list .post-meta span:last-child {
    padding-left: 6px;
}

.post-list .post-content h4 a {
    font-size: 15px;
    line-height: 22px;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-align: left;
    color: var(--primary-color2)
}

.post-list .post-content h4 {
    margin: 0 0 8px 0 !important;
}

.post-list .post-content h4 a:hover {
    color: var(--primary-color2)
}

.post-list .post-content .post-desc {
    color: #fff;
    font-size: 13px;
    line-height: 18px;
}

/**breadcrumbs**/
section.breadcrumbs {
    background: #fafafa;
    padding: 10px 0 !important;
}

section.breadcrumbs a, section.breadcrumbs span {
    font-size: 16px;
    color: #000;
    font-weight: normal !important;
}

section.breadcrumbs a {
    color: var(--primary-color) !important;
}

section.breadcrumbs p {
    margin: 0;
}

/**category**/
.category-entry {
    margin: 30px 0;
}

/**single*/
#header-single {
    margin-bottom: 15px;
}

#header-single h1 {
    margin: 0 0 15px 0;
}

#header-single .post-meta span {
    font-size: 16px;
}

#header-single .post-meta span:not(:first-child) {
    color: #999;
    margin-left: 15px;
}

.category-description table, .category-description table tr td, .category-description table tr {
    border: 1px solid #c3c3c3 !important;
    color: #000;
}

.category-description table td, .category-description table th {
    padding: 10px;
}

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

.category-description {
    border: 1px solid #ececec;
    padding: 20px;
    border-radius: 4px;
    font-family: "Open San";
    font-weight: normal;
}

#header-single h1 {
    margin: 0 0 20px 0;
}

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

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

.category-description, .entry-content {
    font-family: "Open San";
    font-weight: normal;
    font-size: 16px;
}

.category-description a, .entry-content a {
    color: var(--primary-color2) !important;
    text-decoration: unset !important;
}

article.entry-content {
    padding-top: 0px !important;
}

#comments .comment-respond {
    margin-top: 0px !important;
}

/**taxonomy product cat**/
.shop-page-title.category-page-title.page-title {
    display: none !important;
}

.title_price {
    display: inline-block;
    font-size: 15px;
    min-width: 67px;
    padding: 0 15px;
    text-align: center;
    margin-right: 8px;
    vertical-align: top;
    height: 36px;
    line-height: 36px;
    position: relative;
    border-radius: 30px;
    margin-bottom: 15px;
    font-weight: 600;
    margin-left: -15px;
}

.linkmore {
    border: 1px solid #e0e0e0;
    border-radius: 2px;
    color: #333;
    display: inline-block;
    font-size: 13px;
    min-width: 67px;
    padding: 0 15px;
    text-align: center;
    margin-bottom: 5px;
    margin-right: 8px;
    vertical-align: top;
    height: 36px;
    line-height: 36px;
    position: relative;
    border-radius: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

a.linkmoreall {
    background: #2dbeb3;
    color: #fff !important;
    font-weight: 600;
    padding: 0 10px;
    height: 34px;
    margin-right: 9px;
    text-transform: uppercase;
    border-radius: 3px;
    font-size: 12px;
    display: inline-block;
    line-height: 32px;
}

a.linkmore.active {
    border-color: var(--primary-color2) !important;
    color: var(--primary-color2) !important;
}

.filter-price form {
    margin: 0px !important;
}

.filter-price {
    display: flex;
    align-items: center;
}

select.orderby {
    background-color: #EF99AD !important;
    color: #fff !important;
    font-weight: 600 !important;
    border: none;
    outline: none;
    margin: 0;
    border-radius: 3px !important;
    height: 35px !important;
}

select.orderby option {
    background-color: #EF99AD !important;
    color: #fff !important;
}

/**single product***/
.page-title.shop-page-title.product-page-title {
    display: none !important;
}

.woocommerce-tabs.wc-tabs-wrapper.container.tabbed-content {
    border: 0px !important;
}

.woocommerce-tabs.wc-tabs-wrapper.container.tabbed-content ul {
    border: 0px !important;
}

.woocommerce-tabs.wc-tabs-wrapper.container.tabbed-content ul li {
    border: 1px solid var(--primary-color2) !important;
    border-radius: 50px !important;
    transition: 0.3s ease-in-out;
    padding: 0px 1.5rem;
}

.woocommerce-tabs.wc-tabs-wrapper.container.tabbed-content ul li a {
    font-size: 1rem;
    line-height: 1.5rem;
    text-transform: unset !important;
    color: var(--primary-color2);
}

.woocommerce-tabs.wc-tabs-wrapper.container.tabbed-content ul li a:before {
    display: none !important;
}

.woocommerce-tabs.wc-tabs-wrapper.container.tabbed-content ul li:hover, .woocommerce-tabs.wc-tabs-wrapper.container.tabbed-content ul li.active {
    transition: 0.3s ease-in-out;
    --tw-shadow: 0px 8px 10px rgba(255, 192, 0, 0.3);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.woocommerce-tabs .tab-panels {
    padding: 30px 0 0 0;
    font-size: 16px;
    color: #000;
}

.product-info .price {
    margin: 10px 0 15px 0 !important;
}

.product-info p.price.product-page-price ins,
.product-info p.price.product-page-price ins span,
.product-info p.price.product-page-price b {
    color: #ff3333;
    font-size: 22px;
}

.product-info p.price.product-page-price del {
    margin-left: 5px !important;
    font-size: 17px;
}

span.woocommerce-Price-currencySymbol {
    vertical-align: unset !important;
    margin: 0 !important;
}

.product-short-description {
    border-top: 1px solid #16161633;
    padding-top: 10px;
    margin-top: 15px !important;
}

.product-summary .quantity {
    display: flex;
}

.product-summary .quantity .button.minus, .product-summary .quantity .button.plus {
    height: 40px !important;
    min-height: 40px !important;
    font-weight: bold;
    border: 1px solid #ccc !important;
    background: transparent !important;
    width: 35px !important;
    box-shadow: unset !important;
}

.product-summary .quantity input[type=number] {
    width: 90px;
    margin: 0 5px !important;
    min-width: 90px !important;
    box-shadow: unset !important;
    height: 40px !important;
    min-height: 40px !important;
    border: 1px solid #ccc !important;
}

.product-info button.single_add_to_cart_button.button.alt {
    background: transparent !important;
    color: var(--primary-color2) !important;
    border-color: var(--primary-color2) !important;
    border-radius: 5px !important;
    height: 40px !important;
    margin: 0px !important;
    font-size: 16px;
}

button.button.buy_now_button {
    background: var(--primary-color2) !important;
    border-radius: 5px !important;
    margin: 0px !important;
    font-size: 16px;
}

.badge-container.is-larger.absolute.left.top.z-1 {
    display: none !important;
}


/**widget**/
.widget-post-list {
    width: 100%;
}

.widget-post-list .widget-post-item {
    width: 100%;
    display: flex;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #f2f2f2;
    align-items: center;
}

.widget-post-list .widget-post-item:last-child {
    margin-bottom: 0px;
    padding-bottom: 0px;
    border-bottom: 0px;
}

.widget-post-list .widget-post-item a {
    display: flex;
}

.widget-post-list .widget-post-item .widget-post-thumbnail {
    width: 70px;
    float: left;
    height: 60px;
    border: 1px solid #f2f2f2;
}

.widget-post-list .widget-post-item .widget-post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.widget-post-list .widget-post-item .widget-post-content {
    width: calc(100% - 70px);
    float: left;
    padding-left: 10px;
}

.widget-post-list .widget-post-item .widget-post-content h3 {
    display: inline-block;
    color: #000;
    font-size: 14px;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 5px;
    line-height: 20px;
}

.widget-post-list .widget-post-item .widget-post-content h3:hover {
    color: var(--primary-color2);
}

.widget-post-list .widget-post-item .widget-post-content .post-meta {
    color: gray;
    font-size: 13px
}

.widget-post-list .widget-post-item .widget-post-content .product-price ins,
.widget-post-list .widget-post-item .widget-post-content .product-price ins span,
.widget-post-list .widget-post-item .widget-post-content .product-price b {
    color: #ff3333;
    font-size: 14px;
}

.widget-post-list .widget-post-item .widget-post-content .product-price del {
    color: gray;
    font-size: 13px;
    margin-left: 5px;
}

.widget-title {
    padding: 0 0 10px 0;
    margin: 0 0 15px 0;
    width: 100%;
    display: block;
    border-bottom: 2px solid var(--primary-color);
    text-transform: uppercase !important;
    font-size: 16px !important;
    line-height: 22px !important;
}

.widget-title h3, .widget-title span {
    color: var(--primary-color);
    margin: 0px;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 22px;
    text-align: left;
}

.widget-post-vertical a {
    display: block !important;
    flex-flow: wrap;
}

.widget-post-vertical .widget-post-thumbnail {
    width: 100% !important;
    height: 180px !important;
}

.widget-post-vertical .widget-post-content {
    width: 100% !important;
    padding: 10px 0 0 0 !important;
    border: 0px;
}

.is-divider.small {
    display: none;
}

.widget_categories ul, .widget_product_categories ul {
    margin-top: -5px;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHCAYAAADEUlfTAAAAEklEQVQImWNgYGCQYiAAhoYCAEfjALcmCP1hAAAAAElFTkSuQmCC)
}

.widget_categories ul li, .widget_product_categories ul li {
    width: 100%
}

.widget_categories ul li a, .widget_product_categories ul li a {
    width: 100%;
    display: block;
    color: #333;
    padding: 10px 15px !important;
    background: #e4e4e499;
    border-bottom: 1px solid #fff;
    text-decoration: none;
    font-size: 14px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s
}

.widget_categories ul li a:before, .widget_product_categories ul li a:before {
    content: "\f45c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-size: 6px;
    vertical-align: middle;
    margin-right: 10px;
    color: var(--primary-color)
}

.widget_categories ul li:hover a, .widget_product_categories ul li:hover a {
    background: var(--primary-color) !important;
    color: #fff
}

/**menu**/
div#mega-menu-wrap-primary ul li a {
    color: #fff !important;
    font-weight: 300 !important;
    padding: 0 15px !important;
    text-transform: unset !important;
    font-size: 17px !important;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

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;
}

#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;
    line-height: 20px !important;
    padding: 8px 10px 8px 10px !important;
    display: block !important;
    -webkit-transition: .4s;
    transition: .4s;
    font-size: 16px !important;
    color: #000 !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;
}

div#mega-menu-wrap-primary ul li a: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: 15px !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;
    width: 80% !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: 10px !important;
    text-align: left !important;
    padding-bottom: 5px !important;
    padding-left: 0px !important;
    width: 90% !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: 15px !important;
    text-align: left !important;
    padding-left: 0px !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;
}

/**banner**/
.home-slide-text-2 .home-slide-cat {
    margin-bottom: 30px;
}

.home-slide-text-2 .home-slide-cat a {
    font-size: 24px;
    color: #fff;
    font-weight: 700;
}

.home-slide-text-2 .home-slide-title h3 {
    font-weight: 700;
    font-size: 150px;
    line-height: 130px;
    color: #fff;
    margin-bottom: 55px;
}

.button_for_primary, .button_for_yellow {
    margin-right: 20px;
    font-size: 18px;
    color: #fff !important;
    background: var(--primary-color) !important;
    background-color: var(--primary-color) !important;
    padding: 10px 50px !important;
    text-transform: uppercase !important;
}

.button_for_yellow {
    background: var(--primary-color2) !important;
}

.slide-home .flickity-button {
    width: 70px !important;
    height: 70px !important;
    background: #fff !important;
    color: var(--primary-color) !important;
    border-radius: 50% !important;
    z-index: 9 !important;
    border: 0 !important;
    font-size: 22px !important;
    opacity: 1 !important;
}

.slide-home .previous {
    transform: translateX(0) !important;
    left: 150px !important;
}

.slide-home .slider-nav-circle .next {
    transform: translateX(0) !important;
    right: 150px !important;
    left: unset !important;
}

.slide-home .flickity-button:before {
    content: "";
    position: absolute;
    left: -10px;
    right: -10px;
    top: -10px;
    bottom: -10px;
    border: 2px solid #fff;
    border-radius: 50%;
    opacity: 0.5;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.slide-home .slider-nav-light .flickity-prev-next-button .arrow, .slide-home .slider-nav-light .flickity-prev-next-button svg {
    fill: var(--primary-color) !important;
}

/**social**/
footer#footer {
    background: #182323;
    width: 100%;
    padding: 40px 0 35px 0;
    color: #fff;
}

footer#footer p:not(:last-child) {
    margin: 0 0 8px 0;
}

footer#footer .footer-top {
    width: 100%;
}

footer#footer .footer-top .footer-title {
    margin: 0 0 15px 0;
}

footer#footer .footer-top .footer-title h3 {
    font-size: 23px;
    line-height: 30px;
    color: #fff !important;
    margin: 0px !important;
}

footer#footer .footer-menu ul li {
    border: 0px !important;
    margin: 0 0 8px 0 !important;
}

footer#footer .footer-menu ul li a {
    font-size: 15px;
    line-height: 22px;
    color: #fff;
    padding: 0px 0 0 18px !important;
    transition: 0.3s ease-in-out;
    position: relative;
}

footer#footer .footer-menu ul li a::before {
    color: #fff;
    content: "\f101";
    font-family: "Font Awesome 6 Pro";
    position: absolute;
    left: 0px;
    font-size: 15px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

footer#footer .footer-menu ul li a:hover {
    color: var(--primary-color2) !important;
}

footer#footer .footer-social a {
    display: inline-block;
}

footer#footer .footer-social a:not(:last-child) {
    margin: 0 15px 0 0 !important;
}

footer#footer .footer-social a .icon {
    width: 35px;
    height: 35px;
    background: #fff;
    border-radius: 50% !important;
    text-align: center;
    line-height: 35px;
    color: #000;
    font-size: 18px;
    transition: 0.3s ease-in-out;
}

footer#footer .footer-social a:hover .icon {
    transition: 0.3s ease-in-out;
    transform: translateY(-5px);
    box-shadow: 0 2px 16px #ffa80066;
}

footer#footer .footer-address p {
    margin: 0 0 8px 0;
    color: #fff;
    font-size: 15px;
    line-height: 22px;
}

footer#footer .footer-address p i {
    color: var(--primary-color2)
}

footer#footer .footer-address p.company-name {
    font-weight: 700;
}

footer#footer .footer-bct a:not(:last-child) {
    margin: 0 15px 0 0;
}

footer#footer .footer-bct a img {
    width: 180px;
}

.footer-copyright {
    background: #182323;
    color: #fff;
}

.footer-copyright .copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 0;
    text-align: center;
    font-size: 14px;
    text-transform: uppercase;
}

footer#footer .footer-logo img {
    width: 200px
}

/**abouts**/
.abouts {
    width: 100%;
}

.abouts .abouts-title {
    position: relative;
    margin-bottom: 25px;
}

.abouts h5 {
    color: var(--primary-color);
    font-size: 24px;
    font-family: "Open San";
    font-weight: bold;
    margin-bottom: 15px;
}

.abouts h3 {
    font-size: 45px;
    line-height: 50px;
    color: #363636;
    margin-bottom: 0;
}

.abouts .icon {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
    opacity: 0.07;
}

.abouts .abouts-content p {
    color: #333;
    font-size: 16px;
    font-family: "Open San";
    font-weight: normal;
}

.abouts-service {
    position: relative;
    padding: 40px 30px;
    text-align: center;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    margin-bottom: 30px;
}

.abouts-service:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    z-index: -1;
    clip-path: polygon(3% 0%, 100% 5%, 100% 100%, 0% 95%);
}

.abouts-service .box-image {
    width: 90px !important;
    margin: 0 auto 20px;
}

.abouts-service .box-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.abouts-service h4 {
    color: #fff;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 5px;
}

.abouts-service p {
    color: #fff;
    margin: 0px !important;
    font-size: 15px;
    line-height: 26px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.abouts-service.shape-right:before {
    clip-path: polygon(100% 0%, 0 0%, 0 95%, 100% 100%);
}

/**tieu**/
.cta-area-3 .cta-thumb-1 {
    position: absolute;
    right: 100px;
    top: -128px;
    z-index: 3;
}

.cta-text-3 .cta-cat {
    margin-bottom: 5px;
}

.cta-text-3 .cta-cat a {
    color: #fff;
    font-size: 24px;
}

.cta-text-3 .cta-content h4 {
    color: #fff;
    font-size: 80px;
    font-weight: 700;
    line-height: 80px;
    margin-bottom: 20px;
}

.cta-text-3 .cta-content p {
    margin-bottom: 0;
    font-size: 18px;
    color: #fff;
    line-height: 28px;
}

/**title**/
.home-title {
    position: relative;
    margin-bottom: 25px;
}

.home-title h5 {
    color: var(--primary-color);
    font-size: 24px;
    font-family: "Open San";
    font-weight: bold;
    margin-bottom: 15px;
}

.home-title h3 {
    font-size: 45px;
    line-height: 50px;
    color: #363636;
    margin-bottom: 0;
}

.home-title .icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    opacity: 0.07;
}

/**service**/
.service-wrap-5 {
    text-align: center;
    position: relative;
    z-index: 1;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.service-wrap-5 .service-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 10px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.service-wrap-5 .service-details h4 {
    font-size: 24px;
    position: relative;
    padding-bottom: 28px;
    margin-bottom: 25px;
    color: #363636;
}

.service-wrap-5 .service-details h4:before {
    content: "";
    height: 3px;
    width: 60px;
    background: var(--primary-color);
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    position: absolute;
}

.service-wrap-5 .box-text.text-center {
    text-shadow: unset !important;
}

.service-wrap-5 .service-details p {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 0;
    color: #333;
    font-family: "Open San";
    font-weight: normal;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.service-wrap-5:hover {
    transform: translateY(-10px);
}

.service-wrap-5:hover .overlay {
    background: var(--primary-color) !important;
    opacity: 0.8;
}

.service-wrap-5:hover h4, .service-wrap-5:hover p {
    color: #fff;
}

.service-wrap-5:hover .service-details h4:before {
    background: #fff;
}

.service-wrap-5:hover .service-icon {
    color: #fff;
}

.sec-service {
    position: relative;
}

.sec-service .service-thumb-1 {
    position: absolute;
    right: 90px !important;
    top: -230px;
}

/**summer**/
.progress-circular {
    margin-bottom: 30px;
    text-align: center;
}

.text-white {
    color: #fff !important;
}

.progress-circular h4 {
    font-size: 26px;
    line-height: 28px;
    margin-bottom: 10px;
    margin-top: 30px;
    color: #363636;
}

.progress-circular.text-white h4 {
    color: #fff;
}

.progress-circular p {
    font-size: 16px;
    line-height: 28px;
    color: #686868;
    margin-bottom: 0;
    font-family: "Open San";
    font-weight: normal;
}

.progress-circular.text-white p {
    color: #fff;
}

.progress-circular input {
    display: none !important;
}

.offer-area .seal {
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}

/**deail**/
.offer-details .offer-title h5 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 700;
}

.offer-details .offer-title h3 {
    font-size: 60px;
    line-height: 50px;
    font-weight: 700;
    margin-bottom: 35px;
}

.offer-details .offer-title h4 {
    font-size: 45px;
    line-height: 50px;
    font-weight: 600;
    margin-bottom: 12px;
}

.offer-details .offer-title .price {
    color: #333;
    margin: 0;
}

.offer-details .offer-title .price {
    font-size: 18px;
    display: block;
}

.offer-details .offer-title .price strong {
    color: var(--primary-color);
    font-weight: normal;
}

/**review**/
.testimonial-area-2 {
    overflow: hidden;
    position: relative;
}

.testimonial-area-2 .section-content.relative {
    position: unset !important;
}

.testimonial-area-2 .testimonial-thumb-1 {
    position: absolute;
    left: 0;
    top: 0px;
    height: 100%;
    z-index: -1;
}

.testimonial-area-2 .testimonial-thumb-2 {
    position: absolute;
    right: 300px;
    top: 0px;
    opacity: 0.1;
    z-index: -1;
}

.testimonial-swiper .testimonial-img img {
    display: inline-block;
    border-radius: 30px;
}

.testimonial-swiper .testimonial-details .icon {
    margin-bottom: 30px;
}

.testimonial-swiper .testimonial-details .icon img {
    display: inline-block;
}

.testimonial-swiper .testimonial-details > p {
    font-size: 18px;
    line-height: 28px;
    max-width: 535px;
    color: #fff !important;
    margin: 0;
}

.testimonial-swiper .testimonial-details .author-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 35px;
}

.testimonial-swiper .testimonial-details .author-wrap .author-thumb {
    width: 80px;
}

.testimonial-swiper .testimonial-details .author-wrap .author-thumb img {
    width: 60px;
    height: 60px;
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 3px 11px 0 rgba(125, 198, 66, 0.6);
}

.testimonial-swiper .testimonial-details .author-wrap .author-text {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
    text-align: left;
}

.testimonial-swiper .testimonial-details .author-wrap .author-text h5 {
    font-size: 18px;
    line-height: 20px;
    margin-bottom: 5px;
    font-weight: 600;
    color: #ffff;
}

.testimonial-swiper .testimonial-details .author-wrap .author-text h5, .testimonial-slide .testimonial-details .author-wrap .author-text h5 {
    font-size: 22px;
}

.testimonial-swiper .testimonial-details .author-wrap .author-text p {
    font-family: "Open San";
    font-weight: normal;
    font-size: 13px;
    color: #fff !important;
    margin-bottom: 0;
}

.testimonial-swiper .testimonial-details .author-wrap .author-text p, .testimonial-slide .testimonial-details .author-wrap .author-text p {
    font-size: 15px;
}

.testimonial-area-2 .swiper-nav {
    position: absolute;
    top: 50% !important;
    transform: translateY(-50%);
    right: 0px;
    z-index: 99999;
}

.testimonial-area-2 .swiper-button-prev {
    margin-bottom: 85px !important;
}

.testimonial-area-2 .swiper-button-prev, .testimonial-area-2 .swiper-button-next {
    transform: translateY(-50%);
    width: 70px;
    height: 70px;
    background: transparent;
    border: 3px solid #fff;
    border-radius: 50%;
    font-size: 22px;
    color: #ffff;
    margin-top: -75px;
    position: unset;
}

.title-product h3 {
    font-size: 35px;
    margin: 0;
}

.category-entry .post-item .post-thumbnail {
    width: 100%;
    height: 200px;
}

.banner-category {
    position: relative;
    padding: 130px 0;
    text-align: center;
}

.banner-category .container {
    position: relative;
    z-index: 99;
}

.banner-category:before {
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0px;
    left: 0;
}

.banner-category a, .banner-category span {
    color: #fff !important;
    font-family: "Open San";
    font-weight: normal;
    font-size: 18px;
}

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

.banner-category .breadcrumbs {
    color: #fff;
}

/*8contact**/
.contact-address-wrapper {
    border: 2px solid #e9e9e9;
    padding: 30px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.contact-address-wrapper .contact-address-title {
    margin-bottom: 25px;
}

.contact-address-wrapper .contact-address-title h3 {
    font-size: 28px;
    line-height: 38px;
    color: #363636;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 20px;
}

.contact-address-wrapper .contact-address-title h3:before {
    content: "";
    background-image: url(../images/border-shape.png);
    background-size: contain;
    background-position: center center;
    width: 80px;
    height: 10px;
    position: absolute;
    bottom: 0;
    left: 0;
    background-repeat: no-repeat;
}

.contact-address-wrapper .contact-link {
    list-style: none;
    margin-bottom: 0;
    padding: 0 !important;
}

.contact-address-wrapper .contact-link li {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 45px !important;
    position: relative;
    font-family: "Open San";
    font-weight: normal;
    margin-left: 0px !important;
}

.contact-address-wrapper .contact-link li {
    color: #333;
}

.contact-address-wrapper .contact-link li:before {
    position: absolute;
    content: "";
    background: #e9e9e9;
    width: 40px;
    height: 2px;
    bottom: -24px;
    left: 0;
}

.formContact {
    background-color: #F4F7FC !important;
    background-size: cover !important;
    background-position: center center !important;
    padding-left: 100px;
    padding-right: 100px;
    box-shadow: 0px 20px 40px 0px rgba(161, 161, 161, 0.4);
    margin-bottom: -98px;
    position: relative;
    z-index: 99;
    padding-top: 90px;
    padding-bottom: 60px;
    text-align: center;
}

.formContact h3 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.input_contact {
    height: 60px !important;
    width: 100%;
    border: 1px solid #e9e9e9 !important;
    margin-bottom: 20px !important;
    padding: 0 15px !important;
    color: #7b8e9d !important;
    font-size: 16px !important;
    background: #fff;
    font-weight: 400 !important;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    box-shadow: unset !important;
}

.textarea_contact {
    border: 1px solid #e9e9e9 !important;
    margin-bottom: 20px !important;
    padding: 0 15px !important;
    color: #7b8e9d !important;
    font-size: 16px !important;
    background: #fff;
    font-weight: 400 !important;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    box-shadow: unset !important;
}

.sec-contact {
    position: relative;
    z-index: 99 !important;
}

.btn_contact {
    border-radius: 5px !important;
    padding: 5px 30px !important;
}

.sec-ma {
    position: relative;
    z-index: 9 !important;
}

.cta-wrapper-2 .cta-text-2 .cta-content h3 {
    color: #fff;
    font-size: 60px;
    line-height: 1;
    font-weight: 600;
    margin-top: 15px;
    margin-bottom: 20px;
}

.cta-wrapper-2 .cta-text-2 .cta-content p {
    color: #fff;
    margin-bottom: 0;
    font-size: 16px;
    line-height: 28px;
    padding-right: 10%;
    font-family: "Open San";
    font-weight: normal;
}

.button_for_white {
    background: #fff !important;
    color: #333 !important;
    padding: 10px 50px !important;
}

/**service**/
.service-wrap-3 {
    height: 100%;
    padding: 40px 30px;
    text-align: center;
    background: #f2f9ec;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.service-wrap-3 .service-icon {
    margin-bottom: 25px;
    font-size: 60px;
    line-height: 1;
    color: #7dc642;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.service-wrap-3 .service-details h4 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 5px;
}

.service-wrap-3 .service-details h4 a {
    color: #363636;
}

.service-wrap-3 .service-details p {
    font-size: 15px;
    line-height: 26px;
    color: #686868;
    margin-bottom: 0;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    font-family: "Open San";
    font-weight: normal;
}

.service-wrap-3:hover {
    background: var(--primary-color);
}

.service-wrap-3:hover .service-icon, .service-wrap-3:hover h4 a, .service-wrap-3:hover p {
    color: #fff !important;
}

.sec-gt .col-inner {
    height: 100% !important;
}

/**video**/
.video-wrap .video-thumb {
    position: relative;
    z-index: 1;
}

.video-wrap .video-thumb:before {
    content: "";
    background: #1f2b3b;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.7;
    z-index: 2;
}

.video-wrap .video-thumb img {
    width: 100%;
}

.video-wrap .video-hover {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 3;
    text-align: center;
}

.play-animation {
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    font-size: 20px;
    color: #fff;
    position: relative;
    background: #ffb500;
    border-radius: 50%;
    text-align: center;
    z-index: 1;
    margin-bottom: 50px;
}

.video-wrap .video-hover h3 {
    color: #fff;
    font-size: 65px;
    line-height: 65px;
    font-weight: 600;
    padding: 0 200px;
}

.play-animation:before {
    content: "";
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px solid #fff;
    z-index: -1;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    -webkit-animation-name: shape-2;
    animation-name: shape-2;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    animation-delay: 0.8s;
}

.play-animation:after {
    content: "";
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px solid #fff;
    z-index: -1;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    -webkit-animation-name: shape-3;
    animation-name: shape-3;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    animation-delay: 0.5s;
}

.play-animation .shape {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px solid #fff;
    z-index: -1;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    -webkit-animation-name: shape-1;
    animation-name: shape-1;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    animation-delay: 1.1s;
}

@keyframes shape-1 {
    0% {
        width: 70px;
        height: 70px;
    }
    100% {
        width: 100px;
        height: 100px;
        opacity: 0.5;
    }
}

@keyframes shape-2 {
    0% {
        width: 70px;
        height: 70px;
    }
    100% {
        width: 125px;
        height: 125px;
        opacity: 0.5;
    }
}

@keyframes shape-3 {
    0% {
        width: 70px;
        height: 70px;
    }

    100% {
        width: 150px;
        height: 150px;
        opacity: 0.5;
    }
}

/**partner**/
.partner-item a {
    text-align: center;
    display: flex;
    justify-content: center;
}

.partner-item a img {
    width: 90px;
    height: 90px;
    object-fit: contain;
}

/*8gioi thieu**/
.about-thumb .about-thumb-small {
    position: absolute;
    left: -60px;
    bottom: -60px;
}

.about-seal {
    position: absolute !important;
    right: 50px;
    top: -70px;
}

.about-feature {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 30px;
}

.about-feature .about-feature-icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    background: #e5f4d9;
    border-radius: 50%;
    font-size: 24px;
    color: var(--primary-color);
}

.about-feature .about-feature-content {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
    padding-left: 26px;
}

.about-feature .about-feature-content h5 {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 5px;
}

.about-feature .about-feature-content p {
    font-size: 16px;
    line-height: 28px;
    color: #333;
    margin-bottom: 0;
    font-family: "Open San";
    font-weight: normal;
}

.home-title.text-white h5, .home-title.text-white h3 {
    color: #fff !important;
}

.home-title.text-white .icon {
    opacity: 0.1;
}

.box-wh .box-text {
    text-align: center;
    padding: 40px 35px !important;
    background: #314156;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    text-shadow: unset !important;
}

.box-wh .box-text h4 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #fff;
}

.box-wh .box-text p {
    margin-bottom: 0;
    color: #fff;
    font-size: 16px;
    line-height: 26px;
    font-family: "Open San";
    font-weight: normal;
}

.box-wh .box-text .read-more {
    color: #fff;
    font-size: 30px;
    margin-top: 12px;
}

.box-wh:hover .box-text {
    background: var(--primary-color) !important;
}


.slide-2 .testimonial-details .rating {
    font-size: 18px;
    color: #7dc642;
    margin-bottom: 18px;
}

.slide-2 .testimonial-details > p {
    color: #363636 !important;
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 0;
}

.slide-2 .testimonial-details .author-wrap .author-thumb {
    width: 80px;
}

.slide-2 .testimonial-details .author-wrap .author-thumb img {
    width: 60px;
    height: 60px;
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 3px 11px 0 rgba(125, 198, 66, 0.6);
}

.slide-2 .testimonial-details .author-wrap .author-text h5 {
    font-size: 18px;
    line-height: 20px;
    margin-bottom: 5px;
    font-weight: 600;
    color: #363636;
    width: auto;
}

.slide-2 .testimonial-details .author-wrap .author-text p {
    font-weight: 600;
    font-size: 13px;
    color: #7dc642 !important;
    margin-bottom: 0;
}

.slide-2 .testimonial-details .author-wrap .author-text {
    width: auto !important;
}

.slide-2 .testimonial-details .author-wrap {
    justify-content: center !important;
}

.slide-2 .swiper-button-prev, .slide-2 .swiper-button-next {
    width: 70px;
    height: 70px;
    background: #e5f4d9 !important;
    border: 0;
    border-radius: 50%;
    font-size: 22px;
    color: #7dc642 !important;
    border-radius: 50%;
    font-size: 22px;
}

.accordion.faq-ad .accordion-item {
    font-size: 22px;
    font-weight: 600;
    color: #363636;
    background: #fff;
    width: 100%;
    border: 2px solid #fff;
    padding: 18px 0 !important;
    text-align: left;
    border-radius: 0;
    position: relative;
    padding-left: 18px !important;
    margin-bottom: 20px !important;
}

.faq-ad button.toggle {
    position: absolute;
    right: 0px !important;
    left: unset !important;
    margin: 0px !important;
}


.accordion.faq-ad .accordion-item a {
    border: 0px !important;
    background: transparent !important;
    padding: 0 50px 0 0 !important;
}

.accordion.faq-ad .accordion-item p {
    font-size: 16px !important;
    font-weight: normal;
}

.accordion.faq-ad .accordion-item .accordion-inner {
    padding: 15px 0 !important;
}

.faq-wrap h3 {
    font-size: 60px;
    line-height: 70px;
    color: #363636;
    margin-bottom: 35px;
}