.vedio{
     padding: 20px 0;
     .section_header{
        padding-bottom: 20px;
        h4{
            font-size: 26px;
            font-weight: 500;
            color: $black;
            border-bottom: 2px solid $primaryColor;
            display: inline-block;
            padding: 10px 0;
        }
     }
    .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.4);
            i{
                height: 70px;
                width: 70px;
                border: 1px solid #f3f3f3;
                border-radius: 50%;
                font-size: 36px;
                text-align: center;
                line-height: 70px;
                color: $white;
                background-color: rgba(224, 224, 224, 0.438);

                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
            }
        }
    }
}