/**
Theme Name: Astra Vive Harmony
Author: Daniel Meza
Author URI: https://lionzeven.com/
Description: Diseño exclusivo para Vive Harmony
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: astra-vive-harmony
Template: astra
*/
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}html{scroll-behavior:smooth}body{line-height:1}a{text-decoration-skip-ink:auto}a[href^="tel"]{color:inherit;text-decoration:none}button{outline:0}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}q{display:inline;font-style:italic}q:before{content:'"';font-style:normal}q:after{content:'"';font-style:normal}textarea,input[type="text"],input[type="button"],input[type="submit"],input[type="reset"],input[type="search"],input[type="password"]{-webkit-appearance:none;appearance:none;border-radius:0}input[type="search"]{-webkit-appearance:textfield}table{border-collapse:collapse;border-spacing:0}th,td{padding:2px}big{font-size:120%}small,sup,sub{font-size:80%}sup{vertical-align:super}sub{vertical-align:sub}dd{margin-left:20px}kbd,tt{font-family:courier;font-size:12px}ins{text-decoration:underline}del,strike,s{text-decoration:line-through}dt{font-weight:bold}address,cite,var{font-style:italic}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}*{box-sizing:border-box;-webkit-tap-highlight-color:transparent}
.sticky{}.bypostauthor{}.wp-caption{}.wp-caption-text{}.gallery-caption{}.alignright{}.alignleft{}.aligncenter{}
.screen-reader-text{border:0;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute!important;width:1px;word-wrap:normal!important;word-break:normal}
.screen-reader-text:focus{background-color:#f7f7f7;border-radius:3px;box-shadow:0 0 2px 2px rgba(0,0,0,.6);clip:auto!important;-webkit-clip-path:none;clip-path:none;color:#007acc;display:block;font-size:14px;font-size:.875rem;font-weight:700;height:auto;right:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}
.skip-link{left:-9999rem;top:2.5rem;z-index:999999999;text-decoration:underline}
.skip-link:focus{display:block;left:6px;top:7px;font-size:14px;font-weight:600;text-decoration:none;line-height:normal;padding:15px 23px 14px;z-index:100000;right:auto}
.visually-hidden:not(:focus):not(:active), .form-allowed-tags:not(:focus):not(:active){position:absolute !important;height:1px;width:1px;overflow:hidden;clip:rect(1px 1px 1px 1px);clip:rect(1px, 1px, 1px, 1px);white-space:nowrap}


*,
*:after,
*:before {
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	font-smoothing:antialiased;
	text-rendering:optimizeLegibility;
}
html{
/*    font-size: calc(15px + 0.390625vw);*/
    font-size: 62.5%;
}
body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: calc(1.2rem + 0.390625vw);
    font-weight: 400;
    line-height: 1.5em;
    letter-spacing: 1px;
	color: #343a40;
    background-color: #FFFFFF;
}

h1,h2,h3,h4,h5,h6{
    font-family: "Montserrat", sans-serif;
}

ul{ list-style: none;}
a{ text-decoration: none;}
.h100{ height: 100%;}
.mobile{ display: none; }


/*------------------------------------*\
    COLOR THEME
\*------------------------------------*/
:root{
    --black: #2f3542;
    --black-01: #71a9ff;
    --white: #FFFFFF;
    
    --blue: #71a9ff;
    --light-blue: #A8CEFF;
    --dark-blue: #5d65d4;
    
    --yellow: #ffc048;
    --light-yellow: #A4C41D;
    
    --gray: #747d8c;
    --color-base: #333366;
    --color-base-dark: #26264D;
    --color-base-light: #C3C3F4;
    --color-base-light2: #9999FF;
    
    --text-dark: #CFCFF6;
    --text-light: #8393AA;
}

/*------------------------------------*\
    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
\*------------------------------------*/
.pt40{ padding-top: 40px;}
.pt80{ padding-top: 80px;}
.pt120{ padding-top: 120px;}

.pb40{ padding-bottom: 40px;}

