/*--------------------------------------------------------------------------------------------------------------------*/
/* BUTTON
/*--------------------------------------------------------------------------------------------------------------------*/
.cta {
    outline: none;
    display: flex;
    justify-content: center;
    width: 100%;
    height: 74px;
    line-height: 74px;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    @include disable-text-selection();
    cursor: pointer;
    border: none;
    border-radius: 4px;
    background: #FFCD00;
    transition: all 0.3s ease-out;
    color: #1C1C1C;
    font-family: "Source Sans 3", sans-serif;
    font-size: 24px;
    font-weight: 700;

    &:hover,
    &:focus {
        text-decoration: none;
    }

    &:hover {
        background: #deb200;
    }
}
