.work-row span {
  position: relative;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  margin: 20px auto 30px;
  background: #83cdb8;
  display: block;
  text-align: center;
  color: #fff;
  padding-top: 2px;
  padding-left: 2px;
}
.work-row {
  position: relative;
  padding-left: 0;
}
.work-row .work-block {
  width: 100%;
  position: relative;
  text-align: center;
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  overflow: hidden;
  min-height:206px;
}
.work-row .work-block img {
  margin: 20px auto;
  max-width: 100px;
}
.work-row .work-block h4 {
  color: #000;
  font-size: 18px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  margin-bottom: 20px;
}
.work-row .work-block p {
    display: flex;
    align-items: center;
    text-align: center;
    padding: 20px;
    color: #1a4a5b;
    margin: 0;
    transition: all 200ms ease-in-out 0s;
    font-family: 'Work Sans', sans-serif;
}
/* .work-row .work-block:hover p {
  opacity: 1;
  visibility: visible;
  cursor: pointer;
} */
.work-row:before {
  position: absolute;
  content: "";
  top: 30px;
  width: auto;
  height: 4px;
  background: #fff;
  display:block;
  left: 15px;
  right: 15px;
}

@media(min-width:768px) and (max-width:991px){
  .work-row > .col-md-4 {
    width: 33.333%;
  }
  .work-row .work-block h4 {
    font-size: 17px;
  }
}

@media(max-width:767px){
  .work-row .col-md-4 {
    width: 100%;
  }
  .work-row:before{
    top:0px;
  }
  .work-row .work-block p {
    justify-content: center;
  }
  .work-row span {
    padding-top: 3px;
  }
  .work-row span {
    transform: rotate(90deg);
    margin-top: 22px;
    margin-bottom: 20px;
  }
  .work-row > .col-md-3 {
    width: 100%;
  }
}