/*----------------------------------
  SECTION TITLE 
  -----------------------------------*/
.maha-client-wrap  .swiper-button-prev,
.maha-client-wrap .swiper-button-next {
      width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: var(--color-primary);
    transition: all .3s;
    opacity: 0;
    visibility: hidden;
}
.maha-client-wrap  .swiper-button-prev:hover,
.maha-client-wrap .swiper-button-next:hover{
  background: var(--color-second);
}
.maha-client-wrap .swiper-button-prev{
    left: -50px;
    top: 75%;
    right: auto;
}
.maha-client-wrap .swiper-button-next{
    right: -50px;
    top: 75%;
    left: auto;
}

.maha-client-wrap .swiper-button-prev:after,
.maha-client-wrap .swiper-button-next:after {
    color: #fff;
    font-size: 20px;
}

.maha-client-wrap .section-title-wrap {
  margin-bottom: 20px;
}

.maha-client-wrap:hover .swiper-button-prev,
.maha-client-wrap:hover .swiper-button-next
{
  visibility: visible;
  opacity: 1;
}

.maha-client-wrap .container {
    position: relative;
}

.maha-client-wrap .section-title-wrap .section-title {
  display: inline-block;
  position: relative;
  margin: 5px 0 40px;
  text-transform: capitalize;
  line-height: 1.4;
  font-size: calc(1.525rem + 3.3vw);
  color: var(--color-primary);
}

@media (min-width: 1500px) {
  .maha-client-wrap .container {
    max-width: 1200px;
  }
}

@media (min-width: 1200px) {
  .maha-client-wrap .section-title-wrap .section-title {
    font-size: 4rem;
  }
}

.maha-client-wrap .section-title-wrap .section-title::before,
.maha-client-wrap .section-title-wrap .section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  width: 20px;
  height: 8px;
  border-radius: 4px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
  background-color: #fed104;
  -webkit-animation: animate 6s linear infinite;
  animation: animate 6s linear infinite;
}

.maha-client-wrap .section-title-wrap .section-title::before {
  right: 50%;
  margin-right: 4px;
}

.maha-client-wrap .section-title-wrap .section-title::after {
  left: 50%;
  margin-left: 4px;
}

.maha-client-wrap .section-title-wrap p {
  display: inline-block;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 0;
  max-width: 1200px;
}

@-webkit-keyframes animate {
  0% {
    width: 20px;
  }

  25% {
    width: 50px;
  }

  50% {
    width: 50px;
  }

  75% {
    width: 100px;
  }

  100% {
    width: 100px;
  }
}

@keyframes animate {
  0% {
    width: 20px;
  }

  25% {
    width: 50px;
  }

  50% {
    width: 50px;
  }

  75% {
    width: 100px;
  }

  100% {
    width: 100px;
  }
}

/*-------------------------------
  Client
  --------------------------------*/
.maha-client-wrap {
  /*padding-top: 50px;*/
  /*padding-bottom: 120px;*/
  padding: 45px;
  background-color: #f8f6f3;
  position: relative;
}

@media (min-width: 1200px) {
  .maha-client-wrap {
    /*padding-bottom: 100px;*/
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .maha-client-wrap {
    /*padding-bottom: 80px;*/
  }
}
@media (max-width: 991px) {
  .maha-client-wrap {
    /*padding-bottom: 50px;*/
  }
}

.maha-client-wrap .client-slider {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 20px 30px;
}

.maha-client-wrap img {
  display: block;
  margin: 0 auto;
  aspect-ratio: 2 / 1;
}

@media only screen and (max-width: 767px) {
  .maha-client-wrap .client-slider {
    /*padding: 0 0 30px;*/
  }

  .maha-client-wrap .client-logo-wrap {
    padding: 0;
    text-align: center;
  }
  
  .maha-client-wrap .swiper-button-prev{
    left: -35px;
  }
  .maha-client-wrap .swiper-button-next{
      right: -35px;
  }
}

@media only screen and (max-width: 414px) {
  .maha-client-wrap img {
    width: 130px;
  }
}