@import url(https://fonts.googleapis.com/css2?family=Crimson+Pro:ital,wght@0,200..900;1,200..900&family=Outfit:wght@100..900&display=swap);

@font-face {
    font-family: Gotham Bold;
    src: url(../fonts/Gotham-Bold.otf) format("opentype")
}

/* =========================
   BASE / RESET
========================= */
*,
:after,
:before {
    box-sizing: border-box
}

html {
    display: block;
    font-family: sans-serif;
    line-height: 1.15;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}

body {
    margin: 0;
    font-family: Outfit, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;
    background-color: #fffbf1;
    display: flex;
    flex-direction: column;
    min-height: 100vh
}

header,
footer,
main,
nav,
aside,
section {
    display: block
}

.site {
    flex: 1 auto;
    border-color: #192d55 !important
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2;
    font-family: Crimson Pro, serif !important;
    color: #333
}

h1 {
    font-size: 2.5rem
}

h2 {
    font-size: 2rem
}

p {
    margin-top: 0;
    margin-bottom: 1rem
}

a {
    color: #333;
    background-color: transparent;
    text-decoration: none
}

a:hover {
    color: #262626;
    text-decoration: none
}

img {
    border-style: none;
    vertical-align: middle
}

button {
    border-radius: 0;
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    overflow: visible;
    text-transform: none
}

button:focus {
    outline: 1px dotted;
    outline: 5px auto -webkit-focus-ring-color
}

button:not(:disabled) {
    cursor: pointer
}

[type=button],
button {
    -webkit-appearance: button
}

[type=button]::-moz-focus-inner,
button::-moz-focus-inner {
    padding: 0;
    border-style: none
}

ol,
ul {
    margin-top: 0;
    margin-bottom: 1rem;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    list-style-type: none
}

/* =========================
   BOOTSTRAP LAYOUT USED
========================= */
.container {
    width: 100%;
    max-width: 1300px;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto
}

.container .row {
    margin: 0
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px
}

.col,
.col-2,
.col-6,
.col-10,
.col-12,
.col-auto,
.col-md-6,
.col-md-12,
.col-sm-12 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px
}

.col {
    flex-basis: 0;
    flex-grow: 1;
    min-width: 0;
    max-width: 100%
}

.col-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%
}

.col-6 {
    flex: 0 0 50%;
    max-width: 50%
}

.col-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%
}

.col-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%
}

@media (min-width:576px) {
    .col-sm-12 {
        flex: 0 0 100%;
        max-width: 100%
    }
}

@media (min-width:768px) {
    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%
    }

    .col-md-12 {
        flex: 0 0 100%;
        max-width: 100%
    }
}

/* =========================
   UTILITIES USED
========================= */
.img-fluid {
    max-width: 100%;
    height: auto
}

.d-block {
    display: block !important
}

.d-flex {
    display: flex !important
}

.flex-column {
    flex-direction: column !important
}

.align-items-center {
    align-items: center !important
}

.align-items-end {
    align-items: flex-end !important
}

.justify-content-center {
    justify-content: center !important
}

.text-right {
    text-align: right !important
}

.text-end {
    text-align: right !important
}

.text-uppercase {
    text-transform: uppercase !important
}

.text-small {
    font-size: 16px
}

.mt-2 {
    margin-top: .5rem !important
}

.mt-3 {
    margin-top: 1rem !important
}

.mt-5 {
    margin-top: 3rem !important
}

.mx-2 {
    margin-right: .5rem !important;
    margin-left: .5rem !important
}

.mr-5 {
    margin-right: 3rem !important
}

.px-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important
}

.py-2 {
    padding-top: .5rem !important;
    padding-bottom: .5rem !important
}

/* =========================
   BUTTONS USED
========================= */
.btn {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    transition: color .15s ease-in-out,
        background-color .15s ease-in-out,
        border-color .15s ease-in-out,
        box-shadow .15s ease-in-out
}

.btn:hover {
    color: #212529;
    text-decoration: none
}

.btn.focus,
.btn:focus {
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25)
}

.btn-primary {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff
}

.btn-primary:focus,
.btn-primary:hover {
    color: #fff;
    background-color: #0069d9;
    border-color: #0062cc
}

.btn-success {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745
}

.btn-success:focus,
.btn-success:hover {
    color: #fff;
    background-color: #218838;
    border-color: #1e7e34
}

.btn-secondary {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d
}

.btn-secondary:focus,
.btn-secondary:hover {
    color: #fff;
    background-color: #5a6268;
    border-color: #545b62
}

.btn-lg {
    padding: .5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: .3rem
}

.btn-white-cta {
    background-color: #fffbf1;
    border-color: #fffbf1;
    font-family: Gotham Bold, Arial, sans-serif;
    color: #325e0f !important;
    border-radius: 31px
}

