:root{
    --primary-font: 'Manrope';
    --base-size-font:16px;
    --primary-color:#EA4606;
    --text-color:#191919;
    --transition:all .4s ease;
    --box-shadow: rgb(0 0 0 / 25%) 1px 1px 10px;
    --border-radius:12px;
    --title-xl:3.5rem;
    --title-xxl:4rem;
    --title-sm:3rem;
}

html{
    font-size: 62.5%;
}

body {
    background-color: #fff;
    font-family: var(--primary-font);
    font-size: var(--base-size-font);
    font-weight: 400;
    color:var(--text-color);
    line-height: 1.5;
    font-style: normal;
    padding-top: 60px;
    padding-bottom: 90px;
    letter-spacing: .8px;
}

@media screen and (min-width: 580px) {
    body {
        padding-top: 90px;
        padding-bottom: 0;
    }
}


/* --- Container --- */

.container{
    margin: 0 auto;
    width: 100%;
    max-width: 1755px;
    position: relative;
    padding: 0 15px;
}

@media screen and (min-width: 580px) {
    .container{
        width: 95%;
    }

    .container-small{
        width: 90%;
    }
}

/* --- Botones --- */

.btn{
    display: inline-block;
    padding: 6px 45px  !important;
    min-height: 37px;
    position: relative;
    background-color: transparent;
    border:1px solid;
    transition: var(--transition);
    font-size:1.8rem;
    color:#fff;
    border-radius: 9999px !important;
    text-align: center;
}

