footer {
    /* display: flex; */
    margin-top: 5rem;
    z-index: 3;
}

.footer {
   position: relative;
    background: var(--acent-color);
    /* Standardmäßig relativ, damit es innerhalb des Flusses bleibt */
}

.footer-content {
	position: relative;
	z-index: 10;
	padding-top: 2rem;
	padding-bottom: 2rem;
}

footer a {
    text-decoration: none;
    cursor: pointer;
}

.footer address {
    line-height: normal;
}

.footer .opening p {
    margin: 0;
    padding: 0;
}

.thin-line {
    border-top: 1px solid var(--prim-color);
    /* Farbe und Dicke der Linie */
    margin: 0 auto;
    /* Zentrieren der Linie */
    width: 100%;
    /* Breite der Linie */
}

footer .logo{
    margin-top: clamp(-15vh,4vw,-85vh);
    z-index: 10;
}

.wave-footer {
	position: absolute;
	left: 0;
	top: -179px; /* exakt gleiche Höhe wie margin-top */
	width: 100%;
	height: 180px;
	background: url("/gfx/image/wave/wave_bg_footer.png") no-repeat center bottom;
	background-size: 100% 100%;
	pointer-events: none;
	z-index: 0;
}

footer a {
    color: var(--link-hover)!important;
}

@media screen and (max-width:770px){

    .logoImg{
        margin-top: -4rem;
    }
    .shift-on-mobile{
        margin-top: -4rem;
    }


    /* .footer h5{
        padding-top: 2rem;
        font-size: 1.5rem;
    } */
    .address {
        display: flex;
        flex-direction: column;
        justify-content: center;
        /* align-items: center; */
        text-align: left;
    }
    .opening {
        display: flex;
        flex-direction: column;
        justify-content: center;
        /* align-items: center; */
        text-align: left;
    }
    .linksF {
        display: flex;
        flex-direction: column;
        justify-content: center;
        /* align-items: center; */
        text-align: left;
    }
    
}


