.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 .inner-block {
  overflow: hidden;
}
.service-block-style2 .inner-block .content-block {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 200px;
  width: 100%;
  border-radius: 400px 400px 0 0;
  border: 2px solid #D5E8DF;
  margin: 0 auto -20px;
  padding: 0 25px;
  max-width: 400px;
  transition: all 0.4s ease-in-out;
}
.service-block-style2 .inner-block .content-block .border-line {
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  text-align: center;
  line-height: 1;
}
@media (max-width: 575.98px) {
  .service-block-style2 .inner-block .content-block {
    margin: 0 auto -20px;
    border-radius: 650px 650px 0 0;
  }
}
.service-block-style2 .inner-block .content-block .service-title {
  font-family: var(--heading-font-family);
  margin-bottom: 13px;
}
.service-block-style2 .inner-block .content-block .service-title a {
  color: var(--headings-color);
}
.service-block-style2 .inner-block .content-block .service-title a:hover {
  color: var(--theme-color1);
}
.service-block-style2 .inner-block .content-block .service-details {
  color: #253125;
}
.service-block-style2 .inner-block .image-block {
  overflow: hidden;
  position: relative;
  border-radius: 200px 200px 0 0;
}
@media (max-width: 575.98px) {
  .service-block-style2 .inner-block .image-block {
    margin: 0 auto;
    max-width: 424px;
  }
}
.service-block-style2 .inner-block .image-block img {
  border-radius: 200px 200px 0 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.service-block-style2 .inner-block .image-block img:first-child {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  -webkit-transform: translateX(50%) scaleX(2);
  transform: translate(50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}
.service-block-style2 .inner-block:hover .content-block {
  background-color: #F2F0EC;
  border-color: #F2F0EC;
}
.service-block-style2 .inner-block:hover .image-block img:first-child {
  -webkit-transform: translateX(0) scaleX(1);
  transform: translate(0) scaleX(1);
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}
.service-block-style2 .inner-block:hover .image-block img:nth-child(2) {
  -webkit-transform: translateX(-50%) scaleX(2);
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}