.assortment {
  scroll-margin: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.assortment__content {
  display: flex;
  width: 100%;
  max-width: 1440px;
  padding: 37px 60px 20px 60px;
  box-sizing: border-box;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}
.assortment__title {
  font-size: 3.6rem;
  font-weight: 700;
  color: var(--deep-blue);
  margin-bottom: 30px;
}
.assortment__manufacturer {
  font-size: 2rem;
  font-weight: 400;
  color: var(--graphite-black);
  margin-top: 33px;
}
.assortment__category {
  font-size: 2rem;
  padding: 11px 24px;
  font-weight: 700;
  color: var(--persian-green);
  background: linear-gradient(to right, #EBF7F5, #F6F8F5);
  border-radius: 25px;
}
.assortment__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 67px;
  align-items: center;
  box-sizing: border-box;
  gap: 90px;
}
.assortment__top-row {
  display: flex;
  gap: 118px;
}
.assortment__bottom-row {
  gap: 120px;
  display: flex;
  align-items: center;
}
.assortment__left-column {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.assortment__right-column {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.assortment__items {
  display: flex;
  gap: 120px;
}
.assortment__items_bottom {
  gap: 120px;
}
.assortment-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}
.assortment-item__name {
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--deep-blue);
  margin-top: 18px;
  text-align: center;
  line-height: 24px;
  width: 220px;
  transition: color 0.1s;
}
.assortment-item__image {
  transform: scale(1);
  transition: transform 0.3s;
}
.assortment-item__image_strawberry {
  width: 191px;
}
.assortment-item__image_lemon {
  width: 170px;
  margin-top: 5px;
  margin-bottom: 11px;
}
.assortment-item__image_chocolate {
  width: 170px;
  margin-top: 5px;
  margin-bottom: 11px;
}
.assortment-item__image_chicken {
  width: 166px;
  margin-bottom: 12px;
}
.assortment-item__image_potato {
  width: 166px;
  margin-bottom: 12px;
}
.assortment-item:hover .assortment-item__image {
  transform: scale(1.11) translateY(-4px);
}
.assortment-item:hover .assortment-item__name {
  color: var(--persian-green);
}
.assortment__header {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 39px;
  width: 100%;
}
.assortment__line {
  position: absolute;
  border: 1px solid var(--lavender);
  top: 21px;
  z-index: -1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.assortment__spacer {
  position: absolute;
  background: white;
  height: 10px;
}
.assortment__spacer_cocktail {
  width: 159px;
}
.assortment__spacer_dessert {
  width: 154px;
}
.assortment__spacer_soup {
  width: 120px;
}
.assortment__line_cocktail {
  width: 117%;
}
.assortment__line_dessert {
  width: 107%;
}
.assortment__line_soup {
  width: 108%;
}
.assortment__span-reg {
  display: inline-block;
  transform: translateY(-11px);
  font-size: 2.2rem;
}

@media (max-width: 1023px) {
  .assortment__content {
    padding: 40px 60px 20px 60px;
  }
  .assortment__title {
    font-size: 3.2rem;
  }
  .assortment__top-row {
    flex-direction: column;
    margin-top: 9px;
    gap: 76px;
  }

  .assortment__list {
    gap: 76px;
  }
  /* .assortment__bottom-row {
    margin-top: 76px;
  } */
  .assortment__line_cocktail {
    width: 49%;
  }
}
@media (max-width: 767px) {
  .assortment__content {
    padding: 12px 60px 20px 60px;
  }
  .assortment__title {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 17px;
    max-width: 270px;
    width: 100%;
  }
  .assortment__span-reg {
    transform: translateY(-1px);
    font-size: 2.3rem;
  }
  .assortment__manufacturer {
    font-size: 1.6rem;
    margin-top: 17px;
  }
  .assortment__list {
    margin-top: 41px;
  }
  .assortment__top-row {
    margin-top: 0px;
    gap: 39px;
  }

  .assortment__bottom-row {
    flex-direction: column;
    gap: 39px;
  }

  .assortment__header {
    margin-bottom: 32px;
  }
  .assortment__items {
    flex-direction: column;
    gap: 64px;
  }

  .assortment__items_bottom {
    gap: 71px;
  }
  .assortment__category {
    font-size: 1.8rem;
    padding: 8px 24px;
  }

  .assortment__line {
    width: 118%;
    top: 19px;
  }

  .assortment__list {
    gap: 37px;
  }
  /* .assortment__bottom-row {
    margin-top: 37px;
  } */
}/*# sourceMappingURL=assortment.css.map */