/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 5 version
*/

@charset "UTF-8";
/*!

Theme Name: WP Lewis

Theme URI: https://

Author: Dev Lewis Corporation

Author URI: https://

Description: "WP Lewis" là 1 theme wordpress được phát triển và xây dựng bởi đội ngũ kỹ thuật của Lewis. Theme được xây dựng dựa trên nền tảng là css boostraps 4 mới nhất. 

Version: 1.0.1

License: GNU General Public License v3 or later

License URI: https://www.gnu.org/licenses/gpl.html

Text Domain: WP Lewis

Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, two-columns, left-sidebar, right-sidebar, custom-colors, footer-widgets, full-width-template, rtl-language-support, sticky-post, theme-options, blog



This theme, like WordPress, is licensed under the GPL.

Use it to make something cool, have fun, and share what you've learned with others.



WP Vdigi is based on Underscores https://underscores.me/, (C) 2012-2017 Automattic, Inc.

Underscores is distributed under the terms of the GNU GPL v2 or later.

*/

@font-face {
    font-family: "Roboto";
    src: url("assets/fonts/roboto/Roboto-Regular.ttf");
}
@font-face {
    font-family: "Roboto-Medium";
    src: url("assets/fonts/roboto/Roboto-Medium.ttf");
}
@font-face {
    font-family: "Roboto-Bold";
    src: url("assets/fonts/roboto/Roboto-Bold.ttf");
}
@font-face {
    font-family: "Roboto-SemiBold";
    src: url("assets/fonts/roboto/Roboto-SemiBold.ttf");
}
@font-face {
    font-family: "Roboto-Black";
    src: url("assets/fonts/roboto/Roboto-Black.ttf");
}

:root {
    --primary-color: #599434;
    --second-color: #E5000D;
    --primary-font: "Roboto";
    --second-font: "Roboto-Bold";
    --third-font: "Roboto-Medium";
}

* {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    word-wrap: break-word;
}

html {
    font-size: 62.5%;
}

body {
    font-family: var(--primary-font);
    background-color: #fff;
    font-size: 1.5rem;
    color: #333;
    -ms-text-size-adjust: 100%;
}

h1,h2,h3,h4,h5,h6,strong {
    font-weight: normal;
    font-family: var(--second-font);
}

section {
    position: relative;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

.header-main-logo img {
    max-width: 180px;
}

.header-main-top ul {
    padding: 0;
    list-style: none;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 6px;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
}

.header-main-top {
    padding: 8px 0;
    background-color: var(--second-color);
}

.header-wrapper-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: relative;
}

.header-main-hotline {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: var(--second-color);
    height: 100%;
    padding: 10px;
}

.header-main-hotline>span {
    font-size: 3rem;
    margin-right: 8px;
}

.header-main-hotline-number p {
    margin-bottom: 0;
    font-family: var(--third-font);
}

.header-main-hotline-number>strong {
    font-family: 'Roboto-Black';
    font-size: 2rem;
}

.header-main-menu>ul.menu-list {
    padding: 0;
    list-style: none;
    margin: 0;
}

ul.header-mobile-language-list {
    padding: 0;
    list-style: none;
    margin: 0;
    display: flex;
    align-items: center;
    margin-top: 8px;
    margin-right: 10px;
    gap: 6px;
}

ul.header-main-top-language li.current-lang a img {
    border: 1px solid #fff;
    opacity: 1;
}

ul.header-main-top-language li a img {
    padding: 1px;
    opacity: .6;
}

.header-main-menu>ul.menu-list>li {
    display: inline-block;
}

li.menu-item.has-submenu.menu-product {
    position: static;
}

.header-main-menu>ul.menu-list>li>a {
    font-family: 'Roboto-SemiBold';
    text-transform: uppercase;
    padding: 25px 30px;
}

.wrapper-submenu {
    display: none;
}

.header-main-menu {
    padding: 0;
}

.menu-list {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.menu-item {
    position: relative;
}

.menu-item > a {
    display: block;
    padding: 25px;
    text-decoration: none;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.menu-item > a:hover {
    color: var(--primary-color);
}

.wrapper-submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    -webkit-box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
            box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
    min-width: 800px;
    z-index: 1000;
    border-top: 1px solid #3333;
    transition: all .4s;
}

ul.list-submenu>li>a:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.menu-item.active .wrapper-submenu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
}

.submenu-left {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 20px;
    background: #f9f9f9;
    border-right: 1px solid #e0e0e0;
}

.title-submenu {
    font-size: 18px;
    margin-bottom: 15px;
    color: #000;
    padding-left: 15px;
    text-transform: uppercase;
}

.submenu-left>ul.sub-menu {
    padding: 0;
    list-style: none;
    margin: 0;
}

.menu-item-level {
    margin-bottom: 5px;
}

