.collection__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 20px;
}
.collection__item {
  width: 100%;
  max-width: 375px;
  height: 225px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 40px;
  cursor: pointer;
}
.collection__item:first-child {
  height: 310px;
  align-items: center;
  padding-bottom: 0;
}
.collection__item:last-child {
  height: 310px;
  align-items: center;
  padding-bottom: 0;
}
.collection__name {
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 300;
  text-align: center;
  z-index: 1;
  cursor: pointer;
}
.collection__img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
}
.collection__img img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (min-width: 720px) {
  .collection__list {
    justify-content: space-between;
  }
  .collection__item {
    max-width: calc(50% - 10px);
  }
  .collection__item:first-child {
    height: 223px;
    max-width: 100%;
  }
  .collection__item:last-child {
    height: 223px;
    max-width: 100%;
  }
  .collection__name {
    font-size: 40px;
  }
}
@media (min-width: 992px) {
  .collection__item {
    height: 300px;
  }
  .collection__item:first-child {
    height: 310px;
  }
  .collection__item:last-child {
    height: 310px;
  }
}
@media (min-width: 1290px) {
  .collection__item {
    height: 380px;
    padding-bottom: 60px;
  }
  .collection__item:first-child {
    height: 390px;
  }
  .collection__item:last-child {
    height: 390px;
  }
}
@media (min-width: 1920px) {
  .collection__item {
    height: 496px;
  }
  .collection__item:first-child {
    height: 496px;
  }
  .collection__item:last-child {
    height: 496px;
  }
}