
#footer-return-top-button {
    margin-right: 0;
    margin-left: auto;
    margin-bottom: 10px;
    display: block;
    background: none;
    border: 1px solid var(--black20);
    height: 45px;
    width: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    font-weight: 400;
    color: var(--black90);
}

footer {
    width: 100%;
    background-color: rgb(255, 255, 255);
    padding: 50px 0px 0px 0px;
}

.row_section_footer {
    justify-content: center !important;
    padding-top: 30px;
    padding-bottom: 30px;
}

footer a {
    color: var(--black90);
}

.footer-menu-outer-container {
    position: relative;
}

.footer-menu-outer-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    display: block;
    background-image: url("/static/images/redesign/logos/thd_siegel_schwarz_web.png");
    background-position: left;
    background-repeat: no-repeat;
    background-position-x: -150px;
    background-size: contain;
    max-width: calc(100% - 20px);
    max-height: calc(100% - 20px);
    height: 100%;
    aspect-ratio: 1;
    opacity: 0.15;
}

.footer-menu-inner-container {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: end;
    padding: 30px 125px 30px 0px;
}

.footer-menu-links-container {
    width: 65%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: start;
}

.footer-menu-column {
    flex-grow: 1;
}

.footer-menu-column a {
    text-transform: uppercase;
}

.footer-top-level-link {
    font-size: 20px;
    font-weight: 500;
}

.footer-sub-level-link-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
}

.footer-sub-level-link-container > a {
    margin: 7px 0;
    font-size: 17px;
    font-weight: 500;
}

.footer-menu-seperator {
    margin: 35px 0px;
}

.footer-social-media-container {
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 50px;
}

.footer-social-media-links {
    height: 50px;
    gap: 5px;
    font-size: 21px;
}

.footer-social-media-text {
    font-family: "Daniel Regular";
    font-size: 20px;
    padding-right: 10px;
    transform: translateY(5px);
}

.footer-bottom-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    font-size: 17px;
    margin-bottom: 20px;
    margin-top: 10px;
    height: 60px;
}

.footer-bottom-container > * {
    flex: 1 1 0;
}

.footer-trademark {
    text-align: center;
}

.footer-imprint-container {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
}

.footer-bottom-icon-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

@media (max-width: 992px) {
    .footer-menu-outer-container::before {
        background-position: right;
        background-repeat: no-repeat;
        background-position-x: 150px;
        background-position-y: 0px;
        opacity: unset;
        left: unset;
        right: 0;
        filter: invert(100%) contrast(500%);
        max-width: 100%;
    }

    .footer-menu-inner-container {
        padding: 0px 15px;
    }

    .footer-menu-links-container {
        width: 100%;
        flex-direction: column;
        gap: 25px;
    }

    .footer-menu-seperator {
        display: none;
    }

    .footer-sub-level-link-container {
        display: flex;
        flex-direction: row;
        justify-content: start;
        flex-wrap: wrap;
        padding: 10px 0px 0px 0px;
        margin: 0px;
        gap: 7px 25px;
    }

    .footer-sub-level-link-container > a {
        padding: 0px;
        margin: 0px;
        font-size: 15px;
        font-weight: 400;
    }

    .footer-bottom-container { 
        flex-direction: column;
        font-size: 13px;
        margin-top: 20px;
        height: unset;
        gap: 5px;
    }

    .footer-imprint-container {
        width: 100%;
    }

    .footer-bottom-icon-container {
        display: none;
    }
}

@media (max-width: 575px) {
    .footer-social-media-text {
        transform: unset;
    }
    .footer-social-media-container {
        justify-content: center;
        padding-right: 0px;
    }
}