.associations {
  min-height: 474px;
  display: flex;
  align-items: center;
  height: 100%;
}

.associations__header .associations__title {
  color: #00000066;
}

.associations__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid #E0E0E0;
  border-radius: 12px;
  overflow: hidden;
}

.associations__item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  height: 160px;
  border-right: 1px solid #E0E0E0;
  border-bottom: 1px solid #E0E0E0;
}

.associations__item:nth-child(5n) {
  border-right: none;
}

.associations__item:nth-last-child(-n + 5) {
  border-bottom: none;
}

.association__logo {
  width: 100%;
  height: auto;
  object-fit: contain;
}

@media (max-width: 1199px) {
  .associations {
    padding: 0 24px 60px;
  }

  .associations__item {
    height: 135px;
  }
}

@media (max-width: 767px) {
  .associations__item:nth-child(5n) {
    border-right: 1px solid #E0E0E0;
  }

  .associations__item:nth-last-child(-n + 5) {
    border-bottom: 1px solid #E0E0E0;
  }

  .associations {
    padding: 0 24px 44px;
  }

  .associations__item {
    height: 160px;
  }

  .associations__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}