:root{
    --blanco: #fff;
    --negro: #000;
    --verde: #49C600;
    --gris1: #878787;
    --gris2: #343E47;
    --lato: 'Lato', sans-serif;
    --playfair: 'Playfair Display', serif;
    --urbanist: 'Urbanist', sans-serif;
}

.gris1{
    color: var(--gris1);
}

/* Header */
#header .header-nav.header-nav-links nav > ul li:hover > a{
    color: var(--verde);
}
#header .header-nav.header-nav-links nav > ul:not(:hover) > li > a.active{
    color: var(--verde);
}
#header .header-logo img{
    width: 200px;
    height: auto;
}
#header.header-no-border-bottom .header-nav.header-nav-links nav > ul > li > a{
    font-family: var(--urbanist);
    font-weight: 700;
    letter-spacing: normal;
}
/* End */

/* Home */
#home .title{
    font-size: 21px;
    font-family: var(--lato);
    font-weight: 700;
    color: #fff;
    letter-spacing: 0;
}
#home .subtitle{
    font-family: var(--urbanist);
    color: #fff;
    font-weight: 400;
    font-size: 17px;
}
#home .logoBanner{
    width: 350px;
    height: auto;
}
/* End */

/* Renta */
#renta{
    background-color: var(--verde);
}
#renta .feature-box{
    align-items: center;
    margin-bottom: 20px;
}
#renta .title{
    color: #fff;
    font-family: var(--urbanist);
    font-weight: 700;
    letter-spacing: normal;
}
#renta .smallTitle{
    color: #fff;
    font-family: var(--lato);
    font-weight: 400;
    letter-spacing: normal;
}
#renta .pr-8{
    padding-right: 80px;
}
#renta .feature-box .feature-box-info{
    padding-left: 0;
}
#renta .icon{
    width: 50px;
    height: auto;
}
#renta .titleList{
    position: absolute;
    top: -45px;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0;
    font-family: var(--urbanist);
    letter-spacing: normal;
}
#renta ul{
    margin-bottom: 0;
}
#renta ul .textList{
    color: #fff;
    line-height: normal;
    font-family: var(--lato);
    font-weight: 400;
    font-size: 18px;
    letter-spacing: normal;
}
/* End */

/* Conoce nuestros espacios */
#espacios .heading .title{
    font-family: var(--urbanist);
    font-weight: 700;
    letter-spacing: normal;
    color: var(--gris2);
    font-size: 34px;
}
#espacios .heading .description{
    color: var(--gris1);
    font-family: var(--lato);
    font-weight: 400;
    line-height: normal;
    font-size: 18px;
}
#espacios .heading .description span{
    color: var(--verde);
    font-weight: 700;
}
#espacios .thumb-info{
    background: transparent;
}
#espacios .thumb-info .thumb-info-wrapper{
    border-radius: 30px;
}
#espacios .thumb-info .thumb-info-title{
    font-weight: 700;
    font-family: var(--urbanist);
    text-align: center;
    /* background: rgb(10 10 10 / 80%); */
    background: rgb(52 62 71 / 80%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px 5px;
    min-height: 55px;
    width: 65%;
    line-height: normal;
    letter-spacing: normal;
}
#espacios .boxImg{
    width: 250px;
    height: auto;
}
#espacios .owl-carousel .owl-dots .owl-dot.active span, .owl-carousel .owl-dots .owl-dot:hover span{
    background-color: var(--verde);
}
/* End */

/* Servicios */
#servicios2{
    background-color: var(--verde);
}
#servicios2 .feature-box{
    align-items: center;
    margin-bottom: 20px;
}
#servicios2 .title{
    color: #fff;
    font-family: var(--urbanist);
    font-weight: 700;
    letter-spacing: normal;
}
#servicios2 .smallTitle{
    color: #fff;
    font-family: var(--lato);
    font-weight: 400;
    letter-spacing: normal;
}
#servicios2 .feature-box .feature-box-info{
    padding-left: 0;
}
#servicios2 .icon{
    width: 50px;
    height: auto;
}
#servicios2 .titleList{
    position: absolute;
    top: -45px;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0;
    font-family: var(--urbanist);
    letter-spacing: normal;
}
#servicios2 ul{
    margin-bottom: 0;
}
#servicios2 ul .textList{
    color: #fff;
    line-height: normal;
    font-family: var(--lato);
    font-weight: 400;
    font-size: 18px;
    letter-spacing: normal;
}
/* End */

