.button {
    display: block;
    font-family: 'Gotham A' !important;
    font-size: 14px !important;
    font-style: normal;
    font-weight: 325 !important;
    line-height: 117.647%;
    border-radius: 64px;
    min-height: 48px;
    padding: 15px 25px !important;
    margin: 0px !important;
    margin-right: 16px !important;
    transition: background-color 0.1s ease-in-out;
    width: fit-content;
}

.button.orange {
    background-color: #cf4a27 !important;
    color: #fff;
}

.button.orange:hover {
    background-color: #c97829 !important;
    color: #fff;
}

.button.blue {
    background-color: #006aa8 !important;
    color: #fff;
}

.button.blue:hover {
    background-color: #085380 !important;
    color: #fff;
}

.button.border-light {
    background-color: transparent !important;
    border: 1px solid #0078B3 !important;
    color: #0078B3 !important;
    height: 48px;
    padding: 13px 25px !important;
    text-transform: capitalize;
    font-size: 14px;
    font-weight: 600;
}

.button.border-light:hover {
    color: #0078B3 !important;
    background-color: #e7f3fdff !important;
    text-decoration: none;
}

@media (max-width: 992px) {
    .button {
        color: #FFF;
        text-align: center;
        font-family: 'Gotham A' !important;
        font-size: 14px !important;
        font-style: normal !important;
        font-weight: 350 !important;
        line-height: 117.647%;
        width: 100%;
        max-width: 100% !important;
    }

 }