.btns {
    -moz-user-select: none;
    background: #28a745;
    border: medium none;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 0;
    margin-bottom: 0;
    padding: 25px 33px;
    text-align: center;
    text-transform: uppercase;
    touch-action: manipulation;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    vertical-align: middle;
    white-space: nowrap;
    font-family: "Roboto",sans-serif;
}
.btns:hover {
    background: #18722c;
    color: #fff;
}
.btns:focus, .btn:hover {
    text-decoration: none;
}
.btns-whatsapp {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
} 