.pb80{ padding-bottom: 80px;}

.p40{ padding: 40px 0;}
.p80{ padding: 80px 0;}

.c90{
    width: 90%!important;
    margin: 0 5%!important;
}

.menu{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}


/*------------------------------------*\
    GENERALES
\*------------------------------------*/
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6{
    margin-top: 0px!important;
}

.ast-button{
    font-size: 12px!important;
    font-weight: 700!important;
    letter-spacing: 2px;
    line-height: 40px!important;
    text-transform: uppercase;
    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: linear-gradient(60deg, #00acea, #00efd1)!important;
}

.ast-primary-header{
    -webkit-backdrop-filter: blur(7px);
            backdrop-filter: blur(7px);
/*
    background-color: rgba(255, 255, 255, 0.8)!important;
    background-color: rgba(0, 16, 26, 0.8)!important;
*/
    background-color: rgba(255, 255, 255, 0.1)!important;
}
.menu-link{
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--black)!important;
/*    color: #1A1A1A!important;*/
}
.ast-sticky-active{
/*
    -webkit-backdrop-filter: blur(4px);
            backdrop-filter: blur(4px);
*/
/*    background-color: rgba(255, 255, 255, 0.7)!important;*/
    background-color: rgba(255, 255, 255, 0.9)!important;
}
.ast-sticky-active .menu-link{
/*    color: var(--blue)!important;*/
}
.current_page_item .menu-link{ 
    color: var(--blue)!important;
}

.img-w100 img{
    display: block!important;
    width: 100%!important;
}
.entry-content h2{
    padding-top: 40px;
}
.entry-content h2, .entry-content h3{
    text-align: center;
}
.entry-title, .entry-content h4, .single-post entry-content{
    text-align: center!important;
}

/*------------------------------------*\
    HERO
\*------------------------------------*/
.hero-box{
    background: url(img/Hero/hero_05.jpg) top right no-repeat;
    background-size: cover;
    background-color: var(--white);
}
.hero-event{
    background: url(img/Hero/hero_edecanes_eventos_02.jpg) top right no-repeat;
    background-size: contain;
    background-color: #05080b;
}
.hero-box .vc_column-inner{
    height: calc(100vh - 160px);
/*    height: 100vh;*/
}
.hero-event .vc_column-inner{
    height: calc(100vh - 320px);
}
.hero-left .wpb_wrapper{
    padding-bottom: 160px;
}
.hero-left .wpb_wrapper .wpb_wrapper{
    padding-bottom: 0;
}
.hero-left h2{
    font-size: 48px;
    font-weight: 300;
    line-height: 1.25em;
    letter-spacing: 1px;
    text-align: left;
    color: var(--blue);
}
.hero-left h2 strong{
    font-weight: 700;
    color: var(--black);
}
.hero-left p{
    font-size: 18px;
    line-height: 1.75em;
    color: var(--text-light);
}
.hero-left p strong{
    font-weight: 600;
    color: var(--black);
}
.hero-left p:last-of-type{
    margin-bottom: 32px!important;
}
.hero-event p{
    color: var(--txt-dark);
}
.btn-hero 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;
    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: linear-gradient(60deg, #00acea, #00efd1)!important;*/
    background-color: var(--yellow)!important;
}
.btn-hero a::after{
    content: "";
    width: 40px;
    height: 40px;
    border-radius: 40px;
    margin-left: 24px;
    background: url(img/icon/btn_arrow_white.png) center center no-repeat!important;
    background-color: var(--white)!important;
}
.btn-hero.btn-hero-right a{
    margin-left: 16px!important;
    color: var(--black)!important;
    background: hsla(0, 0%, 100%, .2)!important;
}
.btn-hero.btn-hero-right a::after{
/*    background-color: hsla(0, 0%, 100%, .1)!important;*/
    background-color: var(--yellow)!important;
    border: 1px solid var(--yellow);
}


