/*  */
.mustard-btn a {
    background-color: var(--mustard-color);
    padding: 0;
    min-width: 175px;
    height: 58px;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    line-height: 58px;
    width: 100%;
    text-decoration: none;
    color: var(--secondary--color);
    border-radius: 100px;
    box-shadow: 0 9px 13px rgb(251 156 35 / 26%);
    font-family: "Noto Sans", sans-serif;
}

.mustard-btn a:hover {
    background-color: var(--primary--color);
    color: var(--secondary--color);
    transition: ease-in-out 0.6s;
    box-shadow: 0 9px 13px rgb(58 58 94 / 26%);
}

.white-btn a {
    background-color: var(--secondary--color);
    padding: 0;
    min-width: 175px;
    height: 58px;
    text-align: center;
    font-size: 18px;
    border-radius: 100px;
    line-height: 58px;
    font-weight: 700;
    text-decoration: none;
    color: var(--primary--color);
    box-shadow: 0 9px 13px rgb(0 0 0 / 2%);
    font-family: "Noto Sans", sans-serif;
}

.white-btn a:hover {
    background-color: var(--primary--color);
    color: var(--secondary--color);
    transition: ease-in-out 0.6s;
    box-shadow: 0 9px 13px rgb(58 58 94 / 26%);
}

h1 {
    font-size: 60px;
    font-weight: 700;
    line-height: 70px;
    color: var(--primary--color);
}

h2 {
    font-size: 46px;
    font-weight: 700;
    line-height: 56px;
    color: var(--primary--color);
}


h3 {
    font-size: 30px;
    font-weight: 700;
    line-height: 35px;
    color: var(--primary--color);
}

h4 {
    font-size: 22px;
    line-height: 25px;
    font-weight: 700;
}

h5 {
    font-size: 20px;
    line-height: 20px;
}

.font-size-18 {
    font-size: 18px;
    line-height: 31px;
}

.spacer {
    float: left;
    width: 100%;
    height: 118px;
}

.text-size-16 {
    font-size: 16px;
}

.border-top {
    border-top: 1px solid #e8e8e8;
}

.border-bottom {
    border-bottom: 1px solid #e8e8e8;
}

.padding-top {
    padding-top: 118px;
}

.padding-bottom {
    padding-bottom: 118px;
}

.mustard-text {
    color: var(--mustard-color);
}

.special-text {
    color: var(--mustard-color);
    font-size: 20px;
    line-height: 20px;
    margin-bottom: 16px;
    letter-spacing: 2.5px;
    font-weight: 500;
}

.light-grey-bg {
    background-color: var(--light-grey-bg);
}

.mustard-btn button {
    background-color: var(--mustard-color);
    padding: 0;
    min-width: 175px;
    height: 58px;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    line-height: 58px;
    width: 100%;
    text-decoration: none;
    color: var(--secondary--color);
    border-radius: 100px;
    box-shadow: 0 9px 13px rgb(251 156 35 / 26%);
    font-family: "Noto Sans", sans-serif;
    border: none;
    cursor: pointer;
}

.mustard-btn button:hover {
    background-color: var(--primary--color);
    color: var(--secondary--color);
    transition: ease-in-out 0.6s;
    box-shadow: 0 9px 13px rgb(58 58 94 / 26%);
}

.smol-btn.mustard-btn a {
    min-width: 140px;
    height: 50px;
    line-height: 50px;
    font-size: 16px;
}

.min-height-auto {
    min-height: auto !important;
}