.btn.-primary{
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.btn.-primary:hover,
.btn.-primary:active,
.btn.-primary:focus{
    background: transparent;
    color: var(--primary-color);
}

.btn.-line{
    background: transparent;
    color: var(--primary-color);
}

.btn.-line:hover{
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

/* ---- Section ---- */

.section{
    overflow: hidden;
    position: relative;
    padding: 5vmax 0;
}

@media screen and (min-width: 580px) {
    .section{
        padding: 85px 0;
    }
}

/* HEADER*/

.header{
    width: 100%;
    height: 60px;
    position: fixed;
    top:0;
    left: 0;
    background-color: #fff;
    z-index: 34;
    display: flex;
    align-items: center;
    transition: all .4s cubic-bezier(.165,.84,.44,1);
}

@media screen and (min-width: 580px) {
    .header{
        height: 90px;
    }
}

.header-wrap{
    position: relative;
}

.header-logo img{
    max-width: 265px;
}

@media screen and (min-width: 1024px) {
    .header-logo img{
        max-width: 400px;
    }
}

/* TOGGLE MENU */

.toggle-menu{
    width: auto;
    height: 100%;
    position: relative;
    cursor: pointer;
    text-indent: -999999px;
    overflow: hidden;
    transition: all .3s;
    display: block;
    background-color:transparent !important;

    position: absolute;
    top:50%;
    transform: translateY(-50%);
    right: 0;
}

.toggle-menu span{
    display: block;
    border-radius: 9999px;
    width: 32px;
    height: 2px;
    background: var(--primary-color);
    transition: all .6s;
    position: relative;
    margin: 0;
    margin-left: auto;
}

.toggle-menu span + span {
    margin: 6px 0;
    margin-left: auto;
}

.mobile-menu{
    display: block;
}

@media screen and (min-width: 580px) {
    .mobile-menu{
        display: none;
    }
}

.toggle-menu span:nth-child(1) {
    -webkit-animation: ease .7s top-2 forwards;
    animation: ease .7s top-2 forwards;
}

.toggle-menu span:nth-child(2) {
    -webkit-animation: ease .7s scaled-2 forwards;
    animation: ease .7s scaled-2 forwards;
}

.toggle-menu span:nth-child(3) {
    -webkit-animation: ease .7s bottom-2 forwards;
    animation: ease .7s bottom-2 forwards;
}

.opened-menu .toggle-menu span:nth-child(1) {
    -webkit-animation: ease .7s top forwards;
    animation: ease .7s top forwards;
}

.opened-menu .toggle-menu span:nth-child(2) {
    -webkit-animation: ease .7s scaled forwards;
    animation: ease .7s scaled forwards;
}

.opened-menu .toggle-menu span:nth-child(3) {
    -webkit-animation: ease .7s bottom forwards;
    animation: ease .7s bottom forwards;
}

@keyframes top {
  0% {
    top: 0;
    transform: rotate(0);
  }
  50% {
    top: 8px;
    transform: rotate(0);
  }
  100% {
    top: 8px;
    transform: rotate(45deg);
  }
}

@keyframes top-2 {
  0% {
    top: 8px;
    transform: rotate(45deg);
  }
  50% {
    top: 8px;
    transform: rotate(0deg);
  }
  100% {
    top: 0;
    transform: rotate(0deg);
  }
}

@keyframes bottom {
  0% {
    bottom: 0;
    transform: rotate(0);
  }
  50% {
    bottom: 8px;
    transform: rotate(0);
  }
  100% {
    bottom: 8px;
    transform: rotate(135deg);
  }
}

@keyframes bottom-2 {
  0% {
    bottom: 8px;
    transform: rotate(135deg);
  }
  50% {
    bottom: 8px;
    transform: rotate(0);
  }
  100% {
    bottom: 0;
    transform: rotate(0);
  }
}

@keyframes scaled {
  50% {
    transform: scale(0);
  }
  100% {
    transform: scale(0);
  }
}

@keyframes scaled-2 {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes slide-left {
	0% {
		opacity: 0;
		transform: translateX(100%);
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

/* WELCOME */

#welcome{
    width: 100%;
    height: calc(100vh - 80px);
    overflow: hidden;
}

@media screen and (min-width: 580px) {
    #welcome{
        height: calc(100vh - 90px);
    }
}

.welcome-bg{
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
}

.welcome-bg img,
.welcome-bg video,
.video-wrapper{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.welcome-content{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 90%;
}


.welcome-content img,
.welcome-content video,
.welcome-content svg{
    width: 100%;
}

.welcome-content-ani{
    width: 100%;
    height: auto;
    overflow: hidden;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.welcome-content-ani h1{
    font-size: 3.6rem;
    font-weight: 900;
    justify-content: center;
    color: #fff;
    line-height: 1;
    transform: translateY(100%);
    transition: all .6s cubic-bezier(.165,.84,.44,1);
    display: flex;
    align-items: flex-end;
    margin-bottom: 6rem;
}
.welcome-content-ani .texto-hero {}
.welcome-content-ani .texto-hero h4{
    color: #fff;
    font-weight: 900;
    font-size: 3rem;
    margin: 0 0 .5rem;
    line-height: 1;
}
.welcome-content-ani .texto-hero p{
    color: #fff;
    font-weight: 900;
    font-size: 2rem;
    margin: 0;
    line-height: 1.2;
}

@media screen and (min-width: 1024px) {
    .welcome-content-ani h1{
        font-size: 9rem;
        margin-bottom: 8rem;
    }
    .welcome-content-ani .texto-hero h4{
        font-size: 5rem;
    }
    .welcome-content-ani .texto-hero p{
        font-size: 3.5rem;
    }
    
}

.welcome-content-ani h1:nth-of-type(1){
    transition-delay: .1s;
}

.welcome-content-ani h1:nth-of-type(2){
    transition-delay: 1.2s;
}

.welcome-content-ani.active h1{
    transform: translateY(0%);
}

.welcome-content-ani .line{
    display: inline-block;
    height: 6px;
    width: 0;
    margin: 0 10px;
    transition: all 1s cubic-bezier(.165,.84,.44,1);
    transition-delay:.6s;
    background-color: #fff;
    transform: translateY(-4px);
}

@media screen and (min-width: 1024px) {
    .welcome-content-ani .line{
        transform: translateY(-10px);
        height: 10px;
        width: 120px;
    }
}

.welcome-content-ani.active .line{
    width: 40px;
}

/* INTRO */

#intro{
    padding: 8vmax 0;
    transition: all .4s cubic-bezier(.165,.84,.44,1);
    transition-delay: .5s;
    overflow: hidden;
}

@media screen and (min-width: 580px) {

    #intro{
        padding: 0;
    }

    #intro .container{
        width: 80%;
        padding: 6vmax 0;
    }
}

@media screen and (min-width: 1024px) {
    #intro .container{
        width: 65%;
        padding: 135px 0;
    }
}

.intro-title{
    display: flex;
    align-items: center;
}

@media screen and (min-width: 1024px) {
    .intro-title br{
        display: none;
    }
}

.intro-title h1{
    color: #000;
}

.intro-title h1,
.intro-title h1 span{
    font-size: 3.7rem;
    font-weight: 900;
    margin-bottom: 20px;
    transition: all .4s cubic-bezier(.165,.84,.44,1);
    transition-delay: .5s;
    position: relative;
}

@media screen and (min-width: 580px) {
    .intro-title h1,
    .intro-title h1 span{
        font-size: 5rem;
    }
}

.intro-title h1{
    color: #000;
}

.intro-title h1 span{
    color:var(--primary-color);
}

.intro-title h1 span:first-of-type:after{
    content:"";
    display: inline-block;
    width: 0;
    height: 8px;
    background-color: #fff;
    margin: 0 4px;
    transition: all .4s cubic-bezier(.165,.84,.44,1);
    transition-delay: 1.5s;
}

#intro.ms-loaded-animate .intro-title h1 span:first-of-type:after{
    width: 50px;
}

