.service {
    padding-bottom: 40px;
    .section_header {
        padding-bottom: 20px;
        text-align: center;
        h4 {
            font-size: 26px;
            font-weight: 600;
            color: $white;
            padding: 10px 0;
        }
    }
    .service_wrapper {
       .service_wrap{
        background-color: #252525;
        border-radius: 10px;
          .service_img{
            width: 100%;
            height: 380px;
            background-color: #dbdbdb;
            border-radius: 10px;
            display: flex;
            justify-content: center;
            align-items: center;
            img{
                height: 100%;
                width: 100%;
                object-fit: cover;
            }
          }
          .service_text{
            padding: 10px 10px 30px 10px;
              h4{
                font-size: 22px;
                font-weight: 500;
                color: $white;
                line-height: 32px;
              }
              p{
                font-size: 15px;
                color: $text;
                line-height: 24px;

              }
              .micro_btn{
                margin-top: 30px;
                a{
                    padding: 13px 25px;
                    color: $white;
                    background-color: $primaryColor;
                    font-size: 16px;
                    font-weight: 400;
                    border-radius: 7px;
                }
            }
          }
       }
    }

}