:root
{
    --color_base:rgb(249,90,53);
    --color_hover:rgb(102, 105, 111);
}
/*-----------------------------------------------*/
.boton_s5
{
    width: 170px;
    height: 50px;
    background-color: var(--color_base);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 5px;
    overflow: hidden;
    margin: 0 10px;
}
.mediano
{
    width: 250px;
}
.grande
{
    width: 450px;
}
.cont_movible_hover
{
    width: 100%;
    height: 0px;
    transform: height;
    transition: all  0.3s ease;
    background-color: var(--color_hover);
    display: flex;
    align-items: center;
    justify-content: center;
}
.cont_movible_hover p
{
    font-size: 17px;
    font-weight: 500;
    color: white;
}
.cont_movible_hover i
{
    font-size: 17px;
    color: white;
    margin-right: 10px;
}
.boton_s5:hover .cont_movible_hover
{
    height: 100%;
}

@media screen and (max-width:570px)
{
    .boton_s5
    {
        width: 70px;
    }
    .cont_movible_hover p
    {
        display: none;
    }
    .cont_movible_hover i
    {
        margin-right: 0px;
    }
}