/* Galeria */
#galeria .heading .title{
    font-family: var(--urbanist);
    font-weight: 700;
    letter-spacing: normal;
    color: var(--gris2);
    font-size: 34px;
}
#galeria .card{
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    margin-bottom: 40px;
    border-radius: 15px;
}
#galeria .imgBx .showImg{
    position: relative;
}
#galeria .imgBx .showImg:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1;
    transition: .5s ease-in-out;
}
#galeria .imgBx .showImg:hover:before{
    opacity: 1;
}
#galeria .imgBx .showImg{
    z-index: 2;
    display: block;
    width: 100%;
    height: 100%;
}
#galeria .imgBx img{
    max-width: 100%;
    width: 100%;
    height: auto;
    object-fit: cover;
}
#galeria .card .content{
    position: absolute;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 10;
    backdrop-filter: blur(15px); 
    height: 125px;
    bottom: -125px;
    box-shadow: 0 -10px 10px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.2);
    transition: bottom 0.5s;
    transition-delay: 0.8s;
}
#galeria .card:hover .content{
    bottom: 0;
    transition-delay: 0s;
}
#galeria .card .content .contentBx h3{
    color: #fff;
    font-family: var(--urbanist);
    font-weight: 700;
    margin: 15px 0;
    font-size: 18px;
    white-space: pre-line;
    letter-spacing: normal;
    line-height: normal;
    text-align: center;
    transition: 0.5s;
    opacity: 0;
    transform: translateY(-20px);
    transition-delay: 0.6s;
}
#galeria .card:hover .content h3{
    opacity: 1;
    transform: translateY(0px);
}
#galeria .card .content .contentBx h3 span{
    font-size: 15px;
}
#galeria .card .content .list{
    display: flex;
    justify-content: center;
    list-style: none;
    margin-bottom: 0;
    padding: 0;
}
#galeria .card .content .list li{
    transform: translateY(40px);
    transition: 0.5s;
    opacity: 0;
    transition-delay: calc(0.2s * var(--i));
}
#galeria .card:hover .content .list li{
    transform: translateY(0px);
    opacity: 1;
}
#galeria .card .content .list li a{
    margin: 0 10px;
    color: #fff;
    font-size: 17px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--verde);
    transition: 0.5s;
    border-radius: 50%;
    border: 1px solid var(--verde);
}
#galeria .card .content .list li a:hover{
    text-decoration: none;
    background: transparent;
}
/* End */

/* Clientes */
#clientes .heading .title{
    font-family: var(--urbanist);
    font-weight: 700;
    letter-spacing: normal;
    color: #fff;
}
#clientes .heading .description{
    color: var(--gris1);
    font-family: var(--lato);
    font-weight: 400;
    line-height: normal;
    font-size: 16px;
}
#clientes .logo{
    width: 80px;
    height: auto;
}
#clientes .testimonial-author p{
    color: #fff;
    font-family: var(--urbanist); 
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 0;
}
#clientes .testimonial-quotes-primary blockquote:before, #clientes .testimonial-quotes-primary blockquote:after{
    color: var(--verde)!important;
    color: #49C600!important;
}
#clientes .owl-carousel .owl-dots .owl-dot.active span, .owl-carousel .owl-dots .owl-dot:hover span{
    background-color: var(--verde);
}
/* End */

/* Call to Action 1 */
#callToAction1{
    background: url(../archivos/landing/B-Office-Landing-Cintillo-Cotizacion.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
#callToAction1 .btn-call{
    padding: 8px 40px;
    color: #fff;
    background: var(--verde);
    position: relative;
    text-transform: uppercase;
    font-size: 17px;
    border-radius: 40px;
    border: 4px solid #fff;
    display: inline-block;
    font-family: var(--urbanist);
    font-weight: 700;
    box-shadow: 9px 9px 9px #000;
    overflow: hidden;
    transition: .8s ease-in-out;
}
#callToAction1 .btn-call:hover{
    text-decoration: none;
    background: transparent;
}
/* End */

/* Contacto */
#contacto .title{
    color: var(--gris2);
    margin-bottom: 30px;
    font-family: var(--urbanist);
    font-weight: 700;
}
.form-control{
    font-family: var(--lato);
    font-weight: 400;
}
.btn-form{
    color: #fff;
    font-size: 17px;
    border-radius: 40px;
    padding: 8px 40px;
    font-weight: 400;
    position: relative;
    background: var(--verde);
    font-family: var(--urbanist);
    font-weight: 700;
    transition: .8s ease-in-out;
    border: 1px solid var(--verde);
    overflow: hidden;
}
.btn-fill-transparent{
    z-index: 1;
    overflow: hidden;
}
.btn-fill-transparent:before{
    content: "";
    position: absolute;
    background: var(--verde);
    width: 50%;
    top: 0;
    left: 0;
    height: 100%;
    z-index: -1;
    border: 1px solid var(--verde);
    border-top-left-radius: 40px;
    border-bottom-left-radius: 40px;
    border-radius: 40px;
    transition: .5s ease-in-out;
}
.btn-fill-transparent:after{
    content: "";
    position: absolute;
    background: var(--verde);
    width: 50%;
    top: 0;
    right: 0;
    height: 100%;
    z-index: -1;
    border: 1px solid var(--verde);
    border-top-right-radius: 40px;
    border-bottom-right-radius: 40px;
    border-radius: 40px;
    transition: .5s ease-in-out;
}
.btn-fill-transparent:hover:before,
.btn-fill-transparent:hover:after{
    width: 0%;
    border: 0;
    /* height: 0; */
}
/* .btn-fill-transparent:hover:before{
    left: 15px;
}
.btn-fill-transparent:hover:after{
    right: 15px;
} */
.btn-form:hover{
    color: var(--verde);
    background: transparent;
}
/* End */

