/*
font-family: 'Raleway', sans-serif;
font-family: 'Muli', sans-serif;
*/

html{
    font-size: 18px;
    margin: 0;
    padding:0;
    width: 100%;
    height: 100%;
}

body{
    font-family: 'Lato', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
    line-height: 1.5;
}

header{
    padding: 5px 0;
    box-sizing: border-box;
    width: 100%;    
    border-bottom: 1px solid #e3e3e3;
}

header > div{
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

header ul{
    list-style: none;
    display: flex;
}
header ul li {
    margin-left: 15px;
}

header ul li a{
    text-decoration: none;
    color: #333333;
}

header ul li a:hover, header ul li a.active{
    color: #00bc9f;
    font-weight: bold;
}

header img {
    height: 40px;
    width: auto;
}

h1 {
    font-family: 'Jaldi', sans-serif;
    color: #00bc9f;
    line-height: 1.1;
}

.btn {
    background-color: #00bc9f;
    color: #ffffff;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    margin: 5px 0;
    display: inline-block;
}

.highlight {
    background: yellow;
    display: inline-block;
    font-style: italic;
}

.grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.box {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 250px;
    min-height: 250px;
    background: #e3e3e3;
    border-radius: 5px;
    margin-bottom: 25px;
}

table th, table td {
    padding: 8px;
}

main section {
    padding: 20px 0 40px 0;
    /* margin-bottom: 20px; */
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    border-bottom: 1px solid #e3e3e3;
}

main section:last-child{
    border-bottom: none;
}


footer {
    background-color: #f3f3f3;
    width: 100%;
}

footer .copyright{
    font-size: 14px;
    color: #666666;
    padding: 10px;
    margin: 0;
    text-align: center;
}

.content{
    max-width: 750px;
    padding: 0 2em;
    box-sizing: border-box;
}

.contact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

#phone {
    margin-right: 30px;
    margin-left: 30px;
}
#email a, #phone a, #fb a {
    text-decoration: none;
    color: inherit;
}
#email a:hover, #phone a:hover, #fb a:hover {
    text-decoration: underline;
    color: #00bc9f;
}

#email svg, #phone svg, #fb svg{
    fill: #00bc9f;
}
#email svg{
    width: 32px;
    height: 32px;
}
#phone svg{
    width: 24px;
    height: 24px;
}
#fb svg{ 
    width: 28px;
    height: 28px;
}


.construction-image{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1em 1em 2em 1em;
}

.construction-image img{
    max-width: 350px;
    width: 100%;
}

@media only screen and (max-width: 700px) {
    .contact { 
        flex-direction: column;
    }

    .contact > *:not(:last-child){
        margin-bottom: 15px;
    }
}
