.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 {
  position: relative;
  overflow: hidden;
  perspective: 1000px;
}
.service-block-style1 .business-image {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.service-block-style1 .business-image .service-featured-img img {
  width: 100%;
  height: 100%;
  display: block;
}
.service-block-style1 .content {
  background: var(--theme-color-white);
  padding: 0 30px 29px;
  padding-top: 0;
  margin-top: -40px;
  position: absolute;
  z-index: 1;
  bottom: 35px;
  left: 33px;
  right: 33px;
  transition: all 0.6s ease;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
@media (max-width: 1199.98px) {
  .service-block-style1 .content {
    padding: 0 25px 29px;
  }
}
.service-block-style1 .content.content-front {
  opacity: 1;
  visibility: visible;
  -webkit-transform: rotateY(0deg);
  -moz-transform: rotateY(0deg);
  -ms-transform: rotateY(0deg);
  transform: rotateY(0deg);
}
.service-block-style1 .content.content-back {
  padding: 30px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: rotateY(-180deg);
  -moz-transform: rotateY(-180deg);
  -ms-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
  z-index: 2;
}
.service-block-style1 .content .service-icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  border-radius: 50%;
  background: var(--theme-color1);
  margin-bottom: 16px;
  margin-top: -40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.service-block-style1 .content .service-icon i {
  font-size: 42px;
  line-height: 1;
  color: var(--theme-color1-text-color);
}
.service-block-style1 .content .service-title {
  margin-top: 0;
  margin-bottom: 11px;
}
.service-block-style1 .content .service-title a:hover,
.service-block-style1 .content .service-title a:focus {
  color: var(--theme-color1);
}
.service-block-style1 .content .service-details {
  position: relative;
}
.service-block-style1 .content .service-details li {
  list-style-type: none;
  margin-bottom: 3px;
}
.service-block-style1 .content .service-details li i {
  color: var(--theme-color1);
  display: inline-block;
  font-size: 14px;
  margin-right: 7px;
  position: relative;
  top: 1px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.service-block-style1 .content .read-more {
  background: var(--theme-color2);
  color: var(--theme-color2-text-color);
  font-size: 20px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  width: 50px;
  position: absolute;
  top: 0;
  right: 0;
  transition: all 300ms ease;
}
.service-block-style1 .content .read-more:hover {
  background: var(--theme-color1);
  color: var(--theme-color1-text-color);
}
.service-block-style1:hover .content-front {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
.service-block-style1:hover .content-back {
  opacity: 1;
  visibility: visible;
  -webkit-transform: rotateY(0deg);
  -moz-transform: rotateY(0deg);
  -ms-transform: rotateY(0deg);
  transform: rotateY(0deg);
}