body {
    background: #242424;
}

.page-main {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.content-main {
    width: calc(100% - 160px);
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.aberjung-group-logos-wrapper {
    display: flex;
    justify-content: space-between;
}

.aberjung-logo-item {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: orbit 6s linear infinite;
    width: calc(33.33% - 180px);
    height: auto;
}

.aberjung-logo-item:nth-of-type(2) {
    animation-delay: -1s;
}        

.aberjung-logo-item:nth-of-type(3) {
    animation-delay: -2s;
}  

.aberjung-logo-item img {
    height: 100%;
    width: 100%;
}

@media screen and (max-width: 1199px) {
    .aberjung-logo-item {
        width: calc(33.33% - 100px);
    }
}

@media screen and (max-width: 959px) {
    .aberjung-group-logos-wrapper {
        flex-direction: column;
        row-gap: 100px;
        justify-content: center;
        align-items: center;
    }

    .aberjung-logo-item {
        width: 100%;
        max-width: 280px;

    }
}


@keyframes orbit {
    0%   { transform: translate(  0px,  -8px); }
    12%  { transform: translate(  6px,  -6px); }
    25%  { transform: translate(  8px,   0px); }
    37%  { transform: translate(  6px,   6px); }
    50%  { transform: translate(  0px,   8px); }
    62%  { transform: translate( -6px,   6px); }
    75%  { transform: translate( -8px,   0px); }
    87%  { transform: translate( -6px,  -6px); }
    100%  { transform: translate(  0px,  -8px); }
}
