.section-1{
    position: relative;
    padding-top: 30px;
    .shape-1{ 
        height: 650px;
        width: 100%;
        position: absolute;
        top: 0;
        left:0;
        z-index: -1;
        img{
           max-width: 100%;
           max-height: 100%;
           object-fit: cover;
        }
    }
    .shape-2{
        height: 550px;
        width: 400px;
        position: absolute;
        bottom: -100px;
        right: 0;
        z-index: -1;
        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_wrap{
            padding-top: 60px;
              .info_left{
                   height: 650px;
                   width: 100%;
                   display: flex;
                   align-items: center;
                   justify-content: center;
                  img{
                    height: 100%;
                    max-width: 100%;
                  }
              }
              .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;
                        }
                    }
                 }
              }
          }
    }
} 