/**
Theme Name: 7 Jaguar
Author: Daniel Meza
Author URI: https://flowbusiness.lat/
Description: Diseño exclusivo para la marca 7 Jaguar
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: 7-jaguar
Template: astra
*/

/*------------------------------------*\
    COLOR THEME
\*------------------------------------*/
:root{
    --black: #000000;
    --black-01: #1C2933;
    --white: #FFFFFF;
/*    --blue: #0959C5;*/
    --blue: #ffa801;
    --blue-light: #A8CEFF;
    --red: #fc5c65;
    --green: #A4C41D;
    --whats: #25D366;
}

/*------------------------------------*\
    FLEX
\*------------------------------------*/

.flex{ 
    display: -webkit-box; 
    display: -ms-flexbox; 
    display: -webkit-flex; 
    display: flex;
}
.flex-column{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
}
.flex-row{
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
}
.flex-wrap{ 
    -webkit-flex-flow: wrap;
        -ms-flex-flow: wrap;
            flex-flow: wrap;
}
.flex-between{
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
            justify-content: space-between;
}
.flex-around{
    -ms-flex-pack: distribute;
    -webkit-justify-content: space-around;
            justify-content: space-around;
}
.flex-center{ 
    -webkit-box-align: center; 
        -ms-flex-align: center; 
    -webkit-align-items: center; 
            align-items: center;
}
.flex-middle{
    -webkit-box-align: center;
        -ms-flex-align: center;
    -webkit-align-items: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
    -webkit-justify-content: center;
            justify-content: center;
}
.flex-half{
    -webkit-box-pack: center;
        -ms-flex-pack: center;
    -webkit-justify-content: center;
            justify-content: center;
}
.flex-end{
    -webkit-box-pack: end;
        -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
            justify-content: flex-end;
}
.flex-start{
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.flex-bottom{ 
    -webkit-align-items: flex-end;
           -webkit-box-align: end;
              -ms-flex-align: end;
            align-items: flex-end;
}

/*------------------------------------*\
    SEPARADORES
\*------------------------------------*/
.p80{ padding: 80px 0;}
.pt80{ padding-top: 80px;}
.pt120{ padding-top: 120px;}

.mt40{ margin-top: 40px;}


/*------------------------------------*\
    HEADER
\*------------------------------------*/
.ast-primary-header{
    -webkit-backdrop-filter: blur(7px);
            backdrop-filter: blur(7px);
    background-color: rgba(0, 0, 0, 1)!important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1)!important;
}
.home .ast-primary-header{
    -webkit-backdrop-filter: blur(7px);
            backdrop-filter: blur(7px);
    background-color: rgba(255, 255, 255, 0)!important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1)!important;
}
.menu-link{
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--white)!important;
}
.ast-sticky-active{
    -webkit-backdrop-filter: blur(4px);
            backdrop-filter: blur(4px);
    background-color: rgba(0, 0, 0, 0.9)!important;
}
.ast-sticky-active .menu-link{
    color: var(--white)!important;
}

/*------------------------------------*\
    WOOCOMMERCE
\*------------------------------------*/
/*
.woocommerce .ast-woo-shop-product-description p{
    padding-bottom: 16px!important;
}
*/
.single-product .site-main{
    margin-top: 80px!important;
}
.site-content .ast-container{
/*    margin-top: 120px!important;*/
}


