body{
    background-color: #0074bd;
    font-size: 1.5em;
    color: white;
    font-family: "Calibri", sans-serif;
}

header, section{
    width: 80%;
    margin: auto;
    position: relative;
}

header{
    height: 150px;
}

section{
    margin-top: 15px;
    text-align: center;
}

.logo{
    position: absolute;
    top: 15px;
    left: 15px;
    width: 250px;
}

.icon{
    position: absolute;
    top: 15px;
    right: 15px;
    width: 60px;
}

.maintenance{
    display: block;
    margin: auto;
    max-width: 150px;
}

h1{
    display: inline-block;
    padding-bottom: 20px;
    position: relative;
    font-weight: 300;
}

h1::before{
    position: absolute;
    width: 50%;
    height: 1px;
    bottom: 0;
    left: 25%;
    content: "";
    border-bottom: 3px solid white;
}

p:first-of-type{
    margin-top: 0;
}

ul{
    list-style-type: none;
    padding-left: 0;
    width: 80%;
    margin: auto;
}

li{
    display: inline-block;
    width: 33.3%;
    float: left;
    position: relative;
}

.contact-icon{
    width: 25px;
    margin-bottom: -5px;
}

.map{
    width: 50%;
    position: relative;
    height: 100%;
    float: left;
    overflow: hidden;
}

div.clearfix{
    clear: both;
}

iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

.half{
    width: 50%;
    float: right;
    text-align: left;
    box-sizing: border-box;
    padding-left: 15px;
}

.top-margin{
    margin-top: 30px;
}

@media (max-width: 1190px){
    ul{
        width: 100%;
    }
    section{
        width: 100%;
        box-sizing: border-box;
        padding: 0 15px;
    }

    header{
        width: 100%;
    }
}

@media (max-width: 768px){
    header, section{
        width: 100%;
    }
    li{
        width: 80%;
        text-align: center;
        margin: auto;
        margin-bottom: 10px;
    }

    li img{
        float: left;
        margin-bottom: -8px;
    }

    .half{
        width: 100%;
    }

    .map{
        width: 100%;
        float: left;
    }

}

