@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400 700;
    font-stretch: 100%;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/roboto/v47/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3yUBA.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
  }
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    background-color: #fff9da;
    font-size: 18px;
}

.info-item {
    min-height: 100vh;
    color: #FFF;
    font-size: 20px;
    display: flex;
    opacity: 0;
    transition: opacity 500ms ease-in-out;
}



.info-item__content {
    padding: 15px;
    width: 1700px;
    max-width: 100%;
    margin: 0 auto;
}

.info-item h1 {
    transition: transform 350ms ease-in-out;
    margin-bottom: 15px;
    text-transform: uppercase;
    transform: translateY(-100%);
}



.info-item p {
    transition: transform 350ms ease-in;
    transform: translateX(100%);
}


.info-item img {
    max-width: 100%;
}

.info-item h2 {
    background: #000;
    color: #FFF;
    padding: 21px;
    border-radius: 80px;
    margin-bottom: 46px;
    display: inline-block;
    position: relative;
    text-transform: uppercase;
    z-index: 1;
    display: flex;
    align-items: center;
}

.info-item h2 span {
    background-color: #FFF;
    font-size: 2em;
    text-align: center;
    margin-right: 16px;
    border-radius: 50%;
    display: inline-block;
    color: #000;
}

.info-item__content__img {
    max-width: 1200px;
    margin: 0 auto;
    display: block;
}

.info-item__content__img:not(:last-child) {
    margin-bottom: 150px;
}

/* SECCIONES */
/* Texto patrocinado */
.sponsored-content{
    display: flex;
    background-color: #EDEDED;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    color: #DD1F2E;
    gap: 30px
}
.sponsored-content__logo{
    max-height: 60px;
    width: auto;
}
/* Sección 1 */
#about {
    overflow-x: hidden;
    position: relative;
    display: flex;
    justify-content: center;
}

#about .background {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    min-width: 100%;
    background-position: bottom 0;
    z-index: -1;
    background-size: cover;
    background-image: url("/assets/landings/olmos/images/proyecto-olmos-background.png");
}

#about .info-item__text h1 {
    text-transform: uppercase;
    color: #D51224;
    margin-bottom: 28px;
    line-height: 1;
}

#about .info-item__text h1 span {
    display: block;
    color: #000;
    text-transform: none;
    font-size: .8em;
}


#about .info-item__text p {
    color: #000;
    padding: 26px;
    display: block;
    border-radius: 8px;
    font-size: 25px;
    background-color: rgba(255, 255, 255, .5);
}

.item-selector {
    display: block;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 700;
    list-style: none;
    position: absolute;
    bottom: 15px;
}

.item-selector li {
    padding: 30px 52px;
    color: #FFF;
    position: relative;
}


.item-selector li:nth-child(1) {
    background: #FFD600;
    border-radius: 30px 0 0 30px;
}

.item-selector li:nth-child(2) {
    background: #22b6e9;
}

.item-selector li:nth-child(3) {
    background: #74c247;
    border-radius: 0 30px 30px 0;
}

.item-selector li:nth-child(1) span {
    color: #FFD600;
}

.item-selector li:nth-child(2) span {
    color: #22b6e9;
}

.item-selector li:nth-child(3) span {
    color: #74c247;
}


.item-selector li span {
    display: inline-block;
    color: #000;
    background: #FFF;
    text-align: center;
    border-radius: 50%;
    margin-right: 15px;
}

#impacto-economico h2,
#impacto-economico h2::before {
    background-color: #FFD600;
}

#infraestructura h2,
#infraestructura h2::before {
    background-color: #22b6e9;
}

#desarrollo-sostenible h2,
#desarrollo-sostenible h2::before {
    background-color: #74c247;
}



/* ANIMACIONES */
.info-item h2 {
    transform: translateX(-100%);
    transition: transform 750ms ease-in-out;
}

.info-item__content__img {
    transition: transform 750ms ease-in 200ms;
}

.visible {
    opacity: 1;
}

.info-item.visible * {
    transform: none !important;
}

/* Bloques específicos */

#impacto-economico .info-item__content__img {
    transform: translateX(-100%);
}

#infraestructura .info-item__content__img {
    transform: translateY(100%);
}


#desarrollo-sostenible .info-item__content__img {
    transform: scale(.9);
}

#impacto-economico h2 span {
    color: #FFD600;
}

#infraestructura h2 span {
    color: #22b6e9;
}

#desarrollo-sostenible h2 span {
    color: #74c247;
}

#go-top {
    background: #D51224;
    padding: 20px;
    display: block;
    font-weight: bold;
    text-align: center;
    color: #FFF;
}
.footer-landing p{
    text-align: center;
}
.footer-landing > p{
    margin-bottom: 15px;
}
.footer-landing .wrap-footer{
    background-color: #EDEDED;
    margin-top: 0;
    padding: 15px;
}