a.custom-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 285px;
    min-height: 85px;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1em;
    text-align: left;
    text-transform: none;
    border: none;
    padding: 1rem 2rem;
    cursor: pointer;
    color: white;
    transition: background-color 0.3s;
}

a.custom-button--bigger {
    height: 90px;
}

a.custom-button,
a.custom-button:hover,
a.custom-button:focus {
    text-decoration: none;
}

a.custom-button--normal {
    background-color: #043284;
}

a.custom-button--alt {
    background-color: #5bb5e7;
}

a.custom-button--normal:hover {
    background-color: #5bb5e7;
}

a.custom-button--alt:hover {
    background-color: #043284;
}

a.custom-button svg {
    width: auto;
    height: clamp(3.25rem, 4.664vw + -1.377rem, 4.5rem);
    margin-right: 2rem;
    transition: fill 0.3s;
}

a.custom-button--normal svg {
    fill: #5bb5e7;
}

a.custom-button--alt svg {
    fill: #ffffff;
}