.service{
    padding: 90px 0;
    .section_header{
         h2{
             color: $black;
             text-align: center;
             span{
                 color: $primaryColor;
             }
         }
    }
    
    .service_wrapper{
          padding-top: 40px;
          position: relative;
          h5{
            padding-bottom: 20px;
           a{
            font-size: 18px;
            color: $primaryColor;
            font-weight: 500;
            &:hover{
                padding-right: 20px;
                color: $black;
            }
           }
         }
          .Prev{
            font-size: 35px;
            height: 60px;
            background-color: $white;
            width: 60px;
            color: #7a7878;
            border: 1px solid #c2c1c1;
            border-radius: 50%;
            line-height: 60px;
            text-align: center;
            position: absolute;
            box-shadow: 1px 1.332px 4px 1px #7c7c7c4d;
            left: -30px;
            z-index: 2;
            top: 50%;
            transform: translateY(-50%);
            cursor: pointer;
            &:hover{
                color: $black;
            }
        }
        .Next{
            font-size: 35px;
            height: 60px;
            width: 60px;
            background-color: $white;
            color: #7a7878;
            border: 1px solid #c2c1c1;
            box-shadow: 1px 1.332px 4px 1px #7c7c7c4d;
            border-radius: 50%;
            line-height: 60px;
            text-align: center;
            position: absolute;
            right: -30px;
            z-index: 2;
            top: 50%;
            transform: translateY(-50%);
            cursor: pointer;
            &:hover{
                color: $black;
            }
        }
         .service_wrap{
             text-align: center;
             padding: 55px 15px 45px 15px;
             background-color: $white;
             box-shadow: 1px 1.332px 4px 1px #7c7c7c4d;
             border-radius: 20px;
             border: 2px solid transparent;
             margin: 10px;
             &:hover{
                 border: 2px solid $primaryColor;
             }
             .serviceImg{
                img{
                    width:120px;
                    margin: 0 auto;
                }
             }
             h3{
                 color: $black;
                 padding-top: 25px;
                 line-height: 28px;
             }
         }
    }
}