/* ANIMACION */
@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(100%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* BANNER */
.banner {
    background-image: url("../img/adaptaciones/04_destino/banner.jpg");
}

.section {
    max-width: 1200px;
    margin: auto;
    padding: 0 50px;
}

.section h2 {
    color: #2ED8C3;
    font-family: 'Roboto', Arial, 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: 1;
}

/* MOVIL */
@media screen and (min-width: 340px) and (max-width: 740px) {
    .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;
    }
}
