.special-button {
    display: inline-block;
    padding: 0.75rem 1.25rem;
    color: #fff;
    text-transform: uppercase;
    text-decoration-line: none;
    font-size: 1rem;
    letter-spacing: 0.15rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.special-button:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #3d77e1;
    z-index: -2;
}
.special-button:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #3763c3;
    transition: all 0.3s;
    z-index: -1;
}
.special-button:hover {
    color: #fff;
}
.special-button:hover:before {
    width: 100%;
}
