
.outer-footer {
    background-color: var(--farbedunkel);
    padding: 2rem 2rem;
    position: relative;
    overflow: hidden;
    &:before {
        content: "";
        position: absolute;
        left: -5rem;
        bottom: -10rem;
        width: 450px;
        height: 450px;
        background-image: url('/ake/images/gestaltung/backgroundFooter.png');
        background-repeat: no-repeat;
        background-size: contain;
        opacity: .05;
    }
    .s_container {
        max-width: 1440px;
        margin: 0 auto;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: start;
        flex-wrap: wrap;
        gap: 2rem;
        color: var(--white);
       .container-inner {
        flex: calc(25% - 2rem);
        min-width: 230px;
        display: flex;
        flex-direction: column;
        .social {
            display: flex;
            flex-direction: row;
            gap: 1rem;
            flex-wrap: wrap;
            margin-top: 2rem;
            a {
                width: 30px;
                height: 30px;
                background-color: rgba(255, 255, 255, 1);
                border-radius: 100%;
                position: relative;
                &::after {
                    content: "";
                    position: absolute;
                    left: 50%;
                    top: 50%;
                   
                    transform: translate3d(-50%,-50%,0);
                    background-size: contain;
                    background-repeat: no-repeat;
                }
                &.facebook {
                    &::after {
                        width: 8px;
                        height: 15px;
                        background-image: url('/ake/images/gestaltung/facebook.svg');
                    }
                }
                 &.x {
                    &::after {
                        width: 13px;
                        height: 12px;
                        background-image: url('/ake/images/gestaltung/X.svg');
                    }
                }
                 &.linkedin {
                    &::after {
                        width: 12px;
                        height: 12px;
                        background-image: url('/ake/images/gestaltung/linkedIn.svg');
                    }
                }
                 &.instagram {
                    &::after {
                        width: 12px;
                        height: 12px;
                        background-image: url('/ake/images/gestaltung/instagram.svg');
                    }
                }
                &.youtube {
                    &::after {
                        width: 13px;
                        height: 9px;
                        background-image: url('/ake/images/gestaltung/youtube.svg');
                    }
                }
            }
        }
        img {
            margin-bottom: 2rem;
        }
        .headline {
            font-size: 20px;
            font-weight: 700;
        }
        a, p {
            color: var(--white);
            text-decoration: none;
            display: flex;
            flex-direction: row;
            gap: 1rem;
            align-items:center;
            margin-bottom: 1rem;
            img {
                margin-bottom: 0;
            }
        }
        .mod-menu {
            display: flex;
            flex-direction: column;
            flex-wrap: wrap;
            gap: 1rem;
            li {
                list-style: none;
                a {
                    margin-bottom: 0;
                }
            }
        }
       }
        
    }
}

.footer-bottom {
    padding: 1rem 2rem;
    background-color: var(--farbedunkel);
    border-top: 1px solid var(--white);
    .bottom-container {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        max-width: 1440px;
        margin: 0 auto;
        color: var(--white);
        p {
            margin: 0;
        }
        .mod-menu {
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
            gap: 1rem;
            li {
                list-style: none;
                a {
                    color: var(--white);
                    text-decoration: none;
                }
            }
        }
    }
}














@media (min-width: 1200px) {
    .outer-footer {
       
       
    }
}