/*----------------------------------
  SECTION TITLE 
  -----------------------------------*/
.maha-client-wrap .section-title-wrap {
  position: relative;
  margin-bottom: 40px;
}

.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);
}

@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;
  background-color: #dde0e7;
}

@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 .maha-client-wrap-list {
  display: flex;
  flex-wrap: wrap;
}
.maha-client-wrap .maha-client-wrap-item{
  width: 20%;
  height: auto;
}
.maha-client-wrap .client-logo-wrap{
  display: flex;
  align-items: center;
  justify-content: center;
}


@media only screen and (max-width: 767px) {

  .maha-client-wrap .client-logo-wrap {
    padding: 0;
    text-align: center;
  }
}