/*
* 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: 

Author: Dev lewis Corporation

Author URI:

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 lewis 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.

*/

/*BASIC CSS*/
@font-face {
    font-family: "Roboto";
    src: url("assets/fonts/roboto/Roboto-Regular.ttf");
}
@font-face {
    font-family: "Montserrat-SemiBold";
    src: url("assets/fonts/Montserrat-SemiBold.ttf");
}
@font-face {
    font-family: "Montserrat-Bold";
    src: url("assets/fonts/Montserrat-Bold.ttf");
}

:root {
    --primary-color: #0C519E;
    --second-color: #FBB22F;
    --primary-font: "Roboto";
    --second-font: "Montserrat-Bold";
    --third-font: "Montserrat-SemiBold";
}

* {
    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: #424242;
    -ms-text-size-adjust: 100%;
}


h1, h2, h3, h4, h5, h6, strong {
    font-family: var(--second-font);
    font-weight: normal;
}

.header-main-logo img {
    max-width: 180px;
}

.v-header-wrapper {
    margin: 15px 0;
}

.header-main-top__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;
}

.header-main-top {
    background-color: var(--primary-color);
    color: #fff;
    padding: 5px 0;
}

.header-main-top__inner>h1>a {
    font-size: 18px;
    letter-spacing: 1px;
}

.header-main-top__hotline>a:hover {
    background-color: transparent;
    color: var(--second-color);
}

.header-main-top__hotline>a {
    display: inline-block;
    background-color: var(--second-color);
    padding: 8px 20px;
    border-radius: 35px;
    font-family: var(--third-font);
    border: 1px solid var(--second-color);
}

.header-wrapper-banner>a {
    display: block;
    overflow: hidden;
    position: relative;
}

.header-wrapper-banner>a>img {
    width: 100%;
}

section.product-home {
    padding: 6rem 0;
}

.product-home-content h2 {
    font-size: 26px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.product-home-content h2 strong {
    color: var(--second-color);
}

.product-home-content ul {
    list-style: none;
    margin:  0;
    padding: 0;
    margin-top: 20px;
}

.product-home-content ul li {
    margin-bottom: 15px;
    font-family: var(--third-font);
    font-size: 16px;
    color: #000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.product-home-content ul li span.icon {
    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: 2px solid var(--primary-color);
    border-radius: 50%;
    font-size: 20px;
    margin-right: 10px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 45px;
            flex: 0 0 45px;
}

.product-home-list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 15px 1fr 15px 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

h2.title-product-home {
    text-align: center;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 23px;
}

.product-home-item>a {
    display: block;
    overflow: hidden;
    position: relative;
}

.product-home-item>a>img {
    aspect-ratio: 2/1.4;
    -o-object-fit: cover;
       object-fit: cover;
}

.product-home-item>a>h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    background-color: var(--primary-color);
    color: #fff;
    margin: 0;
    font-size: 15px;
    text-transform: uppercase;
    padding: 5px 0;
    font-family: var(--third-font);
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    min-height: 50px;
    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;
}

.product-home-item>a:hover img {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
    -webkit-filter: brightness(0.7);
            filter: brightness(0.7);
}

.product-home-item>a:hover h3 {
    background-color: var(--second-color);
}

.block-article-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 4rem;
}

.block-article-item_content {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 65%;
            flex: 0 0 65%;
}

.block-article-item_img {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 35%;
            flex: 0 0 35%;
}

.block-thumb-right .block-article-item_content {
    padding-right: 5rem;
}

.block-thumb-left .block-article-item_content {
    padding-left: 5rem;
}

.block-article-item_img>a {
    display: block;
    overflow: hidden;
    position: relative;
}

.block-article-item_img>a img {
    width: 100%;
    aspect-ratio: 2/1.1;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 8px;
}

.block-article-item_content>h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.block-article-item_content p {
    font-size: 18px;
    color: #585858e3;
    line-height: 1.8;
}

.block-article-inner {
    position: relative;
    padding-left: 3rem;
}

h2.title-block-article {
    position: relative;
        margin-bottom: 3rem;
}

.block-article-inner:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    border-left: 2px dashed #adadad;
}

h2.title-block-article:before {
    position: absolute;
    content: "";
    width: 30px;
    height: 30px;
    background-color: var(--second-color);
    border-radius: 50%;
    left: -45px;
    top: 0px;
}