.btn-white-cta:active,
.btn-white-cta:focus,
.btn-white-cta:hover {
    background-color: #fffaec !important;
    border-color: #fffbf1
}

/* =========================
   COLLAPSE / MOBILE MENU
========================= */
.collapse:not(.show) {
    display: none
}

@media (max-width:991px) {
    .collapse:not(.show) {
        display: block
    }

    #navbarResponsive {
        height: 0;
        overflow: hidden;
        opacity: 0;
        transform: translateY(-10px);
        transition:
            height 600ms cubic-bezier(0.22, 1, 0.36, 1),
            opacity 450ms ease,
            transform 450ms ease
    }

    #navbarResponsive.show {
        opacity: 1;
        transform: translateY(0)
    }
}

/* =========================
   NAVBAR BOOTSTRAP USED
========================= */
.navbar {
    position: relative;
    padding: .5rem 1rem
}

.navbar,
.navbar .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between
}

.navbar-brand {
    display: inline-block;
    padding-top: .3125rem;
    padding-bottom: .3125rem;
    margin-right: 1rem;
    font-size: 1.25rem;
    line-height: inherit;
    white-space: nowrap
}

.navbar-brand:focus,
.navbar-brand:hover {
    text-decoration: none
}

.navbar-nav {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none
}

.navbar-nav .nav-link {
    padding-right: 0;
    padding-left: 0
}

.nav-link {
    display: block;
    padding: .5rem 1rem
}

.nav-link:focus,
.nav-link:hover {
    text-decoration: none
}

.navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center
}

.navbar-toggler {
    padding: .25rem .75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: .25rem;
    margin-top: 28px
}

.navbar-toggler:focus,
.navbar-toggler:hover {
    text-decoration: none
}

.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    content: "";
    background: no-repeat 50%;
    background-size: 100% 100%;
    font-size: 26px;
    color: #325e0f
}

@media (min-width:992px) {
    .navbar-expand-lg {
        flex-flow: row nowrap;
        justify-content: flex-start
    }

    .navbar-expand-lg .navbar-nav {
        flex-direction: row
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: .5rem;
        padding-left: .5rem
    }

    .navbar-expand-lg>.container {
        flex-wrap: nowrap
    }

    .navbar-expand-lg .navbar-collapse {
        display: flex !important;
        flex-basis: auto
    }

    .navbar-expand-lg .navbar-toggler {
        display: none
    }

    #navbarResponsive {
        height: auto !important;
        overflow: visible !important;
        opacity: 1 !important;
        transform: none !important;
        display: flex !important
    }
}

.ml-auto {
    margin-left: auto !important
}

/* =========================
   HEADER EXACT RULES
========================= */
.site-header {
    position: relative;
    z-index: 10
}

.site-header:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: 50%;
    z-index: -2
}

.site-header .hp-phone-button {
    background-color: #fffbf1 !important;
    border: none;
    padding: 10px 30px !important;
    color: #325e0f;
    font-size: 1.24rem
}

.site-header .first-nav-button {
    color: #325e0f;
    background-color: #fffbf1;
    border: thin solid #325e0f;
    padding: 10px;
    border-radius: 31px
}

.site-header .last-nav-button {
    color: #fff;
    background-color: #325e0f;
    border: none;
    padding: 10px;
    border-radius: 31px
}

.mobile-show {
    display: none
}

@media (max-width:767px) {
    .mobile-hide {
        display: none
    }
}

.main-nav {
    font-size: 20px;
    padding: 20px 0
}

@media (max-width:767.98px) {
    .main-nav .mobile-show {
        display: list-item
    }
}

.main-nav nav {
    padding: 0
}

.main-nav ul li {
    position: relative;
    padding: 0 0 0 30px
}

.main-nav ul li.active:before {
    content: "\F101";
    font-family: FontAwesome;
    font-weight: 900;
    position: absolute;
    left: 18px;
    top: 8px
}

.main-nav ul li a {
    display: inline-block;
    font-family: Gotham Bold, Arial, sans-serif;
    color: #325e0f;
    display: flex;
    justify-content: center;
    align-items: center
}

.main-nav ul li a:active,
.main-nav ul li a:focus,
.main-nav ul li a:hover {
    color: #498a16
}

@media (max-width:767.98px) {
    .navbar-brand img {
        max-width: 230px
    }
}

#navActionBtnWpr {
    text-align: right
}

@media (max-width:767.98px) {
    #navActionBtnWpr {
        text-align: center;
        padding-top: 2rem
    }
}

/* keep requested auxNav styles */
.auxNav {
    min-height: 42px;
    padding: 25px 0;
    display: flex;
    align-items: center;
    border: 1px solid #e1e1e1;
    background: #f4f4f4
}

@media (max-width:767.98px) {
    .auxNav {
        display: none
    }
}

.auxNav ul {
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 0
}

