/* Feria Header */

.home-header-feria h1 {
    font-size: 72px;
    text-align: center;
    max-width: 1400px;
    width: 100%;
    margin: auto;
}

.home-header-feria a {
    font-size: 26px;
}

@media (max-width: 1400px) {
    .home-header-feria h1 {
        font-size: 52px;
    }

    .home-header-feria a {
        font-size: 22px;
    }
}


/* Feria vistazo */

.feria-vistazo-container {
    padding: 100px 40px;
    background-color: white;
}

.feria-vistazo {
    max-width: 1600px;
    margin: auto;
}

.feria-vistazo h2 {
    color: #325D5F;
    font-size: 72px;
    font-style: normal;
    font-weight: 400;
    line-height: 75px;
    margin: 0 0 50px 0;
}

.feria-vistazo-poster {
    display: flex;
    max-width: 1600px;
    width: 100%;
    margin: auto;
}

.feria-vistazo-poster > div {
    width: 50%;
}

.feria-vistazo-text {
    height: 430px;
    max-height: 430px;
}

.feria-vistazo-image {
    height: 350px;
}

.feria-vistazo-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.feria-vistazo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feria-vistazo-text {
    background-color: #58BCAD;
    color: #325D5F;
    font-family: 'RUBIK', serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 300;
    line-height: 45px;
    padding: 20px;
    box-sizing: content-box;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feria-vistazo-text span {
    font-weight: 700;
}

.feria-vistazo-text.dark {
    background-color: #325D5F;
    color: white;
}

@media (max-width: 1400px) {
    .feria-vistazo h2 {
        font-size: 52px;
    }

    .feria-vistazo-text {
        font-size: 18px;
        line-height: 24px;
    }

    .feria-vistazo-text li {
        margin-bottom: 10px;
    }

    .feria-vistazo-text {
        height: 340px;
        max-height: 340px;
    }

    .feria-vistazo-image {
        height: 270px;
    }
}

@media (max-width: 900px) {
    .feria-vistazo h2 {
        line-height: 1.2;
    }

    .feria-vistazo-poster > div {
        width: 100%;
    }

    .feria-vistazo-poster {
        flex-direction: column;
    }

    .feria-vistazo-text {
        justify-content: left;
    }
}

@media (max-width: 900px) {
    .feria-vistazo-container {
        padding: 0 20px 70px 20px;
        background-color: white;
    }

    .feria-vistazo-text ul {
        padding-left: 25px;
    }
}


/* Feria Iconos */

.feria-iconos-container {
    padding: 100px 40px;
    max-width: 1600px;
    justify-content: center;
    box-sizing: border-box;
    width: 100%;
    margin: auto;
}

.feria-iconos-container h2 {
    color: #FFF;
    font-size: 72px;
    font-weight: 400;
}

.feria-iconos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0);
    gap: 20px;
    margin-left: -1px;
    margin-right: -1px;
}

.feria-iconos > div {
    width: 235px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #325D5F;
    padding: 10px 20px;
    box-sizing: border-box;
    border-radius: 12px;
    height: 250px;
}

.feria-iconos > div label {
    color: #ffffff;
    font-size: 20px;
    font-weight: 300;
    text-align: center;
    height: 0;
    opacity: 0;
    transition: height 0.2s ease;
}

.feria-iconos > div:hover label {
    opacity: 1;
    height: 20px;
}

.feria-iconos > div img {

    transition: transform 0.2s ease;
}

.feria-iconos > div:hover img {
    transform: scale(1.2);
}

@media (max-width: 1400px) {
    .feria-iconos-container h2 {
        font-size: 50px;
        line-height: 1.1;
    }

    .feria-iconos > div {
        width: 190px;
    }
}

@media (max-width: 900px) {
    .feria-iconos-container {
        padding: 60px 20px;
    }

    .feria-iconos > div {
        width: 180px;
    }

    .feria-iconos > div label {
        height: auto;
        opacity: 1;
    }
}

/* Feria poster */

.feria-poster-container {
    background-color: white;
    padding: 120px 40px;
}

.feria-poster {
    max-width: 1600px;
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
}

.feria-poster-image, .feria-poster-info {
    width: 50%;
    height: 500px;
}

.feria-poster-image {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.feria-poster-image > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feria-poster-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: 400;
    color: white;
}

.feria-poster-info > div {
    max-width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feria-poster > div:nth-of-type(1) .feria-poster-info {
    background: #58BCAD;
}

.feria-poster > div:nth-of-type(2) .feria-poster-info {
    background: #325D5F;
}

.feria-poster > div {
    display: flex;
}

.feria-poster-info-light {
    gap: 30px;
}

.feria-poster-info-dark {
    gap: 15px;
}

.feria-poster-info-light label:nth-of-type(1) {
    font-size: 22px;
    font-family: Rubik, serif;
    color: #325D5F;
}

.feria-poster-info-light label:nth-of-type(2) {
    font-size: 80px;
    font-family: BOWENS, serif;
    color: #325D5F;
    max-width: 466px;
    line-height: 0.8;
    font-weight: 600;
}

.feria-poster-info-dark label:nth-of-type(odd) {
    font-family: Rubik, serif;
    font-size: 22px;
}


.feria-poster-info-dark label:nth-of-type(even) {
    font-family: BOWENS, serif;
    font-size: 56px;
}

@media (max-width: 1400px) {
    .feria-poster-info-light label:nth-of-type(1) {
        font-size: 18px;
        font-family: Rubik, serif;
        color: #325D5F;
    }

    .feria-poster-info-light label:nth-of-type(2) {
        font-size: 56px;
        font-family: BOWENS, serif;
        color: #325D5F;
        max-width: 466px;
        line-height: 0.8;
    }

    .feria-poster-info-dark label:nth-of-type(odd) {
        font-size: 18px;
    }

    .feria-poster-info-dark label:nth-of-type(even) {
        font-size: 40px;
    }
}

@media (max-width: 900px) {
    .feria-poster-container {
        padding: 80px 20px;
    }

    .feria-poster-image, .feria-poster-info {
        height: 350px;
    }

    .feria-poster-image, .feria-poster-info {
        width: 100%;
    }

    .feria-poster > div:nth-of-type(1) {
        flex-direction: column;
    }

    .feria-poster > div:nth-of-type(2) {
        flex-direction: column-reverse;
    }

    .feria-poster-info > div {
        max-width: 100%;
        padding: 20px;
    }

    .feria-poster-info-light label:nth-of-type(2) {
        font-size: 46px;
    }
}

@media (max-width: 420px) {
    .feria-iconos > div {
        width: 158px;
    }
}








