body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    font-family: 'Fira Sans', Arial, Helvetica, sans-serif;
    font-size: 16px;
    background-color: #0c234b;
    line-height: 1.5;
}


/* Header & Nav Bar */

header {
    width: 100%;
    background-color: #fff;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.06);
}


nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0rem 1rem;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.06);
}


.nav-logo {
    width: 200px;
}


.nav-text {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 20px;
}

.user-name {
    color: #0C234B;
    font-size: 1rem;
    margin-right: 10px;
}

.nav-icon {
    color: #0C234B;
    font-size: 1.2rem;
    margin-left: 20px;
    display: flex;
    align-items: center;
    transition: color 0.25s ease-in-out;
}

.nav-icon:hover {
    color: #ab0520;/
}


header .nav-text {
    color: #0C234B;
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.5;
    padding-right: 20px;
}



@media only screen and (max-width: 425px) {
    nav {
        display: block;
        text-align: center;
    }

}

@media only screen and (max-width: 600px) {

    .nav-icon {
        margin: 10px 0;
    }

    .nav-text {
        flex-direction: column;
        text-align: center;
    }

}



/* Typography */

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 1.75rem;
    line-height: 1.1428571429;
    font-weight: 500;
    color: #0c234b;
    text-align: center;
    margin-top: 24px;
}

.display1 {
    font-size: 4rem;
    line-height: 1.2;
}

.lead {
    font-size: 1.25rem;
    line-height: 1.4;
}

.caption {
    font-size: 1.5rem;
    color: #ffac23;
    font-weight: 600;
}


@media only screen and (max-width: 600px) {

    h1.display1 {
        font-size: 2rem;
        line-height: 1.2;
    }

}



/* Buttons */

.btn-primary {
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
    padding: 8px 39px;
    color: #0c234b;
    background-color: #ef9600;
    border-radius: 20px;
    transition: background-color .25s ease, color .25s ease;
    font-weight: 500;
    box-sizing: border-box;
    border: 1px solid transparent;
    cursor: pointer;
    font-family: inherit;
    margin-top: 40px;
}

.btn-primary:hover {
    background-color: #ffac23;
}

.btn-primary:disabled {
    opacity: .5;
    pointer-events: none;
}

.btn-primary:active,
.btn-primary:focus {
    background-color: #ffac23;
    border: 1px solid #975b00;
}



/* Progress Bar */

.progress-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    list-style-type: none;
    margin-top: 2em;
    overflow: hidden;
}

.progress-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-weight: 500;
    font-size: .85rem;
    line-height: 1.5;
    text-align: center;
    color: #0c234b;
    text-decoration: none;
    transition: color .25s ease-in-out;
    position: relative;
    padding-bottom: 30px;

}

.progress-bar a.active,
.progress-bar a:hover {
    color: #ab0520;
}

.progress-step::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #ab0520;
    opacity: 0;
    transition: opacity 0.25s ease-in-out;
}

.progress-step:hover::after,
.progress-step.active::after {
    opacity: 1;
}



.fa-separator {
    display: inline-block;
    margin: 0 5px;

}

.fa-separator::before {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    content: '\f061';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #ab0520;
    padding: 0 8px;
    font-size: 0.85rem;
}


@media only screen and (max-width: 600px) {

    .progress-bar {
        flex-direction: column;
        padding: 5px;
    }

    .progress-bar a {
        padding: 10px 5px;
        font-size: .75rem;
    }

    .progress-bar .progress-step {
        display: none;
    }

    .progress-bar .progress-step.active,
    .progress-bar.expanded .progress-step {
        display: block;
    }

    .progress-bar.expanded .progress-step {
        display: block;
    }
}




/* Main Page Content & Forms */


main {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 0 auto;
    width: 100%;
    text-align: left;
}



.formsection-intro {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    color: #fff;
}

@media only screen and (max-width: 600px) {

    .formsection-intro {
        padding: 10px;
        flex-direction: column;
        text-align: center;
    }
}



/* Footer */


footer {
    background-color: #F1F1F0;
    width: 100%;
    margin-top: auto;
}

.footer-content {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.footer-copyright {
    color: #53565A;
    font-size: .85rem;
    font-weight: 500;
    line-height: 1.5;
}


.footer-links {
    display: flex;
}


footer a {
    padding-left: 24px;
    padding-right: 24px;
    max-width: unset;
    width: auto;
    font-weight: 500;
    font-size: .85rem;
    line-height: 1.5;
    text-align: center;
    color: #0c234b;
    align-items: center;
    text-transform: unset;
    height: 100%;
    padding: 0 8px;
    border-bottom: 0;
    text-decoration: none;
    transition: color .25s ease-in-out;
}

footer a:hover {
    color: #ab0520;
    text-decoration: underline 2px #ab0520;
    text-underline-offset: 8px;
}


@media only screen and (max-width: 600px) {


    footer .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        display: block
    }

    .footer-content {
        display: block;
    }

}