/*------------------------------------*\
    FORM SINGLE PAGE
\*------------------------------------*/
.form-box-inner{
    padding: 56px 80px 0 80px;
    margin-top: -80px;
    border-top: 1px solid rgba(164, 176, 190, 0.2);
    border-right: 1px solid rgba(164, 176, 190, 0.2);
    border-left: 1px solid rgba(164, 176, 190, 0.2);
    border-top-left-radius: 24px!important;
    border-top-right-radius: 24px!important;
/*    background-color: rgba(255, 255, 255, 0.9);*/
    -webkit-backdrop-filter: blur(4px);
            backdrop-filter: blur(4px);
    background: rgba(255, 255, 255, 0.9);
}
.form-single-page{
    width: 80%;
    margin-left: 10%;
}
.info-form h4{
    font-size: 40px;
    font-weight: 300;
    line-height: 1.5em;
}
.info-form h4 strong{
    font-weight: 700;
}
.form-single-page p{
    margin: 0!important;
    padding: 0!important;
}
.element-input input, .element-input select, .element-top textarea{
    border-radius: 16px;
}
.element-input input{
    width: 100%!important;
}
.element-input select{
    width: 100%!important;
}
.element-top .element-input{
    width: 48%;
}
.element-bottom .element-input{
    width: 30%;
}
.element-top textarea{
    height: 96px;
    resize: none;
}
.btn-form p input{
    position: relative;
    left: 50%;
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    border-radius: 16px;
    color: #2A475C;
    -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    background: linear-gradient(60deg, #00acea, #00efd1)!important;
}


/*------------------------------------*\
    ABOUT HOME
\*------------------------------------*/
.about-left h2{
    font-size: 5.6rem;
    font-weight: 300!important;
    line-height: 1.1em;
    text-align: left;
    margin-bottom: 6.4rem;
    color: var(--black);
}
.about-left h2 strong{
    font-weight: 700!important;
}
.about-left p{
    font-size: 16px;
    line-height: 1.5em;
    text-align: justify;
    margin-bottom: 16px;
    color: var(--text-light);
}
.about-left p strong{
    font-weight: 700!important;
    color: var(--black);
}
.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: 700!important;
    line-height: 1.25em;
    text-align: left;
    margin-left: 32px;
}
.about-left-bottom h3 strong{
    clear: both;
    display: block;
    color: var(--blue);
}
.about-left-bottom img{
    border-radius: 50%;
    width: 90px;
    height: 90px;
    object-fit: cover;
    object-position: top;
/*    margin-right: 24px;*/
}
.about-left-bottom p{
    position: relative;
    margin-bottom: 0!important;
}
.about-left-bottom p::after{
    position: absolute;
    bottom: -8px;
    right: -8px;
    content: "";
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background: url(img/icon/camera_icon_01.png) center center no-repeat;
    background-size: contain;
    background-color: #00acea;
}
.about-right img{
    width: 80%;
    margin: 0 10%;
}


/*------------------------------------*\
    MODELS HOME
\*------------------------------------*/
.models-box{
    padding-top: 80px;
    background-color: var(--black-01);
}
.title-right{
    position: relative;
    width: 100%;
    margin-bottom: 120px;
}
.title-right h3{
    text-align: right;
    font-size: 16px!important;
    line-height: 1.25em;
    letter-spacing: 1px;
    color: var(--text-dark);
}
.title-right h3 strong{
    clear: both;
    display: block;
    color: var(--white);
}
.title-right h3, .title-right h3 strong{
    font-weight: 700!important;
}
.title-right::before{
    content: "";
    position: absolute;
    left: calc(100% + 30px);
    top: 10px;
    width: 600px;
    height: 1px;
    background-color: var(--yellow);
    opacity: 1;
}
.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: top;
}
.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-top-info img{
    background: url(img/site/elige_plan_01.jpg) center center no-repeat;
    background-size: cover;
}
.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(--black)!important;
/*    background: linear-gradient(60deg, #00acea, #00efd1)!important;*/
    background: var(--yellow)!important;
}
.model-bottom-info a::after{
    content: "";
    width: 40px;
    height: 40px;
    border-radius: 40px;
    margin-left: 24px;
    background: url(img/icon/btn_arrow_white.png) center center no-repeat!important;
    background-color: var(--white)!important;
}
.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 .slick-prev, .models-box .slick-next{
    border-width: 2px;
    border-color:  hsla(0,0%,100%, .1);
}
.models-box .slick-prev::before, .models-box .slick-next::before{
    border-color:  var(--blue)!important;
}

