.section_our_clients{
    padding: 3vh 0 3vh;
}

.our_clients_arrow_left{
    position: absolute;
    top: 0;
    bottom: 0;
    left: -3vw;
}
.our_clients_arrow_right{
    position: absolute;
    top: 0;
    bottom: 0;
    right: -3vw;
}
.our_clients_arrow_left img{
    width: 3vw;
}
.our_clients_arrow_right img{
    width: 3vw;
}
.our_clients_btn{
    max-width: 90%;
    margin: 0 auto;
    position: relative;
    margin-top: 3vh;
}
/* Стили для слайдера и его контейнера */
.our_clients_wrap{
    overflow: hidden;
}
.our_clients_slider {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}
.our_clients_company{
    flex: 0 0 auto;
    max-height: 15vh;
    width: 20%;
    padding: 0 1vw;
    align-items: center;
    display: flex;
    justify-content: center;
}
.our_clients_company img{
    height: 100%;
}
/* Скрытие кнопок при выходе за границы контейнера */
.our_clients_arrow_left,
.our_clients_arrow_right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1;
}

@media screen and (orientation: portrait){
    .our_clients_company {
        width: 50%;
        max-height: 17vw;
    }
    .our_clients_company img {
        width: 70%;
    }
    .our_clients_arrow_right img,
    .our_clients_arrow_left img{
        width: 6vw;
    }
}