.custom-button {
    display: flex;
}

.custom-button.align-left {
    justify-content: flex-start;
}

.custom-button.align-center {
    justify-content: center;
}

.custom-button.align-right {
    justify-content: flex-end;
}

.custom-button .button-link {
    color: #141414;
    font-family: 'franklin-gothic-urw', sans-serif;
    font-style: italic;
    font-size: 15px;
    letter-spacing: 0.7px;
    font-weight: 400;
    border: 2px solid #141414;
    padding: 5px 50px;
    position: relative;
    margin-bottom: 60px;
}

.custom-button .button-link:after {
    content: "";
    display: block;
    background-color: #f15d22;
    width: calc(100% + 1px);
    height: calc(100% + 1px);
    position: absolute;
    top: 7px;
    left: 7px;
    z-index: -1;
    transition: top .5s, left .5s;
    text-decoration: none;
}

.custom-button .button-link:hover {
    text-decoration: none;
}

.custom-button .button-link:hover:after {
    top: 0px;
    left: 0px;
}

.custom-button .button-link:focus {
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #f15d22;
    outline: none;
}

@media (min-width: 64em) {
    .custom-button .button-link {
        padding: 5px 100px;
        font-size: 20px;
        border: 3px solid #141414;
    }

    .custom-button .button-link:after {
        top: 9px;
        left: 9px;
    }
}