*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Roboto', sans-serif;
    background: #f2f2f2;
}

.contenedor{
    width: 100%;
    overflow: hidden;
}

.slider-contenedor{
    width: 100%;
    display: flex;
}

.contenido-slider{
    width: 100%;
    height: calc(100vw)-480px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-shrink: 0;
    position: relative;
}

.contenido-slider > img{
    width: 100%;
    height: 100%;
    
}

.contenido-slider > .desc-slider{
    display: block;
    width: 40%;
    position: absolute;
    bottom: 20px;
    left: 30px;
    background-color: rgba(0,0,0,0.5);
    padding:20px;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.contenido-slider h2{
    font-weight: 300;
    text-align: justify;
    line-height: 30px;
    color: rgb(207, 207, 211);
    font-size: 20px;
}

.contenido-slider a{
    color: #fff;
    background: #df6f07;
    width: 100px;
    display: block;
    padding: 15px 0;
    text-align: center;
    border-radius: 3px;
    margin-top: 20px;
    text-decoration: none;
}


@media screen and (max-width:900px){
    .contenido-slider >.desc-slider{
        
    }
    .contenido-slider h2{
        font-size: 14px;
        line-height: 15px;
    }
    .contenido-slider a{
        font-size: 14px;
        padding: 7px 0;
        margin-top: 10px;
    }
}


@media screen and (max-width:600px){
    .contenido-slider > .desc-slider{
        display: none;
    }
}