.portfolio {
  padding: 0px 30px;
  margin: 6.8rem 0rem 8rem;
}
.portfolio-title h4 {
  text-align: center;
  font-size: 280px;
  font-weight: 400;
  font-family: var(--font-changa);
  color: var(--base-color);
  text-transform: uppercase;
  line-height: 50px;
  pointer-events: none;
}
.sectors {
  margin-top: 7rem;
}
.status {
  margin-top: 2rem;
}
.portfolio-tag {
  font-size: 15px;
  font-weight: 500;
  font-family: var(--font-roboto);
}
.filters {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 1rem;
  font-family: var(--font-roboto);
  flex-wrap: wrap;
  gap: 0.9rem;
}
.bg-filter {
  background-color: var(--base-color);
  background: var(--main-background);
  color: #fff;
  padding: 10px 25px;
}
.border-filter {
  padding: 7px 40px;
  border: 2px dashed var(--base-color) !important;
}
.btn-filter {
  border-radius: 25px;
  cursor: pointer;
  outline: none;
  border: none;
  white-space: nowrap;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1.5rem;
  margin-top: 3rem;
}
.project-card img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  margin-bottom: 0.5rem;
}
.project-data {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0px;
  border-top: 2px dashed var(--base-color) !important;
  border-bottom: 2px dashed var(--base-color) !important;
  font-family: var(--font-roboto);
}
.project-data h6 {
  text-transform: uppercase;
  font-size: 14px;
  color: var(--black-color);
  margin-bottom: 3px;
}
.project-data p {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-color);
}
.project-data .arrow-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--base-color);
  background: var(--main-background);
  height: 35px;
  width: 35px;
  border-radius: 50px;
}
.project-data .arrow-icon img {
  width: 13px;
  height: 13px;
  margin-bottom: -1px;
}

/* Responsive Styles */
@media only screen and (max-width: 1200px) {
  .portfolio-title h4 {
    font-size: 200px;
  }
}

@media only screen and (max-width: 991px) {
  .portfolio {
    padding: 0px 20px;
    margin: 4rem 0rem 6rem;
  }

  .portfolio-title h4 {
    font-size: 150px;
    line-height: 40px;
  }

  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-card img {
    height: 400px;
  }
}

@media only screen and (max-width: 768px) {
  .portfolio-title h4 {
    font-size: 100px;
    line-height: 30px;
  }

  .sectors {
    margin-top: 4rem;
  }

  .filters {
    justify-content: center;
  }

  .btn-filter {
    padding: 8px 20px;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .project-card img {
    height: 350px;
  }

  .info-para {
    text-align: center !important;
  }
}

@media only screen and (max-width: 480px) {
  .portfolio {
    padding: 0px 15px;
    margin: 6rem 0rem 4rem;
  }

  .portfolio-title h4 {
    font-size: 80px;
    line-height: 25px;
  }

  .project-card img {
    height: 300px;
  }

  .project-data .arrow-icon {
    align-self: flex-end;
  }
}
