@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,500;0,700;0,900;1,400;1,500;1,700;1,900&display=swap');

@font-face {
    font-family: "UTM Neo Sans Intel";
    src: url(../fonts/utm_neo_sans_intel.ttf)
}

section {
    padding: 40px 0 55px;
}

body {
    line-height: 1.7;
    font-family: "UTM Neo Sans Intel", sans-serif;
    color: #333;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
}

a {
    text-decoration: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--primary-color);
}

h1 {
    font-weight: 700;
}

h2 {
    font-size: 30px;
    font-weight: 700;
}

ul {
    margin: 0;
}

.sec-slide {
    padding: 0;
}

.home-slick .items:before {
    content: "";
    background-color: #151c14;
    opacity: 0.26;
    height: 100%;
    width: 100%;
    top: 0;
    position: absolute;
    left: 0;
    z-index: 9;
    display: block;
}

.home-slick .content {
    top: 50%;
    right: 0;
    left: auto;
    transform: translate(0, -35%);
    z-index: 99;
}

.home-slick .content .bg {
    background: rgba(255, 255, 255, 0.7);
    text-align: center;
    padding: 60px;
    border-radius: 7px;
}

.home-slick .content .bg .title {
    font-size: 45px;
    font-weight: bold;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 10px;
    line-height: 1;
    font-family: system-ui;
}

.home-slick .content .bg .des {
    font-size: 35px;
    line-height: 1;
    margin-bottom: 50px;
}

.home-slick .content .bg a {
    display: inline-block;
    background: var(--primary-color);
    border-radius: 5px;
    padding: 15px 45px 22px;
    font-size: 33px;
    line-height: 1;
    color: #fff;
    transition: all 0.5s ease-in-out;
}

.home-slick .items:after {
    width: 100%;
    height: 61px;
    background: url(../images/after-slide.png) no-repeat center center;
    display: inline-block;
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    z-index: 9;
}

.title_module_main .h2,
.title_module_main h2 {
    font-weight: 700;
    letter-spacing: 0;
    position: relative;
    display: block;
    font-size: 30px;
    text-transform: uppercase;
    padding-bottom: 10px;
    color: var(--primary-color);
    text-align: center;
}

.sec-service .background {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    border-radius: 20px;
}

.sec-service .background .item-product {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 20%;
    max-width: 20%;
    position: relative;
    z-index: 2;
    border-right: 1px solid rgba(255, 255, 255, 0.6);
	background-color: rgba(20, 25, 85, 0.4);
    min-height: 445px;
}

.sec-service .background .item-product.hover {
    opacity: 1;
    background-color: var(--bg-primary-overlay);
    backdrop-filter: saturate(90%) blur(5px);
}

.sec-service .background .item-product .background_list_content {
    display: flex;
    height: 100%;
    padding: 30px 15px;
    flex-direction: column;
    justify-content: flex-end;
}

.sec-service .background .item-product .background_list_content .image {
    transition: transform .3s ease;
}

.sec-service .background .item-product.hover .background_list_content .image {
    transform: translateY(-40px);
}

.sec-service .background .item-product .background_list_content .image .item-product-content {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
}

.sec-service .background .item-product .background_list_content .content {
    overflow: hidden;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform .3s ease;
    max-height: 0;
    transform: translateY(10px);
}

.sec-service .background .item-product.hover .background_list_content .content {
    max-height: 100%;
    transform: scaleY(1);
    overflow: visible;
    transform: translateY(-20px);
}

.sec-service .background .item-product .background_list_content .content .background-content {
    color: #fff;
    font-size: 14px;
}

.sec-service .background .item-product .button {
    position: absolute;
    bottom: -70px;
    border-radius: 0;
    width: 100%;
    background: var(--secondary-color);
    text-align: center;
    color: #fff;
    transition: all 0.5s ease-in-out;
    right: 0;
    padding: 8px 32px;
}

.sec-service .background .item-product.hover .button {
    bottom: 0;
}

.sec-service .background .iq_background_img {
    visibility: hidden;
    opacity: 0;
    transition: all 1s;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 0;
    overflow: hidden;
}

.sec-service .background .iq_background_img.hover {
    opacity: 1;
    visibility: visible;
    transform: scale(1.05);
}

.sec-about .image img {
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
}