/* Footer */
#footer{
    background: var(--gris2);
    border: none;
}
#footer .icon{
    padding: 10px;
    background: var(--verde);
    color: #fff;
    border-radius: 50%;
    border: 1px solid var(--verde);
    font-size: 25px;
    width: 50px;
    height: 50px;
    margin-right: 15px;
    transition: all .5s ease-in-out;
    text-align: center;
}
#footer .icon:hover{
    color: var(--verde);
    background: transparent;
}
#footer a{
    transition: .5s ease-in-out;
}
#footer a.gris1:hover{
    color: #fff;
}
#footer .creator{
    width: 135px;
    height: auto;
}
#footer .left{
    justify-content: flex-start;
}
#footer .right{
    justify-content: flex-end;
}
/* End */

/* Socials Floating Desktop */
.socials-float{
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 9999;
}
.socials-float a{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    /* background: var(--gris2); */
    color: #fff;
    font-size: 19px;
    /* border: 1px solid var(--gris2); */
    width: 40px;
    height: 40px;
    margin: 5px 0;
    padding: 0;
    z-index: 1;
    text-align: center;
    transition: .5s ease-in-out;
}
.socials-float a:before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--gris2);
    z-index: -1;
    transition: .5s ease-in-out;

}
.socials-float a:after{
    content: "";
    width: 0;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background: var(--verde);
    z-index: -1;
    border: 0;
    transition: .5s ease-in-out;

}
.socials-float a:hover:before{
    width: 0%;
    border: 1px solid var(--gris2);
}
.socials-float a:hover:after{
    width: 100%;
    border: 1px solid #fff;
    transition: .7s ease-in-out;
}
.socials-float a:hover{
    text-decoration: none;
}
/* End */
/* Social Movil Sticky */
.socials-movil{
    position: fixed;
    width: 100%;
    height: auto;
    background: var(--verde);
    display: none;
    bottom: 0;
    left: 0;
    flex-wrap: wrap;
    z-index: 9999;
}
.socials-movil a{
    color: #fff; text-align: center;
    padding: 10px 0;
    flex: 0 0 33.33%;
    border-right: 1px solid #fff;
    font-size: 25px;
}
.socials-movil a:last-child{
    border: none;

}
/* end */

@media  (max-width: 800px) {
    /* Header */
    #header .header-btn-collapse-nav{background: var(--verde);}
    #header .header-nav-main.header-nav-main-mobile-dark nav > ul > li > a.active{background: var(--verde);}
    #header .header-nav-main.header-nav-main-mobile-dark nav > ul > li > a.active:focus, #header .header-nav-main.header-nav-main-mobile-dark nav > ul > li > a.active:hover{background: var(--verde);}
    #home .title{text-align: center;}
    /* end */
    /* Banner */
    #home .title .top-50pct{display: none;}
    /* End */
    /* Renta */
    #renta .pr-8{padding-right: 0;}
    #renta .titleList{position: relative; top: 0; margin-top: 30px; margin-bottom: 20px;}
    /* end */
    /* Espacios */
    #espacios .boxImg{width: 100%;}
    /* end */
    /* Galeria */
    #galeria .card .content{bottom: 0px; height: 65px;}
    #galeria .card .content .contentBx h3{opacity: 1; transform: translateY(0px); margin: 0;}
    #galeria .card .content .list{display: none;} 
    /* end */
    /* Contacto */
    #contacto .map{height: 400px;}
    #contacto .contentForm{padding: 0!important;}
    /* end */
    /* Footer */
    #footer{padding-bottom: 50px;}
    #footer .rowCopyright{flex-direction: column;}
    #footer .rowCopyright .col{justify-content: center; margin-bottom: 25px;}
    #footer .rowCopyright .col:last-child{margin-bottom: 0;}
    /* End */
    /* Socials Desktop */
    .socials-float{display: none;}
    /* end */
    /* Socials Movil Sticky*/
    .socials-movil{display: flex;;}
    /* end */
}