h2.title-block-article span {
    text-transform: uppercase;
    font-size: 2.8rem;
    color: var(--primary-color);
}

.block-article-item {
    position: relative;
}

.block-article-item:before {
    position: absolute;
    content: "";
    width: 15px;
    height: 15px;
    background-color: var(--second-color);
    left: -37px;
    top: 5px;
    border-radius: 50%;
}

section.gallery {
    padding-top: 3rem;
    padding-bottom: 8rem;
}

h2.title-gallery {
    text-align: left;
    text-transform: uppercase;
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    border-bottom: 1px solid #9b9b9b33;
    padding-bottom: 5px;
}

h2.title-gallery span {
    border-bottom: 3px solid var(--second-color);
    padding-bottom: 5px;
}

.title-home h2 span svg, h2.title-gallery span svg {
    margin-right: 5px;
    color: var(--second-color);
}

.title-home {
    margin-bottom: 3rem;
}

.title-home h2 {
    text-align: center;
}

.title-home h2 span {
    text-transform: uppercase;
    font-size: 2.8rem;
    color: var(--primary-color);
    position: relative;
}

.title-home h2 span:before,.title-home h2 span:after {
    position: absolute;
    content: "";
    height: 2px;
    width: 85px;
    background-color: var(--second-color);
    top: 17px;
}

.title-home h2 span:before {
    left: -110px;
}

.title-home h2 span:after {
    right: -110px;
}

.gallery-item>a {
    display: block;
    overflow: hidden;
    position: relative;
}

.gallery-item>a h4 {
    position: absolute;
    bottom: 0;
    left: 0;
    text-align: center;
    width: 100%;
    color: #fff;
    text-transform: uppercase;
    font-family: var(--third-font);
    -webkit-transform: translateY(45px);
        -ms-transform: translateY(45px);
            transform: translateY(45px);
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    background-color: var(--primary-color);
    padding: 10px 0;
    margin-bottom: 0;
    z-index: 1;
}

.gallery-item>a span {
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    position: absolute;
    left: 50%;
    top: 50%;
    color: #fff;
    font-size: 22px;
    -webkit-transform: translate(-50%, -50%) scale(0);
        -ms-transform: translate(-50%, -50%) scale(0);
            transform: translate(-50%, -50%) scale(0);
    z-index: 1;
}

.gallery-item>a:hover h4 {
    -webkit-transform: translateY(0px);
        -ms-transform: translateY(0px);
            transform: translateY(0px);
}

.gallery-item>a:hover span {
    -webkit-transform: translate(-50%, -50%) scale(1);
        -ms-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
}

.gallery-item>a:hover img {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
}

section.videos-home {
    padding-top: 6rem;
    padding-bottom: 8rem;
}

section.news {
    background: url(assets/images/bg-news.jpg) no-repeat center center;
    padding-top: 6rem;
    padding-bottom: 8rem;
}

section.block-article {
    background-color: #cccccc33;
    padding-top: 6rem;
    padding-bottom: 3rem;
}

.blogs-item {
    -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    -webkit-transition: -webkit-box-shadow 0.2s;
    transition: -webkit-box-shadow 0.2s;
    -o-transition: box-shadow 0.2s;
    transition: box-shadow 0.2s;
    transition: box-shadow 0.2s, -webkit-box-shadow 0.2s;
}

