.vedio{
     padding: 20px 0;
     .section_header{
        padding-bottom: 20px;
        text-align: center;
        h4{
            font-size: 26px;
            font-weight: 600;
            color: $white;
            display: inline-block;
            padding: 5px 0;
            span{
                color: $primaryColor;
            }
        }
     }
    .vedioItem{
        height: auto;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        img{
            height: 100%;
            width: 100%;
            object-fit: cover;
        }
        .vedioOverly{
            position: absolute;
            top: 0; 
            left: 0;
            height: 100%;
            width: 100%;
            background-color: rgba(0,0,0,0.2);
            i{
                height: 80px;
                width: 80px;
                border: 1px solid #f3f3f3;
                border-radius: 50%;
                font-size: 45px;
                text-align: center;
                line-height: 80px;
                color: $white;
                background-color: rgba(224, 224, 224, 0.438);

                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
            }
        }
    }
}