/*----------------------------------
  SECTION TITLE 
  -----------------------------------*/
.maha-project-wrap .section-title-wrap {
  position: relative;
  margin-bottom: 6rem;
}

.maha-project-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);
}
.maha-project-wrap .section-title-wrap .section-title .section-title-text {
  font-family: var(--title-font-family);
}
.maha-project-wrap .project-content-single {
  text-align: center;
  padding: 0px 0px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.maha-project-wrap .section-title-wrap .section-title::before,
.maha-project-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: var(--color-primary) !important;
  -webkit-animation: animate 6s linear infinite;
  animation: animate 6s linear infinite;
}

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

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

.maha-project-wrap .section-title-wrap p {
  display: inline-block;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 0;
  max-width: 1200px;
  font-family: var(--font-family);
}

@-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;
  }
}

/*-------------------------------
  PROJECT
  --------------------------------*/
.maha-project-wrap  {
  padding: 120px 0;
  background-color: #f5f5f6;
}

@media (min-width: 1200px) {
  .maha-project-wrap {
    padding: 100px 0;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .maha-project-wrap {
    padding: 80px 0;
  }
}
@media (max-width: 991px) {
  .maha-project-wrap {
    padding: 50px 0;
  }
}

.maha-project-wrap .project-slide {
  position: relative;
  background-color: #fff;
  border-radius: var(--button-radius);
  padding: 70px;
}

@media(max-width:768px) {
  .maha-project-wrap .project-slide {
    padding: 0;
  }
  .maha-project-wrap .project-content-single{
    padding: 10px 0;
  }
}

.maha-project-wrap .project-slide .project-image {
  position: relative;
  /*aspect-ratio: 17 / 11;*/
}

@media only screen and (min-width: 992px) {
  .maha-project-wrap .project-slide .project-image {
    padding-left: 0;
  }
}

.maha-project-wrap .project-slide .project-image .swiper-project-pagination {
  bottom: -40px;
}

@media only screen and (min-width: 768px) {
  .maha-project-wrap .project-slide .project-image .swiper-project-pagination {
    bottom: 0;
  }
}

.maha-project-wrap .project-slide .project-image img {
  border-radius: 15px;
  width: inherit !important;
}

@media only screen and (min-width: 992px) {
  .maha-project-wrap .project-slide .project-image img {
    border-radius: 0;
    background-clip: padding-box;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
  }
}

.maha-project-wrap .project-slide .swiper-pagination-bullet {
  background-color: var(--color-primary);
}

.maha-project-wrap .project-content {
  overflow: hidden;
  /*padding-bottom: 60px;*/
}

@media only screen and (min-width: 992px) {
  .maha-project-wrap .project-content {
    margin-right: 30px;
    padding-bottom: 0;
  }
}


.maha-project-wrap .project-content-single .project-content-text {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  font-family: var(--font-family);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

@media only screen and (max-width: 992px) {
  .maha-project-wrap .project-content {
    -webkit-line-clamp: 12;
  }
}

.maha-project-wrap .project-content-single .project-content-title {
  display: inline-block;
  margin: 0 0 35px;
  padding: 10px 30px;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  color: #FFF;
  background-color: var(--color-primary);
  text-decoration: none;
  height: calc(100%/3);
  display: flex;
  align-items: center;
  border-radius: 4px 15px 4px 4px;
}

.maha-project-wrap .project-content-single .project-content-line {
  display: block;
  height: 1px;
  width: 100%;
  margin-top: 40px;
  clear: both;
  background-color: #808080;
}

.maha-project-wrap .project-content-single .btn-project {
  display: inline-block;
  padding: 14.5px 36.25px;
  min-width: 200px;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0;
  text-align: center;
  vertical-align: middle;
  border: none;
  cursor: pointer;
  outline: none !important;
  background-color: var(--color-primary);
  color: #fff;
  margin-top: 30px;
}

.maha-project-wrap .project-content-single .btn-project:hover{
   animation: pulse 1.5s infinite;
}


.maha-project-wrap .project-filter .btn-filter {
  padding: 5px 15px;
  min-width: 100px;
  font-size: 18px;
  border-radius: var(--button-radius);
  margin-bottom: 20px;
}

.maha-project-wrap .project-filter .active {
  background-color: var(--color-second);
  color: #FFF;
}

.maha-project-wrap .swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 20px;
  width: 50%;
}

@media (max-width:992px) {
  .maha-project-wrap .swiper-pagination-bullets.swiper-pagination-horizontal {
  width: 100%;
  bottom: -40px;
}
}
@media (max-width:768px) {
  .maha-project-wrap .project-content-single .project-content-title {
    border-radius:4px ;
  }
}


.maha-project-wrap .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  background-color: #fff;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.maha-project-wrap .swiper-pagination-bullet-active {
  width: 55px;
  border-radius: 15px;
  background-clip: padding-box;
  background-color: var(--color-primary);
}