.sps-swiper img {
    width: 100%;
    height: auto;
    border-radius: 30px;
}
.sps-swiper h3 {
    color: #000;
    font-weight: 700;
    font-size: 18px;
    margin: 25px 0 15px;
    max-width: 300px;
}
.sps-swiper .sps-category {
    color: #FF5E35;
    font-weight: 300;
    font-size: 15px;
}
@media (max-width: 991px) {
    .sub-menu {
        width: 100%;
    }
    li.menu-item {
        flex-direction: row !important;
        justify-content: center;
        flex-wrap: wrap;
    }
    .drop-toggler {
      display: inline-block;
      padding: 0 !important;
      background: transparent;
      border: none;
      transform: rotate(-90deg);
      transition: .5s all ease;
    }
    .drop-toggler.active {
        transform: rotate(0);
        transition: .5s all ease;
    }
    .drop-toggler svg path {
        fill: #ff5e35;
    }
}

/*Tabbing*/
.tabs-nav {
  display: flex;
  gap: 5px;
  margin-bottom: 50px;
}

.tab-btn {
  background: none;
  border: none;
  border-radius: 0 !important;
  cursor: pointer;
  padding: 10px 15px;
  font-weight: 700;
  font-size: 18px;
  color: #7F7F7F;
  border-bottom: 2px solid transparent;
  transition: .3s all ease;
}

.tab-btn.active {
  border-color: #FF5E35;
  color: #FF5E35;
  font-size: 28px;
  transition: .3s all ease;
}

.tab-pane {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  display: none;
}

.tab-pane.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.projects-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 50px;
}
.project-card {
    width: 48%;
}

.project-card img {
  width: 100%;
  height: 300px;
  border-radius: 50px;
  object-fit: cover;
  object-position: center center;
}
.project-card h4 {
    color: black;
    font-size: 30px;
    font-weight: 700;
    margin: 35px 0 20px;
}
.project-card p {
    color: black;
    font-size: 17px;
    font-weight: 300;
}
@media (max-width: 1290px) {
    .tabs-nav {
        white-space: nowrap;
        overflow-x: scroll;
    }
    .tabs-nav::-webkit-scrollbar{
        display: none;
    }
}
@media (max-width: 991px) {
    .project-card img {
        height: 200px;
        border-radius: 30px;
    }
    .project-card h4 {
        font-size: 22px;
        margin: 20px 0 0;
    }
    .project-card p {
        font-size: 16px;
    }
}
@media (max-width: 767px) {
    .tabs-nav {
        margin-bottom: 30px;
    }
    .tab-btn.active {
        font-size: 20px;
    }
    .tab-btn {
        padding: 8px 12px;
    }
    .project-card {
        width: 100%;
        row-gap: 35px;
    }
}


