
/* .btns --------------------------------------------------------- */

.btn {
    position: relative;
    overflow: hidden;
    background: none;
    border-width: 1px !important;
    border-style: solid !important;
    padding: 10px 15px;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    color: #fff;
    z-index: 0;
    transition: 200ms ease-in;
}
.btn a {
    text-decoration: none;
    color: inherit;
}
.btn a:hover, .btn a:active, .btn a:focus {
    text-decoration: none;
    color: inherit;
}
.btn:focus {
    outline: 0;
}
.btn:hover {
    cursor: pointer;
}
.btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}
.btn:hover:after {
    width: 100%;
    left: 0;
}
.btn:after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%; 
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 1);
    z-index: -1;
    transition: 200ms ease-in;
}
/* hover swipe direction - change the values below to change the start and direction of the hover animation

-- horizontal center-out --

.btn:hover:after {
    width: 100%;
    left: 0;
}
.btn:after {
    top: 0;
    left: 50%; 
    width: 0;
    height: 100%;
}



-- vertical center-out --

.btn:hover:after {
    height: 100%;
    top: 0;
}
.btn:after {
    top: 50%;
    left: 0; 
    width: 100%;
    height: 0;
}



-- left-right --

.btn:hover:after {
    width: 100%;
    left: 0;
}
.btn:after {
    top: 0;
    left: 0; 
    width: 0;
    height: 100%;
}



-- right-left --

.btn:hover:after {
    width: 100%;
    right: 0;
}
.btn:after {
    top: 0;
    right: 0; 
    width: 0;
    height: 100%;
}

/* dark red */
.btn.btn1 {border-color: #e46054; }
.btn.btn1:hover {color: #e46054;}
.btn.btn1:before {background: #e46054;}
/* dark blue */
.btn.btn2 {border-color: #5d6f80;}
.btn.btn2:hover {color: #5d6f80;}
.btn.btn2:before {background: #5d6f80;}
/* blue */
.btn.btn3 {border-color: #7ca9be;}
.btn.btn3:hover {color: #7ca9be;}
.btn.btn3:before {background: #7ca9be;}
/* yellow */
.btn.btn4 {border-color: #fba82e;}
.btn.btn4:hover {color: #fba82e;}
.btn.btn4:before {background: #fba82e;}
/* white (with gray outline) */
.btn.btn5 {border-color: #e5e5e5; color: #999;}
.btn.btn5:hover {color: #fff; border-color: #ccc;}
.btn.btn5:before {background: #fff;}
.btn.btn5:after {background: #ccc;}
/* dark blue reversed*/
.btn.btn6 {border-color: #5d6f80; color: #5d6f80;}
.btn.btn6:hover {color: #fff; border-color: #5d6f80;}
.btn.btn6:before {background: #fff;}
.btn.btn6:after {background: #5d6f80;}
.btn.btn6.active, .btn.btn6.active:before {background: #5d6f80; color: #fff; border-color: #5d6f80;}
/* sizes */
.btn-sm {
    padding: 5px 10px;
    font-size: 13px;
    transition: 200ms ease-in;
}
.btn-lg {
    padding: 14px 21px;
    font-size: 17px;
    transition: 200ms ease-in;
}



/*Media Queries*/
@media (max-width: 767px) {

}
@media (min-width: 768px) {
 
}
@media (min-width: 992px) {

}
@media (min-width: 1200px) {
}