.btn-bordered{
   /* width:200px;
    height:70px;*/
    
    border: 1.5px solid #e94b4b;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    color: #555;
    font-size: 14px;
    letter-spacing: 3px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    background: #fdf9f9;
    outline: none;
    cursor: pointer;
    position: relative;
    padding: 10px 25px;
    overflow: hidden;
    transition: all .5s;
    box-shadow: 0px 1px 2px rgba(0,0,0,.3);
    text-transform: uppercase;
}

.btn-bordered:hover{
    transition: all .5s;
    background: #e94b4b;
    color: #f6f8f8;
    transform: rotate(-3deg) scale(1.1);
    box-shadow: 0px 3px 5px rgba(0,0,0,.6);
}


.btn-bordered.active {
    background: #e94b4b;
    color: #f6f8f8;
}