.video-works-section{

    .swiper-slide{
        /*height: 350px;*/
    }

    .swiper-slide a{
        border-radius: 10px;
        overflow: hidden;
        display: block;
        position: relative;

        &:before{
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            bottom: 0;
            background: rgba(35, 20, 20, 0.37);
            right: 0;
        }

        p{
            font-style: normal;
            font-weight: 400;
            font-size: 20px;
            line-height: 23px;
            text-align: center;
            color: #333333;
        }

        .play-icon{
            position: absolute;
            top: 0;
            left: 0;
            bottom: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;

            svg{
                width: 120px;
            }

        }
    }

    .swiper-slide img {
        display: block;
        width: 100%;
        height: 100%;
        min-height: 300px;
        object-fit: cover;
    }

    .nav-arrows{
        justify-content: flex-end;
    }
}