.votos{
    margin-top: 40px;
    margin-bottom: 30px;
}

.votos-container{
    width: 90%;
    display: grid;
    grid-template-columns: 35% 30% 35%;
    margin: auto;
    align-items: center;
}

.votos-container img{
    width: 100%;
    border-radius: 20px;
    -webkit-box-shadow: 0px 6px 16px -3px rgba(0,0,0,0.82); 
    box-shadow: 0px 6px 16px -3px rgba(0,0,0,0.82);
}

.votos .header{
    margin: auto;
    width: 85%;
}

.voto{
    padding: 0px 20px;
    height: 200px;
}

.voto .name{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.voto .name .cut-line{
    margin-top: -40px;
    margin-bottom: 30px;
}

.voto h3{
    font-weight: 600;
    font-size: 38px;
    font-family: var(--main-font);
}

.voto p{
    font-weight: 600;
    font-size: 15px;
    line-height: 1.2;
    margin-top: -25px;
    text-align: justify;
}

.votos-container .movile{
    display: none;
}

@media (max-width:1000px){
    .votos-container .movile{
        display: block;
    }
    .votos-container .pc{
        display: none;
    }

    .votos-container img{
        border-radius: 0px;
        margin-bottom: 10px;
        box-shadow: none;
    }
    
    .voto h3{
        margin-top: 10px;
    }

    .voto{
        width: 90%;
        height: 100%;
    }

    .votos-container{
        width: 100%;
        display: flex;
        flex-direction: column;
    }
    
}