html {
    background: #00254D;
    display: flex;
    flex-direction: column;
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    flex: 1;
    background: #00254D;

}

nav, footer {
    flex: 0;
}

main {
    flex: 1;
    padding-top: 65px;
}

nav {
    background: #fff;
    border-bottom: 1px solid #DFE3E6;
    padding: 12px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

nav img {
    height: 40px;
}

main .disclosure-row {
    margin-top: 48px;
    color: #889096;
    margin-bottom: 24px;
    padding: 24px;
    background: #fff;
    border-radius: 6px;
    border: 2px solid #0074D9;
    position: relative;
    z-index: 10;
}

.disclosure-text {
    padding-bottom: 24px;
    text-align: center;
}

.background-img {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 1;
    margin-left: -30px;
    margin-bottom: 30px
}

.background-img img {
    transform: rotate(90deg);
}

footer {
    background: #F1F3F5;
    padding: 16px 0;
    font-size: 12px;
    color: #889096;
    margin-top: 48px;
    position: relative;
    z-index: 5;
}

footer p {
    margin-bottom: 0;
}

footer .row + .row {
    margin-top: 4px;
}