@keyframes shimmer {
  100% {
    transform: translateX(50%);
  }
}


section.partners {
  height: unset;
  width: 100%;
  /* background-color: var(--light-bg); */
  padding: 2rem 0px;

  div.content {
    min-height: 100svh;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: repeat(9, 1fr);
    width: 80%;
    margin: 0px auto;
    gap: 0.8rem;
    a {
      display: flex;
      align-items: center;
    }

    img {
      margin: 0px auto;
      width: 80%;
      aspect-ratio: 1/1;
      object-fit: contain;
      background-color: #00000010;
      border-radius: 0.4rem;
      transition: transform 0.4s ease;
    }

    img:hover {
      background-color: #00000024;
      transform: scale(1.1);
    }

    .logo-container-sketlon {
      width: 80%;
      background-color: var(--light-bg);
      box-sizing: border-box;
      position: relative;
      overflow: hidden;
      aspect-ratio: 1/1;
      border-radius: 0.4rem;

      span {
        background: linear-gradient(
          270deg,
          rgba(109, 105, 100, 0) 0%,
          rgba(109, 105, 100, 0) 40%,
          rgba(109, 105, 100, 0.3) 50%,
          rgba(109, 105, 100, 0) 60%,
          rgba(109, 105, 100, 0) 100%
        );

        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        transform: translateX(-50%);

        animation: shimmer 1s alternate infinite ease-in-out;
      }
    }
  }
}

@media only screen and (max-width: 1024px) {
  section.partners {
    div.content {
      grid-template-columns: 1fr 1fr 1fr;
      gap: 0.2rem;
    }
  }
}

@media only screen and (max-width: 640px) {
}
