.tm-sc-working .icon {
  display: inline-block;
}
.tm-sc-working .icon,
.tm-sc-working .working-title,
.tm-sc-working .working-details {
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.working-block-style3 {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  margin-left: 35px;
  padding: 29px 0;
  gap: 65px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1199.98px) {
  .working-block-style3 {
    gap: 30px;
  }
}
.working-block-style3::before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100%;
  content: "";
  width: 1px;
  background-color: rgba(255, 255, 255, 0.13);
  left: 0;
  z-index: -1;
}
.working-block-style3 .working-title {
  color: #fff;
  margin-top: 0;
}
.working-block-style3 .working-count {
  background-color: #000;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--heading-font-family);
  font-size: 30px;
  font-weight: 600;
  width: 70px;
  height: 70px;
  margin-left: -35px;
  transition: all 0.2s ease-in-out;
}
.working-block-style3:hover .working-count {
  background-color: var(--theme-color1);
  color: var(--theme-color1-text-color);
}

.working-block:first-child .working-block-style3:before {
  height: calc(100% + 0px);
  top: 0;
}
.working-block:last-child .working-block-style3 {
  border-bottom: none;
}
.working-block:last-child .working-block-style3:before {
  height: calc(100% + 0px);
}