@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: "Poppins";
    src: url("assets/fonts/poppins/SVN-Poppins-Regular.ttf");
}
@font-face {
    font-family: "Poppins-Medium";
    src: url("assets/fonts/poppins/SVN-Poppins-Medium.ttf");
}
@font-face {
    font-family: "Poppins-Bold";
    src: url("assets/fonts/poppins/SVN-Poppins-Bold.ttf");
}
@font-face {
    font-family: "Poppins-SemiBold";
    src: url("assets/fonts/poppins/SVN-Poppins-SemiBold.ttf");
}

:root {
    --primary-color: #02317e;
    --second-color: #ff3c2e;
    --primary-font: "Poppins";
    --second-font: "Poppins-Bold";
    --third-font: "Poppins-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: #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: 115px;
}

.v-header-wrapper {
    padding: 5px 0;
}

.header-main-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-main-info-search {
    flex: 0 0 53%;
}

.header-main-info-hotline {
    flex: 0 0 45%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.header-main-info-search form {
    position: relative;
}

.header-main-info-search form input {
    width: 100%;
    height: 50px;
    padding-left: 15px;
    font-size: 14px;
    border: 1px solid #63636333;
}

.header-main-info-search form button {
    background: var(--primary-color);
    color: #fff;
    width: 80px;
    height: 43px;
    position: absolute;
    right: 4px;
    top: 4px;
    font-size: 18px;
    transition: all .3s;
    cursor: pointer;
}

.header-main-info-search form button:hover {
    background: var(--second-color);
}

.hotline-item {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.hotline-item span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 24px;
    margin-right: 10px;
}

.hotline-item-right p {
    margin-bottom: 0;
    text-transform: capitalize;
    font-size: 14px;
}

.hotline-item-right strong {
    color: var(--second-color);
    font-size: 18px;
    font-family: 'Poppins-SemiBold';
}

.hotline-item-right {
    line-height: 1.4;
}

/*CATE PRODUCT*/

section.cate-product {
    position: relative;
}

.title-home {
    text-align: center;
    margin-bottom: 5rem;
}

.title-home h2 {
    position: relative;
    text-transform: uppercase;
    font-size: 3rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.title-home h2:before {
    position: absolute;
    content: "";
    width: 75px;
    height: 3px;
    background: var(--second-color);
    left: 50%;
    transform: translateX(-50%);
    bottom: -15px;
}

.title-home h2:after {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    left: 50%;
    bottom: -18px;
    transform: translateX(-50%) rotate(45deg);
}

.title-home > p {
    max-width: 500px;
    margin: 0 auto;
    font-size: 14px;
}

.cate-product-item-thumb a {
    display: block;
    overflow: hidden;
    position: relative;
    height: 100%;
}

.cate-product-item {
    position: relative;
    text-align: center;
    margin-bottom: 4rem;
    overflow: hidden;
}

.cate-product-item-thumb {
    width: 100%;
    height: 350px;
    overflow: hidden;
    margin: 0 auto;
}

.cate-product-item-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgb(2 49 126 / 80%);
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 1;
    transition: .3s ease;
}

.cate-product-item-content h3 {
    font-size: 20px;
    margin-bottom: 0;
    position: relative;
    bottom: 5px;
    transition: .3s ease;
    font-family: 'Poppins-SemiBold';
}

.cate-product-item-thumb a img {
    height: 100%;
    width: 100%;
}

.cate-product-item:hover img {
    transform: scale(1.1);
    opacity: .7;
}

.cate-product-item:hover .cate-product-item-content {
    background: var(--primary-color);
}


/*ABOUT*/

section.about {
    padding-top: 7rem;
    padding-bottom: 2rem;
}

.image-puzzle {
    position: relative;
}

.image-puzzle .img-bg {
    position: absolute;
    width: 49%;
    height: 63.5%;
    z-index: -2;
    background-color: var(--primary-color);
    top: 0;
    left: 0;
}

.image-puzzle .image-hover .image {
    margin-left: 12.3%;
}

.image-puzzle .image-hover .image::before {
    margin-top: 60px;
    left: -80%;
}

.image::before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 10;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, .3)));
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    -webkit-transform: skewX( -25deg );
    -ms-transform: skewX(-25deg);
    transform: skewX(-25deg);
}

