.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 .service-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  font-size: 20px;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--theme-color1);
  transition: 0.7s;
  color: #fff;
}
.service-block-style1 .service-featured-img {
  overflow: hidden;
}
.service-block-style1 .service-featured-img img {
  transition: all 300ms ease;
}
.service-block-style1 .service-title {
  margin: 30px 0;
}
.service-block-style1 .service-details {
  margin-top: 30px;
}
.service-block-style1:hover .service-icon {
  transform: rotateY(360deg) translateY(5px);
  box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 20px;
}
.service-block-style1:hover .service-featured-img img {
  transform: scale(1.1);
}