.testimonios{
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
    padding-bottom: 60px;
    overflow:hidden;
    position: relative;
}
.testimonios_article{
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 20px;
    transform:translate(33%);
    transition: transform 0.5s;
}
.testimonio{
    width: 100%;
    box-sizing: border-box;
    padding: 20px;
    margin-top: 80px;
    padding-top: 55px;
    max-width: 350px;
    min-height: 400px;
    padding-bottom: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background-color: #F0F0F0;
    border-radius: 15px;
}
.testimonio_paragraph{
text-align: center;
font-size: 1.15em;
}
.testimonio_img{
    position: absolute;
    top: -60px;
    height: 120px;
    width: 120px;
    border: 5px solid #F0F0F0;
    border-radius: 50%;
}
.stars_img{
    width: 80%;
    max-width: 250px;
}
.testimonio_web{
    max-width: 100%;
    overflow: hidden;
}
.testimonios_title{
    padding-bottom: 40px;
    margin: 0;
    font-size: 1.7em;
    text-align: center;
}
.testimonios_button{
    background: none;
    border: none;
    color: black;
    font-size: 2.5em;
   position: absolute;
   top: 50%;
   z-index: 1000;
   background-color: rgba(255, 255, 255, 0.466);
   width: 45px;
   height: 45px;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   padding: 0;
   transition: all 0.3s;
}
.testimonios_button:hover{
    background-color: #c4c4c4;
}
@media only screen and (min-width: 700px) {
    .testimonios_article{
        transform:translate(0) !important;
    }
    .testimonios_button{
        display: none;
    }
}