.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-column {
  display: grid;
  grid-template-columns: 44% 56%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: #000000;
  border-radius: 40px;
  position: relative;
  z-index: 99;
  transition: all 300ms ease;
}
@media (max-width: 767.98px) {
  .service-block-style1 .inner-column {
    grid-template-columns: 100%;
  }
}
.service-block-style1 .inner-column:hover .image-box img {
  -webkit-animation: rotation 10s infinite linear;
  animation: rotation 10s infinite linear;
}
.service-block-style1 .inner-column .image-box {
  width: 100%;
  height: 100%;
  border-radius: 40px;
  background-color: #151414;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.service-block-style1 .inner-column .content-box {
  padding: 50px 60px 50px 55px;
}
.service-block-style1 .inner-column .service-subtitle {
  color: #ffffff;
}
.service-block-style1 .inner-column .service-title {
  color: #ffffff;
  padding: 17px 0 34px;
  margin-bottom: 0;
  margin-top: 0;
  max-width: 260px;
}
@media (max-width: 575.98px) {
  .service-block-style1 .inner-column .service-title {
    font-size: 25px;
  }
}
.service-block-style1 .inner-column .service-title a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.service-block-style1 .inner-column .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 .inner-column .service-details {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 40px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 31px;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}