.tm-sc-working .icon {
  display: inline-block;
}
.tm-sc-working .icon,
.tm-sc-working .working-title,
.tm-sc-working .working-details {
  transition: all 300ms ease;
}

.working-block-style3 .inner-box {
  border: 1px solid rgba(5, 20, 49, 0.2);
  position: relative;
  padding: 60px 35px 40px;
  text-align: center;
  margin-top: 50px;
  transition: all 0.2s ease-in-out;
}
.working-block-style3 .inner-box::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  content: "";
  background: rgba(0, 23, 45, 0.06);
  opacity: 0;
  visibility: hidden;
  height: 0;
  transition: all 0.2s ease-in-out;
}
.working-block-style3 .inner-box .step-btn {
  display: flex;
  align-items: center;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
}
.working-block-style3 .inner-box .step-btn .working-count {
  padding: 5px 20px;
  background-color: #f1f6ff;
  border-radius: 0;
  text-align: center;
  color: var(--theme-color2);
}
.working-block-style3 .inner-box .step-btn i {
  color: var(--theme-color1);
}
.working-block-style3 .inner-box .icon {
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease-in-out;
  width: 150px;
  height: 150px;
  background-color: #f1f6ff;
  color: var(--theme-color1);
}
.working-block-style3 .inner-box .icon i {
  font-size: 60px;
}
.working-block-style3 .inner-box .working-title {
  padding: 30px 0 0px;
  transition: all 0.2s ease-in-out;
}
.working-block-style3 .inner-box .working-details {
  transition: all 0.2s ease-in-out;
}
.working-block-style3 .inner-box:hover {
  border: 1px solid var(--theme-color-white);
  border: 1px solid var(--theme-color1);
  background-color: var(--theme-color2);
}
.working-block-style3 .inner-box:hover::after {
  opacity: 1;
  visibility: visible;
  height: 100%;
}
.working-block-style3 .inner-box:hover .working-title {
  color: var(--theme-color-white);
}
.working-block-style3 .inner-box:hover .working-details {
  color: var(--theme-color-white);
}
.working-block-style3 .inner-box:hover .icon {
  background-color: var(--theme-color1);
  color: var(--theme-color-white);
}
.working-block-style3 .inner-box:hover .step-btn .working-count {
  background-color: var(--theme-color1);
  color: var(--theme-color-white);
}