.new-homepage .button {
    appearance: none;
        -moz-appearance: none;
        -webkit-appearance: none;
    border-radius: 40px;
    display: inline-flex;
    height: 60px;
    justify-content: center;
    align-items: center;
    padding: 11px 32px;
    flex-shrink: 0;
    font-family: "Proxima Nova Bold";
    font-style: normal;
    font-weight: 700;
    line-height: 35px;
    
    transition: .3s ease-in-out;
}

.new-homepage .button.large {
    font-size: 24px;
}

.new-homepage .button.large {
    font-size: 18px;
}

.new-homepage .button.primary {
    background: #fdbb30;
    color: #fff;
}

.new-homepage .button.primary:hover {
    background: #b18322;
}

.new-homepage .button.primary:active {
    background: #fed683;
}

.new-homepage .button.secondary {
    background: #0073d1;
    color: #fff;
}

.new-homepage .button.secondary:hover {
    background: #005192;
}

.new-homepage .button.secondary:active {
    background: #66abe3;
}

.new-homepage .button.tertiary {
    background: #fff;
    border: 2px solid #0073d1;
    color: #0073d1;
}

.new-homepage .button.tertiary:hover {
    background: #0073d1;
    color: #fff;
}

.new-homepage .button.tertiary:active {
    background: #66abe3;
    color: #fff;
}

.new-homepage .button.quaternary {
    background: none;
    border: 2px solid #fff;
    color: #fff;
}

.new-homepage .button.quaternary:hover {
    background: #0073d1;
}

.new-homepage .button.quaternary:active {
    background: #66abe3;
}