/* Main Template and Homepage */
html, body {
    height: 100%;
    width: 100%;
    margin: 0;
    background-color:#A6ACBF;
}

.container-fluid {
    min-height: 100%;
    min-width: 100%;
    color: #fff;
    font-size: 16px;
    position: relative;
    padding-bottom: 88px;
}

a, a:hover {
    color: #0D42F0;
}

h1{
    color: #02113B;
    font-weight: bold;
}


h4 {
    color: #F8F9FC;
    text-align: left;
    margin-top: 12px;
    margin-bottom: 17px;
}

header {
    background-color: #A6ACBF;
    height: 150px;
    font-family: Futura;
}

header h1 {
    margin: 16px 52px auto 35px;
    white-space: nowrap;
}

h1 a, h1 a:hover {
    color: #02113B;
    text-decoration: none;
}

header nav {
    position: absolute;
    right: 40px;
    top: 59px;
}

header nav li {
    display: inline-block;
    margin: 0 15px;
    white-space: nowrap;
    outline: none !important;
}

header nav .btn {
    background-color: #A6ACBF;
    color: #fff;
    font-size: 1.25em;
    padding: 7px 17px;
}

header nav .btn:hover {
    background-color: #02113B;
    color: #fff;
}

.row {
    padding: 30px 50px 10px 40px;
    background-color: #A6ACBF;
    color: #02113B
}

.main-content {
    padding: 100px 90px 90px 90px;
    margin-right: 200px;
    margin-left: 200px;
}

.model-content {
    margin: 16px 52px auto 35px;
}


.justify-content-around {
    justify-content: space-around;
}

.imgcol {
    text-align: center;
}

footer {
    background-color: #A6ACBF;
    color: #fff;
    font-size: 0.8em;
    bottom: 0;
    height: 88px;
    min-width: 100%;
    position: absolute;
}


/* Media Queries for Responsive CSS */
@media (max-width:1180px) {
    header nav li {
        margin: 0 5px;
    }
}

@media (max-width:1095px) {  
    header nav {
        display: flex;
        justify-content: flex-start;
        position: absolute;
        height: 30px;
        left: 70px;
        top: 108px;
    }  

    header nav ul {
        background-color: #A6ACBF;
        border-radius: 5px;
        display: flex;
        margin: 0;
        padding: 0 15px;
    }
    
    header nav li {
        margin: 0;
        padding: 1px 15px;
        text-align: center;
    }

    header nav li .btn {
        font-size: 1.2em;
        padding: 0;
    }

    header nav .btn:hover {
        background-color: transparent;
        text-decoration: underline;
    }
}

@media (max-width:625px) {
    header nav {
        height: 25px;
    }

    header nav ul, header nav li {
        padding: 0 7px;
    }

    header nav li .btn {
        font-size: 1.1em;
    }
}