.feature{
      padding: 40px 0;
    .feature_wrapper{
       .img_container{
          height: 550px;
          width: 100%;
          display: flex;
          justify-content: center;
          align-items: center;
          position: relative;
          &::after{ 
            position: absolute; 
            content: '';
            top: 50%; 
            left: 50%;
            height: 90%; 
            width: 90%;
            background-color:#8de5cc92; 
            border-radius: 50%;
            transform: translate(-50%,-50%);
            z-index: -1;
          }
          img{
            max-width: 100%;
            max-height: 100%;
          }
       }

       .feature_text{
          h2{
             font-size: 38px;
             font-weight: 600;
             line-height: 48px;
             color: $black;
          }
          p{
            padding: 10px 0;
          }

          .feature_btn{
            a{
                @include button;
            }
          }
       }
    }
}