.section_video_comp{
	background: #ffe600;
    color: #000000;
    font-size: 1.4vw;
    font-weight: 600;
    text-align: left;
    padding-top: 7vh;

}

.video_comp_arrow_left{
    position: absolute;
    top: 0;
    bottom: 0;
    left: -4vw;
}
.video_comp_arrow_right{
    position: absolute;
    top: 0;
    bottom: 0;
    right: -4vw;
}
.video_comp_arrow_left img{
    width: 3vw;
}
.video_comp_arrow_right img{
    width: 3vw;
}
.video_comp_btn{
    position: relative;
}
/* Стили для слайдера и его контейнера */
.video_comp_wrap{
    margin-top: 3vh;
    overflow: hidden;
}
.video_comp_slider {
    display: flex;
    transition: transform 0.3s ease;
}
.video_comp_company{
    flex: 0 0 auto;
    height: 40vh;
    text-align: center;
    width: 25%;
    padding: 0 1vw;
}
.video_comp_company video{
    width: 100%;
    height: 100%;
    border-radius: 0.4vw;
    object-fit: cover; /* Растягивает изображение по всей области без искажений */
}
/* Скрытие кнопок при выходе за границы контейнера */
.video_comp_arrow_left,
.video_comp_arrow_right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1;
}
.video_comp_arrow_left {
    left: 0vw;
}
.video_comp_arrow_right {
    right: 0vw;
}


@media screen and (orientation: portrait){
    .video_comp_company {
        height: 70vw;
        width: 50%;
        padding: 0 2vw;
    }
    .video_comp_company video {
        border-radius: 1.3vw;
    }
    .video_comp_arrow_right img,
    .video_comp_arrow_left img{
        width: 6vw;
    }
    .section_video_comp {
        margin-top: 7vw;
    }
}