/*Header*/
.main-content{
    padding: 0;
}
header{
    display: flex;
    justify-content: space-between;
    margin-top: 2dvh;
    margin-right: 2%;
}
.logo img{
    width: 150px;
}
/*Language switcher*/
.language-switcher a{
    color: #6eceb2;
    font-weight: bold;
    text-decoration: underline;
}
.language-switcher a:hover{
    color: #000000;
}
.language-switcher a.current-locale {
    color: #aaa29d;
    font-weight: 700;
    text-decoration: none;
    pointer-events: none;
}
/*Footer*/
footer{
    border-top: 1px solid #ccc;
    padding-left: 1%;
    padding-right: 1%;
    background-color: #f8f8f8 !important;
}
.link-footer{
    text-decoration: underline !important;
    color: black !important;
    font-style: italic;
    cursor: pointer;
}
.link-footer:hover{
    color: #aaa29d !important;
}
#footer .footer-grid {
        display: flex;
        justify-content: space-between; 
        align-items: flex-end;
}
#footer{
    padding-top: 5vh;
    padding-bottom: 3vh;
}

@media (max-width: 800px) {
    header{
        margin-right: 8%;
        margin-left: 3%;
    }
    .logo img {
        width: 130px;
    }
    #footer{
        padding-left: 8%;
        padding-right: 8%;
    }
    .footer-grid{
        flex-wrap: wrap;
    }
    .footer-grid nav,.footer-grid div{
        width: 100%;
        text-align: left;
        padding-bottom: 2dvh;
    }
}