/* .img-hero {
    width: 100%;
}

.banner {
    display: none;
} */

.img-hero {
    display: none;
}

.banner {
    display: block;
}

.banner {
    width: 100vw;
    /* display: flex;
    overflow: hidden; */

    display: grid;
    grid-template-columns: 1fr;
    align-items: center;

    position: relative;
}

.banner__img {
    grid-column: 1/2;
    grid-row: 1/2;
    opacity: 0;
    /* pointer-events: none; */
    transition: opacity .7s;
}

.banner__img--show {
    opacity: 1;
}

.banner__flechas {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.anterior,
.siguiente {
    font-size: 4rem;
    color: rgba(255, 255, 255, .4);
    background-color: rgba(0, 0, 0, .4);
    padding: .5rem 2rem;
    cursor: pointer;

    transition: color .3s,
                background-color .3s;
}

.anterior:hover,
.siguiente:hover {
    color: rgba(255, 255, 255, .7);
    background-color: rgba(0, 0, 0, .7);
}

@media (min-width: 992px) {
    .img-hero {
        display: none;
    }

    .banner {
        display: block;
    }

    .banner {
        width: 100vw;
        /* display: flex;
        overflow: hidden; */

        display: grid;
        grid-template-columns: 1fr;
        align-items: center;

        position: relative;
    }

    .banner__img {
        grid-column: 1/2;
        grid-row: 1/2;
        opacity: 0;
        /* pointer-events: none; */
        transition: opacity .7s;
    }

    .banner__img--show {
        opacity: 1;
    }

    .banner__flechas {
        position: absolute;
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .anterior,
    .siguiente {
        font-size: 4rem;
        color: rgba(255, 255, 255, .4);
        background-color: rgba(0, 0, 0, .4);
        padding: .5rem 2rem;
        cursor: pointer;

        transition: color .3s,
                    background-color .3s;
    }
    
    .anterior:hover,
    .siguiente:hover {
        color: rgba(255, 255, 255, .7);
        background-color: rgba(0, 0, 0, .7);
    }
}