.menu-item-level a {
    display: block;
    padding: 10px 15px;
    color: #555;
    text-decoration: none;
    border-radius: 4px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.menu-item-level a:hover, .submenu-has-children a:hover, li.submenu-has-children:hover>a {
    background-color: var(--primary-color);
    color: #fff;
}

li.menu-item.has-submenu.menu-product:hover > a, li.menu-item.menu-has-children:hover > a {
    color: var(--primary-color);
}

.menu-item-level.active a {
    background: var(--primary-color);
    color: #fff;
    position: relative;
}

.menu-item-level.active a:after {
    position: absolute;
    font-family: 'Font Awesome 5 Pro';
    content: '\f0a4';
    right: 10px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.submenu-right {
    -webkit-box-flex: 2;
        -ms-flex: 2;
            flex: 2;
    padding: 20px;
    display: none;
}

.submenu-right.active {
    display: block;
}

.submenu-right ul {
    list-style: none;
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 10px; 
    padding: 0;
}

.submenu-right ul li {
    text-align: center;
}

.submenu-right ul li a {
    display: block;
    text-decoration: none;
    color: #000;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.submenu-right ul li a img {
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 120px;
    height: 85px;
    -o-object-fit: scale-down;
       object-fit: scale-down;
}

.submenu-right ul li a:hover img {
    border-color: var(--primary-color);
    background-color: #e9e9e9;
}

.submenu-right ul li a:hover span {
    color: var(--primary-color);
}

.submenu-right ul li img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.submenu-right ul li span {
    display: block;
    font-size: 14px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

ul.list-submenu {
    padding: 0;
    list-style: none;
    margin: 0;
    position: absolute;
    top: 73px;
    left: 0;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    z-index: 9999;
    background-color: #fff;
    -webkit-box-shadow: 1px 2px 3px #3333;
    box-shadow: 1px 2px 3px #3333;
    text-align: left;
    -webkit-box-shadow: 1px 3px 8px #3333;
    box-shadow: 1px 3px 8px #3333;
    -o-transform: scale(0,0);
    -ms-transform: scale(0,0);
    -moz-transform: scale(0,0);
    -webkit-transform: scale(0,0);
    -o-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    -moz-transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
    -o-transition: -o-transform .4s,opacity .4s;
    -ms-transition: -ms-transform .4s,opacity .4s;
    -moz-transition: -moz-transform .4s,opacity .4s;
    -webkit-transition: -webkit-transform .4s,opacity .4s;
}

ul.list-submenu>li>a {
    display: block;
    padding: 10px 20px;
    padding-right: 35px;
    border-bottom: 1px solid #3333;
    position: relative;
}

ul.list-submenu>li>a:before {
    font-family: 'FontAwesome';
    content: '\f105';
    margin-right: 10px;
}

li.menu-item.menu-has-children:hover>ul.list-submenu {
    opacity: 1;
    -o-transform: scale(1,1);
    -ms-transform: scale(1,1);
    -moz-transform: scale(1,1);
    -webkit-transform: scale(1,1);
}

ul.list-level-submenu>li>a {
    display: block;
    padding: 10px 20px;
    border-bottom: 1px solid #3333;
}

ul.list-level-submenu {
    padding: 0;
    list-style: none;
    margin: 0;
    position: absolute;
    top: 0;
    left: 100.5%;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    z-index: 9999;
    background-color: #fff;
    -webkit-box-shadow: 1px 2px 3px #3333;
    box-shadow: 1px 2px 3px #3333;
    text-align: left;
    -webkit-box-shadow: 1px 3px 8px #3333;
    box-shadow: 1px 3px 8px #3333;
    -o-transform: scale(0,0);
    -ms-transform: scale(0,0);
    -moz-transform: scale(0,0);
    -webkit-transform: scale(0, 0);
    -o-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    -moz-transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
    -o-transition: -o-transform .4s,opacity .4s;
    -ms-transition: -ms-transform .4s,opacity .4s;
    -moz-transition: -moz-transform .4s,opacity .4s;
    -webkit-transition: -webkit-transform .4s, opacity .4s;
}

li.menu-item.menu-has-children>ul.list-submenu>li:hover>ul.list-level-submenu{
    opacity: 1;
    -o-transform: scale(1,1);
    -ms-transform: scale(1,1);
    -moz-transform: scale(1,1);
    -webkit-transform: scale(1,1);
}
ul.list-level-submenu>li>a:before {
    font-family: 'FontAwesome';
    content: '\f105';
    margin-right: 10px;
    font-size: 14px;
}

ul.list-level-submenu>li>a:before {
    font-family: 'FontAwesome';
    content: '\f105';
    margin-right: 10px;
    font-size: 14px;
}

li.menu-item.menu-has-children>ul.list-submenu>li.submenu-has-children>a:after {
    font-family: 'FontAwesome';
    content: '\f0da';
    position: absolute;
    right: 8px;
    font-size: 13px;
    top: 50%;
    transform: translateY(-50%);
}

/*SLIDE*/

/*section.slide-homepage:before {
    position: absolute;
    content: "";
    left: 0;
    bottom: -1px;
    -webkit-clip-path: polygon(0 93%, 0% 100%, 100% 100%);
            clip-path: polygon(0 93%, 0% 100%, 100% 100%);
    width: 30%;
    height: 100%;
    z-index: 2;
    background-color: #fff;
}

section.slide-homepage:after {
    position: absolute;
    content: "";
    right: 0;
    bottom: -1px;
    -webkit-clip-path: polygon(100% 93%, 0% 100%, 100% 100%);
            clip-path: polygon(100% 93%, 0% 100%, 100% 100%);
    width: 30%;
    height: 100%;
    z-index: 2;
    background-color: #fff;
}*/

.slide-home-item {
    position: relative;
}

.slide-home-item-content {
    position: absolute;
    top: 28%;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    text-align: center;
    color: #fff;
}

.slide-home-item-content span {
    position: relative;
    color: var(--primary-color);
    font-size: 18px;
    font-family: 'Roboto-SemiBold';
}

.slide-home-item-content span:before, .slide-home-item-content span:after {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    background-color: var(--primary-color);
    top: 10px;
}

.slide-home-item-content span:before {
    left: -65px;
}

.slide-home-item-content span:after {
    right: -65px;
}

.slide-home-item-content h3 {
    margin-top: 2rem;
    margin-bottom: 4rem;
    font-family: 'Roboto-Black';
    font-size: 4.6rem;
    padding: 0 75px;
    text-shadow: 1px 0 #599434, -1px 0 #599434, 0 1px #599434, 0 -1px #599434, 1px 1px #599434, -1px -1px #599434, 1px -1px #599434, -1px 1px #599434;
}

/* CSS Animation cho slide content */
.slide-home-item-content span,
.slide-home-item-content h3,
.slide-home-item-content .btn-more {
    opacity: 0;
    -webkit-transform: translateY(30px);
        -ms-transform: translateY(30px);
            transform: translateY(30px);
}

/* Animation cho span (Welcome Sorotec) */
.slide-home-item-content span.animate-span {
    -webkit-animation: slideUp 0.6s ease forwards;
            animation: slideUp 0.6s ease forwards;
    -webkit-animation-delay: 0.2s;
            animation-delay: 0.2s;
}

/* Animation cho h3 (Title) */
.slide-home-item-content h3.animate-h3 {
    -webkit-animation: slideUp 0.6s ease forwards;
            animation: slideUp 0.6s ease forwards;
    -webkit-animation-delay: 0.4s;
            animation-delay: 0.4s;
}

/* Animation cho button */
.slide-home-item-content .btn-more.animate-btn {
    -webkit-animation: slideUp 0.6s ease forwards;
            animation: slideUp 0.6s ease forwards;
    -webkit-animation-delay: 0.6s;
            animation-delay: 0.6s;
}

/* Keyframe animation */
@-webkit-keyframes slideUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(30px);
                transform: translateY(30px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
                transform: translateY(0);
    }
}
@keyframes slideUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(30px);
                transform: translateY(30px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
                transform: translateY(0);
    }
}

/* Hiệu ứng khi active */
.owl-item.active .slide-home-item-content {
    pointer-events: auto;
}

.owl-item:not(.active) .slide-home-item-content {
    pointer-events: none;
}

div#owl-slide-desktop .owl-nav button span {
    font-size: 3rem;
    color: #fff;
    position: relative;
    top: -2px;
}

