.provider{
    h4{
       font-size: 26px;
       color: rgba(10, 10, 10, 0);
       font-weight: 500;
       text-align: center;
    }
   .provider_wrapper{
      .provider_wrap{
       background-color: $white;
       padding: 30px;
       border: 1px solid #dddcdc;
       height: 390px;
       border-radius: 10px;
       position: relative;
       margin-bottom: 25px;
       .provide_img{
             height: 150px;
             width: 100%;
             display: flex;
             align-items: center;
             justify-content: center;
           img{
               max-height: 100%;
               max-width: 100%;
           }
       }
       .provide_text{
           text-align: center;
           padding-top: 10px;
           h3{
               font-size: 26px;
               color: #333;
               line-height: 36px;
               font-weight: 500;
           }
           p{
               font-size: 15px;
               line-height: 24px;
               font-weight: 400;
               color: rgb(83, 82, 82);
               text-align: center;
           }
           .readmore_btn{
               position: absolute;
               bottom: 30px;
               left: 50%;
               transform: translateX(-50%);
               a{
                   font-size: 16px;
                   color: $primaryColor;
                   font-weight: 500;
                   &:hover{
                       color: #000000;
                   }
               }
           }
       }
      }
   }
}