/* START OF JOIN PROJECTS */

.project-display {
  padding: 2rem;
}

.project-display div {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  grid-gap: 100px 50px;
  /* align-items: center; */
  text-align: center;
}

.project-dropdowns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.project-card p {
  margin: 0;
  width: 100%;
}

.project-card span {
  font-size: 1rem !important;
  line-height: 1.25rem !important;
  color: #333333 !important;
  display: block;
  transition: 0.3s ease-in-out;
}

.project-card img {
  transition: 0.3s ease-in-out;
  cursor: pointer;
  max-width: 150px;
  max-height: 100px;
  min-height: 100px;
  margin: 0 auto;
}

.project-card img:hover,
.project-card img:hover+span {
  transform: scale(1.1) !important;
}

.project-card a:hover {
  text-decoration: none !important;
}

.industry-dropdown {
  float: right !important;
  margin-right: 20px !important;
}

.industry-dropdown,
.technologysector-dropdown {
  max-width: 33.3% !important;
  margin: 0 auto !important;
}

.viewMoreProjects {
  text-align: center;
}

.viewMoreProjects button {
  color: #fff !important;
  border: none !important;
  background: #0099cc !important;
  padding: 10px 20px;
  border-radius: 15px;
  cursor: pointer;
}


/* MOBILE */

@media only screen and (max-width: 600px) {
  .project-dropdowns {
    grid-template-columns: auto;
  }

  .industry-dropdown {
    float: none !important;
    margin-right: 0 !important;
  }

  .industry-dropdown,
  .technologysector-dropdown {
    max-width: 100% !important;
  }

  .project-card img {
    max-width: 100%;
  }

  .project-card a {
    text-align: center;
  }
}
