.pre-footer {
    /* background: url('../images/footer.svg') no-repeat center bottom; */
    /* background: url('../images/footer-abbinder.svg') no-repeat center bottom; */
    /* background: url('../images/footer-abbinder-blue.svg') no-repeat center bottom; */
    background: url('../images/footer-abbinder-blue2.svg') no-repeat center bottom;
    background-size: 100% auto;
    aspect-ratio: 1440/546;
    width: 100%;
    margin-bottom: -1px;
}

footer {
    background: var(--darkblue);
    color: white;
    padding: 0px 0 100px 0;
    position: relative;
    z-index: 903;
}

footer .innerwidth {
    display: flex;
    justify-content: space-between;
}

footer a {
    color: white;
    text-decoration: none;
}

footer .footer-info {
    display: flex;
    flex-direction: column;
}

footer .footer-info.footer-info-column1 {
    max-width: 800px;
}

footer .footer-info .footer-info-description {
    margin-bottom: 60px;
}

footer .footer-info .footer-info-description strong {
    font-size: 30px;
    line-height: 120%;
    font-weight: 500;
}

footer .footer-info .footer-info-description a {
    font-weight: 700;
    position: relative;
    transition: 0.3s;
}

footer .footer-info .footer-info-description a:after {
    content:"";
    background: url('/wp-content/themes/aibatros/images/link-arrow-brightgreen.svg') no-repeat -20px center;
    background-size: contain;
    width: 74px;
    height: 23px;
    position: absolute;
    right: -83px;
    top: -1px;
    transition: filter 0.3s ease, background-position 0.3s ease; /* Smooth transition */
    filter: brightness(5);
}
footer .footer-info .footer-info-description a:hover {
    color: var(--brightgreen);
}

footer .footer-info .footer-info-description a:hover:after {
    background-position: 0px center;
    filter: brightness(1);
}

footer .footer-info .footer-info-navigation ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

footer .footer-info .footer-info-navigation a:hover {
    color: var(--brightgreen);
}
footer .footer-info.footer-info-column1 .copyright {
    display: flex;
    flex-direction: row;
    gap: 30px;
    flex-wrap: wrap;
}

footer .footer-info.footer-info-column1 .copyright .logo-wrap,
footer .footer-info.footer-info-column1 .copyright .bsfz-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

footer .footer-info.footer-info-column1 .copyright .bsfz-wrap {
    margin-left: 50px;
}

footer .footer-info.footer-info-column1 .copyright .logo-wrap img {
    width: 250px;
}

footer .footer-info.footer-info-column1 .copyright .bsfz-wrap img {
    width: 115px;
}

footer .footer-info.footer-info-column1 .copyright > span {
    width: 100%;
    display: block;
}

footer .footer-info.footer-info-column2 {
    flex-direction: column;
    justify-content: space-between;
}

footer .footer-info.footer-info-column2 .social-media {
    display: flex;
    gap: 15px;
}

footer .footer-info.footer-info-column2 .social-media a {
    display: block;
    background: white;
    width: 28px;
    height: 28px;
    background-size: 24px auto;
    background-repeat: no-repeat;
    background-position: center center;
    text-indent: -9999px;
    filter: brightness(5);
}

footer .footer-info.footer-info-column2 .social-media a:hover {
    filter: brightness(1);
}

footer .footer-info.footer-info-column2 .social-media a.social-media-x {
    background: url('../images/icon-x.svg');
}
footer .footer-info.footer-info-column2 .social-media a.social-media-youtube {
    background: url('../images/icon-youtube.svg');
}
footer .footer-info.footer-info-column2 .social-media a.social-media-linkedin {
    background: url('../images/icon-linkedin.svg');
}


@media (max-width: 1200px) {
    footer {
        padding: 40px 0;
    }
    footer .footer-info .footer-info-description {
        padding-right: 60px;
    }
    footer .footer-info .footer-info-description strong {
        font-size: 25px;
    }
}

@media (max-width: 768px) {
    .pre-footer {
        margin-top: 30px;
    }

    footer .innerwidth {
        flex-direction: column;
    }

    footer .footer-info .footer-info-description {
        padding-right: 0;
    }

    footer .footer-info .footer-info-description strong {
        font-size: 18px;
    }

    footer a {
        font-size: 14px;
    }

    footer .footer-info.footer-info-column1 .copyright {
        font-size: 14px;
    }

    footer .footer-info .footer-info-navigation ul {
        gap: 7px;
        margin: 30px 0 0 0;
    }

    footer .footer-info.footer-info-column2 > .social-media {
        height: auto;
        width: auto;
        position: absolute;
        bottom: 0;
        right: 0;
    }

    footer .footer-info.footer-info-column1 .copyright .bsfz-wrap {
        margin-left: 0;
    }

    footer .footer-info.footer-info-column1 .copyright .bsfz-wrap img {
        width: 90px;
    }
}