.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-style4 {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding-right: 80px;
  margin-right: 50px;
}
.service-block-style4.style-2 {
  margin-right: 0;
  padding: 50px;
  border: none;
  border-radius: 7px;
  background: #1C1C1C;
  backdrop-filter: blur(35px);
  position: relative;
}
.service-block-style4.style-2 .service-image {
  width: 224px;
  height: 207px;
  border-radius: 0px 7px 0px 200px;
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.4s ease-in-out;
}
.service-block-style4.style-2 .service-image::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--body-bg);
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.service-block-style4.style-2:hover .service-image {
  height: 100%;
  width: 100%;
  bottom: 0;
  right: 0;
  top: 0;
  border-radius: 7px;
}
.service-block-style4.style-2:hover .service-image::before {
  visibility: visible;
  opacity: 0.9;
}
@media (max-width: 1199.98px) {
  .service-block-style4 {
    padding-right: 20px;
    margin-right: 0;
  }
}
.service-block-style4 .icon svg {
  transition: all 900ms ease;
  display: inline-block;
}
.service-block-style4 .content {
  margin-top: 90px;
  max-width: 300px;
}
.service-block-style4 .content .service-title {
  max-width: 255px;
  margin-bottom: 20px;
  transform: translateY(80px);
  transition: all 0.4s ease-in-out;
}
.service-block-style4 .content .service-title a {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(0, currentColor), to(currentColor));
  background-image: linear-gradient(to right, currentColor 0, currentColor 100%);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 1px;
  -webkit-transition: all 0.5s, background-size 0.5s;
  transition: all 0.5s, background-size 0.5s;
  color: var(--headings-color);
}
.service-block-style4 .content .service-title a:hover {
  color: var(--theme-color1);
  background-size: 100% 1px;
}
.service-block-style4 .content p {
  max-width: 290px;
  transform: translateY(100px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
}
.service-block-style4 .service-btn a {
  display: flex;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 10px 30px;
  font-family: var(--sec-title-font-family);
  font-weight: 500;
  font-size: 16px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: 30px;
  align-items: center;
  justify-content: space-between;
}
.service-block-style4 .service-btn a::before {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: var(--theme-color1);
  z-index: -1;
  transition: 0.5s;
}
.service-block-style4 .service-btn a:hover:before {
  width: 100%;
  left: 0;
}
.service-block-style4 .service-btn a:hover {
  color: var(--theme-color-black);
  border: 1px solid var(--theme-color1);
}
.service-block-style4 .service-btn a i {
  transform: rotate(-45deg);
  font-size: 15px;
  transition: 0.5s;
}
.service-block-style4:hover .icon i, .service-block-style4:hover .icon svg {
  transform: rotateY(360deg);
}
.service-block-style4:hover .content .service-title {
  transform: translateY(0px);
}
.service-block-style4:hover .content p {
  transform: translateY(0px);
  opacity: 1;
  visibility: visible;
}

.bg-cover {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-position: center;
}