/* Carousel */
.slider1Box{
    display: flex;
    width: 100%;
    height: auto;
    overflow: hidden;
    background-color: aqua;
}
/* Images */
.slider1images {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
    height: auto;
    overflow: hidden;
    background-color: blueviolet;
    transform: translateX(0);
    transition: transform 1s ease-in-out;
}
/* Imàgenes */
.slider1Img{
    width: 100%;
    height: auto;
} 
/* Controls */
.controls {
    height: 50px;
    display: flex;
    justify-content: space-between;
}

.btn {
    border: none;
    background-color: goldenrod;
    flex-basis: 33%;
    cursor: pointer;
}