/*------------------------------------*\
    HERO
\*------------------------------------*/
.hero-box{
    background: url(img/Hero/hero_03.jpg) bottom right no-repeat;
    background-size: cover;
    background-color: var(--black)!important;
}
.hero-thanks{
    min-height: 160px;
}
.hero-box .vc_column-inner{
    height: calc(100vh - 80px);
/*    height: calc(100vh - 160px);
    height: 100vh;*/
}
.hero-left .wpb_wrapper{
    padding-bottom: 160px;
}
.hero-left .wpb_wrapper .wpb_wrapper{
    padding-bottom: 0;
}
.hero-left h2{
    font-size: 48px;
    line-height: 1.25em;
    letter-spacing: 1px;
    font-weight: 300;
    color: var(--white);
}
.hero-left h2 strong{
    font-weight: 700;
}
.hero-left p{
    font-size: 18px;
    line-height: 1.75em;
    color: var(--white);
}
.hero-left p:last-of-type{
    margin-bottom: 32px!important;
}
.btn-hero a{
    display: inline-flex!important;
    align-items: center;
    justify-content: center;
    height: 70px!important;
    font-size: 14px!important;
    font-weight: 700!important;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none!important;
    padding: 0!important;
    padding-left: 40px!important;
    padding-right: 16px!important;
    border: none!important;
    border-radius: 70px!important;
    transition: .4s cubic-bezier(0,0,.3642,1)!important;
    color: var(--black)!important;
    background-color: var(--blue)!important;
}
.btn-hero a::after{
    content: "";
    width: 40px;
    height: 40px;
    border-radius: 40px;
    margin-left: 24px;
    background: url(img/icon/btn_arrow_blue.png) center center no-repeat!important;
    background-color: var(--white)!important;
}
.btn-hero.btn-hero-right a{
    margin-left: 16px!important;
    color: var(--white)!important;
    background: hsla(0, 0%, 100%, .1)!important;
}
.btn-hero.btn-hero-right a::after{
    background: url(img/icon/btn_arrow_white.png) center center no-repeat!important;
    background-color: var(--blue)!important;
/*    border: 1px solid #FFFFFF;*/
}


/*------------------------------------*\
    ABOUT HOME
\*------------------------------------*/
.about-left .wpb_wrapper{
    width: 80%;
    margin-right: 20%;
}
.about-left .wpb_wrapper .wpb_wrapper{
    width: 100%;
    margin: 0;
}
.about-left h2{
    font-size: 40px;
    font-weight: 300;
    line-height: 1.25em;
    margin-bottom: 40px;
}
.about-left h2 strong{
    font-weight: 700;
}
.about-left p{
    font-size: 16px;
    line-height: 1.5em;
/*    padding-bottom: 16px;*/
    margin-bottom: 16px;
    color: var(--txt-light);
}
.about-left-bottom{
    padding-top: 40px;
    padding-bottom: 120px;
}
.about-left-bottom .wpb_wrapper{
    display: inline-flex;
    align-items: center;
}
.about-left-bottom h3{
    width: calc(100% - 114px);
    font-size: 20px;
    font-weight: 300;
    line-height: 1.25em;
    margin-left: 24px;
}
.about-left-bottom h3 strong{
    font-weight: 700;
}
.about-left-bottom img{
    border-radius: 50%;
    width: 90px;
    height: 90px;
/*
    object-fit: cover;
    object-position: top;
*/
    background: url(img/about/2.jpg)top center no-repeat;
    background-size: cover;
/*    background-color: var(--blue);*/
}
.about-left-bottom p{
    position: relative;
}
.about-left-bottom p::after{
    position: absolute;
    bottom: -8px;
    right: -8px;
    content: "";
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background: url(img/icon/whats.png) center center no-repeat;
    background-size: contain;
/*    background-color: var(--whats);*/
}

.about-left-bottom h3 a{
    text-decoration: none!important;
    color: var(--blue)!important;
}