/*SERVICE*/

.services-box {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 15px 1fr 15px 1fr 15px 1fr;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.services-item>a {
    background-color: #fff;
    -webkit-box-shadow: 0px 2px 40px #3333;
            box-shadow: 0px 2px 40px #3333;
    border-radius: 4px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.services-item {
    position: relative;
}

.services-item>a>svg {
    position: absolute;
    top: 2px;
    right: 2px;
    font-size: 23px;
    color: var(--primary-color);
    -webkit-transform: translate(30px, -30px) scale(0);
        -ms-transform: translate(30px, -30px) scale(0);
            transform: translate(30px, -30px) scale(0);
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.services-item>a {
    overflow: hidden;
}

.services-item>a:hover>svg {
    -webkit-transform: translate(-2px, 2px) scale(1);
        -ms-transform: translate(-2px, 2px) scale(1);
            transform: translate(-2px, 2px) scale(1);
}

.services-item>a:hover {
    border-radius: 6px;
    -webkit-transform: translateY(-5px);
        -ms-transform: translateY(-5px);
            transform: translateY(-5px);
}

.services-item>a>span {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 80px;
    flex: 0 0 80px;
    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;
    font-size: 4rem;
    color: var(--second-color);
    width: 80px;
    height: 80px;
    border: 1px solid;
    border-radius: 50%;
}

.services-item-content {
    padding-left: 10px;
}

.services-item-content>h4 {
    font-size: 18px;
    margin-bottom: 25px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    position: relative;
}

.services-item-content>h4:before {
    position: absolute;
    content: "";
    width: 60px;
    height: 2px;
    background-color: var(--primary-color);
    left: 0;
    bottom: -10px;
}

.services-item-content>strong {
    font-size: 4rem;
    font-family: 'Roboto-Black';
    opacity: .4;
    color: var(--primary-color);
}

.services-item>a:hover h4 {
    color: var(--primary-color);
}

.services-item-content>p {
    margin-bottom: 0;
    color: #777;
    display: -webkit-box;
    overflow: hidden;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

section.services {
    margin-top: 6rem;
    z-index: 2;
}

/*ABOUT*/

section.about-us {
    padding: 7rem 0;
}

.title-home span {
    font-family: 'Roboto-SemiBold';
    color: var(--primary-color);
    font-size: 20px;
    position: relative;
    text-transform: capitalize;
}

.about-us-content .title-home span:before {
    position: absolute;
    content: "";
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
    left: -60px;
    top: 12px;
}

.title-home h2 {
    text-transform: uppercase;
    font-family: 'Roboto-Black';
    font-size: 3.2rem;
    letter-spacing: 1px;
    margin-top: 6px;
    color: #000;
}

.title-home {
    margin-bottom: 2.5rem;
}

.about-us-img {
    position: relative;
    padding-right: 5rem;
}

.about-us-content p {
    font-size: 16px;
    color: #777;
    line-height: 1.7;
}

.about-us-content ul {
    padding: 0;
    list-style: none;
    margin-bottom: 3rem;
    margin-top: 3rem;
}

.about-us-content ul li {
    display: inline-block;
    margin-right: 50px;
}

.about-us-content ul li span {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 45px;
    height: 45px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 24px;
    margin-right: 15px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.about-us-content ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 18px;
    font-family: 'Roboto-SemiBold';
}

.about-us-content ul li a:hover span {
    background-color: var(--primary-color);
    color: #fff;
}

.about-us-content ul li a:hover {
    color: var(--primary-color);
}

.btn-detail>a,.btn-more>a,.blog-btn>a {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    padding: 12px 30px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-detail>a:hover, .btn-more>a:hover, .blog-btn>a:hover {
    background-color: var(--second-color);
}

.btn-detail>a svg {
    margin-left: 4px;
}

.about-us-img>img {
    position: relative;
    left: -45px;
}

.about-us-exp {
    position: absolute;
    bottom: 80px;
    right: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 160px;
    height: 100px;
    background-color: var(--primary-color);
    color: #fff;
    line-height: 1.2;
    border-radius: 15px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.about-us-exp span {
    font-family: 'Roboto-Black';
    font-size: 4rem;
}

.about-us-exp p {
    margin: 0;
    text-transform: capitalize;
    font-size: 18px;
}

/*PRODUCT*/

section.product-cate {
    padding: 7rem 0;
    background: url(assets/images/home/bg-product.jpg) no-repeat center center;
    background-size: cover;
}

.btn-more {
    margin-top: 3rem;
}

.product-cate-item {
    position: relative;
    background-color: #f3f3f3;
    margin-bottom: 3rem;
}

.product-cate-item-content {
    position: relative;
    background-color: #fff;
    padding: 2rem;
    text-align: center;
}

.product-cate-item-thumb>a {
    display: block;
    overflow: hidden;
    position: relative;
    padding: 3rem;
}

.product-cate-item-thumb>a img {
    width: 100%;
    aspect-ratio: 2 / 1.5;
    -o-object-fit: scale-down;
       object-fit: scale-down;
}

.product-cate-item-content h3 {
    font-size: 20px;
    margin-bottom: 1rem;
}

.product-cate-item-content p {
    font-size: 15px;
    color: #777;
    line-height: 1.4;
    margin-bottom: 0;
    display: -webkit-box;
    overflow: hidden;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.product-cate-item-thumb {
    position: relative;
}

.product-cate-item-thumb>span {
    position: absolute;
    bottom: 0;
    right: 0;
}

.product-cate-item-thumb>span>img {
    width: 120px;
}

.product-cate-item:hover img {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
}

.product-cate-item:hover h3 {
    color: var(--primary-color);
}

/*WHYCHOOSE*/

.title-home.title-center {
    text-align: center;
    margin-bottom: 3rem;
}

.title-home.title-center>span:before, .title-home.title-center>span:after {
    position: absolute;
    content: "";
    width: 60px;
    height: 2px;
    background-color: var(--primary-color);
    top: 13px;
}

.title-home.title-center>span:before {
    left: -75px;
}

.title-home.title-center>span:after {
    right: -75px;
}

section.whychoose {
    padding: 7rem 0;
}

.whychoose-item {
    text-align: center;
}

.whychoose-item>span {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 50px;
    height: 50px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 23px;
    border-radius: 50%;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.whychoose-item h3 {
    margin-top: 20px;
    margin-bottom: 15px;
    text-transform: capitalize;
    font-size: 18px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.whychoose-item p {
    color: #777;
    margin-bottom: 0;
}

.whychoose-item:hover span {
    background-color: #fff;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.whychoose-item:hover h3 {
    color: var(--primary-color);
}

.whychoose-item:hover {
    cursor: pointer;
}

/*COUNTER*/

section.counter-area {
    background: url(assets/images/home/bg-counter.webp) no-repeat center center;
    background-size: cover;
}

section.counter-area {
    padding: 7rem 0;
}

section.counter-area:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #000;
    opacity: .7;
}

.counter-item {
    position: relative;
    color: #fff;
    text-align: center;
}

.counter-item h3 {
    font-size: 4.6rem;
    font-family: 'Roboto-Black';
}

.counter-item h3 span {
    margin-right: 5px;
}

.counter-item p {
    margin-bottom: 0;
    font-size: 18px;
    font-family: 'Roboto-SemiBold';
}

/*PROJECT*/

section.projects {
    padding-top: 7rem;
}

.project-item>a>img {
    aspect-ratio: 2/1.3;
    object-fit: cover;
}

.project-item>a {
    display: block;
    overflow: hidden;
    position: relative;
}

.project-item>a:before {
    position: absolute;
    content: "";
    background: #000000;
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgb(0 0 0 / 0%) 100%);
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 1;
}

.project-item>a h3 {
    position: absolute;
    left: 20px;
    color: #fff;
    bottom: 25px;
    z-index: 2;
    transition: all .3s;
}

.project-item>a:hover img {
    transform: scale(1.1);
}

.project-item>a:hover h3 {
    color: var(--primary-color);
}

/*BLOGS*/

section.blogs-area {
    padding: 7rem 0;
    background: url(assets/images/home/bg-blogs.png) no-repeat center center;
    background-size: cover;
}

.blogs-item {
    position: relative;
    -webkit-box-shadow: 0px 2px 30px #3333;
            box-shadow: 0px 2px 30px #3333;
}

.blogs-item-thumb>a {
    display: block;
    overflow: hidden;
    position: relative;
}

.blogs-item-thumb>a>img {
    aspect-ratio: 2 / 1.4;
}

.blogs-item-content {
    background-color: #fff;
    padding: 2rem;
    text-align: center;
    min-height: 22.5rem;
}

.blogs-item-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.blogs-item-content h3 a {
    display: -webkit-box;
    overflow: hidden;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.blogs-item-content p {
    color: #777;
    display: -webkit-box;
    overflow: hidden;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

div#owl-blog .owl-stage-outer {
    padding-bottom: 25px;
}

div#owl-blog button.owl-next {
    right: -60px;
}

div#owl-blog button.owl-prev {
    left: -60px;
}

div#owl-blog .owl-nav button {
    background-color: var(--primary-color);
}

div#owl-blog .owl-dots {
    bottom: -15px;
}

.blogs-item:hover img {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
    -webkit-filter: brightness(0.8);
            filter: brightness(0.8);
}

.blogs-item:hover h3 {
    color: var(--primary-color);
}

/*FOOTER*/

section.footer-area {
    background-color: #000;
    color: #dadada;
    padding-top: 5rem;
    padding-bottom: 3rem;
}

.footer-contact-logo img {
    width: 270px;
}

.footer-contact-logo h3 {
    color: #fff;
    margin-top: 15px;
    margin-bottom: 20px;
    font-size: 22px;
}

.footer-contact-logo ul {
    padding: 0;
    list-style: none;
}

.footer-contact-logo ul li {
    margin-bottom: 12px;
}

.footer-contact-logo ul li svg {
    color: var(--primary-color);
    margin-right: 10px;
    width: 15px !important;
    font-size: 18px;
}

.footer-menu-block {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
}

.footer-menu h4 {
    color: #fff;
    text-transform: uppercase;
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-menu ul li {
    margin-bottom: 15px;
}

.footer-menu ul li a:hover {
    color: var(--primary-color);
}

.footer-menu ul li:last-child {
    margin-bottom: 0;
}

h4.title-footer-2nd {
    margin-top: 20px;
}

ul.list-support li {
    line-height: 1.7;
}

ul.list-support li strong {
    color: #fff;
}

.copyright p {
    text-align: center;
    margin: 0;
    font-size: 14px;
    color: #fff;
}

.copyright {
    background-color: #000;
    padding-bottom: 15px;
}

.newsletter-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 100px;
}

section.newsletter {
    padding: 5rem 0;
    border-top: 1px solid #9f9f9f33;
}

.newsletter-box>div {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
}

.newsletter-box-text h4 {
    font-size: 20px;
    font-family: var(--primary-font);
    color: #777;
}

.newsletter-box-text h2 {
    font-size: 28px;
    margin-top: 10px;
}

.newsletter-form p {
    position: relative;
    margin: 0;
}

.newsletter-form p input {
    width: 500px;
    height: 50px;
    border: 1px solid #3333;
    padding-left: 15px;
}

.newsletter-form p button {
    position: absolute;
    top: 4px;
    right: 5px;
    border: none;
    height: 42px;
    background-color: var(--primary-color);
    color: #fff;
    padding: 0 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    cursor: pointer;
}

.newsletter-form {
    text-align: right;
}

.newsletter-form .wpcf7-spinner {
    position: absolute;
    bottom: 0;
    right: 0;
}

.newsletter-form p button svg {
    margin-right: 5px;
}

.newsletter-form p button:hover {
    background-color: #fff;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.newsletter-form .wpcf7-not-valid-tip {
    position: absolute;
    top: 0px;
    right: 160px;
    font-size: 13px;
}

.newsletter-box-form .wpcf7 form .wpcf7-response-output {
    margin: 0;
    margin-top: 10px;
    padding: 5px;
    text-align: center;
    font-size: 13px;
}

/*PAGE CONTACT*/

section.page-template.page-contact {
    padding: 7rem 0;
}

.page-contact-info-text>h2 {
    font-size: 3rem;
    text-transform: capitalize;
    margin-bottom: 3rem;
}

.page-contact-info-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-contact-info-text ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 15px;
}

.page-contact-info-text ul li span {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50px;
            flex: 0 0 50px;
    font-size: 20px;
    color: var(--primary-color);
}

.page-contact-info-text ul li h4 {
    font-size: 18px;
}

.page-contact-info-text ul li p {
    color: #777;
}

.page-contact-info-text ul li p strong {
    color: #000;
}

.hotline-box {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 60px 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.hotline-item p strong {
    display: inline-block;
    margin-top: 5px;
}

.contact-info-right>p {
    line-height: 1.7;
}

.page-contact-info-img {
    position: relative;
    width: 100%;
    height: 400px;
    z-index: 2;
    margin-top: 3rem;
}

.page-contact-info-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
    -webkit-clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%);
            clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%);
}

.page-contact-info-img:before {
    position: absolute;
    content: "";
    left: 0;
    top: -30px;
    -webkit-clip-path: polygon(20% 0%, 100% 0%, 85% 100%, 0% 100%);
            clip-path: polygon(20% 0%, 100% 0%, 85% 100%, 0% 100%);
    width: 250px;
    height: 200px;
    background-color: var(--primary-color);
}

.page-contact-form-header {
    text-align: center;
    padding-top: 8rem;
    padding-bottom: 15rem;
    background-color: var(--primary-color);
    color: #fff;
    margin-top: 7rem;
}

.page-contact-form-header>span {
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-contact-form-header h3 {
    font-size: 3rem;
    font-family: 'Roboto-Black';
    margin-top: 2rem;
}

.contact-main-maps {
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: -11rem;
    -webkit-box-shadow: 0px 20px 20px 0px rgba(0, 0, 0, 0.05);
            box-shadow: 0px 20px 20px 0px rgba(0, 0, 0, 0.05);
    -webkit-transition: background 0.3s, border 0.3s, border-radius 0.3s, -webkit-box-shadow 0.3s;
    transition: background 0.3s, border 0.3s, border-radius 0.3s, -webkit-box-shadow 0.3s;
    -o-transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s, -webkit-box-shadow 0.3s;
}

.contact-main-maps-form {
    padding: 4rem;
}

.contact-main-maps>div {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
}

.contact-main-maps-map iframe {
    width: 100%;
    height: 440px;
    margin-bottom: -5px;
        -webkit-filter: grayscale(1);
                filter: grayscale(1);
}

.form-contact-main p  input.wpcf7-text {
    width: 100%;
    height: 50px;
    font-size: 15px;
    padding-left: 15px;
    border: 1px solid #3333;
    border-radius: 3px;
    margin-bottom: 10px;
}

.haft-form p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.haft-form p span {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 48%;
            flex: 0 0 48%;
}

.form-contact-main p textarea {
    width: 100%;
    padding: 15px;
    max-height: 120px;
    border: 1px solid #3333;
    border-radius: 3px;
}

.form-contact-main p input.wpcf7-submit {
    border: 1px solid;
    height: 42px;
    background-color: var(--primary-color);
    color: #fff;
    padding: 0 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    cursor: pointer;
    margin-top: 10px;
    border-radius: 3px;
}

.form-contact-main p input.wpcf7-submit:hover {
    background-color: #fff;
    color: var(--primary-color);
}

.contact-main-maps-form .wpcf7 form .wpcf7-response-output {
    margin: 0;
    text-align: center;
    font-size: 13px;
}

.form-contact-main .wpcf7-not-valid-tip {
    position: absolute;
    top: 15px;
    right: 5px;
    font-size: 13px;
}

.page-contact-social {
    text-align: center;
    margin-top: 7rem;
}

.page-contact-social>h3 {
    font-size: 3rem;
    font-family: 'Roboto-Black';
    margin-bottom: 2rem;
}

.page-contact-social>ul {
    margin: 0;
    list-style: none;
    padding: 0;
}

.page-contact-social>ul li {
    display: inline-block;
    margin: 0 2px;
}

.page-contact-social>ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 45px;
    height: 45px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 18px;
}

.page-contact-social>ul li a:hover {
    background-color: #fff;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

/*ABOUT*/

.about-us-general, .about-us-vision, .about-coreValue, .about-us-strategy {
    padding: 7rem 0;
}
.about-us-general{
    text-align: center;
    background: url(assets/images/bg-general.jpg) no-repeat center center;
    background-size: cover;
    position: relative;
    color: #fff;
}

.about-us-general:before, .about-coreValue:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgb(0 21 43);
    opacity: .9;
}

.about-us-general > *,.about-us-strategy>* {
    position: relative;
}

h2.title-about-us, h2.title-vision {
    text-transform: uppercase;
    font-size: 3.2rem;
    font-family: var(--third-font);
    margin-bottom: 3rem;
    letter-spacing: 1px;
}

.about-us-vision.about-right {
    background: url(assets/images/bg-vision.webp) no-repeat center center;
    background-size: cover;
    position: relative;
    color: #fff;
}

.about-us-vision.about-left {
    background: url(assets/images/bg-mission.png) no-repeat center center;
    background-size: cover;
    position: relative;
    color: #fff;
}

.about-coreValue {
    background: url(assets/images/coreValue.jpg) no-repeat center center;
    background-size: cover;
    position: relative;
    color: #fff;
}

.about-coreValue-box {
    position: relative;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.about-coreValue h2.title-about-us {
    position: relative;
    text-align: center;
}

.coreValue-item>h5 {
    font-size: 18px;
    text-align: left;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-family: 'Roboto-SemiBold';
    line-height: 1.3;
    position: relative;
}

.coreValue-item p {
    text-align: justify;
}

.coreValue-item>h5 svg {
    color: var(--primary-color);
    margin-right: 5px;
}

.about-us-strategy {
    background: url(assets/images/home/strategy-new.jpg) no-repeat center center;
    background-size: cover;
    position: relative;
    color: #fff;   
}

.coreValue-item {
    position: relative;
    background-color: rgb(255 255 255 / 20%);
    color: #ffffffe3;
    padding: 3rem;
    border-radius: 5px;
    -webkit-box-shadow: 0 0px 20px #00000038;
            box-shadow: 0 0px 20px #00000038;
    line-height: 1.5;
    text-align: justify;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.coreValue-item:hover {
    background-color: #ffffff;
    -webkit-transform: translateY(-5px);
        -ms-transform: translateY(-5px);
            transform: translateY(-5px);
    color: #333;
    cursor: pointer;
}

/*ARCHIVE*/

.blogs-item-cates {
    border: #ebebeb solid 1px;
}

.blogs-item-cates-content {
    padding: 15px 30px;
    border-top: 0;
    min-height: 20rem;
}

.blogs-item-cates-content h3 {
    color: #000;
    line-height: 1.4;
    margin-bottom: 1rem;
    font-size: 18px;
}

.blogs-item-cates-content h3 a {
    display: -webkit-box;
    overflow: hidden;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.blogs-item-cates-content p {
    color: #75787b;
    line-height: 1.65;
    margin: 0;
    display: -webkit-box;
    overflow: hidden;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.blogs-item-cates-content-meta {
    margin-bottom: 10px;
    color: #777;
}

.blogs-item-cates-content-meta span svg {
    color: var(--primary-color);
    margin-right: 3px;
}

.blogs-item-cates-content-meta span {
    margin-right: 20px;
}

.blogs-item-cates:hover img {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
    -webkit-filter: brightness(0.8);
            filter: brightness(0.8);
}

.blogs-item-cates:hover h3>a {
    color: var(--primary-color);
}

/*TAX*/

.taxonomy-product-header {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(245, 245, 245, 1)), to(rgba(217, 217, 214, 1)));
    background: -o-linear-gradient(top, rgba(245, 245, 245, 1) 0%, rgba(217, 217, 214, 1) 100%);
    background: linear-gradient(to bottom, rgba(245, 245, 245, 1) 0%, rgba(217, 217, 214, 1) 100%);
    padding: 3rem 0;
}

.taxonomy-product-header-info {
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 100%;
}

.taxonomy-product-header-info>h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.taxonomy-product-header-info>p:nth-of-type(1) {
    font-size: 18px;
    color: var(--second-color);
    margin-bottom: 20px;
}

.taxonomy-product-header-info>p:nth-of-type(2) {
    font-size: 15px;
    color: #3b3b3b;
    margin-bottom: 0;
}

.taxonomy-product-list-lable {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[7];
    grid-template-columns: repeat(7, 1fr);
    border-bottom: 1px solid #3333;
    padding-bottom: 10px;
}

.tax-table-list-title {
    text-align: center;
    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;
}

.tax-table-list-title>span {
    font-family: var(--second-font);
    font-size: 16px;
    color: #000;
}

.tax-table-list-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-top: 1px solid #3333;
    padding-bottom: 20px;
    min-height: 19rem;
}

.tax-table-list-thumb {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 15%;
            flex: 0 0 15%;
}

.tax-table-list-content {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 85%;
            flex: 0 0 85%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[6];
    grid-template-columns: repeat(6, 1fr);
}

.taxonomy-product-list-lable.taxonomy-product-list-benifit-cat {
    grid-template-columns: repeat(5, 1fr);
}

.tax-table-list-content.tax-table-benifit-cat {
    grid-template-columns: repeat(4, 1fr);
}

.tax-table-list-content-item {
    text-align: center;
    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;
}

.tax-table-list-content-item>span {
    font-size: 15px;
    color: #333;
}

.tax-table-list-content-item.tax-btn-detail a {
    display: inline-block;
    background-color: var(--second-color);
    color: #fff;
    padding: 8px 20px;
    border-radius: 4px;
}

.tax-table-list-content-item.tax-btn-detail a:hover {
    background-color: #fff;
    border: 1px solid var(--second-color);
    color: var(--second-color);
}

.tax-table-list-thumb>a>img {
    max-width: 110px;
}

.tax-table-list-thumb>a span {
    display: block;
    text-align: center;
    font-family: 'Roboto-SemiBold';
    font-size: 16px;
    color: #000;
}

.tax-table-list-thumb>a {
    display: block;
    text-align: center;
}

.tax-table-list-content-item span.small-show {
    display: none;
}

.taxonomy-product-header-img>img {
    max-width: 400px;
}

.taxonomy-product-header-img {
    text-align: center;
}


/*SINGLE*/

.main-image-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 20px;
    background: transparent;
}

.main-image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -webkit-transition: opacity 0.5s ease;
    -o-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease;
}