#intro.ms-loaded-animate .intro-title h1 span{
    color: #fff;
}

.intro-text p{
    font-weight: 300;
    font-size: 3rem;
    transition: all .4s cubic-bezier(.165,.84,.44,1);
    transition-delay: .5s;
}

@media screen and (min-width: 1024px) {
    .intro-text p{
        font-weight: 300;
    }
}

.intro-text p br{
    display: none;
}

@media screen and (min-width: 1024px) {
    .intro-text p br{
        display: block;
    }
}

.intro-text p span{
    font-weight: 700;
    transition: all .4s cubic-bezier(.165,.84,.44,1);
    transition-delay: .5s;
}

#intro.ms-loaded-animate{
    background-color: var(--primary-color);
}

#intro.ms-loaded-animate .intro-title h1,
#intro.ms-loaded-animate .intro-text p{
    color: #fff;
}

#intro.ms-loaded-animate .intro-text p span{
    color: var(--text-color);
}

/* CARACTERISTICAS */

.features-item{
    position: relative;
}

@media screen and (min-width: 580px) {
    .features-item{
        height: 480px;
    }
}

.features-bg{
    width: 100%;
    height: 100%;
    position: relative;
}

@media screen and (min-width: 580px) {
    .features-bg{
        position: absolute;
        top:0;
        left: 0;
    }
}

.features-bg:after{
    content:"";
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0);
    opacity: .55;
    transition: all .4s cubic-bezier(.165,.84,.44,1);
}

.section-ms.ms-loaded-animate .features-bg:after{
   opacity: 0;
   transition-delay: .5s;
}

.features-bg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.features-item .container,
.features-content{
    height: 100%;
}

@media screen and (max-width: 580px) {
    .features-item .container{
        width: 100%;
    }

    .features-item .container{
        padding: 0;
    }
}

.features-content{
    width: 100%;
    margin: auto;
    margin-right: 0;
}

@media screen and (min-width: 580px) {
    .features-content{
        width: 58rem;
        display: flex;
    }
}

.features-item:nth-child(odd) .features-content{
    margin: auto;
    margin-left: 0;
}

.features-info{
    background-color: var(--primary-color);
    padding: 30px 20px;
    padding-top: 65px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    justify-content: flex-end;
}

@media screen and (min-width: 580px) {
    .features-info{
        padding: 20px;
        width: 50%;
    }
}

.features-item#limpieza-de-fachadas .features-info{
    background-color: var(--primary-color);
}

.features-item#plaza-italia .features-info{
    background-color: #E9EE79;
}

.features-item#ciclovia-metropolitana .features-info{
    background-color: #4ADAA8;
}

.features-item#nuevo-pajaritos-y-parque-bueras .features-info{
    background-color: #8DEAFF;
}
.features-item#recuperacion-de-espacios-publicos .features-info{
    background-color: #AD99FF;
}

.features-info > img{
    width: 53px;
    height: 53px;
    margin-bottom: 10px;
}

.features-info h2{
    font-size: 2.7rem;
    font-weight: 400;
    line-height: 1.3;
}

.features-text{
    background-color: var(--text-color);
    padding: 40px 20px;
    width: 100%;
    height: 100%;
    position: relative;
}

@media screen and (min-width: 580px) {
    .features-text{
        padding: 20px;
        width: 50%;
        display: flex;
        flex-flow: column;
        justify-content: flex-end;
    }
}

@media screen and (min-width: 1024px) {
    .features-text p:first-child{
        position: absolute;
        top:20px;
        left: 20px;
    }
}

.features-text p{
    color: #fff;
    font-size: 1.4rem;
    line-height: 2;
}

.features-text p:nth-child(2) strong{
    font-weight: 700;
}

.features-text p strong{
    font-weight: 600;
}

@media screen and (max-width: 1024px) {
    .features-text p:first-child{
        margin-bottom: 40px;
    }

    .features-text p br{
        display: none;
    }

    .features-text p strong{
        font-size: 2rem;
        display: block;
        line-height: 1.5;
        /* margin-top: -10px; */
    }
}

.features-item#limpieza-de-fachadas .features-text p:first-child{
    color: var(--primary-color);
}

.features-item#plaza-italia .features-text p:first-child{
    color: #E9EE79;
}

.features-item#ciclovia-metropolitana .features-text p:first-child{
    color: #4ADAA8;
}

.features-item#nuevo-pajaritos-y-parque-bueras .features-text p:first-child{
    color: #8DEAFF;
}

.features-item#recuperacion-de-espacios-publicos .features-text p:first-child{
    color: #AD99FF;
}

.features-read{
    margin-top: 5px;
}

