.service{
    padding: 100px 0 100px 0;
    .headingOfSection{
        display: inline-block;
        position: relative;
        margin-bottom: 50px;
        .heading_overly{
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            span{
                font-size: 21px;
                font-weight: 600;
                color: $primaryColor;
            }
        }
    }
    .service_wrapper{
        padding-top: 25px;
           .service_wrap{
               background-color: $white;
               box-shadow: 1px 1.732px 10px 0px #2424244d;
               padding: 30px 30px;
               border-radius: 10px;
               margin-bottom: 25px;
          .service_img{
             img{
                 width: 100%;
                 border-radius: 10px;
             }
         }
         .service_text{
               
               h5{
                   font-size: 22px;
                   font-weight: 500;
                   color: $black;
                   padding: 15px 0 10px 0;
                   line-height: 32px;
               }
               p{
                font-size: 16px;
                font-weight: 400;
                color: $text;
                padding: 10px 0;
            }
            a{
                font-size: 18px;
                font-weight: 500;
                color: $primaryColor;
                &:hover{
                    padding-left: 20px;
                }
            }
         }
           }
    }
}