body {
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100vh;
  font-family: 'Rubik', sans-serif;
  overflow-x: hidden;
  background-color: var(--color-light);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  background-color: #eee;
  min-width: 360px;
}

.header {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 120px;
  min-height: 120px;
  border-bottom: 5px solid #000;
  background-color: #fff;
}

.header__image {
  width: 300px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 30px;
  height: calc(100vh - 120px);
  padding: 40px;
  max-width: 1280px;
  margin: auto auto;
}

.card {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 5%;
  background-color: #fff;
  transition: all .2s;
}

.card__logo {
  max-width: 100%;
  max-height: 100%;
}

.card:hover {
  transform: scale(1.1);
  box-shadow: 0 0 40px 0px rgba(0,0,0,0.2);
}

@media only screen and (max-width : 1200px) {
  .cards {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
}

@media only screen and (max-width : 900px) {
  .cards {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(4, 1fr);
  }
}

@media only screen and (max-width : 640px) {
  .cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(5, 1fr);
    gap: 40px;
    height: calc(100vh - 120px);
    padding: 40px;
    max-width: 1000px;
    margin: auto auto;
  }
}

@media only screen and (max-width : 480px) {
  .cards {
    display: grid;
    gap: 30px;
  }
}