.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 {
  margin-top: 30px;
  border-radius: 20px;
  background-color: #fff;
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.051);
}
[data-tm-layout=dark] .service-block-style1 {
  background-color: var(--dark-color2);
}
.service-block-style1:hover .service-content .icon:before {
  transform: scale(1);
}
.service-block-style1 .service-image {
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.service-block-style1 .service-image img {
  background-size: cover;
  transition: 0.5s;
  width: 100%;
}
.service-block-style1 .service-image img:nth-child(1) {
  filter: blur(10px);
  opacity: 0;
  transform: translatex(50%) scalex(2);
}
.service-block-style1 .service-image img:nth-child(2) {
  bottom: 0;
  left: 0;
  object-fit: cover;
  right: 0;
  position: absolute;
  top: 0;
}
.service-block-style1 .service-image img {
  width: 100%;
  display: block;
  border-radius: 20px 20px 0 0;
}
.service-block-style1 .service-content {
  padding: 0 36px 32px;
  text-align: center;
}
.service-block-style1 .service-content .icon {
  background-color: #fff;
  border: 1px solid #f2e2e2;
  border-radius: 50%;
  color: var(--theme-color2);
  font-size: 44px;
  height: 100px;
  line-height: 92px;
  margin: -50px auto 15px;
  position: relative;
  text-align: center;
  width: 100px;
  z-index: 1;
  transition: all 300ms ease;
}
.service-block-style1 .service-content .icon:before {
  background-color: var(--theme-color1);
  border-radius: 50%;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transform: scale(0);
  z-index: -1;
  transition: all 300ms ease;
}
.service-block-style1 .service-content .icon:hover {
  color: var(--theme-color1-text-color);
}
.service-block-style1 .service-content .icon:hover:before {
  transform: scale(1);
}
.service-block-style1 .service-content .service-title {
  margin-bottom: 20px;
}
[data-tm-layout=dark] .service-block-style1 .service-content .service-title {
  border-color: rgb(var(--theme-color-white-rgb), 0.1);
}
@media (max-width: 1199.98px) {
  .service-block-style1 .service-content .service-title {
    font-size: 20px;
  }
}
.service-block-style1 .service-content .service-title a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.service-block-style1 .service-content .service-title a:hover {
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--headings-color) 0%, var(--headings-color) 100%);
}
.service-block-style1 .service-content .service-details {
  color: var(--text-color);
  font-family: var(--body-font-family);
}
.service-block-style1:hover .icon {
  color: var(--theme-color1-text-color);
}
.service-block-style1:hover .service-image {
  cursor: pointer;
}
.service-block-style1:hover .service-image img:nth-child(1) {
  transform: translatex(0) scalex(1);
  opacity: 1;
  filter: blur(0);
}
.service-block-style1:hover .service-image img:nth-child(2) {
  transform: translatex(-50%) scalex(2);
  opacity: 0;
  filter: blur(10px);
}