.feature{
     padding: 40px 0 0 0 ;
     background-color: #F3F3F3;
     .section_header{
        text-align: center;
        h5{
            font-size: 30px;
            color: $black;
            font-weight: 600;
            display: inline-block;
            border-bottom: 2px solid $primaryColor;
            padding: 12px 0;
            span{
                color: $primaryColor;
            }
        }
     }
    .feature_content{
          padding-top: 80px;
        .feature_wrap{
         height: 220px;
         width: 100%;
         background-color: $white;
         border-radius: 10px;
         padding: 20px;
         display: flex;
         align-items: flex-end;
         position: relative;
         margin-bottom: 65px;
         i{
            font-size: 40px;
            color: $primaryColor;
            height: 90px;
            width: 90px;
            background-color: $white;
            border-radius: 50%;
            position: absolute;
            text-align: center;
            line-height: 90px;
            top: -47px;
            left: 50%;
            transform: translateX(-50%);
            box-shadow: 1px 0.532px 1px 1px rgba(4, 4, 4, 0.1);
         }
         .feature_text{
            text-align: center;
            h5{
                font-size: 20px;
                color: $black;
                font-weight: 600;
                text-transform: uppercase;
            }
            p{
                font-size: 14px;
                color: $text;
                font-weight: 400;  
                text-align: center;
            }

         }
       }
    }
}