.ova-services-slider .services-slider {
  padding: 30px 0px;
}
.ova-services-slider .services-slider.swiper-loading {
  visibility: hidden;
}
.ova-services-slider .services-slider .slick-list .slick-track {
  padding: 50px 0;
}
.ova-services-slider .services-slider .swiper-slide .item {
  cursor: pointer;
}
.ova-services-slider .services-slider .swiper-slide .item .item-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #FFF;
  box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.07);
  padding: 50px;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .ova-services-slider .services-slider .swiper-slide .item .item-box {
    margin: 0 10px;
  }
}
.ova-services-slider .services-slider .swiper-slide .item .item-box i {
  font-size: 50px;
  color: var(--primary);
  line-height: 1;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 2;
}
.ova-services-slider .services-slider .swiper-slide .item .item-box .sub-title {
  font-size: 20px;
  z-index: 2;
  color: var(--heading);
  margin: 0;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ova-services-slider .services-slider .swiper-slide .item .item-box img {
  position: absolute;
  z-index: 1;
  top: -100%;
  right: -100%;
  width: 250px;
  height: 250px;
  object-fit: cover;
  mix-blend-mode: luminosity;
  -webkit-transition: all 0.7s ease;
  -moz-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all 0.7s ease;
}
.ova-services-slider .services-slider .swiper-slide .item i.ovaicon-download {
  display: none;
}
.ova-services-slider .services-slider .swiper-slide-active {
  position: relative;
}
.ova-services-slider .services-slider .swiper-slide-active .item .item-box {
  background-color: #1d1729;
}
.ova-services-slider .services-slider .swiper-slide-active .item .item-box i {
  color: var(--secondary);
}
.ova-services-slider .services-slider .swiper-slide-active .item .item-box .sub-title {
  color: #FFF;
}
.ova-services-slider .services-slider .swiper-slide-active .item .item-box img {
  position: absolute;
  top: -95px;
  right: -50px;
}
.ova-services-slider .services-slider .swiper-slide-active .item i.ovaicon-download {
  display: block;
  color: #FFF;
  font-size: 8px;
  position: absolute;
  bottom: -10px;
  left: 50%;
  margin-left: -4px;
}
.ova-services-slider .services-slider .swiper-slide-active:before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid #1d1729;
  bottom: -15px;
  left: 50%;
  margin-left: -15px;
}
.ova-services-slider .services-slider-content .content {
  display: none;
  text-align: center;
}
.ova-services-slider .services-slider-content .content.is-active {
  display: block;
}
.ova-services-slider .services-slider-content .content .content-title {
  font-size: 30px;
  font-weight: bold;
  line-height: 1.2;
  color: var(--heading);
  margin: 0 0 20px;
}
.ova-services-slider .services-slider-content .content .description {
  font-size: 16px;
  line-height: 1.875;
  font-weight: 400;
  color: var(--text);
  margin: 0 0 35px;
  padding: 0 20%;
}
.ova-services-slider .services-slider-content .content .description p {
  margin: 0;
}
@media screen and (max-width: 1024px) {
  .ova-services-slider .services-slider-content .content .description {
    padding: 0;
  }
}
.ova-services-slider .services-slider-content .content a.services-btn {
  position: relative;
  display: inline-block;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1.2;
  background-color: var(--primary);
  font-size: 15px;
  padding: 23px 50px 20px;
  color: #fff;
  fill: #fff;
  text-align: center;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.ova-services-slider .services-slider-content .content a.services-btn:before {
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background-color: var(--heading);
  -webkit-transform-origin: top;
  transform-origin: top;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
}
.ova-services-slider .services-slider-content .content a.services-btn .btn-text {
  position: relative;
  z-index: 1;
}
.ova-services-slider .services-slider-content .content a.services-btn:hover:before {
  transform: scaleY(1);
}