/************Slider-Banner*************/
.banner{
    position: relative;
    width: 100%;
    /*margin-bottom: 1rem;*/
    height: 100vh;
    background-color: #F5F5F5;
    background-color: rgba(0, 0, 0, 0);
    background-size: cover;
    background-position: 80% 50%;
    transition: all .1s ease-in-out;
    animation: banner 30s infinite linear;
}
.banner-content{
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    color:#FFF;
    background-color: rgba(0, 0, 0, .3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.banner-content h1{
    font-size: 2rem;
    margin: 0;
    padding: 0;
    text-align: center;
}
@keyframes banner{
        0%{
            background-image: url(../img/IMAGEN1.jpg);
        }
        25%{
            background-image: url(../img/IMAGEN1.jpg);
        }
        26%{
            background-image: url(../img/IMAGEN2.jpg);
        }
        50%{
            background-image: url(../img/IMAGEN2.jpg);
        }
        51%{
            background-image: url(../img/IMAGEN3.jpg);
        }
        75%{
            background-image: url(../img/IMAGEN3.jpg);
        }
        76%{
            background-image: url(../img/Educacion.jpeg);
        }
        100%{
            background-image: url(../img/Educacion.jpeg)
        }
    }

@media (min-width: 768px){
    .banner{
        position:static;
        width: 100%;
        height: calc(100vh - 0rem);
        margin-top: 0rem;
        background-color: #F5F5F5;
        background-size: cover;
        background-position: center;
        transition: all .1s ease-in-out;
        animation: banner 30s infinite linear;
    }
    .banner-content{
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        color:#FFF;
        display: flex;
        flex-direction: column;
        text-align: center;
        background-color: rgba(0, 0, 0, .3);
    }
    .banner-content h1{
        font-size: 4rem;
        margin: 0;
        padding: 0;
        text-align: center;
    }
    @keyframes banner{
        0%{
            background-image: url(../img/IMAGEN1.jpg);
        }
        25%{
            background-image: url(../img/IMAGEN1.jpg);
        }
        26%{
            background-image: url(../img/IMAGEN2.jpg);
        }
        50%{
            background-image: url(../img/IMAGEN2.jpg);
        }
        51%{
            background-image: url(../img/IMAGEN3.jpg);
        }
        75%{
            background-image: url(../img/IMAGEN3.jpg);
        }
        76%{
            background-image: url(../img/Educacion.jpeg);
        }
        100%{
            background-image: url(../img/Educacion.jpeg)
        }
    }
    .botones__voluntarios{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap:2rem;
    }
    .bloqueBoton{
        text-align: center;
    }
    .nombre__banner{
        color: var(--color4);
    }
}