/* body{
    display: flex;
    height: 100vh;
    align-items: center;
    justify-content: center;
    overflow: hidden; 
     margin: 0;
     font-family: 'Muli', sans-serif;

} */
.espaciopcarrusel{
    display: flex;
    width: 100%;
}

.partecarrusel{
    
    height: 400px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    flex: 0.5;

    position: relative;

    /*? final*/

    color: white;
    border-radius: 50px;
    cursor: pointer;
    margin: 10px;
    /* //acelera al inico pero despues es lenta */
    -webkit-transition: all 700ms ease-in;

}
.partecarrusel h3{
    color: white;
    position: absolute;
    bottom: 0;
    /* left: 50px; */
    font-size: 2em;
    opacity: 0;
	padding: 5%;
	font-family: 'Indivisa Text Sans Black';
}

.partecarrusel.active {
    flex: 5;

}
.partecarrusel.active h3{
    opacity: 1;
}

/* adicional */
@media (max-width: 480px) {
    .espaciopcarrusel {
        width:100%;
      }
    
}