footer {
    background-color: var(--blue);
    color: var(--white);
    font-size: var(--textsize);
}

footer img:nth-child(3) {
    box-shadow: var(--shadow);
}

.footer-logos {
    width: 100%;
    background-color: var(--white);

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;

    align-items: center;
    justify-content: flex-end;

    padding: 2rem var(--padding);
    gap: 1rem 5rem;
}

footer img {
    height: 6rem;
    width: auto;
    flex-shrink: 0;
}

.footer-wrapper {
    padding: 5rem var(--padding) 3rem;
    display: flex;
    align-items: flex-end;
    width: 100%;
    justify-content: space-between;

    background-image: url(../img/strahlen.svg);
    background-repeat: no-repeat;
    background-color: var(--darkblue);
    background-size: auto 500%;
    /* background-blend-mode: multiply; */
    background-position: left;
}

footer ul {
    display: flex;
    flex-direction: row;
    gap: var(--gapmenu);
}

footer.footer.col {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin: 0;
    padding: 0;
}

.footer-information {
    max-width: fit-content;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 10rem;
}

.footer-information div:first-child {
    width: 40%;
}

nav.col.lg_12.md_12.footernav {
    max-width: fit-content;
}

.footer-information a {
    text-decoration: none;
}

/* .footer-information a:hover {
    font-weight: var(--bold);
} */

/* footer a:hover {
    font-weight: var(--bold);
} */

@media (max-width: 1250px) {
    .footer-wrapper {
        align-items: flex-start;
        justify-content: space-between;
        flex-direction: column;
        gap: 2rem;
    }

    footer ul {
        flex-direction: row;
        gap: 2rem;
        flex-wrap: wrap;
    }
}

@media (max-width: 680px) {
    footer {
        font-size: var(--textsizemobile);
    }

    .footer-wrapper {
        gap: 0rem;
    }

    .footer-information {
        margin-bottom: 2rem;
        flex-direction: column;
        align-items: flex-start;
        max-width: fit-content;
        gap: 2rem;
    }

    nav li {
        list-style: none;
        margin-right: 2rem;
        margin-bottom: 0.5rem;
    }

    footer ul {
        gap: 0rem;
    }

    .footer-logos {
        justify-content: center;
    }

    .footer-information div:first-child {
        width: 70%;
    }
}
