.single-services {
  position: relative;
  min-height: 400px;
}

.single-services .services-image {
  position: relative;
  height: 400px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center ;
}

.single-services .services-image::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s linear 0s;
  -moz-transition: all 0.4s linear 0s;
  -ms-transition: all 0.4s linear 0s;
  -o-transition: all 0.4s linear 0s;
  transition: all 0.4s linear 0s;
}

.single-services .services-image img {
  width: 100%;
}

.single-services .services-content {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s linear 0s;
  -moz-transition: all 0.4s linear 0s;
  -ms-transition: all 0.4s linear 0s;
  -o-transition: all 0.4s linear 0s;
  transition: all 0.4s linear 0s;
}

.single-services .services-content .services-title {
  padding-bottom: 5px;
  color: #fff;
  font-weight: 600;
  font-size: 2em;
}

.single-services .services-content .services-title > a {
  font-size: 30px;
  font-weight: 900;
  color: #fff;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: all 0.4s linear 0s;
  -moz-transition: all 0.4s linear 0s;
  -ms-transition: all 0.4s linear 0s;
  -o-transition: all 0.4s linear 0s;
  transition: all 0.4s linear 0s;
  opacity: 0;
}

.single-services .services-content > a {
  font-size: 14px;
  color: #e52959;
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: all 0.4s linear 0s;
  -moz-transition: all 0.4s linear 0s;
  -ms-transition: all 0.4s linear 0s;
  -o-transition: all 0.4s linear 0s;
  transition: all 0.4s linear 0s;
  opacity: 0;
}

.single-services .services-content > a i {
  margin-left: 5px;
}

.single-services:hover .services-image::before {
  opacity: 1;
  visibility: visible;
}

.single-services:hover .services-content {
  opacity: 1;
  visibility: visible;
}

.single-services:hover .services-content .services-title > a {
  -webkit-transform: translateY(0%);
  -moz-transform: translateY(0%);
  -ms-transform: translateY(0%);
  -o-transform: translateY(0%);
  transform: translateY(0%);
  opacity: 1;
}

.single-services:hover .services-content > a {
  -webkit-transform: translateY(0%);
  -moz-transform: translateY(0%);
  -ms-transform: translateY(0%);
  -o-transform: translateY(0%);
  transform: translateY(0%);
  opacity: 1;
}
.services-content ul {
   padding: 0;
}
.services-content ul li a{
    color: #fff;
    text-decoration: underline;

}
.services-content ul li a:hover{
    color: var(--fs_interactive_color);
    opacity: 1;
}
#services .owl-next, #services .owl-prev{
  position: absolute;
    top: 40%;
}
#services .owl-next{
  right: 45px;
}
#services .owl-prev{
  left: 45px;
}
#services .owl-next a, #services .owl-prev a{
   font-size: 4em;
}