﻿
body #header {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 115px;
}

    body #header #logo img {
        padding-top:10px;
    }

.navbar-default.navbar-dark {
    background-color: #343399 !important;
    border-bottom: none;
}

.wrapper {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    font-weight: bold;
    text-align: center;
    margin: 0px auto;
}

    .wrapper > * {
        padding: 10px;
        flex: 1 100%;
    }

.main {
    text-align: left;
}

@media all and (min-width: 600px) {
    .aside {
        flex: 1 auto;
    }
}

@media all and (min-width: 800px) {
    .main {
        flex: 3 0px;
    }

    .left {
        order: 1;
    }

    .main {
        order: 2;
    }

    .right {
        order: 3;
    }
}

.title {
    font-size: 16px;
    font-weight: 600;
    color: black;
}


html {
    box-sizing: border-box
}

.dvImg {
    display: flex;
    justify-content: center;
}

.renderBody {
    width: 76.25%
}

.renderFooter {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    width: 75%;
    margin-top: 50px;
    background-color: #343399;
    border-radius: 25px;
}

.flex-container {
    display: flex;
}

.flex-child {
    flex: 1;
}

    .flex-child:first-child {
        margin-right: 20px;
    }

.footerLeft {
    float: left;
    color: white;
    font-size: 12px;
    text-align: left;
    margin-top: 25px;
    margin-left: 35px;
    font-family: Arial;
}

.footerRightLogo {
    float: right;
    margin-top: 25px;
    margin-right: 35px;
}

.centered {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mainNav {
    width: 75%;
    margin-left: 12.5%;
    font-size: 14px;
    background-color: #343399;
}

.menu-area a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 55px;
    color: white;
    text-decoration: none;
    background-color: #343399;
}

.menu-area ul {
    list-style: none;
    display: flex;
    z-index: 9999
}

.menu-area li {
    position: relative;
    width: 100%;
    text-align: center;
    z-index: 100;
}

    .menu-area li:hover .dropdown-1 > li {
        display: block;
        top: 0;
    }

.dropdown-1 li {
    display: none;
    position: relative;
    z-index: 9999
}

.dropdown-1 {
    position: absolute;
    display: flex;
    flex-direction: column;
    width: 100%;
    z-index: 9999
}

    .dropdown-1 li:hover .dropdown-2 li {
        display: block;
    }
