@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;800&display=swap');
@import url('https://fonts.googleapis.com/icon?family=Material+Icons');

.material-icons {
    vertical-align: middle !important;
    padding-bottom: 2px;
}

html {
    font-family: sans-serif;
}

body {
    margin: 0;
    font-family: 'Montserrat', 'Open Sans', sans-serif;
    font-size: 14px;
    color: #117;
    line-height: 1.8;
}

header {
    background-color: #112;
    width: 100%;
    border-bottom: 1px solid#444;
    box-shadow: 0 4px 5px 0 rgba(0, 0, 0, .14), 0 1px 10px 0 rgba(0, 0, 0, .12), 0 2px 4px -1px rgba(0, 0, 0, .2);
    display: flex;
    justify-content: center;
}

.header-content {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1366px;
}

.header-section {
    margin:5px;
    align-items: center;
}

/* Menu 2.0 */

.primary-menu ul {
    display:flex;
    flex-wrap: wrap;
    text-align: center;
    position: relative;
    padding:0;
}
.primary-menu ul ul {
    margin-top: 3px;
    margin-bottom:0;
    margin-left:0;
    margin-right:0;
    list-style: none;
    position: absolute;
    display:none;
    z-index: 1;
    left:0%;
}

.primary-menu a {
    color: #fff;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 5px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    text-transform: uppercase;
}

.primary-menu a:hover {
    color: #07c;
    border-bottom: 2px solid #07c;
}

.primary-menu li {
    display: inline-block;
    margin-top: 3px;
    text-align: left;
}

.primary-menu li ul {
    background-color: #fff;
    border-bottom: 4px solid #fff;
}

.primary-menu li:hover > ul {
    display:block;
}
.primary-menu li li {
    display: block;
    white-space: nowrap;
}
.primary-menu li li:hover > ul {
    left: 100%;
    top: 10px;
}

/* Main */

.page-section {
    display: flex;
    justify-content: center;
}

.page-content {
    display:flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 20px;
}

.page-item {
    margin: 20px;
    min-width: 300px;
}

hr {
    border:0;
    background-color: #555;
    height:1px;
}

/* Page Header*/

.page-section-header {
    display:flex;
    max-height:500px;
    overflow: hidden;
    
}
/*
.page-section-header img {
    width:100%; 
    height:100%;
    opacity:0.5;
}

.page-section-header h1 {
    color:white;
    font-size: 3.6vw;
    margin-left:5%;
    position: absolute;   
}

 footer */

footer{
    display: flex;
    justify-content: center;
    background-color: #112;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding: 1%;
}

.footer-box{
    margin:10px;
    min-width: 300px;
    flex:1;
    color:white;
    padding-bottom: 10px;
}

.footer-box h2{
    color:#85e;
    margin:10px;
}

.footer-box ul{
    margin-left: 10px;
    padding:0;
}

.footer-box li{
    list-style: none;
    margin-bottom: 5px;
}

.footer-box p{
    margin:10px;
}

.footer-box a{
    margin:10px;
    color:white;
}

/* Mobile */

@media (max-width: 800px) {
    .mobile-hidden {
    display:none;
  }
}

.project-box {
    margin:20px;
    min-width: 300px;
    max-width: 500px;
    flex:2;
    padding-bottom: 10px;
    overflow: hidden;
}