section.inicio-depoimentos .slideshow-container {
    padding: 0 50px;
    height: 450px;
    display: flex;
    align-items: center;
}
section.inicio-depoimentos .slideshow-container:nth-child(even) {
    background-color: var(--cor-azul);
    color: var(--cor-branco);
}
section.inicio-depoimentos .slideshow-container:nth-child(odd) {
    background-color: var(--cor-creme);
    color: var(--cor-azul);
}
section.inicio-depoimentos .bolinhas {
    padding: 0px 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* https://www.w3schools.com/howto/howto_js_slideshow.asp */

section.inicio-depoimentos > * {
    box-sizing: border-box;
}

/* Slideshow container */
section.inicio-depoimentos .slideshow-container {
    position: relative;
    margin: auto;
}

/* Hide the images by default */
section.inicio-depoimentos .mySlides {
    display: none;
    padding: 0 100px;
}

/* Next & previous buttons */
section.inicio-depoimentos .prev path,
section.inicio-depoimentos .next path {
    fill: var(--cor-rosa);
}

section.inicio-depoimentos .prev,
section.inicio-depoimentos .next {
    cursor: pointer;
    position: absolute;
    width: 25px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

/* Position the "next button" to the right */
section.inicio-depoimentos .prev {
    left: 50px;
}

section.inicio-depoimentos .next {
    right: 50px;
    transform: rotate(180deg);
}

/* On hover, add a black background color with a little bit see-through */
section.inicio-depoimentos .prev svg:hover,
section.inicio-depoimentos .next svg:hover {
    /* FIXME svg hover stroke width bolder */
    fill: var(--cor-marrom);
}

/* The dots/bullets/indicators */
section.inicio-depoimentos .dot {
    cursor: pointer;
    height: 7px;
    width: 7px;
    margin: 0 4px;
    background-color: var(--cor-rosa);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

section.inicio-depoimentos .dot.active{
    background-color: var(--cor-azul);
    border: solid 2px var(--cor-rosa);
}

/* Fading animation */
section.inicio-depoimentos .fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {opacity: .4;}
    to {opacity: 1;}
}

@media only screen and (max-width: 600px) {

    section.inicio-depoimentos .mySlides {
        padding: 0;
    }
    
    section.inicio-depoimentos .slideshow-container {
        padding: 20px 50px 0;
        height: auto;
    }

    section.inicio-depoimentos .next {
        right: 3vw;
    }

    section.inicio-depoimentos .prev {
        left: 3vw;
    }

}