/*CARROSSEL 1*/
.slider {
    width: 100%;
    height: 620px;
}

.slider-cell {
   width: 100%;
   height: 100%;
}

.slider-cell img {
    width: 100%;
    height: 100%;
}

/*CARROSSEL 2*/
.carousel {
    width: auto;
    height: auto;
}

.carousel-cell {
    height: 700px;
    width: 600px;
}

.carousel-cell img {
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

/*RESPONSIVIDADE DE CELULAR EM PÉ*/
@media (max-width: 768px) and (orientation: portrait) {

    .carousel {
        width: 300px;
        height: 300px;
    }
    
    .carousel-cell {
        height: 100%;
        width: 100%;
    }

    
}