.image-puzzle .image-hover .image img {
    margin-top: 12%;
    width: 93%;
    height: 470px;
    object-fit: cover;
}

.image-puzzle .img-bg2 {
    width: 65%;
    height: 55%;
    z-index: -1;
    border: 2px solid var(--second-color);
    left: 6%;
    bottom: -8.5%;
    position: absolute;
}

.image-puzzle .image-hover .image::before {
    margin-top: 60px;
    left: -82%;
}
.image-hover:hover .image:before {
    -webkit-animation: shine2 1s;
    animation: shine2 1s;
}

@-webkit-keyframes shine2 {
  100% {
      left: 125%;
  }
}

@keyframes shine2 {
  100% {
      left: 125%;
  }
}

.about-content>h2 {
    font-size: 3rem;
    line-height: 1.3;
    color: var(--primary-color);
    margin-bottom: 40px;
    position: relative;
}

.about-content>h2:after {
    position: absolute;
    content: "";
    width: 9px;
    height: 9px;
    background: var(--primary-color);
    left: 0px;
    bottom: -18px;
    transform: rotate(45deg);
}

.about-content p {
    line-height: 1.8;
}

.about-content>h2:before {
    position: absolute;
    content: "";
    width: 85px;
    height: 3px;
    background: var(--second-color);
    bottom: -15px;
    left: 0;
}

.about-content-btn {
    margin-top: 3rem;
}

.about-content-btn>a {
    background: var(--second-color);
    color: #fff;
    padding: 14px 25px;
    display: inline-block;
    position: relative;
    z-index: 1;
    border: none;
    border-bottom: 1px solid #fff;
}

.about-content-btn>a>svg {
    margin-left: 3px;
}

.about-content-btn>a:before {
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: -1;
    height: 100%;
    width: 101%;
    content: "";
    background-color: var(--primary-color);
    color: #fff;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: right top;
    -ms-transform-origin: right top;
    transform-origin: right top;
    transition: transform 700ms cubic-bezier(0.86, 0, 0.07, 1) 0s,
    -webkit-transform 700ms 0s;
}

.about-content-btn>a:hover:before {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
}

/*GALLERY*/

section.gallery {
    padding: 7rem 0;
}

.title-home.title-left {
    text-align: left;
}

.title-home.title-left h2:before {
    left: 0;
    bottom: -15px;
    transform: translateX(0);
}

.title-home.title-left h2:after {
    left: 5px;
    width: 9px;
    height: 9px;
}

.title-home.title-left h2 {
    margin-bottom: 5rem;
}

.gallery-item a {
    display: block;
    overflow: hidden;
    position: relative;
}

.gallery-item a img {
    height: 500px;
    object-fit: cover;
}

.gallery-item a h3 {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    padding-left: 25px;
    color: #fff;
    z-index: 1;
    transition: .4s ease;
}

.gallery-item a:before {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 60%;
    width: 100%;
    background: -webkit-gradient(linear, left bottom, left top, from(var(--primary-color)), to(transparent));
    background: -o-linear-gradient(bottom, var(--primary-color), transparent);
    background: linear-gradient(to top, var(--primary-color), transparent);
    z-index: 1;
    content: "";
}

.gallery-item:hover img {
    transform: scale(1.2);
}

.gallery-item a:hover h3 {
    transform: translate(20px, -5px);
}

/*CHOOSE*/
section.choose {
    padding-bottom: 7rem;
}

.choose-item {
    position: relative;
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 15px;
    cursor: pointer;
}

