.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 {
  background-color: #000;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  padding: 40px;
  padding-top: 125px;
  position: relative;
  overflow: hidden;
}
.service-block-style1 .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background-color: var(--theme-color1);
  position: absolute;
  top: 40px;
  left: 40px;
}
.service-block-style1 .service-count {
  position: absolute;
  top: 40px;
  right: 40px;
  font-size: 50px;
  line-height: 1;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.15);
}
.service-block-style1 .content {
  transform: translateY(58px);
  transition: all 400ms ease;
}
.service-block-style1 .content .service-icon {
  margin-bottom: 30px;
}
.service-block-style1 .content .service-icon i,
.service-block-style1 .content .service-icon img {
  -webkit-transition: all 900ms ease;
  transition: all 900ms ease;
  display: inline-block;
  font-size: 60px;
  line-height: 40px;
  color: var(--theme-color1);
}
.service-block-style1 .content .service-title {
  margin-bottom: 10px;
}
.service-block-style1 .content .service-title a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.service-block-style1 .content .service-title a:hover {
  color: var(--theme-color1);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme-color1) 0%, var(--theme-color1) 100%);
}
.service-block-style1 .content .service-details {
  font-size: 16px;
}
.service-block-style1 .content .arrow-link {
  display: inline-flex;
  color: #fff;
  font-size: 16px;
  align-items: center;
  font-weight: 400;
  gap: 10px;
  text-decoration: underline;
  margin-top: 22px;
  opacity: 0;
  visibility: hidden;
  transition: all 400ms ease;
}
.service-block-style1 .content .arrow-link:hover {
  color: var(--theme-color1);
}
.service-block-style1:hover .content {
  transform: translateY(0px);
}
.service-block-style1:hover .content .service-icon i,
.service-block-style1:hover .content .service-icon img {
  -webkit-transform: rotateY(360deg);
  -webkit-transform: scaleX(-1);
  -moz-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
  transform: scaleX(-1);
}
.service-block-style1:hover .content .arrow-link {
  opacity: 1;
  visibility: visible;
}