.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;
  overflow: hidden;
}
.working-block-style1 .inner-block {
  background-color: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(40px);
  backdrop-filter: blur(40px);
  border-radius: 20px;
  position: relative;
  z-index: 0;
  overflow: hidden;
  padding: 30px 30px 21px;
  mask-image: url(../../../images/current-theme/working1-mask1.png);
  mask-size: cover;
  mask-repeat: no-repeat;
}
.working-block-style1 .inner-block:before {
  background-color: var(--theme-color1);
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  z-index: -1;
  transition: all 300ms ease;
}
.working-block-style1 .inner-block:hover:before {
  height: 100%;
}
.working-block-style1 .inner-block:hover .content .working-title:before {
  background-color: #fff;
}
.working-block-style1 .inner-block:hover .content .working-details {
  border-top-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.working-block-style1 .inner-block:hover .top-box .working-count {
  background-color: #fff;
  color: var(--theme-color2);
}
.working-block-style1 .inner-block:hover .top-box .working-count:before {
  background-color: var(--theme-color2);
}
.working-block-style1 .inner-block:hover .top-box .working-count:after {
  background-color: #fff;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.working-block-style1 .inner-block .top-box {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 11px;
}
.working-block-style1 .inner-block .top-box .working-count {
  background-color: rgba(245, 245, 245, 0.2);
  border-radius: 50%;
  color: #fff;
  height: 50px;
  line-height: 1;
  text-align: center;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  position: relative;
  z-index: 1;
}
.working-block-style1 .inner-block .top-box .working-count:before {
  background-color: var(--theme-color1);
  border-radius: 50%;
  content: "";
  position: absolute;
  left: -4px;
  top: calc(50% - 4px);
  height: 8px;
  width: 8px;
  transition: all 300ms ease;
}
.working-block-style1 .inner-block .top-box .working-count:after {
  background-color: var(--theme-color1);
  border-radius: 50%;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  transition: all 300ms ease;
}
.working-block-style1 .inner-block .content .working-title {
  padding-left: 20px;
  position: relative;
  margin: 0;
  color: #fff;
}
.working-block-style1 .inner-block .content .working-title:before {
  background-color: var(--theme-color1);
  border-radius: 6px;
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  height: calc(100% - 12px);
  width: 2px;
}
.working-block-style1 .inner-block .content .working-details {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgb(204, 204, 204);
  padding-top: 25px;
  margin-top: 33px;
  transition: all 300ms ease;
}