.main-image.fade {
    opacity: 0;
}

.single-product-thumbnail-slider {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.single-product-thumbnail-slider .thumbnail-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
    -webkit-transition: -webkit-transform 0.4s ease;
    transition: -webkit-transform 0.4s ease;
    -o-transition: transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.single-product-thumbnail-slider .thumbnail {
    min-width: calc((100% - 30px) / 3);
    height: 120px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid transparent;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: relative;
    background-color: #fff;
}

.single-product-thumbnail-slider .thumbnail img {
    width: 100%;
    height: 100%;
    -o-object-fit: scale-down;
       object-fit: scale-down;
}

.single-product-thumbnail-slider .thumbnail:hover {
    -webkit-transform: translateY(-5px);
        -ms-transform: translateY(-5px);
            transform: translateY(-5px);
    -webkit-box-shadow: 0 5px 15px #4646467d;
            box-shadow: 0 5px 15px #4646467d;
}

.single-product-thumbnail-slider .thumbnail.active {
    border-color: var(--primary-color);
    -webkit-box-shadow: 0 5px 20px #4646467d;
            box-shadow: 0 5px 20px #4646467d;
}

.single-product-thumbnail-slider .nav-button {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    background: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    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;
    -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 10;
    font-size: 3rem;
}

.single-product-thumbnail-slider .nav-button:hover {
    background: var(--primary-color);
    color: white;
    -webkit-transform: translateY(-50%) scale(1.1);
        -ms-transform: translateY(-50%) scale(1.1);
            transform: translateY(-50%) scale(1.1);
}

.single-product-thumbnail-slider .nav-button.prev {
    left: 10px;
}

.single-product-thumbnail-slider .nav-button.next {
    right: 10px;
}

.single-product-thumbnail-slider .nav-button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.single-product-thumbnail-slider .nav-button:disabled:hover {
    background: white;
    color: black;
    -webkit-transform: translateY(-50%) scale(1);
        -ms-transform: translateY(-50%) scale(1);
            transform: translateY(-50%) scale(1);
}

.single-product-summary-wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1.5fr 30px 2fr;
    grid-template-columns: 1.5fr 2fr;
    gap: 30px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.single-product-summary-gallery.gallery-none {
    text-align: center;
}

section.single-product-summary {
    overflow: hidden;
    background-color: #d5d5d5;
    background: url('assets/images/proSkuBannerBg.jpg') no-repeat center top;
    background-size: cover;
    padding: 4rem 0;
}

.single-product-summary-info {
    background-color: #fff;
    padding: 15px 20px 15px 20px;
    max-width: 100%;
    margin-left: 8%;
}

.single-product-summary-info>span {
    color: #d7d7d7;
}

.single-product-summary-info>h1 {
    font-size: 3rem;
    margin-top: 5px;
    margin-bottom: 2rem;
    border-bottom: 1px solid #8c8c8c33;
    padding-bottom: 15px;
    font-family: 'Roboto-SemiBold';
}

.single-product-summary-info-meta span {
    border-right: 1px solid #3333;
    padding: 0 6px;
    font-size: 15px;
    margin-bottom: 5px;
    display: inline-block;
}

.single-product-summary-info-meta span:nth-of-type(3), 
.single-product-summary-info-meta span:nth-of-type(4),
.single-product-summary-info-meta span:last-child {
    border-right: 0;
}

.single-product-summary-info-meta {
    margin-bottom: 20px;
}

.single-product-summary-info>ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.single-product-summary-info>ul li {
    margin-bottom: 12px;
    text-transform: uppercase;
    font-size: 14px;
}

.single-product-summary-info>ul li svg {
    margin-right: 10px;
    font-size: 2rem;
    color: var(--primary-color);
}

.single-product-summary-box {
    display: flex;
    justify-content: space-between;
}

.single-product-summary-box_left {
    flex: 0 0 65%;
}

.single-product-summary-guarantee>ul {
    padding: 0;
    list-style: none;
}

.single-product-summary-guarantee ul li span {
    display: inline-flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    background-color: var(--second-color);
    color: #fff;
    border-radius: 50%;
    flex: 0 0 30px;
    margin-right: 10px;
}

.single-product-summary-guarantee ul li:last-child {
    border-bottom: none;
}
.single-product-summary-guarantee ul li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding-bottom: 10px;
    line-height: 1.3;
    font-size: 14px;
    border-bottom: 1px solid #8e8e8e33;
}

