.section-2{
    position: relative;
    padding-top: 30px;
    .shape-3{
        height: 1050px;
        width: 80%;
        position: absolute;
        top: 50%;
        right: 0;
        z-index: -1;
        transform: translateY(-50%);
        img{
            max-height: 100%;
            max-width: 100%;
        }
    }
    .section_info_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;
              }
            }
      }
          .section_2_wrap{
            padding-top: 40px;
            .info_right{
                padding-left: 20px;
                 ul{
                    li{
                        font-size: 17px;
                        color: $black;
                        line-height: 28px;
                        font-weight: 400;
                        padding-bottom: 15px;
                        font-family: $font-3;
                        span{
                            position: relative;
                            font-weight: 500;
                            font-size: 19px;
                            padding-right: 4px;
                            font-family: $font-1;
                        }
                    }
                 }
              }
          }
    }
} 