/*------------------------------------*\
    WHY SINGLE PAGE
\*------------------------------------*/
.why-single-box{
    width: 80%;
    margin: 0 10%!important;
}
.why-single-box h4{
    padding-bottom: 24px!important;
}
.why-single-box p{
    font-size: 18px;
    letter-spacing: 1px;
    line-height: 1.75em;
    text-align: center;
    color: var(--txt-dark);
}
.why-single-box p strong{
    color: var(--white);
}
.img-why-single-box{
    padding-top: 40px;
}
.separator-single-event{
    padding: 300px 0;
    background: url(img/Why/separador_edecanes_eventos_02.jpg) top center no-repeat;
    background-size: cover;
    background-color: #101010;
}


/*------------------------------------*\
    BENEFITS HOME
\*------------------------------------*/
.benefits-box{
/*    padding-top: 120px;*/
}
.benefits-left .wpb_wrapper{
    width: 80%;
    margin-right: 20%!important;
}
.benefits-left .wpb_wrapper .wpb_wrapper{
    width: 100%;
    margin: 0!important;
}
.benefits-left h2{
    font-size: 48px;
    font-weight: 300;
    line-height: 1.25em;
    margin-bottom: 40px;
}
.benefits-left h2 strong{
    font-weight: 700;
}
.benefits-right{
/*    background-color: aquamarine;*/
}
.benefits-right ul{
    list-style: none;
    padding: 0!important;
    margin: 0!important;
}
.benefits-right h3{
    padding-bottom: 40px;
}
.benefits-right li{
    position: relative;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 24px;
    padding-bottom: 24px;
    padding-right: 80px;
    border-bottom: 1px solid rgba(0,0,0,0.2);
    color: var(--black);
}
.benefits-right li:last-of-type{
    border-bottom: none;
    padding-bottom: 0px!important;
}
.benefits-right li::after{
    position: absolute;
    top: 0;
    right: 0;
    content: "";
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background: url(img/icon/check_icon_02.png) center center no-repeat;
    background-size: cover;
}

/*------------------------------------*\
    BENEFITS SINGLE PAGE
\*------------------------------------*/
.benefits-single-page h2{
    font-size: 48px;
    font-weight: 300;
    line-height: 1.25em;
    margin-bottom: 40px;
}
.benefits-single-page h2 strong{
    font-weight: 700;
}
.benefits-single-page h2, .benefits-single-page p{
    text-align: center;
}
.single-benefits-box{
}
.single-benefits-list{
    padding-top: 40px;
}
.benefits-list-column .wpb_wrapper{
    width: 90%;
    margin: 0 5%;
}
.benefits-list-column .wpb_wrapper .wpb_wrapper{
    width: 100%;
    margin: 0;
}
.benefits-list-column ul{ list-style: none;}
.benefits-list-column li{
    position: relative;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 24px;
    padding-bottom: 24px;
    padding-right: 80px;
    border-bottom: 1px solid rgba(0,0,0,0.2);
    color: var(--black);
}
.benefits-list-column li:last-of-type{
    border-bottom: none;
    padding-bottom: 80px;
}
.benefits-list-column li::after{
    position: absolute;
    top: 0;
    right: 0;
    content: "";
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background: url(img/icon/check_icon_02.png) center center no-repeat;
    background-size: cover;
}