.product-summary-atc {
    border-top: 1px solid #3333;
    padding-top: 20px;
    margin-top: 30px;
}

.product-summary-atc {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 0;
}

.product-summary-atc>a svg {
    margin-right: 10px;
}
.product-summary-atc>a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    text-align: center;
    height: 40px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    color: #fff;
    border-radius: 3px;
    background-color: var(--second-color);
    -webkit-box-shadow: 1px 3px 8px #33333394;
            box-shadow: 1px 3px 8px #33333394;
    text-transform: uppercase;
    font-family: 'Roboto-SemiBold';
    letter-spacing: 1px;
}

ul#singleProduct-tab li button {
    border: none;
    padding: 10px 30px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    cursor: pointer;
}

section.single-product-tab {
    margin-top: 4rem;
}

ul#singleProduct-tab li {
    margin-right: 10px;
}

ul#singleProduct-tab li button.active {
    background-color: var(--second-color);
}

ul#singleProduct-tab {
    margin-bottom: 3rem;
}

.wrapper-single.single-product {
    padding-top: 0;
}

.specs-table-product {
    max-width: 100%;
    margin: 0 auto;
    background: white;
    -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}
.specs-table-product table {
    width: 100%;
    border-collapse: collapse;
}
.specs-table-product table th {
    background-color: #a0a0a0;
    color: white;
    text-align: left;
    padding: 12px 15px;
    font-size: 14px;
    text-transform: uppercase;
    font-family: 'Roboto-SemiBold';
}
.specs-table-product table td {
    padding: 10px 15px;
    border-bottom: 1px solid #e0e0e0;
    font-size: 14px;
}
.specs-table-product table td:first-child {
    font-weight: 500;
    color: #555;
    width: 35%;
    background-color: #fafafa;
}
.specs-table-product table td:last-child {
    color: #333;
}
.specs-table-product table tr:last-child td {
    border-bottom: none;
}
.specs-table-product table tr:hover td {
    background-color: #f9f9f9;
}