.choose-item span {
    display: inline-flex;
    width: 55px;
    height: 55px;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    font-size: 22px;
    position: relative;
    cursor: pointer;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.choose-item span:before {
    position: absolute;
    content: "";
    left: -5px;
    top: -5px;
    right: -5px;
    bottom: -5px;
    border: 1px dashed var(--primary-color);
    width: 65px;
    height: 65px;
    border-radius: 50%;
}

.choose-item p {
    margin-bottom: 0;
    margin-top: 15px;
}

.choose-item:hover span {
    -webkit-transform: scale(-1) rotate(180deg);
    -ms-transform: scale(-1) rotate(180deg);
    transform: scale(-1) rotate(180deg);
    background-color: var(--second-color);
}

.choose-item:hover span:before {
    border-color: var(--second-color);
}

/*REVIEW*/

section.review {
    padding: 7rem 0;
    background-image: url(assets/images/home/review-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    color: #fff;
}

section.review:before {
    background: rgba(0,0,0,0.75);
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

section.review .title-home h2 {
    color: #fff;
}

section.review .title-home h2:after {
    background: #fff;
}

.review-item-info {
    display: flex;
    align-items: center;
}

.review-item-box {
    background: #fff;
    color: #333;
    padding: 3rem;
    position: relative;
    min-height: 27rem;
}

span.review-item-quote {
    font-size: 23px;
    color: var(--primary-color);
}

.review-item-content {
    margin: 10px 0;
}

.review-item-content p {
    font-size: 14px;
    line-height: 1.6;
    font-style: italic;
}

span.review-item-info-avatar img {
    width: 85px !important;
    height: 85px;
    border-radius: 50%;
    object-fit: cover;
}

.review-item-info-right {
    padding-left: 15px;
}

.review-item-info-right p {
    margin-bottom: 0;
    font-size: 14px;
}

.review-item-info-right h4 {
    color: var(--primary-color);
    font-size: 16px;
}

div#owl-review .owl-nav button {
    position: absolute;
    top: 42%;
    display: flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    color: #000;
    font-size: 26px;
    box-shadow: 1px 2px 6px #3333;
    transition: all .3s;
}

div#owl-review .owl-nav button.owl-next {
    right: -50px;
}

div#owl-review .owl-nav button.owl-prev {
    left: -50px;
}

div#owl-review .owl-nav button:hover {
    background: var(--primary-color);
    color: #fff;
}

/*BLOGS*/

section.blogs {
    padding: 7rem 0;
}

.blogs-item-thumb>a {
    display: block;
    overflow: hidden;
    position: relative;
}

.blogs-item-thumb>a>img {
    height: 250px;
    object-fit: cover;
}

.blogs-item-content-meta {
    margin: 15px 0;
    font-size: 13px;
    color: #333333bf;
}

.blogs-item-content-meta span svg {
    color: var(--primary-color);
    margin-right: 3px;
    position: relative;
    bottom: 1px;
}

.blogs-item-content-meta span {
    margin-right: 30px;
}

.blogs-item-content>h3 {
    margin-bottom: 15px;
    font-family: 'Poppins-SemiBold';
    line-height: 1.4;
}

.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 {
    margin-bottom: 0;
    display: -webkit-box;
    overflow: hidden;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

div#owl-blogs .owl-nav button {
    position: absolute;
    top: 42%;
    display: flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    color: #000;
    font-size: 26px;
    box-shadow: 1px 2px 6px #3333;
    transition: all .3s;
}

div#owl-blogs .owl-nav button.owl-next {
    right: -50px;
}

div#owl-blogs .owl-nav button.owl-prev {
    left: -50px;
}

.blogs-item-thumb a:before {
    background: rgba(255, 255, 255, 0.3);
    bottom: 0;
    content: "";
    left: 50%;
    position: absolute;
    right: 51%;
    top: 0;
    opacity: 1;
    pointer-events: none;
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms linear;
    z-index: 1;
}

.blogs-item:hover .blogs-item-thumb a:before {
    left: 0;
    right: 0;
    opacity: 0;
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms linear;
}