/*------------------------------------*\
    PRODUCTS HOME
\*------------------------------------*/
.models-box{
    padding-top: 80px;
    background-color: var(--black);
}
.title-right{
    position: relative;
    width: 100%;
    margin-bottom: 120px;
}
.title-right h3{
    text-align: right;
    font-size: 14px!important;
    line-height: 1.25em;
    letter-spacing: 1px;
    color: var(--blue);
}
.title-right h3 strong{
    clear: both;
    display: block;
    font-weight: 700;
    color: var(--white);
}
.title-right h3, .title-right h3 strong{
    font-weight: 500;
}
.title-right::before{
    content: "";
    position: absolute;
    left: calc(100% + 30px);
    top: 10px;
    width: 600px;
    height: 1px;
    background-color: var(--blue);
    opacity: 0.4;
}
.model-top-info{
    margin-bottom: 24px;
}
.model-top-info .wpb_wrapper, .model-bottom-info .wpb_wrapper{
    display: flex;
    justify-content: center!important;
    align-items:center;
}
.model-top-info p:first-of-type{
    height: 80px;
    width: 250px;
    margin-right: 32px!important;
    border-radius: 70px;
    overflow: hidden;
}
.model-top-info p:first-of-type img{
    object-fit: cover;
    object-position: center;
/*    background-color: aquamarine;*/
    background: url(img/planes/type_sauces.jpg) center center no-repeat;
    background-size: cover;
}
.model-top-info h4, .model-bottom-info h4{
    font-size: 64px;
    font-weight: 100;
    line-height: 1em;
    text-align: center;
    color: var(--white);
}
.model-top-info h4 strong, .model-bottom-info h4 strong{
    font-weight: 700;
}
.model-top-info h4, .model-bottom-info h4, .model-top-info p{
    margin: 0!important;
    padding: 0!important;
}
.model-bottom-info a{
    display: inline-flex!important;
    align-items: center;
    justify-content: center;
    height: 70px!important;
    font-size: 12px!important;
    font-weight: 700!important;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none!important;
    margin-left: 32px!important;
    padding: 0!important;
    padding-left: 40px!important;
    padding-right: 16px!important;
    border: none!important;
    border-radius: 70px!important;
    transition: .4s cubic-bezier(0,0,.3642,1)!important;
    color: var(--white)!important;
    background-color: var(--black);
}
.model-bottom-info a::after{
    content: "";
    width: 40px;
    height: 40px;
    border-radius: 40px;
    margin-left: 24px;
    background: url(img/icon/btn_arrow_blue.png) center center no-repeat!important;
    background-color: var(--white)!important;
}
.caro-products-home{
    padding-top: 80px;
}
.caro-products-home .ast-woo-product-category{
    color: var(--blue-light)!important;
}
.caro-products{
    margin-top: 120px;
    border-right: 1px solid hsla(0,0%,100%, .1);
}
.caro-models{
    margin-top: 120px;
    border-right: 1px solid hsla(0,0%,100%, .1);
}
.single-item-model{
    border-top: 1px solid hsla(0,0%,100%, .1);
    border-left: 1px solid hsla(0,0%,100%, .1);
}
.caro-data-model{
    display: block;
    padding: 64px 32px;
}
.caro-data-model h3{
    font-size: 18px;
    line-height: 1.25em;
    text-align: center;
    color: var(--white)!important;
}

.models-box .woocommerce ul.products{
    column-gap: 0px!important;
/*    background-color: aquamarine;*/
}
.models-box .woocommerce-loop-product__title{
    font-size: 24px!important;
    line-height: 1.25em;
    color: var(--white)!important;
    margin: 0!important;
    padding: 0!important;
    min-height: 64px!important;
}
.models-box .price{
    font-size: 32px!important;
    color: var(--white)!important;
}
.models-box .ast-article-single{
/*    border-top: 1px solid hsla(0,0%,100%, .1);*/
    border-left: 1px solid hsla(0,0%,100%, .1);
}
.models-box .ast-article-single:hover{
    background-color: var(--white);
}
.models-box .ast-article-single:hover .woocommerce-loop-product__title{
    color: var(--blue)!important;
}
.models-box .ast-article-single:hover .price{
    color: var(--black)!important;
}
.models-box .woocommerce ul.products, .models-box .woocommerce ul.products li.product{
    margin-bottom: 0!important;
    padding-bottom: 0!important;
}
.woocommerce ul.products li.product .astra-shop-summary-wrap{
    padding: 16px 32px 64px 32px!important;
}
.models-box .woocommerce .ast-woo-shop-product-description p{
    font-size: 16px;
    opacity: 0;
    transform: translateY(10px);
    transition: .4s cubic-bezier(0,0,.3642,1);
    overflow: hidden;
    color: var(--blue);
}
.models-box .ast-article-single{
    position: relative;
}
.models-box .ast-article-single:hover .ast-woo-shop-product-description p{
    transform: translateY(0px);
    opacity: 1;
}
.models-box .ast-article-single::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 0;
    transition: .6s cubic-bezier(0,0,.3642,1);
    background-color: var(--green);
    z-index: 10;
}
.models-box .ast-article-single:hover::before{
    width: 100%;
}
.models-box .woocommerce .ast-woo-shop-product-description{
    padding-bottom: 40px;
}
.models-box .add_to_cart_button{
    font-size: 13px!important;
    letter-spacing: 1px;
    text-transform: uppercase;
/*    background-color: #fc5c65!important;*/
    background-color: var(--black)!important;
}
.models-box .add_to_cart_button:hover{
    background-color: var(--red)!important;
}
.models-box .woocommerce ul.products:not(.elementor-grid){
    grid-template-columns: repeat(1,1fr)!important;
}