div#product-tabContent .tab-pane {
    color: #333;
    font-size: 16px;
    line-height: 1.7;
}

.specs-table-product>note {
    display: block;
    padding: 30px 40px;
}

.downloads-table-product table {
    width: 100%;
    border-collapse: collapse;
}
.downloads-table-product table th {
    background-color: #a0a0a0;
    color: white;
    text-align: left;
    padding: 12px 15px;
    font-size: 14px;
    text-transform: uppercase;
    font-family: 'Roboto-SemiBold';
}
.downloads-table-product table td {
    padding: 10px 15px;
    border-top: 1px solid #e0e0e0;
    font-size: 14px;
}

.downloads-table-product table td a {
    display: inline-block;
    border: 1px solid var(--second-color);
    padding: 2px 15px;
    font-family: 'Roboto-SemiBold';
    color: var(--second-color);
}

.downloads-table-product table td a:hover {
    background-color: var(--second-color);
    color: #fff;
}

.downloads-tabs .tab-item {
  display: inline-block;
  margin-right: 15px;
  cursor: pointer;
}

.downloads-tabs .active {
  border-bottom: 2px solid var(--second-color);
  padding: 0;
  color: #000;
}

.tab-box {
  display: none;
}

.tab-box.active {
  display: block;
}

ul.downloads-tabs {
    padding: 0;
    margin-bottom: 30px;
}

