.vedio{
    padding: 10px 0 40px 0;
    position: relative;
    .shape-4{
        height: 550px;
        width: 400px;
        position: absolute;
        top: -100px;
        right: 0;
        z-index: -1;
        img{
            max-height: 100%;
            max-width: 100%;
        }
    }
    .vedio_wrapper{
        .section_heading{
            text-align: center;
          h4{
              font-size: 28px;
              color:#cd5ce7 ;
              text-align: center;
              font-weight: 600;
              display: inline-block;
              position: relative;

              &::after{
                  position: absolute;
                  content: '';
                  bottom: -40px;
                  left: 50%;
                  height: 30px;
                  width: 100%;
                  transform: translateX(-50%);
                  background-image: url(../images/heading.png);
                  background-position: center;
                  background-size: contain;
                  background-repeat: no-repeat;
                  z-index: 6;
              }
            }
      }
        .vedioItem{
            height: 380px;
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            border-radius: 10px;
            margin-top: 50px;
            img{
                height: 100%;
                width: 100%;
                object-fit: cover;
            border-radius: 10px;

            } 
            .vedioOverly{
                position: absolute;
                top: 0;
                left: 0;
                height: 100%;
                width: 100%;
                background-color: rgba(0,0,0,0.1);
                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%);
                }
            }
        }
    }
}