/*------------------------------------*\
    PRICES
\*------------------------------------*/
.wpb-plan-title{
    font-size: 2.4rem;
    font-weight: 700!important;
    margin-bottom: 0!important;
    color: var(--blue)!important;
}
.wpb-plan-description{
    font-size: 4rem;
    line-height: 1.25em;
}
.wpb-pricing-table{
    padding-top: 64px!important;
    padding-right: 64px!important;
    padding-bottom: 64px!important;
    padding-left: 64px!important;
}
.wpb-plan-features{
    padding-top: 40px;
    padding-bottom: 32px;
}
.wpb-plan-features li{
    position: relative;
    font-size: 16px;
    line-height: 1.5em;
    padding-bottom: 24px;
    padding-left: 40px;
}
.wpb-plan-features li:before{
    position: absolute;
    left: 0;
    top: 3px;
}
.wpb-plan-features li del{
    color: #dfe4ea;
}
.wpb-pricing-table .vc_btn3{
    font-size: 1.8rem!important;
    font-weight: 700!important;
    letter-spacing: 2px!important;
    text-transform: uppercase;
    background-color: #ff4757!important;
}
.wpb-plan-features li::before{
    width: 20px!important;
    height: 20px!important;
    background: url(img/icon/check_heart_01.png) center center no-repeat!important;
    background-size: contain!important;
}
.plan-basic li:nth-child(6)::before,
.plan-basic li:nth-child(7)::before{
    background: url(img/icon/check_heart_02.png) center center no-repeat!important;
    background-size: contain!important;
}

/*------------------------------------*\
    WHATS HOME
\*------------------------------------*/
.what-box{
    background-color: var(--black-01);
}
.what-box h2, .what-box p strong{
    color: var(--white);
} 

.what-box p{
    color: var(--txt-dark);
}


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

/*------------------------------------*\
    FAQ HOME
\*------------------------------------*/
.title-faq h2{
    padding-bottom: 40px;
}
.single-item-faq{
    padding-bottom: 16px;
}
.faq-home-left{
    overflow: hidden!important;
}
.faq-home-left h2{
    font-size: 4rem!important;
}
.faq-home-right .vc_single_image-img{
    width: 80%!important;
    margin: 0 10%!important;
}

/*------------------------------------*\
    SINGLE POST
\*------------------------------------*/
.about-single-post{
    width: 80%;
    margin: 0 10%!important;
    padding-top: 180px;
}
.about-single-post h2{
    font-size: 40px;
    text-align: center;
    color: var(--white);
    padding-bottom: 24px!important;
}
.about-single-post p{
    font-size: 18px;
    letter-spacing: 1px;
    line-height: 1.75em;
    text-align: center;
    color: var(--txt-dark);
}
.about-single-post p strong{
    color: var(--white);
}
.img-why-single-box{
    padding-top: 40px;
}
.about-single-post h4{
    font-size: 32px;
    text-align: center;
    line-height: 1.25em;
    padding: 40px 0;
    margin-bottom: 0;
    color: var(--white);
}
.type-event-single-post h4{
    text-align: center;
    color: var(--white);
}
.type-event-single-post p{
    text-transform: none;
}
.post-list-item{
    padding: 16px 0;
}
.separator-single-post{
    padding: 300px 0;
    background: url(img/post/separator_post.jpg) top center no-repeat;
    background-size: cover;
    background-color: #101010;
}
.separator-img-single-post{
    background-color: #101010;
}

/*------------------------------------*\
    FAQ POST
\*------------------------------------*/
.faq-post{
    padding-top: 80px;
}
.faq-post h5{
    font-size: 48px;
    font-weight: 300;
    line-height: 1.25em;
    text-align: center;
    padding-bottom: 40px;
}


/*------------------------------------*\
    FIX THEME
\*------------------------------------*/
.single-post .type-post{
    padding-top: 180px!important;
}

/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/