.single-product-summary-info table {
    width: 100% !important;
}

.single-product-summary-info table td img {
    width: 45px;
}

/*PAGE*/

section.page-template.page-tools {
    padding-top: 7rem;
    padding-bottom: 3rem;
}

.single-product-summary-addon ul {
    padding: 0;
    list-style: none;
    margin: 0;
}

.single-product-summary-addon ul li img {
    margin-right: 10px;
    width: 45px;
    height: 45px;
    background-color: #ff000017;
    padding: 5px 5px;
    border-radius: 5px;
    border: 1px solid #ff00003b;
}

.single-product-summary-addon_meta p svg {
    color: var(--second-color);
    margin-right: 5px;
}

.single-product-summary-addon_meta {
    margin-top: 15px;
}

.single-product-summary-addon_meta p {
    margin-bottom: 5px;
}

.single-product-summary-guarantee {
    border-left: 1px solid #56565633;
    padding-left: 15px;
}

.single-product-summary-addon ul li {
    margin-bottom: 8px;
}

.submenu-right-ups {
    padding: 10px;
}

.submenu-right-ups p {
    font-size: 16px;
    font-style: italic;
    line-height: 1.6;
    font-family: 'Roboto-Medium';
}

.submenu-right-ups a {
    color: #007bff;
    text-decoration: underline;
}

.product-header-title {
    margin-bottom: 3rem;
}

section.banner-ads img {
    width: 100%;
}