.sponsors {
  align-items: center;
  display: flex;
  justify-content: space-evenly;
  flex-direction: column;
}

.card {
  align-items: center;
  display: flex;
  justify-content: space-evenly;
  flex-direction: column;
  border-radius: 15px;
  z-index: 1;
  margin: 1rem;
  min-width: 55rem;
}

.wrapper {

  display: flex;
  flex-direction: row;
  gap: 1rem;
}

.title {
  font-size: 3rem;
  margin-top: 7rem;
}

.subtitle {
  font-size: 2.7rem;
  margin-top: 5rem;
}

.subsubtitle {
  font-size: 2rem;
  margin: 0.5rem;
}

.sponsors {
  z-index: 100;
}

.sponsor_card {
  margin: 1rem;
  background: var(--clr5);
  border-radius: 5px;
  transition: scale 0.3s ease-in-out;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.sponsor_card:hover {
  scale: 1.05;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
}

.sponsor_card_gray {
  margin: 1rem;
  background: gray;
  border-radius: 15px;
  transition: scale 0.3s ease-in-out;
}

.sponsor_img {
  height: 8rem;
  width: 15rem;
}

.sponsor_banner {
  width: 100%;
}

@media (max-width: 480px) {
  .projects_title {
    font-size: 2.5rem;
  }

  .left {
    margin-right: 0rem;
  }

  .right {
    margin-left: auto;
  }

  .card {
    width: 21rem;
    margin: 0;
  }

  .card_title {
    text-align: left;
    color: var(--clr5);
    display: -webkit-box;
    /* -webkit-line-clamp: 2; */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .text {
    text-align: left;
    color: var(--clr6);
    display: -webkit-box;
    /* -webkit-line-clamp: 8; */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .sidenav {
    width: 80%;
  }

}

@media (max-width: 480px) {
  .wrapper {
    flex-direction: column;
  }


}