.seemore {
    display: inline-block;
    padding: 8px 38px 9px;
    font-size: 18px;
    color: #fff;
    background: var(--primary-color);
    font-weight: bold;
    border-radius: 10px;
    transition: all 0.5s ease-in-out;
}

.download {
    display: inline-block;
    padding: 8px 38px 9px;
    font-size: 18px;
    color: #fff;
    background: var(--secondary-color);
    font-weight: bold;
    border-radius: 10px;
    transition: all 0.5s ease-in-out;
}

.seemore:hover {
    color: #fff;
}

.download:hover {
    color: #fff;
}

.sec-about .content-about .des {
    margin-bottom: 60px;
    font-size: 16px;
    display: block;
    text-align: justify;
}

.pn-item {
    background-color: #fff;
    border-radius: 10px;
    transition: all ease .3s;
    padding: 50px 100px 50px 40px;
    position: relative;
    overflow: hidden;
    width: 100%;
    text-align: left;
    box-shadow: 0px 0px 10px 0px #dddddd;
}

.pn-item span {
    display: inline-block;
    font-size: 18px;
    line-height: 26px;
    color: var(--primary-color);
    font-weight: bold;
    text-align: left;
}

.pn-item span:not(.pn-text-js) {
    position: absolute;
    right: -100px;
    bottom: -100px;
    width: 200px;
    height: 200px;
    border-radius: 100px;
    background-color: var(--primary-color);
}

.pn-item span img {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 60px;
    height: auto;
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
}

/* .pn-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 3px 10px rgb(16 16 16 / 30%);
    -moz-box-shadow: 0 3px 10px rgba(16, 16, 16, .3);
    -webkit-box-shadow: 0 3px 10px rgb(16 16 16 / 30%);
} */

.article-main {
    font-family: "UTM Neo Sans Intel";
    font-weight: 400;
    margin: 15px 0 20px;
    font-size: 16px;
    color: #000;
}

.bread-crumb {
    background-attachment: fixed;
    background-size: auto;
    background-repeat: no-repeat;
    background-position: top;
    color: #fff;
    padding: 80px 0 !important;
}

.box_meta_single_gallery>a {
    display: block;
    width: 100%;
}

.box_meta_single_gallery>a>img {
    width: 100%;
}

.box_meta_single_gallery .item {
    position: relative;
}

.box_meta_single_gallery_thumbanil {
    margin-bottom: 15px;
}

.box_meta_single_gallery_thumbanil img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

a.thumb_more {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgb(0 0 0 / 51%);
}