.blogs-item:hover img {
    transform: scale(1.1);
}

.blogs-item:hover .blogs-item-content>h3 {
    color: var(--primary-color);
}

div#owl-blogs .owl-nav button:hover {
    background: var(--primary-color);
    color: #fff;
}


/*FOOTER*/

.footer-block {
    display: flex;
    justify-content: space-between;
}

footer#footer {
    position: relative;
    display: block;
    background-color: #292524;
    z-index: 1;
    color: #fff;
}

.site-footer-bg {
    background-image: url(assets/images/home/footer-bg.jpg);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: -1;
}

.site-footer-bg:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    content: "";
    background-color: rgba(41, 37, 36, .97);
}

section.footer {
    padding: 7rem 0;
}

.footer-logo>a {
    display: block;
}

.footer-logo>a>img {
    max-width: 80px;
}

.footer-subcribe {
    padding-right: 30px;
}

.footer-subcribe>p {
    font-size: 14px;
    margin: 20px 0;
}

.footer-subcribe form p {
    position: relative;
    margin-bottom: 0;
}

.footer-subcribe form p input.wpcf7-text {
    width: 100%;
    height: 40px;
    padding-left: 10px;
    font-size: 14px;
    border: none;
}

.footer-subcribe form p input.wpcf7-submit {
    position: absolute;
    top: 2px;
    right: 2px;
    height: 36px;
    border: none;
    background: #302c2b;
    color: #fff;
    padding: 0 15px;
    font-size: 14px;
    transition: .4s ease;
}

.footer-social ul {
    padding: 0;
    list-style: none;
    margin: 0;
}

.footer-social ul li {
    display: inline-block;
}

.footer-social ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #241f1e;
    border-radius: 50%;
    margin-right: 10px;
    font-size: 14px;
}

h4.footer-item-title {
    font-size: 21px;
    line-height: 24px;
    margin-bottom: 3rem;
    position: relative;
    font-family: 'Poppins-SemiBold';
}

h4.footer-item-title:before {
    content: "";
    position: absolute;
    top: -4px;
    left: -7px;
    height: 30px;
    width: 30px;
    background-color: #222124;
    z-index: -1;
}

h4.footer-item-title:after {
    position: absolute;
    top: -6px;
    left: -6px;
    height: 6px;
    width: 6px;
    content: "";
    background-color: var(--second-color);
    z-index: -1;
}

.footer-item {
    flex: 0 0 33%;
}

.footer-item ul {
    padding: 0;
    list-style: none;
    margin: 0;
}

.footer-item ul li {
    margin-bottom: 15px;
}

.footer-item iframe {
    width: 100%;
    height: 165px;
}

ul.footer-item-contact li span {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    background-color: #241f1e;
    border-radius: 50%;
    color: var(--woodza-base);
    top: 0;
    left: 0;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    flex: 0 0 15%;
    margin-right: 10px;
}

ul.footer-item-contact li span svg {
    font-size: 16px;
}

ul.footer-item-contact li {
    display: flex;
    align-items: center;
    font-size: 14px;
}

.footer-block .footer-item:nth-of-type(2) {
    padding-left: 15px;
}

ul.footer-item-cate li a {
    font-size: 14px;
}

.copyright p {
    margin-bottom: 0;
    text-align: center;
    font-size: 14px;
}

.copyright {
    padding: 20px 0;
    position: relative;
    display: block;
    background-color: #24201f;
}

.footer-subcribe form p input.wpcf7-submit:hover {
    background: var(--primary-color);
    cursor: pointer;
}

.footer-social ul li a:hover {
    background: var(--primary-color);
}

ul.footer-item-cate>li>a:hover {
    color: var(--primary-color);
}

/*ARCHIVE*/

.product-item-thumb a {
    display: block;
    overflow: hidden;
    position: relative;
    border: 1px solid #76767633;
}

.product-item-thumb a img {
    width: 100%;
    height: 280px;
    object-fit: scale-down;
}