/*-------------------------------------------------
1. Media Queries to Fix Responsive Layouts
	1.1 Resolution (For Large Seized Desktops 1600x900)
	1.2 Resolution (For Medium Seized Desktops 1440x900)
	1.3 Resolution (For Small Seized Desktops 1280x800)
	1.4 Resolution (For Large Tablets 1024x800)
	1.5 Resolution (For Small Tablets 768x800)
	1.6 Resolution (For Mobile Phones 320x786)

-------------------------------------------*/
/*-------------------------------------------------
===================================================
	1. Media Queries to Fix Responsive Layouts
===================================================
-------------------------------------------------*/

/*-------------------------------------------------
	1.1 Resolution (For Large Seized Desktops 1600x900)
-------------------------------------------------*/
@media (min-width: 1601px) {
    .c90{
        width: 100%!important;
        margin: 0%!important;
    }
}

/*-------------------------------------------------
	1.1 Resolution (For Large Seized Desktops 1600x900)
-------------------------------------------------*/
@media (min-width: 1601px) and (max-width: 1919px) {

}
/*-------------------------------------------------
	1.2 Resolution (For Medium Seized Desktops 1440x900)
-------------------------------------------------*/
@media (min-width: 1200px) and (max-width: 1600px) {
    .hero-event .vc_column-inner{
        height: calc(100vh - 80px);
    }
    .c80{
        background-color: aquamarine;
    }
}
/*-------------------------------------------------
	1.3 Resolution (For Small Seized Desktops 1280x800)
-------------------------------------------------*/
@media (min-width: 768px) and (max-width: 1440px) {


}
/*-------------------------------------------------
	1.4 Resolution (For Large Tablets 1024x600)
-------------------------------------------------*/
@media (min-width: 1024px) and (max-width: 1200px) {
    
}

/*-------------------------------------------------
	1.5 Resolution (For Small Tablets 768x800)
-------------------------------------------------*/
@media (min-width: 0px) and (max-width: 1024px) {

}

