.title_details { 
    font-size: 30px;
    font-weight: 500;
    line-height: 40px;
            h2{
                color: #000;
                margin-bottom: 50px;
            }
            span.title_color {
                color: $primaryColor;
            }
        }
        .vedio_area{
        background-color: #fff; 
        padding: 40px 0;

        .vedio_img{
            height: 270px;
            width: 100%;
            border-radius: 8px;
            overflow: hidden;
            position: relative;
            margin-bottom: 15px;

            img{
                height: 100%;
                width: 100%;
                object-fit: cover;
            }
            .vedio_overly{
                position: absolute;
                top: 0;
                left: 0;
                height: 100%;
                width: 100%;
                background-color: rgba(0,0,0,0.3);
                display: flex;
                justify-content: center;
                align-items: center;
                i{
                    font-size: 44px;
                    color: #fff; 
                }
            }
        }
}