.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 {
    display: inline-block;
    text-decoration: none;
    /* display: block; */
    font-family: 'monotype-grotesque', sans-serif;
    background-color: #e3dcd5;
    font-style: italic;
    font-weight: 100;
    letter-spacing: .03em;
    margin-bottom: 23px;
    transition: ease 0.6s;
    transition-property: border-radius background-color;
    font-size: 15px;
    margin-top: 21px;
    padding: 8px 30px;
    color: #212b38;
}

.custom-button .button-link i:before {
    content: "\f054";
    font-size: 12px;
}

.custom-button .button-link:hover {
    border-radius: 5px;
    background-color: #2e3742;
    color: #e3dcd5;
}

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