@media (min-width: 768px) and (max-width: 1024px) {

}
@media (min-width: 0px) and (max-width: 767px) {
    .p80{ padding: 40px 0;}
    .pt80{ padding-top: 40px;}
    .ast-primary-header-bar{
        border-bottom-color: rgba(255, 255, 255, 0.2)!important;
    }
    .menu-link{
        color: var(--white)!important;
    }
    .current_page_item .menu-link{
        color: var(--blue)!important;
        background-color: var(--black)!important;
    }
    .ast-nav-menu{
        background-color: var(--black-01)!important;
    }
    .ast-button-wrap .mobile-menu-toggle-icon .ast-mobile-svg{
        fill: var(--blue)!important;
    }
    .hero-box .vc_column-inner{
        height: inherit;
    }
    .hero-box{
        background: url(img/Hero/hero_05_mobile.jpg) bottom right no-repeat;
        background-size: contain;
        background-color: var(--white);
    }
    .hero-left .wpb_wrapper{
        width: 90%!important;
        margin: 0 5%!important;
        padding-top: 80px;
        padding-bottom: 400px;
    }
    .hero-left .wpb_wrapper .wpb_wrapper{
        width: 100%!important;
        margin: 0%!important;
    }
    .hero-left h2, .hero-left p{
        text-align: center;
    }
    .hero-left h2{
        font-size: 32px;
        color: var(--black);
    }
    .hero-left p{
        color: #395355;
    }
    .hero-event h2{
        color: var(--white);
    }
    .hero-event p{
        color: var(--txt-dark);
    }
    .btn-hero{
        position: relative;
        left: 50%;
        transform: translate(-50%, 0);
    }
    .btn-hero.btn-hero-right a{
        margin-top: 16px!important;
        margin-left: 0!important;
    }
    .form-box-inner{
        padding: 40px 40px 0 40px;            
    }
    .info-form h4{
        text-align: center;
        font-size: 32px;
    }
    .form-single-page{
        width: 98%;
        margin-left: 1%;
        margin-right: 1%;
        margin-top: 24px;
    }
    .element-top.flex-row{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
            -ms-flex-direction: column;
                flex-direction: column;
    }
    .element-top .element-input, .element-bottom .element-input{
        width: 98%!important;
    }
    .btn-form p input{
        font-size: 14px;
        letter-spacing: 1px;
    }
    .about-left .wpb_wrapper, .brands-box, .benefits-left .wpb_wrapper, .benefits-right{
        width: 100%;
        margin-left: 0%;
        margin-right: 0%;
    }
    .about-left h2, .about-left p{
        text-align: center;
    }
    .about-left-bottom{
        padding-bottom: 40px;
    }
    .about-right{ order: 2;}
    .about-left{ order: 1;}
    .about-left h2{
        font-size: 3.2rem;
        margin-bottom: 2.4rem;
    }
    .event-about-right{
        padding-top: 40px;
    }
    .slick-prev, .slick-next{
        z-index: 99;
    }
    .models-box .slick-prev, .models-box .slick-next{
        top: 53%!important;
        border: 1px solid rgba(255, 255, 255, 0.2)!important;
        -webkit-backdrop-filter: blur(7px)!important;
            backdrop-filter: blur(7px)!important;
        background-color: rgba(255, 255, 255, 0.4)!important;
    }
    .slick-prev{
        left: -8px!important;
    }
    
    .slick-next{
        right: -8px!important;
    }
    .model-top-info .wpb_wrapper, .model-bottom-info .wpb_wrapper{
        flex-direction: column!important;
/*        background-color: aquamarine;*/
    }
    .model-top-info{
        margin-bottom: 4px!important;
    }
    .model-top-info h4, .model-bottom-info h4{
        font-size: 32px;
    }
    .model-top-info h4{
        margin-top: 24px!important;
    }
    .model-bottom-info h4{
        margin-bottom: 32px!important;
    }
    .model-top-info p:first-of-type{
        margin-right: 0!important;
    }
    .model-bottom-info a{
        margin-left: 0!important;
    }
    .benefits-box{
        padding-top: 40px;
    }
    .benefits-left h2, .benefits-left p{
        text-align: center;
    }
    .benefits-left h2{
        font-size: 24px;
    }
    .benefits-right ul{
        width: 90%;
        margin: 0 5%!important;
        padding: 0!important;
    }
    .benefits-list-column ul{
        width: 90%;
        margin: 0 5%!important;
        padding: 0!important;
    }
    .benefits-list-column .wpb_wrapper{
        width: 100%;
        margin: 0%;
    }
    .benefits-single-page h2, .event-single-page h2{
        font-size: 32px;
    }
    .why-single-box p{
        font-size: 16px;
        letter-spacing: 0px;
        line-height: 1.5em;
    }
    .event-about-left h2{
        font-size: 22px;
    }
    .event-list-column ul{
        width: 90%;
        margin: 0 5%!important;
        padding: 0%!important;
        padding-bottom: 8px!important;
        margin-bottom: 8px!important;
    }
    .event-list-column li:last-of-type{
        border-bottom: 1px solid rgba(115, 194, 251, 0.8);
    }
    .separator-single-event{
        padding: 0px 0 320px 0;
        background: url(img/Why/separador_edecanes_eventos_mobile.jpg) bottom center no-repeat;
        background-size: cover;
        background-color: #101010;
    }
    .title-right-event{
        margin-bottom: 8px;
    }
    .title-right-event h3{
        text-align: center;
    }
    .title-right-event h3 strong{
        clear: none;
        display: inline;
    }
    .type-event-single-post .wpb_wrapper{
        width: 90%;
        margin: 0 5%;
    }
    .type-event-single-post .wpb_wrapper .wpb_wrapper{
        width: 100%;
        margin: 0%;
    }
    .img-w100 img{
        display: block!important;
        width: 90%!important;
        margin: 0 5%!important;
    }
    .plan-basic{
        margin-bottom: 40px;
    }
    .wpb-pricing-table{
        padding-top: 24px!important;
        padding-bottom: 24px!important;
        padding-left: 16px!important;
        padding-right: 16px!important;
    }
    .faq-home-left{ order: 1!important;}
    .faq-home-right{ order: 2!important;}

}
