*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: sans-serif;
}

.contenedor{
    width: 100%;
    overflow: hidden;
}

.slider-contenedor{
    width: 100%;
    display: flex;
}

.contenido-slider{
    width: 100%;
    height: 580px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-shrink: 0;
}

.contenido-slider:nth-child(2){
    background: #fff;
    color: #ea8b36;
    background-size: cover;
    background-repeat: no-repeat;
}

.contenido-slider:nth-child(3){
    background: #fff;
}
#sf_img{
    width: 40vh;
    height: 50vh;
}
#sec34_img{
    width: 45%;
    height: 55vh;
}
.contenido-slider > img{
    width: 50%;
    height: 95vh;
}

.contenido-slider > div{
    width: 40%;
}

.contenido-slider h2{
    font-weight: 550;
    text-align: justify;
    line-height: 1.2;
    font-size: 5vh;
}

.contenido-slider a{
    color: #fff;
    background: #332863;
    width: 100px;
    display: block;
    padding: 15px 0;
    text-align: center;
    border-radius: 3px;
    margin-top: 20px;
    text-decoration: none;
}

/* .contenido-slider:nth-child(2) a{
    background: #fff;
    color: #332863;
} */

@media screen and (max-width:900px){
    .contenido-slider > img{
        width:100%;
    }

    .contenido-slider > div{
        width: 40%;
    }

    .contenido-slider h2{
        font-size: 23px;
    }
    #sec34_img{
        width: 75%;
        height: 30vh
    }
}


@media screen and (max-width:600px){
    .contenido-slider{
       flex-direction: column-reverse;
    }

    .contenido-slider > div{
        width: 80%;
    }

}