/* .forYou1 {
  height: 600px;
  padding: 0;
  margin: 0;
  overflow: hidden;
  box-sizing: border-box;
}
.forYou1 .gallery {
  position: absolute;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.forYou1 .cards {
  position: absolute;
  width: 80%;
  max-width: 600px;
  min-height: 200px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.forYou1 .cards li {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  font-size: 1rem;
  font-family: sans-serif;
  background-color: #9d7cce;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 0.8rem;
}
.forYou1 .cards li h6 {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 1.5rem;
}
.forYou1 .cards li p {
  padding: 20px;
} */





/* .grid {
  grid-gap: 2rem;
  justify-content: center;
}

.grid > div {
  box-shadow: 0px 1px 10px var(--theme-color);
  width: 250px;
  height: 150px;
  display: grid;
  place-items: center;
  position: relative;
}

.grid > div img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0px 15px;
}

.forYou1 {
  margin: 2rem;
} */



.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  justify-content: center;
}

.grid > .logo {
  box-shadow: 0px 1px 10px var(--theme-color);
  width: 250px;
  height: 150px;
  display: grid;
  place-items: center;
  transition: transform 0.5s, filter 0.5s, opacity 0.5s;
  /* filter: grayscale(100%); */
  opacity: 0.6;
  justify-self: center;
}

.grid > .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0 15px;
}

.forYou1 {
  margin: 2rem;
}

.logo.active {
  transform: scale(1.2);
  filter: brightness(1);
  opacity: 1;
}
