.tm-sc-service .icon {
  display: inline-block;
}
.tm-sc-service .icon,
.tm-sc-service .feature-title,
.tm-sc-service .feature-details {
  transition: all 300ms ease;
}

.service-block-style1 {
  padding: 40px;
  background-color: var(--theme-color-white);
  box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 3;
  border-radius: 20px;
  overflow: hidden;
  transition: all 300ms ease;
}
.service-block-style1:hover {
  background-color: var(--theme-color1);
}
.service-block-style1:hover .shape-1 {
  filter: opacity(0.3);
}
.service-block-style1:hover .service-title {
  color: var(--theme-color-white);
}
.service-block-style1:hover .service-icon i {
  color: var(--theme-color-white);
}
.service-block-style1:hover .service-count {
  -webkit-text-stroke-color: var(--theme-color-white);
}
.service-block-style1:hover .service-details li {
  color: var(--theme-color-white);
}
.service-block-style1:hover .service-details li i {
  color: var(--theme-color3);
  margin-right: 10px;
}
.service-block-style1:hover .button-box .icon {
  opacity: 0;
  scale: 0;
}
.service-block-style1:hover .button-box .btn-box {
  transform: translateX(-40px);
  opacity: 1;
  visibility: visible;
  transition: all 0.2s ease-in-out;
}
.service-block-style1:hover .button-box .btn-box .read-more {
  color: var(--theme-color1);
  background-color: var(--theme-color-white);
}
.service-block-style1:hover .button-box .btn-box .arrow-btn {
  color: var(--theme-color1);
  background-color: var(--theme-color-white);
}
.service-block-style1 .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 35px;
}
.service-block-style1 .shape-1 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 228px;
  height: 328px;
  z-index: -1;
  background-image: url(../../../images/current-theme/shape1.png);
  transition: all 300ms ease;
}
.service-block-style1 .service-icon i {
  font-size: 75px;
  color: var(--theme-color2);
  transition: all 300ms ease;
  line-height: 1;
}
.service-block-style1 .service-count {
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--theme-color2);
  color: transparent;
  font-size: 80px;
  font-weight: 600;
  letter-spacing: -1.6px;
  line-height: 1;
  position: relative;
  transition: all 300ms ease;
  -webkit-mask-image: linear-gradient(to bottom, black 30%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 30%, transparent 100%);
}
.service-block-style1 .service-title {
  color: var(--theme-color2);
  letter-spacing: -0.6px;
  transition: all 300ms ease;
}
.service-block-style1 .service-title a:hover, .service-block-style1 .service-title a:focus {
  color: #fff;
}
.service-block-style1 .service-details {
  padding-top: 40px;
  padding-bottom: 40px;
}
.service-block-style1 .service-details li {
  color: var(--theme-color2);
  font-size: 16px;
  font-weight: 600;
  list-style: none;
}
.service-block-style1 .service-details li i {
  color: #7e8596;
  margin-right: 10px;
  display: inline-flex;
  transform: rotate(-30deg);
  transition: all 300ms ease;
}
.service-block-style1 .button-box {
  display: flex;
  align-items: center;
}
.service-block-style1 .button-box .icon {
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  width: 40px;
  height: 40px;
  background-color: var(--text-color);
  color: var(--theme-color-white);
  transition: all 300ms ease;
}
.service-block-style1 .button-box .icon i {
  rotate: -45deg;
}
.service-block-style1 .button-box .btn-box {
  position: relative;
  display: inline-flex;
}
.service-block-style1 .button-box .btn-box .read-more {
  position: relative;
  font-size: 14px;
  transition: all 300ms ease;
  padding: 10px 24px;
  border-radius: 50px;
  display: inline-block;
  text-transform: capitalize;
  color: var(--theme-color-white);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.service-block-style1 .button-box .btn-box .read-more:hover {
  color: var(--theme-color1);
  border-color: var(--theme-color2);
  background-color: var(--theme-color-white);
}
.service-block-style1 .button-box .btn-box .arrow-btn {
  position: relative;
  font-size: 16px;
  width: 46px;
  height: 46px;
  text-align: center;
  line-height: 44px;
  border-radius: 50px;
  display: inline-block;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 300ms ease;
  color: var(--theme-color-white);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.service-block-style1 .button-box .btn-box .arrow-btn:hover {
  color: var(--theme-color1);
  border-color: var(--theme-color2);
  background-color: var(--theme-color-white);
}
.service-block-style1 .button-box .btn-box:hover .read-more {
  -webkit-transform: translateX(46px);
  -moz-transform: translateX(46px);
  -ms-transform: translateX(46px);
  transform: translateX(46px);
}
.service-block-style1 .button-box .btn-box:hover .arrow-btn {
  position: absolute;
  left: 0px;
  top: 0px;
}