.owl__services .swiper-wrapper {
  margin: 15px 0;
  justify-content: center;Kanns
}

.owl__services .item {
  margin: 0 15px 60px;
  width: 340px;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  cursor: pointer;
  border-radius: var(--b-radius-m);
  -webkit-box-shadow: -1px 3px 8px -1px rgba(var(--c-neutral-darkest), 0.15);
  box-shadow: -1px 3px 8px -1px rgba(var(--c-neutral-darkest), 0.15);
}

.owl__services .item.active {
  width: 500px;
  -webkit-box-shadow: -1px 3px 8px -1px rgba(var(--c-neutral-darkest), 0.15);
  box-shadow: -1px 3px 8px -1px rgba(var(--c-neutral-darkest), 0.15);
}

.owl__services .item:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  content: '';
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#00000000', GradientType=0);
  height: 200px;
  bottom: -120px;
  width: calc(100% + 100px);
  right: -50px;
  filter: blur(35px);
}

.owl__services .item.active:after {
  background: transparent;
}

.owl__services .item-desc {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  bottom: 0;
  overflow: hidden;
  text-align: center;
  padding: 1rem;
  box-sizing: border-box;
}

.owl__services .item.active .item-desc {
  background-color: rgba(var(--c-neutral-darkest), 0.5);
}

.owl__services .item .owl__text .headline {
  font-size: var(--f-size-l-1);
  font-family: var(--f-family);
  font-weight: var(--f-weight-b);
  color: rgb(var(--c-neutral-lightest));
  margin-bottom: 2.5rem;
  top: 14rem;
  position: relative;
}

.owl__services .item.active .owl__text .headline {
  margin-bottom: 2.5rem;
  top: 6rem;
  position: relative;
}

.owl__services .item .owl__text p {
  display: none;
}

.owl__services .item.active .owl__text p {
  display: block;
  color: rgb(var(--c-neutral-lightest));
  top: 4rem;
  position: relative;
}

.owl__services .item .owl__text .font__button {
  color: rgb(var(--c-neutral-lightest));
  background: transparent;
  border: 2px solid rgb(var(--c-neutral-lightest));
  border-radius: var(--b-radius-m);
  line-height: 1.4;
  padding: 0.3rem 1rem;
}

.owl__services .item .owl__text .font__button:hover {
  color: rgb(var(--c-neutral-lightest));
  background: rgb(var(--c-primary));
  border: 2px solid rgb(var(--c-primary));
}

.owl__services .swiper-pagination {
  margin-top: 10px;
  position: relative;
  z-index: 5;
}

.owl__services .owl__icon {
  color: rgb(var(--c-primary));
  font-size: 80px;
  display: block;
  height: 130px;
  margin-bottom: 1rem;
}

.owl__services .item.active .owl__text .headline {
  color: rgb(var(--c-neutral-lightest));
}

.owl__services .item.active .owl__icon {
  color: rgb(var(--c-neutral-lightest));
}

/******** Middle section CSS End *******/

/***** responsive css Start ******/

@media (min-width: 992px) and (max-width: 1199px) {

  /* -------- Landing page ------- */
  .owl__services .item {
    margin: 0 12px 60px;
    width: 260px;
    height: 360px;
  }

  .owl__services .item.active {
    width: 400px;
  }

  .owl__services .item .owl__text .headline {
    top: 14rem;
  }
}

@media (min-width: 768px) and (max-width: 991px) {

  /* -------- Landing page ------- */
  .owl__services .item {
    margin: 0 12px 60px;
    width: 240px;
    height: 330px;
  }

  .owl__services .item.active {
    width: 360px;
  }

  .owl__services .item.active .owl__text .headline {
    top: 4rem;
  }

  .owl__services .item.active .owl__text p {
    top: 2rem;
  }
}

@media (max-width: 767px) {

  /* -------- Landing page ------- */
  .owl__services .item {
    margin: 0 10px 40px;
    width: 200px;
    height: 280px;
  }

  .owl__services .item.active {
    width: 270px;
  }

  .owl__services .item-desc {
    padding: 0 14px -5px;
  }

  .owl__services .owl__icon {
    font-size: 60px;
    height: 100px;
  }

  .owl__services .item .owl__text .headline {
    top: 12rem;
  }

  .owl__services .item.active .owl__text .headline {
    top: 0.5rem;
  }

  .owl__services .item.active .owl__text p {
    top: -1.5rem;
  }
}