/* ANIMACION */
@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(100%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* BANNER */
.banner {
    background-image: url("../img/Adaptaciones/07_entorno/head_1920x305px/head_entorno.jpg");
}

/* RESTAURANTE */
/* Como este css ya tiene lo necesario para restauracion.html, pues decalramos su banner aqui */
.banner.restauracion {
    background-image: url("../img/Adaptaciones/04_RESTAURACION/HEAD\ 1920x305/KOALA-GARDEN_RESTAURACION_HEAD-1920x305_03.jpg");
}

#restaurants {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
}

#restaurants .section {
    width: 50%;
}
/* FIN RESTAURANTE */

.section {
    max-width: 1200px;
    margin: auto;
    padding: 0 50px;
}

.section h2 {
    color: #508bb6;
    font-family: 'Almarai', sans-serif;;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 3px;
    padding-bottom: 30px;
}

.section-half h2 {
    width: 100%;
}

.section p {
    padding-bottom: 50px;
    color: #878787;
    text-align: justify;
    font-size: 15px;
    line-height: 30px;
    letter-spacing: 0.5;
}

.section-half p {
    width: 50%;
}

/* EXPLORANDO EL CONTINENTE */
.section-full .images {
    display: block;
    text-align: center;
}

.section-full img {
    width: 160px;
    height: 160px;
    margin: 0 0.5px;
}

.section-full .slogan {
    font-size: 30px;
    padding: 70px 0;
    line-height: 50px;
    text-align: center;
}

/* MOGAN */
.section-half {
    display: flex;
    flex-wrap: wrap;
}

.section-half .images-content {
    width: 50%;
    margin: 10px 0 50px;
}

.section-half:nth-of-type(2n) .images-content {
    text-align: right;
}

.section-half img {
    width: 160px;
    height: 160px;
    margin: 0;
}

/* Ajustes para animaciones de imagenes */
.section-full a,
.section-half a {
    display: inline-block;
    overflow-y: hidden;
}

.section-full img,
.section-half img {
    opacity: 0;
}

/* MOVIL */
@media screen and (min-width: 340px) and (max-width: 740px) {
    #restaurants {
        flex-wrap: wrap;
    }

    #restaurants .section {
        width: 100%;
    }
    
    .section {
        padding: 0 7%;
    }

    .section-half .images-content,
    .section-half p {
        width: 100%;
    }

    .images-content,
    .section-half:nth-of-type(2n) .images-content {
        text-align: center;
    }
}