@media screen and (max-width: 1024px) {
    .features-read{
        display: -webkit-box;
      -webkit-line-clamp: 1;
      -webkit-box-orient: vertical;  
      overflow: hidden;
      margin-top: 20px;
    }

    /* .features-text p:nth-child(2){
        margin-bottom: 10px;
    } */
}

.show-more .features-read{
    -webkit-line-clamp: inherit;
}

.read-more-btn{
    background-color: transparent;
    position: relative;
    font-size: 1.4rem;
    font-weight: 400;
    margin-top: 30px;
    display: block;
}

@media screen and (min-width: 1024px) {
    .read-more-btn{
        display:none;
    }
}

.read-more-btn:after{
    content:"+";
    position: absolute;
    top:50%;
    transform: translateY(-50%);
    right: -15px;
}

.show-more .read-more-btn:after{
    content:"-";
}

.read-more-btn::before{
    content:attr(data-text);
    display: block;
    text-align: left;
}

.show-more .read-more-btn::before{
    content:"Leer menos";
}

.features-item#limpieza-de-fachadas .read-more-btn{
    color: var(--primary-color);
}

.features-item#plaza-italia .read-more-btn{
    color: #E9EE79;
}

.features-item#ciclovia-metropolitana .read-more-btn{
    color: #4ADAA8;
}

.features-item#nuevo-pajaritos-y-parque-bueras .read-more-btn{
    color: #AD99FF;
}

.features-item#recuperacion-de-espacios-pÃºblicos .read-more-btn{
    color: #8DEAFF;
}

/* FOOTER */

.footer{
    background-color: #fff;
    padding-top: 45px;
}

.footer-top{
    display: flex;
    flex-flow: column-reverse;
    
}

@media screen and (min-width: 580px) {
    .footer-top{
        flex-flow: row;
        align-items: center;
    }
}

.footer-top-images{
    width: 100%;
    text-align: center;
}


@media screen and (min-width: 580px) {
    .footer-top-images{
        width: 100%;
        text-align: left;
    }
}

.footer-top-social img{
    width: 100%;
}

.footer-item{
    text-align: center;
}

@media screen and (max-width: 1024px) {
    .footer-item:nth-child(1) .footer-images{
        flex-flow: column;
    }
}

.footer-item.-gray{
    background-color: #F2F2F2;
    padding: 35px 0;
}

.footer-item.-gray{
    background-color: #F2F2F2;
    padding: 35px 0;
}

.footer-item h2{
    font-weight: 400;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #898888;
}

@media screen and (min-width: 580px) {
    .footer-item h2{
        font-size: 1.4rem;
    }
}

.footer-images{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
    justify-content: center;
}

@media screen and (min-width: 580px) {
    .footer-images{
        gap:35px;
        margin-bottom: 40px;
    }
}


.footer-item.-gray .footer-images{
    margin: 0;
}

.footer-images li{
    width: 50%;
    margin-bottom: 20px;
}

@media screen and (min-width: 580px) {
    .footer-images li{
        width: auto;
        margin: 0;
    }
}

.footer-images img{
    max-width: 100%;
    height: auto;
}

.footer-bottom{
    padding: 25px 0;
    border-top: 1px solid #fff;
    text-align: center;
}

@media screen and (min-width: 580px) {
    .footer-bottom{
        padding-bottom: 15px;
        text-align: center;
    }
}

.footer-bottom a{
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.4rem;
    color: #5E5E5E;
}

/* MENU FLOTANTE */

.menu{
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom:0;
    left: 0;
    width: 100%;
    z-index: 35;
}

@media screen and (min-width: 580px) {
    .menu{
        display: none;
    }
}

.menu-item{
    width: 20%;
}

.menu-wrap{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90px;
    width: 100%;
}

.menu-wrap img{
    width: 53px;
    height: 53px;
}

.menu-item  .menu-wrap[data-step="#limpieza-de-fachadas"]{
    background-color: var(--primary-color);
}

.menu-item .menu-wrap[data-step="#plaza-italia"]{
    background-color: #E9EE79;
}

.menu-item .menu-wrap[data-step="#ciclovia-metropolitana"]{
    background-color: #4ADAA8;
}

.menu-item .menu-wrap[data-step="#nuevo-pajaritos-y-parque-bueras"]{
    background-color: #AD99FF;
}

.menu-item .menu-wrap[data-step="#recuperacion-de-espacios-pÃºblicos"]{
    background-color: #8DEAFF;
}

.estacion-central img{
    height: 70px;
}

.slide-contenido img {
  opacity: 0;
}
.slide-contenido .slick-list img {
  opacity: 1;
}
.slide-contenido .slick-dots li button:before{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #000;
  content:"";
}
.slide-contenido .slick-dots li.slick-active button:before{
  background: #333;
}
.slide-contenido .slick-dots li {
  margin: 0;
}