.slider {
    width: 100%;
    height: 150px;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
    border-radius: 20px;
}

.slider-inner {
    width: 300%;
    left: 0%;
    height: 150px;
    position:absolute;
    transition: left 0.5s ease;
}

.slide {
    background-color: #bbb;
    float: left;
    width: 33.3333333333%;
    height: 300px;
}
/* Estilize os slides como desejar */
.slide img {
    width: 100%;
    height: 150px;
}
/* Estilos para as bolinhas de controle */
.slider-indicators {
    text-align: center;
    margin-top: 10px;
}

.slider-indicators span {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #333;
    cursor: pointer;
}

.slider-indicators .active {
    background-color: #eda630;
}


@media (min-width:720px){
    .slider {
        height: 450px;
    }

    .slider-inner, .slide, .slide img {
        height: 100%;
    }

    .slide img {
        border-radius: 20px;
    }
}