/** GLOBAL STYLES **/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #e3e4e6;
    font-family: Georgia, 'Times New Roman', Times, serif;
}
.content{
    max-width: 1200px;
    flex-grow: 1;
    width: 100%;
    margin: 0 auto;
}

/** HEADER STYLES **/
header{
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}
header a{
    color: white;
    text-decoration: none;
}

.header-logo{
    order: 0;
}
.nav-left{
    order: 1;
}
.nav-right{
    order: 2;
}

.contact-info {
    background-color: #000000;
    color: #ffffff;
    font-size: 14px;
    padding: 5px;
    text-align: center;
    width: 100%;
}

nav {
    background-image: linear-gradient(to bottom, #0070c0, #00b0f0, #0070c0);
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding: 8px;
}
nav img {
    width: 110px;
    margin-right: 8px;
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
    flex-grow: 1;
}

nav li {
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    margin-right: 16px;
    margin-bottom: 8px;
    flex-grow: 1;
    text-align: center;
    border-radius: 5px;
    color: #ffffff;
    border: 2px solid #ffffff;
    text-decoration: none;
}
nav li a {
    display: block;
    width: 100%;
    padding: 4px;
}
nav li:hover {
    background-color: #0070c0;
    border: 2px solid #cecece;
}


@media screen and (min-width: 655px){
    .nav-left{
        order: 0;
    }
    .header-logo{
        order: 1;
    }
    .nav-right{
        order: 2;
    }
}


/** FOOTER STYLES **/
footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background-color: #d5d6d9;
    border-top: 2px solid #a2a3a5;
    margin-top: 20px;
}

footer .footer-address-info{
    padding: 8px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
}
footer .footer-logo{
    padding: 8px;
    margin: 0 auto;
}
footer img {
    width: 160px;
}
footer .ecs-reg{
    padding: 8px;
    height: 95px;
    margin: auto;
}

footer .socials img{
    height: 25px;
    width: 25px;
    margin: 10px 4px;
}

footer a{
    color: black;
    text-decoration: none;
}

/** Burger Menu **/
.hamburger{
    display: none;
    background:none;
    line-height:45px;
    padding:5px 15px 0px 15px;
    color:#fff;
    border:0;
    font-size:1.4em;
    font-weight:bold;
    cursor:pointer;
    outline:none;
    z-index:10000000000000;
}
.cross{
    background:none;
    padding: 10px 15px 0px 15px;
    color:#fff;
    border:0;
    font-size:3em;
    line-height:65px;
    font-weight:bold;
    cursor:pointer;
    outline:none;
    z-index:10000000000000;
}
.menu{z-index:1000000; font-weight:bold; font-size:0.8em; width:100%; background: #0070c0;  position:absolute; text-align:center; font-size:12px;}
.menu ul {margin: 0; padding: 0; list-style-type: none; list-style-image: none;}
.menu li {
    display: block;
    padding: 15px 0 15px 0;
    border: 2px solid white;
    border-radius: 5px;
    margin: 8px;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);}
.menu li:hover{display: block;    background:#ffffff; padding:15px 0 15px 0; border-bottom:#dddddd 1px solid;}
.menu ul li a { text-decoration:none;  margin: 0px; color:#fff;}
.menu ul li a:hover {  color: #666; text-decoration:none;}
.menu a{text-decoration:none; color:#fff;}
.menu a:hover{text-decoration:none; color:#666;}

.glyphicon-home{
    color:white;
    font-size:1.5em;
    margin:0 auto;
}

span{padding-left:20px;}




/** Responsive behaviour - Header **/
@media screen and (max-width: 655px){
    nav{
        justify-content: space-between;
    }
    .desktop-nav{
        display: none;
    }
    .hamburger{
        display: block;
    }
}