.btn_primario{
    background-color: #FF0000;
    color: white;
    font-family: "Pier_Sans_Reg";
    cursor: pointer;
    font-size: 14px;
    border-radius: 25px;
    height: 37px;
    padding-left: 22px;
    padding-right: 22px;
    font-weight: 300;
    text-decoration: none;
}

.btn_primario:hover{
    cursor: pointer;
    background-color: #FFFFFF;
    color: #FF0000;
    text-decoration: none;
    border: 1px solid #FF0000;
}

.btn_secundario{
    background-color: #FFFFFF;
    color: #4c4c4c;
    font-family: "Pier_Sans_Reg";
    cursor: pointer;
    font-size: 14px;
    font-weight: 300;
    border-radius: 25px;
    height: 37px;
    padding-left: 22px;
    padding-right: 22px;
    text-decoration: #4c4c4c;
    border: 1px solid #4c4c4c;
}

.btn_secundario:hover{
    cursor: pointer;
    background-color: transparent;
    color: #FF0000;
    text-decoration: none;
    border: 1px solid #FF0000;
}


.btn-terciario {
    display: inline-block;
    font-family: "Pier_Sans_Reg";
    font-size: 14px;
    font-weight: 400;
    color: #444444 !important;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    padding-top: 3px;
    padding-bottom: 3px;
    padding-left: 0px;
   
}

.btn-terciario:hover {
    text-decoration: none;
}

.btn-terciario::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 88%;
    height: 1px;
    background-color: #444444;
    transition: opacity 300ms, transform 300ms;
    opacity: 1;
    transform: translate3d(-100%, 0, 0);
}

.btn-terciario:hover::after,
.btn-terciario:focus::after {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.btn-terciario-casos {
    display: inline-block;
    font-family: "Pier_Sans_Reg";
    font-size: 14px;
    font-weight: 400;
    color: #FFFFFF !important;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    padding-top: 3px;
    padding-bottom: 3px;
    padding-left: 0px;
}

.btn-terciario-casos:hover {
    text-decoration: none;
}

.btn-terciario-casos::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 88%;
    height: 1px;
    background-color: #FFFFFF;
    transition: opacity 300ms, transform 300ms;
    opacity: 1;
    transform: translate3d(-100%, 0, 0);
}

.btn-terciario-casos:hover::after,
.btn-terciario-casos:focus::after {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

