.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-style2 {
  position: relative;
}
.service-block-style2 .inner-box {
  position: relative;
  transition: all 300ms ease;
  background-color: var(--theme-light-background);
  border-radius: 0 0 10px 10px;
}
body.tm-dark-layout .service-block-style2 .inner-box {
  background-color: var(--theme-color-white);
}
.service-block-style2 .inner-box:hover .content-box {
  background-color: var(--theme-color-light);
  box-shadow: 0px 10px 60px rgba(0, 0, 0, 0.07);
}
.service-block-style2 .inner-box:hover .image-box .image a:after {
  left: 0;
  right: 0;
  opacity: 0;
  transition: all 400ms linear;
}
.service-block-style2 .inner-box:hover .image-box .image img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.service-block-style2 .image-box {
  position: relative;
}
.service-block-style2 .image-box .service-icon {
  position: absolute;
  bottom: -47px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 99;
}
.service-block-style2 .image-box .service-icon i {
  display: block;
  width: 85px;
  height: 85px;
  line-height: 85px;
  text-align: center;
  background-color: var(--theme-color-light);
  border-radius: 10px;
  color: var(--theme-color1);
  font-size: 60px;
}
.service-block-style2 .image-box .image {
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
  border-radius: 10px 10px 0 0;
}
.service-block-style2 .image-box .image img {
  display: block;
  width: 100%;
  transition: all 400ms ease;
}
.service-block-style2 .image-box .image a:after {
  background: rgba(255, 255, 255, 0.3);
  bottom: 0;
  content: "";
  left: 50%;
  position: absolute;
  right: 51%;
  top: 0;
  opacity: 1;
  pointer-events: none;
  transition: all 400ms linear;
}
.service-block-style2 .content-box {
  position: relative;
  padding: 57px 30px 40px;
  transition: all 300ms ease;
  text-align: center;
}
.service-block-style2 .content-box .service-title {
  margin-top: 20px;
  margin-bottom: 20px;
  color: var(--theme-color2);
}
body.tm-dark-layout .service-block-style2 .content-box .service-title {
  color: #fff;
}
.service-block-style2 .content-box .service-title:hover {
  color: var(--theme-color1);
}
.service-block-style2 .content-box .service-details {
  margin-bottom: 30px;
  color: var(--text-color);
}
.service-block-style2 .content-box .btn-box .btn-style-one {
  border-radius: 10px;
}