.tm-sc-service .icon {
  display: inline-block;
}
.tm-sc-service .icon,
.tm-sc-service .feature-title,
.tm-sc-service .feature-details {
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.service-block-style1 .inner-box {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  position: relative;
  padding-bottom: 60px;
  margin-bottom: 30px;
  transition: all 300ms ease;
}
@media (max-width: 575.98px) {
  .service-block-style1 .inner-box {
    flex-direction: column;
    text-align: center;
  }
}
.service-block-style1 .inner-box:before {
  counter-increment: my-sec-counter;
  content: counter(my-sec-counter, decimal-leading-zero) " ";
  position: absolute;
  right: 120px;
  top: 0;
  font-family: var(--heading-font-family);
  font-size: 100px;
  font-weight: 700;
  line-height: 60px;
  color: var(--theme-color-white);
  transition: all 500ms ease;
  opacity: 0.1;
  z-index: 1;
}
@media (max-width: 575.98px) {
  .service-block-style1 .inner-box:before {
    display: none;
  }
}
.service-block-style1 .inner-box:hover {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.service-block-style1 .inner-box:hover .icon-box {
  background-color: var(--theme-color1);
}
.service-block-style1 .inner-box:hover .icon-box .icon {
  -webkit-transform: rotate(180deg) scale(-1);
  -moz-transform: rotate(180deg) scale(-1);
  -ms-transform: rotate(180deg) scale(-1);
  transform: rotate(180deg) scale(-1);
}
.service-block-style1 .inner-box:hover .icon-box-arrow {
  background-color: var(--theme-color1);
}
.service-block-style1 .inner-box:hover .icon-box-arrow .icon {
  transform: none;
}
.service-block-style1 .inner-box .icon-box {
  background-color: transparent;
  border-radius: 5px;
  width: 86px;
  height: 86px;
  line-height: 100px;
  margin-right: 23px;
  text-align: center;
  transition: all 300ms ease;
}
@media (max-width: 575.98px) {
  .service-block-style1 .inner-box .icon-box {
    margin-right: 0;
  }
}
.service-block-style1 .inner-box .icon-box .icon i {
  color: var(--theme-color-white);
  font-size: 50px;
  line-height: 85px;
  transition: all 300ms ease;
}
.service-block-style1 .inner-box .service-title {
  color: var(--theme-color-white);
  margin-bottom: 0;
  margin-top: 0;
}
@media (max-width: 575.98px) {
  .service-block-style1 .inner-box .service-title {
    margin-bottom: 17px;
    margin-top: 20px;
  }
}
.service-block-style1 .inner-box .icon-box-arrow {
  background-color: transparent;
  border-radius: 5px;
  width: 44px;
  height: 42px;
  line-height: 48px;
  position: absolute;
  right: 0;
  text-align: center;
  transition: all 300ms ease;
}
@media (max-width: 575.98px) {
  .service-block-style1 .inner-box .icon-box-arrow {
    position: relative;
  }
}
.service-block-style1 .inner-box .icon-box-arrow .icon {
  color: var(--theme-color-white);
  font-size: 20px;
  line-height: 1.9;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 300ms ease;
}