:root {
    --nav-banner-heigth: 120px;
}
html {
    scroll-padding-top: var(--nav-banner-heigth);
}
nav{
    background-color: var(--ci-color-solid);
    box-shadow: var(--box-shadow-std);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index:2;
}
nav{
    height: var(--nav-banner-heigth);
}
.NavLinks{
    display: flex;
    flex: 1;
    justify-content: center;
}
.NavLinkElement{
    display: grid;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: transparent;
    margin: 20px;
    max-height: 80px;
}
.NavLinkElement a, .NavLinkElement button{
    text-decoration: none;
    background-color: transparent;
    border: none;
    color: #FFFFFF;
    font-family: var(--font-navigation);
    font-size: 1.3rem;
    text-align: center;
    transition: color 0.5s;
}
#hamburger{
    display: none;
}
.NavLinkElement a:hover, .NavLinkElement button:hover{
    color: var(--ci-comp-color-solid);
}
.ActiveLink a{
    color:var(--ci-comp-color-solid);
}
.MobileNav{
    display: none;
}
.FooterContent {
    position: fixed;
    height: 200px;
    background-color: var(--ci-color-solid);
    bottom: 0;
    left: 0;
    width: 100%;
    z-index:2;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-direction: row;
    margin: unset;
    padding: unset;
    padding-left: 12px;
    padding-top: 16px;
    padding-right: 12px;
    box-shadow: var(--box-shadow-inverse);
}
.FooterElement{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.SocialLink
{
    width: 32px;
    height: auto;
}

.SocialLink:hover
{
    width: 48px;
}

.SocialLink img
{
    max-width: 100%;
    height: auto;
}

@media screen and (max-width: 1200px)
{
    html {
        scroll-padding-top: unset;
    }
    .MobileNav{
        display: flex;
        background-color: var(--ci-color-solid);
        position: fixed;
        top: 30px;
        left: 0;
        border-top-right-radius: 10mm;
        border-bottom-right-radius: 10mm;
    }
    .MobileNav:hover{
        box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.6);
    }
    .MobileNav button{
        width: 120px;
        font-size: 175%;
        background: transparent;
        color: #FFFFFF;
        border: none;
    }
    .MobileNav button:hover{
        cursor: pointer;
        box-shadow: unset;
        color: unset;
        border-color: unset;
    }
    nav{
        display: flex;
        flex-direction: column;
        justify-items: center;
        align-items: center;
        height: 100%;
        width: 0;
        position: fixed;
        z-index: 2;
        top: 0;
        left: 0;
        background-color: var(--ci-color-transp);
        overflow-x: hidden;
        transition: 0.5s;
        overflow-y: auto;
    }
    nav div{
        flex-direction: column;
        align-items: center;
        background-color: var(--ci-color-solid);
    }
    nav.open{
        width: 100%;
    }
    nav.closed{
        width: 0;
    }
    #hamburger{
        display: block;
        margin-top: 16px;
    }
    .FooterContent{
        height: unset;
    }
    .FooterContent {
        background-color: var(--ci-color-solid);
        position: relative;
        width: auto;
        z-index: 0;
        display: flex;
        flex-direction: column;
        align-items: last baseline;
        text-align: left;
        margin: unset;
        padding: unset;
        padding-left: 20px;
        padding-top: 16px;
        padding-right: 20px;
    }
    .FooterElement{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin: unset;
        padding: unset;
        margin-top: 16px;
        margin-bottom: 16px;
    }
}
@media screen and (min-width: 2200px)
{
    html {
        scroll-padding-top: unset;
    }
    nav{
        display: flex;
        flex-direction: column;
        justify-items: center;
        align-items: center;
        box-shadow: unset;
        overflow-y: auto;
        position:relative;
        top:unset;
        left:unset;
        height: unset;
    }
    nav div{
        flex-direction: column;
        align-items: baseline;
    }
    .FooterContent{
        height: unset;
        overflow-y: auto;
    }
    .FooterContent{
        background-color: var(--ci-color-solid);
        position: relative;
        bottom: unset;
        left: unset;
        width: auto;
        z-index: 0;
        display: flex;
        flex-direction: column;
        align-items: end;
        text-align: left;
        margin: unset;
        padding: unset;
        padding-left: 20px;
        padding-top: 16px;
        padding-right: 20px;
        box-shadow: unset;
    }
    .FooterElement{
        display: flex;
        flex-direction: column;
        align-items: end;
        margin: unset;
        padding: unset;
        margin-top: 16px;
        margin-bottom: 16px;
    }
}