a.thumb_more span {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.breadcrumb {
    margin: 0;
    color: #fff;
}

.breadcrumb li {
    display: inline;
    font-size: 22px;
}

.breadcrumb li a {
    color: #fff;
}

.breadcrumb li span {
    display: inline;
    color: #898989;
}

.breadcrumb li.separator {
    margin: 0 3px;
}

.slick-slide {
    margin: 0 10px;
}

.slick-list {
    margin: 0 -10px;
}

.slick-product .slick-slide {
    margin: 10px 10px;
}

.slick-product .slick-list {
    margin: -10px -10px;
}

.home-slick .slick-slide {
    margin: 0;
}

.home-slick .slick-list {
    margin: 0;
}

.slick-arrow {
    top: 185px;
    font-size: 0;
    line-height: 0;
    position: absolute;
    display: block;
    width: 40px;
    height: 40px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: var(--secondary-color);
    border-radius: 10px;
    line-height: 40px;
    text-align: center;
    z-index: 2;
}

.slick-arrow.slick-prev {
    left: -20px;
}

.slick-arrow.slick-next {
    right: -20px;
}

.slick-product .slick-arrow.slick-prev:before,
.slick-product .slick-arrow.slick-next:before {
    font-family: 'Font Awesome 6 Free';
    background: transparent;
    font-weight: 900;
    height: 40px;
    width: 40px;
    border-radius: 10px;
    display: block;
    transition: all ease 0.3s;
    font-size: 24px;
    color: #fff;
}

.slick-arrow.slick-prev:before {
    content: "\f104";
}

.slick-arrow.slick-next:before {
    content: "\f105";
}

.slick-brand {
    border-radius: 10px;
    padding: 10px;
}

.slick-brand .item {
    min-height: 90px;
    position: relative;
    height: 159px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slick-brand .item img {
    max-width: 100%;
    max-height: 100%;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    -ms-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

.blogwp .image-blog {
    text-align: center;
    float: left;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
	width: 100%;
}

.blogwp .image-blog {
    overflow: hidden;
    display: block;
    box-shadow: 5px 7px 5px #ddd;
	border-radius: 0;
}

.blogwp .image-blog img {
    width: 100%;
    transform: scale(1);
    transition: .3s ease-in-out;
    object-fit: cover;
}

.blogwp .content_blog {
    clear: left;
    display: block;
    padding-top: 5px;
    margin-top: 15px;
}

.blogwp .content_blog h3 {
    font-family: "UTM Neo Sans Intel";
    font-weight: bold;
    padding: 0px;
    margin: 15px 0px;
    font-size: 20px;
    color: #000;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    height: 27px;
    line-height: 1.4;
}

.blogwp .content_blog h3 a {
    color: #000;
}

.see {
    color: var(--secondary-color);
    font-size: 18px;
    font-weight: 700;
}

.blogwp .image-blog:hover img {
    transform: scale(1.1);
}

.wc-block-checkout__terms {
    display: none;
}

.header__top {
    padding: 10px 0;
    background: #fff;
}

.header {
    background: var(--primary-color);
}

.header,
.header__top {
    position: relative;
    border-bottom: 3px solid var(--primary-color);
}

.header__top {
    height: 100px;
}

.header__top * {
    height: 100%;
}

.header__top__left p {
    color: #ffffff;
    margin-bottom: 0;
    font-weight: bold;
    text-transform: uppercase;
}

.header__top__left.slogan {
    margin-top: 10px;
    border-right: 2px solid #fff;
}

.header__top__right {
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header__top__links {
    display: inline-block;
    margin-right: 25px;
}

.header__top__links a {
    color: #ffffff;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-right: 28px;
    display: inline-block;
}

.header__top__links a:last-child {
    margin-right: 0;
}

.header__top__hover {
    display: inline-block;
    position: relative;
    padding-left: 20px;
}

.header__top__hover:hover ul {
    top: 24px;
    opacity: 1;
    visibility: visible;
}

.header__top__hover span {
    font-size: 13px;
    display: inline-block;
    cursor: pointer;
}

.header__top__hover span i {
    font-size: 20px;
    position: relative;
    top: 3px;
    right: 2px;
}

.header__top__hover ul {
    background: #ffffff;
    display: inline-block;
    padding: 2px 0;
    position: absolute;
    right: 0;
    top: 44px;
    opacity: 0;
    visibility: hidden;
    z-index: 3;
    -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    -webkit-transition: all, 0.3s;
    -o-transition: all, 0.3s;
    transition: all, 0.3s;
}

.header__top__hover ul li {
    list-style: none;
    font-size: 13px;
    color: #111111;
    padding: 2px 15px;
    cursor: pointer;
}

.header__logo a {
    display: inline-block;
}

.header__menu {
    text-align: center;
    padding: 6px 0 5px;
}

.header__menu ul li {
    list-style: none;
    display: inline-block;
    margin-right: 45px;
    position: relative;
}

.header__menu ul li.current-menu-item a:after {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.header__menu ul li:hover a:after {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.header__menu ul li:hover .dropdown {
    top: 33px;
    opacity: 1;
    visibility: visible;
}

.header__menu ul li:last-child {
    margin-right: 0;
}

.header__menu ul li .sub-menu {
    position: absolute;
    left: 0;
    top: 56px;
    width: 200px;
    background: #ffffff;
    text-align: left;
    padding: 5px 0;
	margin: 0;
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all, 0.3s;
    -o-transition: all, 0.3s;
    transition: all, 0.3s;
    box-shadow: 0px 3px 8px #444;
    border-bottom: 3px solid var(--secondary-color);
}

.header__menu ul li .sub-menu li {
    display: block;
    margin-right: 0;
    padding: 0 5px;
}

.header__menu ul li .sub-menu li a {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 400;
    padding: 8px 15px;
    text-transform: capitalize;
}

.header__menu ul li .sub-menu li a:hover {
    color: #ffffff;
    border-radius: 30px;
    background: var(--primary-color);
}

.header__menu ul li .sub-menu li a:after {
    display: none;
}

.header__menu ul li a {
    font-size: 18px;
    color: #ffffff;
    display: block;
    font-weight: 600;
    position: relative;
    padding: 3px 0;
}

.header__menu ul li a:after {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--secondary-color);
    content: "";
    -webkit-transition: all, 0.5s;
    -o-transition: all, 0.5s;
    transition: all, 0.5s;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}

.header__nav__option {
    text-align: right;
    display: inline-block;
    height: auto;
}

.header__nav__option a {
    display: inline-block;
    margin-right: 26px;
    position: relative;
    height: auto;
}

.header__nav__option a img {
    height: auto;
}

.header__nav__option a.js-show-cart span {
    color: #fff;
    font-size: 11px;
    position: absolute;
    left: auto;
    top: 12px;
    right: -7px;
    padding: 0px 5px;
    background: #7c6455;
    border-radius: 10px;
    display: block;
    height: auto;
}

.header__nav__option a:last-child {
    margin-right: 0;
}

.header__nav__option .price {
    font-size: 15px;
    color: #111111;
    font-weight: 700;
    display: inline-block;
    margin-left: -20px;
    position: relative;
    top: 3px;
}

.header__nav__option a.js-show-cart span,
.offcanvas__nav__option .js-show-cart span,
.offcanvas__nav__option .xoo-wsc-basket span {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 10px;
    position: absolute;
    left: auto;
    top: -7px;
    right: -6px;
    padding: 0 5px;
    background: #fff;
    border-radius: 10px;
    display: block;
    border: 1px solid var(--secondary-color);
}

.m-show {
    display: none;
}

.offcanvas-menu-wrapper {
    display: none;
}

.canvas__open {
    display: none;
}

.social-sharing {
    display: none;
}

.search-model {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(255, 255, 255, .9);
    z-index: 99999;
}

.search-model-form {
    padding: 0 15px;
}

.search-model-form input {
    width: 350px;
    font-size: 25px;
    border: 2px solid var(--primary-color);
    background: #fff;
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 50px;
    display: inline-block;
}

.search-model-form input[type=submit] {
    width: 50px;
    font-weight: 700;
    -webkit-transition: all, 0.3s;
    -o-transition: all, 0.3s;
    transition: all, 0.3s;
}

.search-model-form input[type=submit]:hover {
    background: var(--primary-color);
    color: #fff;
}

.search-close-switch {
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #fff;
    text-align: center;
    border-radius: 50%;
    font-size: 28px;
    line-height: 50px;
    top: 30px;
    cursor: pointer;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

footer {
    padding-top: 70px;
    position: relative;
    background-color: var(--primary-color) !important;
}

.footer h6 {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

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

.footer .textwidget ul {
    padding: 0;
}

.footer .textwidget ul li {
    line-height: 36px;
    list-style: none;
}

.footer .textwidget ul li a {
    color: #fff;
    font-size: 15px;
}

.footer .textwidget p {
    color: #fff;
}

.footer .textwidget p a {
    color: #fff;
}

.footer .logo {
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
}

.pagination-post .pager {
    justify-content: center;
    display: flex;
    gap: 5px;
}
.pagination-post .pager li {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ebebeb;
    font-size: 18px;
}
.pagination-post .pager li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #333;
}
.pagination-post .pager li.active a{
    z-index: 1;
    color: #fff;
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.woocommerce-pagination {
    display: none;
}

.content-page input {
    height: 50px;
    width: 100%;
    border: 1px solid #e1e1e1;
    padding-left: 20px;
    font-size: 15px;
    color: #b7b7b7;
}
.content-page input:focus {
    outline: none;
    box-shadow: none;
}
.content-page textarea {
    height: 150px;
    width: 100%;
    border: 1px solid #e1e1e1;
    padding-left: 20px;
    padding-top: 12px;
    font-size: 15px;
    color: #b7b7b7;
    resize: none;
}
.content-page textarea:focus {
    outline: none;
    box-shadow: none;
}
.content-page input[type="submit"] {
    color: #fff;
    background: var(--secondary-color);
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    padding: 14px 30px;
    border-radius: 10px;
    position: relative;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.img-about img {
	border-radius: 10px;
    object-fit: cover;
}

.components-button {
	background: var(--secondary-color);
	color: #fff;
}

.components-button:hover {
	color: #fff;
}

.wc-block-components-product-name {
	color: var(--secondary-color);
	font-weight: bold;
}

.wc-block-components-address-form__address_2, .wc-block-components-address-form__address_2 input {
	display: none;
}

.wc-block-components-address-form__postcode, .wc-block-components-address-form__postcode input {
	display: none;
}

.wc-block-components-address-form__city, .wc-block-components-address-form__city input {
	display: none;
}
.wc-block-components-checkout-step__container label[for="subscribe-to-newsletter"] {
	display: none;
}

.wc-block-components-country-input {
	visibility: hidden;
	height: 0;
}

.devvn-popup-content-left .form-group button {
	display: none;
}

.devvn-popup-content-left .custom-btn-number {
    position: relative;
    padding: 0;
    margin-bottom: 0px;
    border: none;
    box-shadow: none;
    width: 110px;
    display: inline-block;
    float: left;
    margin-right: 10px;
    border: 1px solid #ebebeb
}

.devvn-popup-content-left .custom-btn-number #qty {
    font-size: 1em;
    margin: 0;
    padding: 0 23px;
    border-radius: 0;
    text-align: center;
    padding: 0;
    height: 20px;
	width: 100%;
	display: block;
    border: none !important
}

.devvn-popup-content-left .custom-btn-number .qtyminus {
    position: absolute;
    left: 1px;
    text-align: center;
    top: 1px;
    width: 40px;
    height: 18px;
    line-height: 17px;
    font-size: 25px;
    cursor: pointer;
    color: #898989;
    background: #fff
}

.devvn-popup-content-left .custom-btn-number .qtyplus {
    position: absolute;
    right: 1px;
    text-align: center;
    top: 1px;
    width: 40px;
    height: 18px;
    line-height: 17px;
    font-size: 20px;
    cursor: pointer;
    color: #898989;
    background: #fff
}

.view-mode {
	display: none;
}

.header__top img {
	height: 100%!important;
}

.product-box {
	transition: all .3s!important;
}

.product-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 3px 10px rgb(16 16 16 / 30%);
    -moz-box-shadow: 0 3px 10px rgba(16, 16, 16, .3);
    -webkit-box-shadow: 0 3px 10px rgb(16 16 16 / 30%);
}

.product-box .product-summary {
	color: #333!important;
	display: none;
}

.slick-dots li button {
  background-color: var(--primary-color);
}

.slick-dots li.slick-active button {
  background-color: var(--secondary-color);
}

.slick-dots {
	list-style: none;
	display: flex;
	justify-content: center;
	margin: 0;
	padding: 0;
	gap: 5px;
}
.slick-dots li button {
  width: 15px;
  height: 15px;
  border: none;
  text-indent: 100%;
  font-size: 0;
}
.slick-dots {
  margin: 10px 0;
}

.slick-dots li button {
  border-radius: 50%; 
}

.slick-dots li button {
  padding: 0;
}

.details-product {
	position: relative;
}

.woocommerce span.onsale {
	background-color: var(--secondary-color);
}

.sale-flash {
	display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #d80d0d;
    font-size: 12px;
    color: #fff;
    font-weight: 500;
    position: absolute;
    top: 0;
    right: 0;
    padding: 6px;
    border-radius: 0 0 0 15px;
    z-index: 2;
}

@media only screen and (max-width: 768px) {
	#page {
		padding-top: 85px;
	}
    .m-hide {
        display: none;
    }

    .m-show {
        display: block;
    }

    .header {
        background: #fff;
        border-bottom: 3px solid var(--secondary-color);
    }

    .header__logo {
        width: 200px;
        padding-top: 10px;
    }

    .header__top__left.slogan {
        margin-top: 0;
        border: none;
        padding: 0;
        display: none;
    }

    .header__top__left p {
        font-size: 12px;
        color: #666;
    }

    .canvas__open {
        display: flex;
        align-items: center;
        justify-content: center;        
        font-size: 22px;
        color: var(--primary-color);
        height: 35px;
        width: 35px;
        line-height: 35px;
        text-align: center;
        border: 1px solid var(--primary-color);
        border-radius: 2px;
        cursor: pointer;
        position: absolute;
        right: 15px;
        top: 15px;
    }

    .offcanvas-menu-overlay {
        position: fixed;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        background: rgba(0, 0, 0, .7);
        content: "";
        z-index: 151;
        -webkit-transition: all, 0.5s;
        -o-transition: all, 0.5s;
        transition: all, 0.5s;
        visibility: hidden;
    }

    .offcanvas-menu-overlay.active {
        visibility: visible;
    }

    .offcanvas-menu-wrapper {
        position: fixed;
        left: -400px;
        width: 80%;
        max-width: 400px;
        height: 100%;
        background: #fff;
        padding: 50px 20px 30px 30px;
        display: block;
        z-index: 152;
        overflow-y: auto;
        -webkit-transition: all, 0.5s;
        -o-transition: all, 0.5s;
        transition: all, 0.5s;
        opacity: 0;
        border-left: 5px solid var(--primary-color);
    }

    .offcanvas-menu-wrapper.active {
        opacity: 1;
        left: 0;
    }

    .offcanvas__menu {
        display: none;
    }

    .offcanvas__option {
        text-align: center;
        margin-bottom: 30px;
    }

    .offcanvas__links {
        display: inline-block;
        margin-right: 25px;
    }

    .offcanvas__links a {
        color: #111;
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-right: 16px;
        display: inline-block;
        font-weight: 600;
    }

    .offcanvas__links a:last-child {
        margin-right: 0;
    }

    .offcanvas__top__hover {
        display: inline-block;
        position: relative;
    }

    .offcanvas__top__hover:hover ul {
        top: 24px;
        opacity: 1;
        visibility: visible;
    }

    .offcanvas__top__hover span {
        color: #111;
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 2px;
        display: inline-block;
        cursor: pointer;
        font-weight: 600;
    }

    .offcanvas__top__hover span i {
        font-size: 20px;
        position: relative;
        top: 3px;
        right: 2px;
    }

    .offcanvas__top__hover ul {
        background: #111;
        display: inline-block;
        padding: 2px 0;
        position: absolute;
        left: 0;
        top: 44px;
        opacity: 0;
        visibility: hidden;
        z-index: 3;
        -webkit-transition: all, 0.3s;
        -o-transition: all, 0.3s;
        transition: all, 0.3s;
    }

    .offcanvas__top__hover ul li {
        list-style: none;
        font-size: 13px;
        color: #fff;
        padding: 2px 15px;
        cursor: pointer;
    }

    .offcanvas__nav__option {
        text-align: center;
        margin-bottom: 25px;
    }

    .offcanvas__nav__option a {
        display: inline-block;
        margin-right: 26px;
        position: relative;
    }

    .offcanvas__nav__option a span {
        color: #0d0d0d;
        font-size: 11px;
        position: absolute;
        left: 5px;
        top: 8px;
    }

    .offcanvas__nav__option a:last-child {
        margin-right: 0;
    }

    .offcanvas__nav__option .price {
        font-size: 15px;
        color: #111;
        font-weight: 700;
        display: inline-block;
        margin-left: -20px;
        position: relative;
        top: 3px;
    }

    .offcanvas__nav__option .xoo-wsc-basket {
        padding: 0;
        margin: 0;
        bottom: 0;
        border: none;
        box-shadow: none;
    }

    .offcanvas__text p {
        color: #111;
        margin-bottom: 0;
    }

    .offcanvas__logo {
        margin: 0 auto 20px;
        width: 80%;
    }

    .offcanvas__social {
        text-align: left;
    }

    .offcanvas__social a {
        font-size: 16px;
        color: #666;
        display: inline-block;
        margin-right: 10px;
    }

    .header__top {
        display: none;
    }

    .header .container {
        position: relative;
    }

    .header__menu {
        display: none;
    }

    .header__nav__option {
        display: none;
    }

    .search-model-form input {
        width: 80%;
        font-size: 24px;
    }

    .spad {
        padding-top: 60px;
    }

    .filter__controls li {
        margin-right: 15px;
        font-size: 16px;
    }

    .header {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 150;
        width: 100%;
        height: 85px;
        background: #fff;
    }

    .header::before {
        background-size: 150px;
        opacity: 0;
    }

    .header__top__left.slogan {
        margin-top: 0;
        border: none;
        padding: 0;
    }

    .offcanvas__logo {
        width: 70%;
    }

    .header__logo {
        padding-bottom: 5px;
    }

    .header__top__left p {
        color: var(--secondary-color);
    }

    .header,
    .header__top {
        border-bottom: 3px solid var(--primary-color);
    }

    .canvas__open {
        color: var(--primary-color);
        border: 1px solid var(--primary-color);
    }
    .background {
        display: inline-block!important;
    }
    .background .item-product {
        border-bottom: 1px solid rgba(255,255,255,0.5);
        min-height: auto!important;
        overflow: hidden;
        text-align: center;
        -ms-flex: 0 0 100%!important;
        flex: 0 0 100%!important;
        max-width: 100%!important;
    }
    .background .item-product .background_list_content {
        padding: 60px 15px!important;
    }
    .background .iq_background_img img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover;
    }
    .sec-about .image {
        margin-bottom: 15px;
    }
    .content-about h2 {
        text-align: center;
    }
	.slicknav_btn {
        display: none;
    }

    .slicknav_menu {
        background: transparent;
        padding: 0;
        margin-bottom: 20px;
    }

    .slicknav_nav ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .slicknav_nav ul.dropdown {
        margin-left: 15px;
    }

    .slicknav_nav .slicknav_row,.slicknav_nav a {
        padding: 7px 0;
        margin: 0;
        color: #111;
        font-weight: 600;
		font-size: 22px;
		display: block;
    }

    .slicknav_nav .slicknav_arrow {
        color: #111;
    }

    .slicknav_nav .slicknav_row:hover {
        border-radius: 0;
        background: transparent;
        color: #111;
    }

    .slicknav_nav a:hover {
        border-radius: 0;
        background: transparent;
        color: #111;
    }

    .slicknav_nav {
        display: block!important;
    }
	
	.slicknav_nav .mobile-menu .menu {
		list-style: none;
		padding: 0;
	}
	
	.slicknav_nav .mobile-menu .menu li a {
		color: var(--primary-color);
	}
	.home-slick .slick-slide img {
		height: 400px;
	}
	.home-slick .content .bg {
		padding: 10px;
	}
	.home-slick .content .bg .des {
		font-size: 20px;
	}
	html, body {
		overflow-x: hidden;
	}
	.home-slick .content .bg .title {
		font-size: 26px;
	}
	.home-slick .content .bg a {
		font-size: 28px;
	}
	.dropdown-menu-mobile .arrow {
		position: absolute;
		right: 22px;
	}
	.dropdown-menu-mobile > li > a {
		display: inline-block;
	}
	.dropdown-menu-mobile > li .dropdown {
		display: none;
	}
	.dropdown-menu-mobile li.menu-item-has-children .arrow i {
		display: inline-block;
		line-height: 1;
		-webkit-transition: transform 0.3s ease-in-out;
		-moz-transition: transform 0.3s ease-in-out;
		transition: transform 0.3s ease-in-out;
	}
	.dropdown-menu-mobile li.menu-item-has-children .arrow.active i {
		-webkit-transform: rotate(90deg);
		-moz-transform: rotate(90deg);
		transform: rotate(90deg);
	}
}

.btn-frame {
    display: block;
    width: 50px;
    height: 50px;
    position: fixed;
    right: 20px;
    z-index: 10;
    cursor: pointer;
}

.btn-zalo {
    bottom: 185px;
}

.btn-mess {
    bottom: 270px;
}

.btn-frame .kenit-alo-circle {
    width: 60px;
    height: 60px;
    top: -5px;
    left: -5px;
    position: absolute;
    background-color: transparent;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 2px solid var(--secondary-color);
    opacity: .1;
    border-color: var(--secondary-color);
    opacity: .5;
}

.btn-frame .zoomIn {
    animation-name: zoomIn;
}

.btn-frame .animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.btn-frame .animated.infinite {
    animation-iteration-count: infinite;
}

.btn-frame .kenit-alo-circle-fill {
    width: 70px;
    height: 70px;
    top: -10px;
    left: -10px;
    position: absolute;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 2px solid transparent;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    background-color: var(--secondary-color);
    opacity: .4;
}

.btn-frame .pulse {
    animation-name: pulse;
}

.btn-frame i {
    display: flex;
    display: -ms-flex;
    justify-content: center;
    align-items: center;
    -ms-flex-align: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--secondary-color);
    position: relative;
    z-index: 1;
}

.btn-frame i img {
    vertical-align: middle;
    width: 70%;
}

@keyframes zoomIn {
    0% {
        transform: scale(.5,.5);
    }
    50% {
        transform: scale(1.1,1.1);
    }
}

@keyframes pulse {
    0% {
        transform: scale(.95);
    }
    70% {
        transform: scale(1);
    }
    100% {
        transform: scale(.95);
    }
}

.btn-phone {
    bottom: 100px;
}
.copyright {
	background-color: var(--secondary-color);
	color: #fff;
	font-family: 'Roboto', sans-serif;
	padding: 5px;
	text-align: center;
}