.product-item-content {
    text-align: center;
}

.product-item-content h3 {
    font-family: var(--third-font);
    font-size: 16px;
    margin-top: 15px;
    line-height: 1.6;
        margin-bottom: 15px;
}

.product-item {
    position: relative;
    margin-bottom: 3rem;
}

.product-item-content p {
    font-family: 'Poppins-SemiBold';
    color: var(--second-color);
    margin-bottom: 0;
    border: 1px solid var(--second-color);
    padding: 8px 0;
    font-size: 15px;
    transition: .4s ease;
}

.product-item:hover img {
    transform: scale(1.1);
}

.product-item:hover .product-item-thumb>a {
    border-color: var(--primary-color);
}

.product-item:hover .product-item-content > h3 {
    color: var(--primary-color);
}

.product-item-content p:hover {
    background: var(--second-color);
    color: #fff;
}


/*SINGLE*/

.v-main-post {
    padding-right: 20px;
}

figure.v-content-single-post-feature {
    max-height: 445px;
    border-radius: 20px;
    overflow: hidden;
}

figure.v-content-single-post-feature img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
}

.v-content-single-meta {
    margin: 20px 0;
}

.v-content-single-meta span {
    font-size: 13px;
    color: #333333ad;
    margin-right: 30px;
}

.v-content-single-meta span svg {
    color: var(--primary-color);
    margin-right: 5px;
    position: relative;
    bottom: 1px;
}

.woocommerce-product-gallery .wpgs-image {
    border: 1px solid #81818133;
}

.wpgs-thumb.slick-initialized.slick-slider .thumbnail_image img {
    border: 1px solid #93939333;
    width: 100%;
    height: 105px;
}

.wpgs-thumb .thumbnail_image.slick-active.slick-current img {
    border-color: var(--primary-color);
}

.summary.entry-summary p.price {
    margin-bottom: 10px;
    color: #525252 !important;
    font-size: 16px !important;
}

.summary.entry-summary p.price span {
    font-family: var(--third-font);
    margin-left: 3px;
}

.woocommerce-product-details__short-description {
    margin-bottom: 3rem;
    margin-top: 2rem;
    background: #c8c8c829;
    padding: 10px 20px;
    font-size: 14px;
    line-height: 1.8;
}

.woocommerce div.product form.cart .button:hover {
    background: var(--primary-color);
}

.product_meta span a {
    font-size: 13px;
    color: var(--primary-color);
    font-style: italic;
}

div#tab-description, div#tab-description p {
    line-height: 1.7;
}

div#tab-description h2, div#tab-description h3 {
    margin-top: 25px;
    margin-bottom: 20px;
}

div#tab-description h4, div#tab-description h5 {
    margin-top: 20px;
    margin-bottom: 15px;
}

div#tab-description b {
    font-family: var(--second-font);
}

.woocommerce nav.woocommerce-pagination ul {
    border: none;
}

.woocommerce nav.woocommerce-pagination ul li a {
    border-right: 0;
    display: flex !important;
    width: 35px;
    height: 35px;
    border: 1px solid var(--primary-color);
    margin: 0 4px;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.woocommerce nav.woocommerce-pagination ul li span.current {
    display: block;
    background: var(--second-color);
    width: 35px;
    height: 35px;
    color: #fff;
    border: 1px solid var(--second-color);
    margin: 0 4px;
}

.woocommerce nav.woocommerce-pagination ul li {
    border-right: 0;
}

.product_contact_add {
    margin-bottom: 20px;
}

.product_contact_add>a {
    background-color: var(--second-color);
    display: block;
    text-align: center;
    color: #fff;
    padding: 12px 0;
    text-transform: uppercase;
    font-family: var(--third-font);
    letter-spacing: 1px;
    border-radius: 3px;
    box-shadow: 1px 2px 10px #33333396;
}

.product_contact_add>a:hover {
    background-color: var(--primary-color);
}