.service{
     padding: 70px 0;
    .service_wrapper{
        width: 85%;
        margin: 0 auto;
        position: relative;
        &::after{
          position: absolute;
          content: '';
          top: 50%;
          left: 0;
          transform: translateY(-50%);
          height: 1px;
          width: 100%;
          background-color: $border
        }
        .wrap_item{
            border-right: 1px solid $border;
            height: 170px;
            padding: 25px;

            h4{
              font-size: 37px;
              color: #3e29a8;
              font-weight: 500;
              line-height: 48px;
            }
            h5{
              font-size: 22px;
              color: #3e29a8;
              font-weight: 500;
              line-height: 32px;
              padding: 10px 0;
            }
            .num{
              font-size: 38px;
              color: #9997A1;
            }
        } 
        .b-none{
          border-right: 1px solid transparent;
        }
        .card_clr{
          background-color: $primaryColor;
          p{
            color: rgb(229, 229, 229);
          }
          .get_btn{
            a{
              font-size: 16px;
              border-bottom: 1px solid $white;
              color: $white;
            }
          }
        }
    }
}