.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-style1 {
  border-radius: 20px;
  background-color: #f5f2ec;
  padding: 40px;
  transition: all 500ms ease;
  position: relative;
  z-index: 1;
}
@media (max-width: 1199.98px) {
  .working-block-style1 {
    padding: 30px;
  }
}
.working-block-style1::before {
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  opacity: 0;
  -webkit-transform: scale(1, 0.3);
  transform: scale(1, 0.3);
  background-color: var(--theme-color1);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: -1;
  border-radius: 30px;
}
.working-block-style1 .number-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
  position: relative;
  z-index: 11;
}
.working-block-style1 .number-top .number {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 400;
  display: inline-block;
  background-color: var(--theme-color1);
  color: var(--theme-color3);
  transition: all 500ms ease;
}
.working-block-style1 .content {
  position: relative;
  z-index: 11;
}
.working-block-style1 .content .working-title {
  margin-bottom: 15px;
  margin-top: 0;
}
.working-block-style1 .content .working-details {
  transition: all 500ms ease;
  font-weight: 400;
}
.working-block-style1:hover, .working-block-style1.active {
  transform: translateY(-10px);
}
.working-block-style1:hover .icon svg, .working-block-style1.active .icon svg {
  animation: wobble 1.5s ease-in-out;
}
.working-block-style1:hover .content .working-details,
.working-block-style1:hover .content .working-title, .working-block-style1.active .content .working-details,
.working-block-style1.active .content .working-title {
  color: #fff;
}
.working-block-style1:hover .number-top .number, .working-block-style1.active .number-top .number {
  background-color: var(--theme-color3);
  color: var(--theme-color3-text-color);
}
.working-block-style1:hover::before, .working-block-style1.active::before {
  opacity: 1;
  transform: scale(1, 1);
}
@keyframes wobble {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
    transform: translate3d(-25%, 0, 0) rotate(-5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
    transform: translate3d(20%, 0, 0) rotate(3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
    transform: translate3d(-15%, 0, 0) rotate(-3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
    transform: translate3d(10%, 0, 0) rotate(2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
    transform: translate3d(-5%, 0, 0) rotate(-1deg);
  }
  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}