.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 {
  padding: 15px;
  padding-bottom: 0;
  background-color: #ffffff;
  position: relative;
  z-index: 1;
}
.service-block-style1 .thumb {
  overflow: hidden;
  position: relative;
}
.service-block-style1 .thumb .service-featured-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: all 500ms ease;
}
.service-block-style1 .thumb .service-featured-img img {
  width: 100%;
}
.service-block-style1 .thumb .service-featured-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-style1 .service-content {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 20px 0;
}
.service-block-style1 .service-content .service-title {
  margin: 0;
}
.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 {
  color: var(--theme-color1);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme-color1) 0%, var(--theme-color1) 100%);
}
.service-block-style1 .service-content .service-subtitle {
  margin-top: 5px;
}
.service-block-style1 .service-content .share-icon {
  background-color: var(--theme-color-dark);
  background-size: 200%;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  height: 50px;
  line-height: 52px;
  text-align: center;
  width: 50px;
  display: block;
  transition: all 300ms ease;
}
.service-block-style1 .service-content .share-icon:hover {
  background-position: 100% 0;
}
.service-block-style1 .service-content .social-links {
  position: absolute;
  right: 20px;
  bottom: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: transparent;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: bottom;
  transform-origin: bottom;
  opacity: 0;
  z-index: 3;
  visibility: hidden;
  transition: all 400ms ease;
}
.service-block-style1 .service-content .social-links a {
  background: var(--theme-color1);
  color: var(--theme-color1-text-color);
  background-size: 200%;
  border-radius: 50%;
  display: block;
  font-size: 16px;
  height: 50px;
  line-height: 50px;
  position: relative;
  text-align: center;
  width: 50px;
  transition: all 300ms ease;
}
@media (max-width: 575.98px) {
  .service-block-style1 .service-content .social-links a {
    width: 40px;
    height: 40px;
    font-size: 14px;
    line-height: 40px;
  }
}
.service-block-style1 .service-content .social-links a:hover {
  background: #ffffff;
  color: var(--theme-color1);
  background-position: 100% 0;
}
.service-block-style1:hover .thumb .service-featured-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-style1:hover .thumb .service-featured-img:nth-child(2) {
  -webkit-transform: translateX(-50%) scaleX(2);
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}
.service-block-style1:hover .service-content .social-links {
  opacity: 1;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  visibility: visible;
}
.service-block-style1:hover .service-content .share-icon {
  background-color: var(--theme-color1);
  color: var(--theme-color1-text-color);
}