:root {
    --brand-orange: #f05b28;
    --brand-purple: #554EA2;
}

body {
    background-color: #fff;
}

main {
    min-height: 650px;
}

h1, h2, h3, h4, h5 {
    color: #333;
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.8rem;
}

h3 {
    font-size: 1.6rem;
}

h4 {
    font-size: 1.4rem;
}

h5 {
    font-size: 1.2rem;
}

h6 {
    font-size: 1rem;
}

header {
}

footer {
    background: url(/images/layout/footer-pattern.png);
    color: #fff;
    min-height: 100px;
    width: 100%;
}

    footer a {
        color: #fff;
    }

    footer h3 {
        font-weight: 700;
    }

    footer > .sub-footer {
        background-color: #000;
        width: 100%;
        font-size: 0.8rem;
    }

.navbar-nav {
    font-size: 1.5rem;
    line-height: 80px;
}

    .navbar-nav .nav-link:hover {
        color: #f05b28 !important;
        border-bottom: 3px solid #f05b28;
        transition: all 0.2s ease-in-out;
    }

.pageHeader {
    background-color: #846ab9;
    height: 229px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

    .pageHeader:before {
        content: "";
        left: 0px;
        display: block;
        position: absolute;
        background-color: #fff;
        height: 100px;
        width: 2950px;
        bottom: -85px;
        transition: all 1.5s ease-in-out;
        transform: translateX(0px) skewY(3deg);
    }

    .pageHeader:after {
        content: "";
        right: 0%;
        display: block;
        position: absolute;
        background-color: #fff;
        height: 100px;
        width: 2950px;
        bottom: -85px;
        transition: all 1.5s ease-in-out;
        transform: translateX(0px) skewY(-3deg);
    }

    .pageHeader h1 {
        text-align: center;
        color: var(--brand-orange);
        background-color: #554ea2c7;
        max-width: 291px;
        margin: auto;
        padding-bottom: 3px;
        border-radius: 11px;
    }

    .small-container{
        max-width: 950px;
    }

.static-terms-box {
    border: 1px solid #bbbbbb;
    background-color: #f9f9f9;
}

.text-white{
    color: #fff;
}

.text-white-hover:hover {
    color: #fff;
}

.text-orange {
    color: var(--brand-orange);
}

.text-purple{
    color: var(--brand-purple);
}

.background-orange{
    background-color: var(--brand-orange);
}

.background-orange-hover:hover {
    background-color: var(--brand-orange);
}

@media screen and (min-width: 992px) {
    .navbar-nav .nav-link.active {
        color: #f05b28 !important;
        border-bottom: 3px solid #f05b28;
    }
}

@media screen and (max-width: 991px) {
    .navbar-nav {
        font-size: 1.1rem;
        line-height: normal;
    }
}

@media screen and (max-width: 768px) {
    .footer-block {
        text-align: center;
        margin-bottom: 30px;
    }

        .footer-block h6 {
            font-size: 1.1rem;
        }
}