.auxNav ul svg {
    height: 28px !important;
    width: auto !important;
    margin-right: 6px
}

.auxNav ul li>a:not(.btn) {
    font-family: Gotham Bold, Arial, sans-serif;
    font-size: 20px;
    color: #325e0f;
    display: flex;
    justify-content: center;
    align-items: center
}

.auxNav ul li>a:not(.btn):active,
.auxNav ul li>a:not(.btn):focus,
.auxNav ul li>a:not(.btn):hover {
    color: #525252
}

.auxNav .nav-left {
    display: flex;
    align-items: center
}

.auxNav .nav-left li {
    display: inline-block;
    padding: 0 12px;
    margin: 0
}

/* =========================
   FOOTER EXACT RULES
========================= */
footer,
section {
    padding: 65px 0
}

.site-footer {
    padding-top: 0;
    background-color: #325e0f;
    color: #fff
}

.site-footer .footer-line {
    display: block;
    width: calc(100% - 35px);
    margin: 15px auto 0;
    border-bottom: 1px solid hsla(0, 0%, 100%, .2);
    padding-top: 25px
}

.site-footer a,
.site-footer a:hover {
    color: #fff
}

.site-footer a.underline {
    text-decoration: underline
}

.site-footer .marketing .footer-disclaimer {
    padding-top: 20px !important
}

.site-footer .apply-cta {
    background-color: #50901c;
    display: flex;
    padding: 55px 0;
    margin-bottom: 70px
}

.site-footer .apply-cta p {
    font-size: 18px;
        text-align: justify;
}

.site-footer .apply-cta .btn {
    padding: 15px 70px
}

.site-footer .apply-cta a,
.site-footer .apply-cta h2 {
    display: inline-block;
    margin: 0
}

.site-footer .apply-cta h2 {
    color: #fff;
    font-size: 56px;
    padding-top: 25px
}

@media (max-width:991.98px) {
    .site-footer .apply-cta h2 {
        text-align: center;
        margin: 0 auto 50px;
        width: 100%
    }
}

.site-footer .apply-cta .col-9 {
    display: flex;
    align-items: center
}

.site-footer .footer-logo {
    width: 100%;
    border-radius: 4px
}

.site-footer .footer-logo img {
    margin-bottom: .4rem
}

.site-footer .footer-left {
    padding-bottom: 2rem
}

@media (min-width:768px) {
    .site-footer .footer-left {
        padding-right: 60px
    }
}

.site-footer .footer-left .social-icons {
    text-align: center;
    padding: 20px 0
}

.site-footer .footer-left p {
    text-align: center
}

.site-footer .footer-mid {
    text-align: center;
    padding-left: 0 !important
}

.site-footer .footer-mid li {
    margin-bottom: .8rem
}

.site-footer .footer-right {
    padding-bottom: 2rem;
    text-align: center
}

@media (min-width:768px) {
    .site-footer .footer-right {
        text-align: left
    }
}

.site-footer .footer-disclaimer {
    padding-top: 20px
}

.site-footer .footer-mid ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0
}

.site-footer .footer-mid ul li {
    margin: 0 10px
}

.site-footer .footer-mid ul li a {
    text-decoration: none;
    padding: 4px 6px;
    display: inline-block
}

.site-footer .col-6,
.site-footer .col-auto {
    padding: 0 !important
}

.site-footer .bottom-text-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1px
}

.footer-address p,
.footer-copy p {
    margin-bottom: 0
}

@media (max-width:767px) {
    .site-footer .apply-cta h2 {
        font-size: 50px
    }

    .site-footer .apply-cta .cta-button-container {
        align-items: center !important;
        margin-top: 5px !important
    }
}

/* =========================
   MODAL IN YOUR HTML
========================= */
.fade {
    transition: opacity .15s linear
}

.fade:not(.show) {
    opacity: 0
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    display: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: .5rem;
    pointer-events: none
}

.modal-dialog-centered {
    display: flex;
    align-items: center;
    min-height: calc(100% - 1rem)
}

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: .3rem;
    outline: 0
}

.modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid #dee2e6;
    border-top-left-radius: calc(.3rem - 1px);
    border-top-right-radius: calc(.3rem - 1px);
    color: #fff
}

.modal-title {
    margin-bottom: 0;
    line-height: 1.5
}

.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 1rem;
    background-color: #fff
}

.modal-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    padding: .75rem;
    border-top: 1px solid #dee2e6;
    border-bottom-right-radius: calc(.3rem - 1px);
    border-bottom-left-radius: calc(.3rem - 1px)
}

.modal-footer>* {
    margin: .25rem
}

@media (min-width:576px) {
    .modal-dialog {
        max-width: 500px;
        margin: 1.75rem auto
    }

    .modal-dialog-centered {
        min-height: calc(100% - 3.5rem)
    }
}