.btn {
    background: #273140;
    width: 200px;
    height: 55px;
    border-radius: 100px;
    overflow: hidden;
    transition: 0.3s;
    text-transform: uppercase;
    padding: 6px;
    position: relative;
    font-size: 14px;
    letter-spacing: .14rem;
    ;

}

.btn .btn-inner {
    width: 100%;
    height: 100%;
    border-radius: 100px;
    position: relative;
    overflow: hidden;
    transition: 0.3s ease;
}

.btn .btn-before {
    height: 100%;
    width: 100%;
    color: white;
    transition: 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    padding-left: 10px;

}

.btn .btn-after {
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    border-radius: 100px;
    transition: 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    margin-left: 15px;
}

.btn .arrows {
    display: flex;
    justify-content: center;
    gap: 4px;
    transition: 0.3s;
    background: white;
    border-radius: 100px;
    height: 100%;
    width: 40px;
}

.btn .arrows svg {
    width: 6px;
    rotate: 180deg;
    fill: black;
}

.btn .btn-border {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.btn .btn-border path {
    stroke-dasharray: 1400;
    stroke-dashoffset: 1400;
    transition: none;
}

.btn:hover {
    background: transparent;
}

.btn:hover .btn-before {
    margin-left: -150px;
}

.btn:hover .btn-after {
    left: 0;
}

.btn:hover .btn-border path {
    transition: stroke-dashoffset 0.4s ease 0.1s;
    stroke-dashoffset: 0;
}