/*------------------------------------*\
    BRANDS HOME
\*------------------------------------*/
.brands-box{
    padding-bottom: 40px;
}

/*------------------------------------*\
    GENERALES
\*------------------------------------*/
.site-footer-primary-section-3 ul li p{
    margin-bottom: 8px!important;
}

@media (min-width: 1024px) and (max-width: 1280px) {
    .hero-left .wpb_wrapper{
        padding-bottom: 80px;
    }
}


/*-------------------------------------------------
	1.5 Resolution (For Small Tablets 768x800)
-------------------------------------------------*/
@media (min-width: 0px) and (max-width: 1023px) {
    .ast-builder-menu-mobile .main-navigation .main-header-menu .menu-item > .menu-link {
        background-color: var(--black)!important;
    }
    [data-section="section-header-mobile-trigger"] .ast-button-wrap .mobile-menu-toggle-icon .ast-mobile-svg{
        fill: var(--blue)!important;
    }
    .ast-woocommerce-container{
        padding-top: 80px;
    }
    .hero-box{
        background: url(img/Hero/hero_mobile_04.jpg) bottom center no-repeat;
        background-size: contain;
        background-color: var(--black);
    }
    .hero-box .vc_column-inner{
        height: auto;
    }
    .hero-left .wpb_wrapper{
        padding-top: 80px;
        padding-bottom: 280px;
    }
    .hero-left h2{
        font-size: 32px;
        text-align: center;
    }
    .hero-left p{
        text-align: center;
    }
    .btn-hero-left, .btn-hero-right{
        position: relative;
        left: 50%;
        -webkit-transform: translate(-50%, 0);
            -ms-transform: translate(-50%, 0);
                transform: translate(-50%, 0);
    }
    .btn-hero-right{
        margin-top: 24px;
    }
    .about-left .wpb_wrapper{
        width: 100%;
        margin-right: 0;
    }
    .about-left h2, .about-left p{
        text-align: center;
    }
    .about-left h2{
        font-size: 32px;
    }
    .about-left-bottom{
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .about-left-bottom .wpb_wrapper{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .about-left-bottom h3{
        width: 100%;
        margin-left: 0;
        text-align: center;
    }
    
    .title-right{
        margin-bottom: 80px;
    }
    .title-right h3{
        text-align: center;
    }
    .model-top-info .wpb_wrapper, .model-bottom-info .wpb_wrapper{
        flex-direction: column;
    }
    .model-top-info h4, .model-bottom-info h4{
        font-size: 32px;
        
    }
    .model-top-info h4{
        margin-top: 24px!important;
        margin-bottom: 8px!important;
    }
    .model-bottom-info h4{
        margin-bottom: 24px!important;
    }
    .model-top-info{
        margin-bottom: 0!important;
    }
    .model-top-info p:first-of-type{ margin-right: 0!important;}
    .model-bottom-info a{ margin-left: 0!important;}
    .woocommerce ul.products:not(.elementor-grid){
        grid-template-columns: repeat(1,1fr)!important;
    }
    .woocommerce-loop-product__title{
        text-align: center;
        font-size: 24px!important;
        line-height: 1.25em;
    }
    .price{
        text-align: center;
    }
    .price .woocommerce-Price-amount{
        font-size: 32px!important;
    }
    .woocommerce .ast-woo-shop-product-description p{
        text-align: center;
        padding-bottom: 24px!important;
        opacity: 1;
        visibility: visible;
        color: var(--black);
    }
    .add_to_cart_button{
        position: relative;
        left: 50%!important;
        transform: translate(-50%, 0);
    }
    
    .caro-products-home .slick-prev{
        left: -32px!important;
    }
    .caro-products-home .slick-next{
        right: -32px!important;
    }
    .models-box .woocommerce .ast-woo-shop-product-description p{
        text-align: center;
        padding-bottom: 24px!important;
        opacity: 1!important;
        visibility: visible;
        color: var(--blue-light)!important;
    }
    .site-footer-primary-section-1{
        width: 80%!important;
        margin: 0 10%!important;
        padding-bottom: 40px!important;
    }
    .site-footer-primary-section-1 img{
        position: relative;
        left: 50%;
        -webkit-transform: translate(-50%,0);
            -ms-transform: translate(-50%,0);
                transform: translate(-50%,0);
    }
    .site-footer-primary-section-3 h2, .site-footer-primary-section-3 p{
        text-align: center!important;
    }
}