.home-about-collections {
  padding-top: 20px;
  /* padding-bottom: 20px; */
}
.home-about-collections-list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.home-about-collections-list__item {
  display: flex;
  gap: 20px;
}
.home-about-collections-list__item > div {
  /* flex: 1; */
  /* width: calc(50% - 10px); */
  /* padding-top: 30px; */
  /* padding-bottom: 30px; */
}
.home-about-collections-list__item-img {
  display: flex;
  width: 40%;
}
.home-about-collections-list__item-img img {
  aspect-ratio: 1/1;
  object-fit: cover;
}
.home-about-collections-list__item-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 60%;
  padding-left: 40px;
  padding-right: 50px;
  padding-top: 40px;
  padding-bottom: 40px;
  text-align: left;
}
.home-about-collections-list__item-content h3 {
  margin-bottom: 30px;
}
.home-about-collections-list__item-content .paragraph__16 {
  margin-bottom: auto;
}
.home-about-collections-list__item:nth-of-type(even) {
  flex-direction: row-reverse;
}
.home-about-collections-list__item:nth-of-type(odd)
  .home-about-collections-list__item-content {
  /* height: calc(100% - 20px); */
}
.home-about-collections-list__item:nth-of-type(even)
  .home-about-collections-list__item-img {
  /* transform: translateY(-20px); */
  /* height: calc(100% + 20px); */
}

.home-about-collections-link {
  margin-top: 20px;
  padding: 40px 0;
  background: var(--main-gray);
  text-align: center;
}
.collections_products {
  display: flex;
  gap: 10px;
}
.collections_products a {
  width: 60px;
  height: 60px;
  display: inline-block;
}

@media only screen and (max-width: 991px) {
  .home-about-collections-list__item-content {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .home-about-collections-list__item,
  .home-about-collections-list__item:nth-of-type(even) {
    flex-direction: column;
    gap: 0;
  }

  .home-about-collections-list__item > div {
    width: 100%;
  }
  .home-about-collections-list__item-content {
    padding: 70px 40px;
  }
  .home-about-collections-list__item:nth-of-type(odd)
    .home-about-collections-list__item-content {
    height: unset;
  }
  .home-about-collections-list__item:nth-of-type(even)
    .home-about-collections-list__item-img {
    transform: unset;
    height: unset;
  }
  .home-about-collections-list__item-content br {
    display: none;
  }
  .collections_products a {
    width: 46px;
    height: 46px;
  }
}
