.out-clients-banner {
    position: relative;
    height: 200px;
    box-sizing: border-box;
    background: #e8e8e8;
    padding: 0 10px;
    display: flex;
    align-items: center;
}
.out-clients-banner__banner {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    user-select: none;
}
.out-clients-banner__title {
    position: relative;
    z-index: 1;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: -1px;
}
@media screen and (min-width: 600px) {
    .out-clients-banner__title {
        font-size: 45px;
        letter-spacing: -2px;
    }
}
@media screen and (min-width: 960px) {
    .our-clients-banner__inner {
        margin: auto;
        width: 906px;
    }
}
@media screen and (min-width: 1280px) {
    .out-clients-banner {
        height: 370px;
    }
    .our-clients-banner__inner {
        width: 1140px;
    }
}
@media screen and (min-width: 1440px) {
    .out-clients-banner {
        padding: 0 40px;
    }
    .our-clients-banner__inner {
        width: 100%;
    }
}

.our_client_logos {
    margin: auto;
    padding: 40px 0;
}
.our_client_logos__title {
    margin: 0 0 30px 0;
    font-weight: 600;
    font-size: 20px;
    text-align: center;
}
.our_client_logos__inner {
    position: relative;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 30px;
    column-gap: 10px;
    overflow: hidden;
}
.our_client_logos__line,
.our_client_logos__group {
    display: flex;
    row-gap: 30px;
}
.our_client_logos__item {
    margin-right: 10px;
    height: 37px;
    width: auto;
}
@media all and (min-width: 768px) {
    .our_client_logos__title {
        font-size: 30px;
    }
    .our_client_logos__item {
        margin-right: 30px;
        height: 48px;
    }
}

@keyframes scrolling-left {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-100%);
    }
}

@keyframes scrolling-right {
    0% {
      transform: translateX(calc( -100% - 10px ));
    }
    100% {
      transform: translateX(-10px);
    }
}

.our-client-cakes {
    margin: 30px auto 60px auto;
    padding: 0 10px;
    max-width: 1000px;
}
.our-client-cakes__title {
    margin: 0 0 30px 0;
    font-weight: 600;
    font-size: 20px;
    text-align: center;
    letter-spacing: -1px;
}
.our-client-cakes__inner {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.our-client-cake {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.our-client-cake img {
    width: 100%;
    height: auto;
}
@media all and (min-width: 600px) {
    .our-client-cakes__title {
        font-size: 30px;
    }
    .our-client-cakes__inner {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .our-client-cake {
        flex: 0 0 calc( ( 100% - 30px ) / 2 );
    }
}