.title_details { 
    font-size: 30px;
    font-weight: 500;
    line-height: 40px;
    margin-bottom: 20px;
    h2{
        color: #000;
        margin-bottom: 20px;
        margin-top: 10px;
       }
       span.title_color {
        color: $primaryColor;
    }
    p{
        font-size: 15px;
        font-weight: 400;
        color: #333;
        font-family: 'Poppins', sans-serif;
    }
   }
.vedio_area{
   background-color: #fff; 
   padding: 40px 0;

   .vedio_img{
    height: 600px;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    position: relative;

    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; 
        }
    }
   }
}