 .btn{
    background-color: transparent;
    font-family: 'Poppins', sans-serif;
    font-size: 19px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 0.6;
    padding: 0;
    border-radius: 50px;
    overflow: hidden;
}
.btn svg{
    height: 50px;
    width: 127px;
}
.btn svg rect{
    width: 120px;
    height: 45px;
    stroke-width: 4;
    stroke-dasharray: 150, 0;
    transition: all 600ms ease;
}
.btn:hover svg rect{
    stroke-width: 4;
    stroke-dasharray: 80, 280;
    stroke-dashoffset: 370;
}
.btn svg text{ fill: #000; }
@media only screen and (max-width: 767px){
    .btn{ margin-bottom: 20px; }
}