footer {
    background: #202945;
    color: #ffffff;
}
.footer {
    text-align: right;
    padding: 48px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    align-content: center;
    flex-wrap: wrap;
    flex-direction: row;
}
.footerLogo {
    line-height: 0;
    padding: 24px;
}
.footerLogo img {
    width: 320px;
    padding: 0;
    background: transparent;
    border-radius: 4px;
    overflow: hidden;
}
.footerLeiste {
}
.footerLeisteInner {
    margin-bottom: 24px;
}
.footerLeisteInner a {
    position: relative;
    display: inline-block;
    padding: 6px 12px;
    margin: 0 4px;
    text-decoration: none;
    color: #ffffff;
    text-transform: uppercase;
    transition: .3s;
}
.footerLeisteInner a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #b9bf15;
    transition: .3s;
}
.footerLeisteInner a:hover {
    text-decoration: none;
    color: #ffffff;
}
.footerLeisteInner a:hover::after {
    width: 100%;
}
.footerPraxi {
    line-height: 0;
}
.footerPraxi a {
    display: inline-block;
    padding: 6px 12px;
    margin: 0 4px;
}
.footerPraxi img {
    height: 18px;
    width: 100px;
}

@media (max-width: 1366px) {

    .footer {
        text-align: center;
        flex-wrap: wrap;
        flex-direction: column;
        padding: 24px 11px;
    }
    .footerLeisteInner {
        margin: 24px 0;
    }
    .footerLogo {
        padding: 12px;
    }
    .footerLogo img {
        width: 200px;
    }

}