﻿/*Page Layout CSS*/
.page {
    display: -ms-grid;
    display: grid;
    /*grid-template-rows: auto 1fr minmax(1rem, auto) auto;*/
    -ms-grid-rows: 4rem 1fr auto;
    grid-template-rows: 4rem 1fr auto;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    /*overflow: hidden;*/
    /*overflow: auto;*/
    height: 100vh;
    max-height: 100vh;
    background-color: #fff;
}

    .page > *:nth-child(1) {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
    }

    .page > *:nth-child(2) {
        -ms-grid-row: 2;
        -ms-grid-column: 1;
    }

    .page > *:nth-child(3) {
        -ms-grid-row: 3;
        -ms-grid-column: 1;
    }






.header {
    -ms-grid-row: 1;
    grid-row: 1;
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: 1fr;
    grid-template-rows: 1fr;
    -ms-grid-columns: auto 1fr;
    grid-template-columns: auto 1fr;
    position: fixed;
    width: 100%;
    height: 4rem;
    justify-items: right;
    padding: 1rem 2rem 1rem 2rem;
    /*border-bottom: 1px solid #ccc;*/
    /*background-color: #fff;*/
    /*background: linear-gradient(90deg, #021048, #1e38a3);*/
    background: linear-gradient(90deg, #02182C, #055CAD);
    z-index: 900;
}






    .header > *:nth-child(1) {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
    }






    .header > *:nth-child(2) {
        -ms-grid-row: 1;
        -ms-grid-column: 2;
    }

.logo {
    -ms-flex-item-align: start;
    -ms-grid-row-align: start;
    align-self: start;
}

.content {
    display: grid;
    -ms-grid-row: 2;
    grid-row: 2;
    width: 100%;
    height: 99%;
    /*overflow-y: hidden;*/
    z-index: 500;
}

    /*.content:hover {
        overflow-y: scroll;

    }*/

.banner {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: 1fr;
    grid-template-rows: 1fr;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    /* position: fixed;
    width: 100%;
    height: 10rem;*/
    /*justify-items: right;*/
    padding: 2rem 1rem 2rem 1rem;
    border-bottom: 1px solid #ccc;
    /*background-color: #ccc;*/
    /*background: linear-gradient(90deg, #021048, #1e38a3);*/
    background: linear-gradient(90deg, #02182C, #055CAD);
    z-index: 500;
    color: var(--lighterGray);
    text-align: center;
    justify-items: center;
    padding-left: 3rem;
    padding-right: 3rem;
}

.banner img {
    width: 60vw;
    max-width: 400px;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.home-content {
    /*padding: 3rem;*/
    background-color: #fff;
}



.footer {
    -ms-grid-row: 3;
    grid-row: 3;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto 1fr;
    grid-template-columns: auto 1fr;
    /*grid-template-columns: 1fr;*/
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    padding: .25rem;
    border-top: 1px solid #ccc;
    z-index: 800;
    font-size: .8rem;
    background-color: var(--lightestGray);
    /*margin-top: auto;*/
    /*position: fixed;*/
  
    /*text-align: center*/
}

    .footer > *:nth-child(1) {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
    }

    .footer > *:nth-child(2) {
        -ms-grid-row: 1;
        -ms-grid-column: 2;
    }

.footer-links {
    -ms-grid-column-align: right;
    justify-self: right;
    text-align: right;
}

    .footer-links a {
        padding-right: .5rem;
    }
