.customers {
    margin-top: 9.375rem;

    .container {
        /* width: min(1051px, calc(100% - 40px)); */

        .title-wrapper {
            text-align: center;
        }

        .swiper-and-buttons {
            width: 1051px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: minmax(0, 1fr);

            > * {
                grid-area: 1/1/-1/-1;
            }

            .swiper {
                width: 1051px;
            }

            .buttons-wrapper {
                z-index: 2;
                align-self: center;
                margin-right: -30px;
                display: flex;
                justify-content: space-between;
            }

            .buttons-wrapper svg {
                width: 25px;
            }
        }            
    }
}

@media (max-width: 1055px) {
    .customers {
        .container {
            .swiper-and-buttons {
                width: 90%;

                .swiper {
                    width: 80%;
                }

                .buttons-wrapper {
                    margin-right: 0;
                }
            }
        }
    }
}