.custom-button {
    display: flex;
    margin-bottom: 30px;
}

.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 {
    position: relative;
    display: inline-block;
    background-color: #faa31b;
    color: #242f44;
    font-family: urw-din, sans-serif;
    font-weight: 700;
    padding: 10px 20px;
    text-transform: uppercase;
    font-size: 14px;
    text-decoration: none;
}

.custom-button .button-link:hover:before {
    transform: scaleX(1);
    transition: transform ease 0.2s, opacity ease 1.5s;
    opacity: 0;
}

.custom-button .button-link:hover {
    background: #c78408;
    color: white;
    transition: all ease 0.2s 0.2s;
}

.custom-button .button-link::before {
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    background: #c78408;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform ease 0.2s 0.2s;
    opacity: 1;
}

.custom-button .button-link:hover {
    background-color: #faa31b;
}