.blogs-item:hover {
    -webkit-box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

.blogs-item-thumb>a {
    display: block;
    overflow: hidden;
    position: relative;
}

.blogs-item-thumb>a img {
    aspect-ratio: 2/1.3;
    -o-object-fit: cover;
       object-fit: cover;
}

.blogs-item-content {
    background-color: #fff;
    padding: 15px 25px;
    min-height: 19.5rem;
}

.blogs-item-content h3 {
    margin-top: 5px;
    margin-bottom: 15px;
    font-size: 17px;
    color: var(--primary-color);
    font-family: var(--second-font);
    line-height: 1.3;
}

.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:hover a {
    color: var(--second-color);
}

.blogs-item-content p {
    font-size: 15px;
    color: #888;
    display: -webkit-box;
    overflow: hidden;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.blogs-item-content>a {
    display: inline-block;
    font-size: 13px;
    color: var(--primary-color);
    font-family: var(--third-font);
}

.blogs-item-content>a svg {
    margin-left: 3px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.blogs-item:hover img {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
    -webkit-filter: brightness(0.5);
            filter: brightness(0.5);
}

.video-item>a {
    display: block;
    overflow: hidden;
    position: relative;
    border-radius: 8px;
}

.video-item>a>img {
    aspect-ratio: 2/1.3;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 8px;
}

.video-item>a>span>img {
    width: 55px !important;
}

.video-item>a>span {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}

.video-item>a:hover img {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
}

.video-item h3 {
    margin-bottom: 0;
    margin-top: 10px;
    text-align: center;
    font-size: 17px;
    color: var(--primary-color);
}

.brand-item>a>img {
    aspect-ratio: 2/1.2;
    -o-object-fit: scale-down;
       object-fit: scale-down;
}

.brand-item>a {
    display: block;
    overflow: hidden;
    position: relative;
}

section.brand {
    padding-bottom: 6rem;
}

footer#footer {
    background: url(assets/images/bg-footer.jpg) no-repeat center center;
    background-size: cover;
    color: #fff;
    padding-top: 5rem;
}

.footer-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.footer-logo>img {
    width: 65px;
    border-radius: 5px;
    margin-right: 20px;
}

.footer-block.footer-contact h3:before {
    position: absolute;
    content: "";
    width: 70px;
    height: 2px;
    background-color: var(--second-color);
    bottom: -10px;
    left: 0;
}
.footer-block.footer-contact h3 {
    line-height: 1.4;
    margin-bottom: 10px;
    position: relative;
    letter-spacing: 1px;
}

.footer-block.footer-contact ul {
    margin: 0;
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.footer-block.footer-contact ul li {
    margin-bottom: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.footer-block ul li a:before {
    font-family: 'FontAwesome';
    content: '\f105';
    margin-right: 10px;
    color: var(--second-color);
}

.footer-block.footer-contact ul li span {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 35px;
    height: 35px;
    -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);
    border-radius: 50%;
    margin-right: 10px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 35px;
            flex: 0 0 35px;
}

.footer-block h4:before {
    position: absolute;
    content: "";
    width: 50px;
    height: 2px;
    background-color: var(--second-color);
    bottom: -14px;
    left: 0;
}

.footer-block h4 {
    text-transform: uppercase;
    margin-bottom: 4rem;
    position: relative;
}

.footer-block ul {
    margin: 0;
    list-style: none;
    padding: 0;
}

.footer-block ul li {
    margin-bottom: 12px;
}

.footer-block ul li a {
    color: #ffffff;
}

.footer-block ul li a:hover,.footer-block ul li a:hover:before {
    color: var(--second-color);
}

.footer-block ul li a:hover {
    padding-left: 5px;
}

._copyright p {
    margin: 0;
    text-align: center;
    font-size: 14px;
    padding-bottom: 12px;
    padding-top: 15px;
}

._copyright {
    background-color: #0c519e;
}

.footer-block.footer-cus {
    padding-left: 2rem;
}

section.footer-area {
    padding-bottom: 2rem;
}

.footer-block.footer-cus ul li,.footer-block.footer-link ul li {
    border-bottom: 1px solid #ffffff36;
    padding-bottom: 12px;
}

.footer-block.footer-link ul li:last-child, .footer-block.footer-cus ul li:last-child {
    border: none;
}

.footer-block.footer-contact {
    border-right: 1px solid #ffffff33;
}

/*PAGE*/

section.product-template {
    padding-top: 4rem;
    padding-bottom: 6rem;
}

.contact-maps>iframe {
    width: 100%;
    margin-bottom: -6px;
    height: 450px;
}

.product-item-thumb>a {
    display: block;
    overflow: hidden;
    position: relative;
}

.product-item-thumb>a>img {
    width: 100%;
    aspect-ratio: 2/1.3;
    -o-object-fit: cover;
       object-fit: cover;
}

.product-item-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 1.3rem;
    font-size: 16px;
    line-height: 1.3;
}

.product-item-content h3 a {
    display: -webkit-box;
    overflow: hidden;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.product-item-content p {
    color: #919191;
    display: -webkit-box;
    overflow: hidden;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    margin-bottom: 0;
}

.product-item {
    margin-bottom: 3rem;
}

.v-post-items:hover img, .product-item:hover img {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
    -webkit-filter: brightness(0.7);
            filter: brightness(0.7);
}

.v-post-items:hover h3>a,.v-post-items:hover .v-post-btn, 
.product-item:hover h3>a {
    color: var(--second-color);
}

h1.single-product-summary-title {
    color: var(--primary-color);
    margin-bottom: 15px;
}

h3.single-product-summary-contact {
    color: #ff0000;
    font-size: 20px;
}

.single-product-summary-exceprt {
    margin: 25px 0;
}

.single-product-summary-exceprt p {
    margin: 0;
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
}

.single-product-summary-social ul {
    padding: 0;
    list-style: none;
    margin: 0;
}

.single-product-summary-social ul li {
    display: inline-block;
    margin-right: 15px;
}

.single-product-summary-social ul li a {
    font-size: 18px;
    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;
    width: 40px;
    height: 40px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50%;
}

.single-product-gallery {
    padding-right: 3rem;
}

.single-product-description {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 4rem;
}

.single-product-description-detail {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 70%;
            flex: 0 0 70%;
}

.single-product-description-sidebar {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 27%;
            flex: 0 0 27%;
}

.single-product-description-detail, 
.single-product-description-sidebar_main {
    border: 1px solid #9f9f9f33;
    border-radius: 6px;
    padding: 2rem;
}

h3.title-sidebar {
    margin-bottom: 2rem;
    position: relative;
    border-bottom: 1px solid #3333;
    padding-bottom: 10px;
    text-transform: capitalize;
    color: #000;
}

h3.title-sidebar:before {
    position: absolute;
    content: "";
    width: 90px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -2px;
}

ul.sidebar-list {
    margin: 0;
    list-style: none;
    padding: 0;
}

ul.sidebar-list li a {display: -webkit-box;display: -ms-flexbox;display: flex;-webkit-box-align: center;-ms-flex-align: center;align-items: center;}

.sidebar-list-item-thumb {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 40%;
            flex: 0 0 40%;
}

.sidebar-list-item-content {
    padding-left: 10px;
}

ul.sidebar-list>li {
    margin-bottom: 20px;
    border-bottom: 1px solid #c7c7c733;
    padding-bottom: 20px;
}

ul.sidebar-list>li:last-child {
    border: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.sidebar-list-item-thumb>img {
    width: 100%;
    aspect-ratio: 2/1.3;
    border-radius: 4px;
    -o-object-fit: cover;
       object-fit: cover;
}

.sidebar-list-item-content h5 {
    font-size: 15px;
    color: #000;
    line-height: 1.3;
}

.sidebar-list-item-content p {
    margin-bottom: 0;
    color: #ff0000;
    font-family: var(--third-font);
    font-size: 13px;
}

.single-product-description-sidebar-support {
    background-color: #b5d9ff42;
    padding: 1rem 2rem;
    border-radius: 6px;
    margin-top: 3rem;
}

.single-product-description-sidebar-support>a {
    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;
}

.single-product-description-sidebar-support>a>img {
    width: 75px;
}

.single-product-description-sidebar-support_right {
    padding-left: 10px;
    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-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
}

.single-product-description-sidebar-support_right h4 {
    text-transform: uppercase;
    margin-bottom: 0;
}

.single-product-description-sidebar-support_right strong {
    font-size: 2rem;
    color: #ff0000;
}

.single-product-description-sidebar-support_right em {
    font-size: 14px;
}

.single-product-related {
    margin-top: 3rem;
}

.single-product-related>h3 {
    text-transform: uppercase;
    margin-bottom: 2rem;
    color: #000;
}

.single-product-related-box {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 25px 1fr 25px 1fr 25px 1fr;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.single-product-related-item {
    border: 1px solid #afafaf33;
    border-radius: 8px;
}

.single-product-related-thumb>a {
    display: block;
    overflow: hidden;
    position: relative;
}

.single-product-related-thumb>a img {
    width: 100%;
    aspect-ratio: 2/1.3;
    border-radius: 8px 8px 0 0;
}

.single-product-related-content {
    padding: 1.5rem;
}

.single-product-related-content>h3 {
    font-size: 17px;
    margin-bottom: 10px;
}

.single-product-related-content>h3>a {
    display: -webkit-box;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-transform: uppercase;
    font-size: 16px;
}

.single-product-related-content p {
    line-height: 1.4;
    color: #5c5c5c;
    display: -webkit-box;
    overflow: hidden;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

a.btn-more-related {
    font-family: var(--third-font);
    font-size: 13px;
    color: var(--primary-color);
}

a.btn-more-related svg {
    margin-right: 0px;
    font-size: 15px;
    position: relative;
    top: 2px;
}

.gallery-box {
  max-width: 1200px;
  margin: 0 auto;
  display: -ms-grid;
  display: grid;
  gap: 10px;
  -ms-grid-columns: 1fr 10px 1fr 10px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto 10px auto;
  grid-template-rows: auto auto;
}

.photo-item {
    display: block;
    overflow: hidden;
}

.photo-item a {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  cursor: pointer;
}

.photo-item a::after {
  content: '';
  position: absolute;
  inset: 0;
  background: -o-linear-gradient(290deg, transparent 55%, rgba(10,8,14,0.5));
  background: linear-gradient(160deg, transparent 55%, rgba(10,8,14,0.5));
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  -o-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

.photo-item a:hover::after { opacity: 1; }

.photo-item img {
  display: block;
  width: 100%;
  aspect-ratio: 2/1.4;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.photo-item a:hover img { -webkit-transform: scale(1.04); -ms-transform: scale(1.04); transform: scale(1.04); }


.single-gallery-desc {
    margin-top: 4rem;
}

.single-gallery-desc p {
    margin: 0;
    font-size: 16px;
    color: #898989;
    line-height: 1.6;
}

/* ── TABLET ── */
@media (max-width: 720px) {
  .gallery-box {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
  }
  .gallery-box > *:nth-child(1) {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
  }
  .gallery-box > *:nth-child(2) {
        -ms-grid-row: 1;
        -ms-grid-column: 2;
  }

  .photo-item:nth-child(1) {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / 3;
    -ms-grid-row: 1;
    grid-row: 1;
    aspect-ratio: 16/9;
  }
  .photo-item:nth-child(1) img { min-height: unset; height: 100%; }

  .photo-item:nth-child(2) { -ms-grid-column: 1; grid-column: 1; -ms-grid-row: 2; grid-row: 2; aspect-ratio: 4/3; }
  .photo-item:nth-child(3) { -ms-grid-column: 2; grid-column: 2; -ms-grid-row: 2; grid-row: 2; aspect-ratio: 4/3; }

  .photo-item:nth-child(4) { -ms-grid-column: 1; grid-column: 1; -ms-grid-row: 3; grid-row: 3; aspect-ratio: 4/3; }
  .photo-item:nth-child(5) {
    -ms-grid-column: 2;
    grid-column: 2; -ms-grid-row: 3; grid-row: 3;
    aspect-ratio: 4/3;
  }
  .photo-item:nth-child(5) img { min-height: unset; height: 100%; }

  .photo-item:nth-child(6) { -ms-grid-column: 1; grid-column: 1; -ms-grid-row: 4; grid-row: 4; aspect-ratio: 4/3; }
  .photo-item:nth-child(7) { -ms-grid-column: 2; grid-column: 2; -ms-grid-row: 4; grid-row: 4; aspect-ratio: 4/3; }
}

/* ── MOBILE ── */
@media (max-width: 480px) {

  .gallery-box {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .photo-item,
  .photo-item:nth-child(n) {
    -ms-grid-column: 1 !important;
    grid-column: 1 !important;
    grid-row: auto !important;
    aspect-ratio: 4/3;
  }

  .photo-item:nth-child(1) { aspect-ratio: 16/9; }
  .photo-item:nth-child(1) img,
  .photo-item:nth-child(5) img { height: 100%; min-height: unset; }

}


.single-product-description-detail h2,.single-product-description-detail h3 {
    color: #000;
    margin-bottom: 15px;
    margin-top: 15px;
}

.single-product-description-detail, .single-product-description-detail p {
    line-height: 1.6;
    color: #646464;
}

h1.page-title {
    margin-bottom: 2rem;
}

h1.page-title>span {
    color: var(--primary-color);
}

.single-product-summary-social ul li a:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.single-product-related-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);
}

.single-product-related-item:hover h3>a {
    color: var(--primary-color);
}

a.btn-more-related:hover {
    color: var(--second-color);
}

ul.sidebar-list li a:hover img {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
}

.sidebar-list-item-thumb {
    display: block;
    overflow: hidden;
    position: relative;
}

ul.sidebar-list li a:hover h5 {
    color: var(--primary-color);
}

/*PAGE ABOUT US*/

.about-intro {
  padding: 90px 0;
  background: -o-linear-gradient(315deg, rgb(12 81 158), rgb(251 178 47));
  background: linear-gradient(135deg, rgb(12 81 158), rgb(251 178 47));
  color: #fff;
  position: relative;
  overflow: hidden;
}

.about-intro::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.about-intro__wrap {
  max-width: 820px;
  position: relative;
  z-index: 2;
  padding-left: 5rem;
}

.about-intro__label {
  display: inline-block;
  padding: 8px 18px;
  margin-bottom: 20px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-intro__title {
  margin: 0 0 20px;
  font-size: 42px;
  line-height: 1.25;
  font-weight: 800;
}

.about-intro__desc {
  max-width: 680px;
  font-size: 18px;
  line-height: 1.7;
  margin: 0;
}

.about-content {
  padding: 80px 0;
}

.about-content__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) 35px 330px;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 35px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

.about-content__box {
  padding: 32px;
  margin-bottom: 24px;
  background: #fff;
  border-radius: 18px;
  -webkit-box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
          box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
  border-left: 5px solid var(--primary-color);
}

.about-content__box h2 {
  margin: 0 0 18px;
  color: #414042;
  font-size: 26px;
  font-weight: 800;
}

.about-content__box p {
  margin: 0 0 14px;
  color: #555;
  font-size: 16px;
  line-height: 1.8;
}

.about-content__box p:last-child {
  margin-bottom: 0;
}

.about-content__box--highlight {
  background: -o-linear-gradient(315deg, #fff7f2, #ffffff);
  background: linear-gradient(135deg, #fff7f2, #ffffff);
  border-left-color: #414042;
}

.about-content__sidebar {
  position: sticky;
  top: 30px;
}

.about-card {
  padding: 28px;
  margin-bottom: 20px;
  border-radius: 18px;
  background: #fff;
  text-align: center;
  -webkit-box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
          box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
}

.about-card__number {
  display: block;
  margin-bottom: 8px;
  color: var(--primary-color);
  font-size: 38px;
  line-height: 1;
  font-weight: 900;
}

.about-card p {
  margin: 0;
  color: #414042;
  font-size: 15px;
  font-family: var(--second-font);
}

.about-slogan {
  padding: 32px;
  border-radius: 20px;
  color: #fff;
  background: -o-linear-gradient(315deg, #414042, #252525);
  background: linear-gradient(135deg, #414042, #252525);
  -webkit-box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
          box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

.about-slogan h3 {
  margin: 0 0 12px;
  color: var(--second-color);
  font-size: 22px;
  font-weight: 800;
}

.about-slogan p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
}

.about-commit {
  padding: 80px 0;
  background: #fff;
}

.about-commit__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 24px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.about-commit__item {
  padding: 35px;
  border-radius: 20px;
  background: #f7f7f7;
  border: 1px solid #eee;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.about-commit__item:hover {
  -webkit-transform: translateY(-6px);
      -ms-transform: translateY(-6px);
          transform: translateY(-6px);
  -webkit-box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
          box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

.about-commit__item h3 {
  margin: 0 0 15px;
  color: var(--primary-color);
  font-size: 24px;
  font-weight: 800;
}

.about-commit__item p {
  margin: 0;
  color: #555;
  font-size: 16px;
  line-height: 1.8;
}

.about-closing {
  margin-top: 45px;
  padding: 42px;
  border-radius: 24px;
  background:-o-linear-gradient(315deg, #fbb22f, rgb(12 81 158));
  background:linear-gradient(135deg, #fbb22f, rgb(12 81 158));
  color: #fff;
  text-align: center;
}

.about-closing p {
  max-width: 850px;
  margin: 0 auto 16px;
  font-size: 18px;
  line-height: 1.8;
}

.about-closing strong {
  display: block;
  font-size: 22px;
  color: #fff;
}

@media (max-width: 991px) {
  .about-intro {
    padding: 65px 0;
  }

  .about-intro__title {
    font-size: 32px;
  }

  .about-content__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .about-content__sidebar {
    position: static;
  }

  .about-commit__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
    section.about-intro {
        padding: 20px 0;
    }

    .about-intro__wrap {
        padding: 25px;
    }
  .about-content,
  .about-commit {
    padding: 50px 0;
  }

  .about-content__box,
  .about-commit__item,
  .about-closing {
    padding: 24px;
  }

  .about-intro__title {
    font-size: 26px;
  }
}