.button_purchase {
  color: white;
  background-color: var(--persian-green);
  padding: 21px 40px;
  transition: all .2s ease;
}

.button_purchase:hover {
  background-color: var(--persian-dark-green);
}

.purchase {
  scroll-margin-top: 50px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  background-image: url(../assets/images/background.webp);
  background-size: 320px;
  background-position: 26px 11px;
}
.purchase__content {
  padding-top: 250px;
  width: 100%;
  z-index: 1;
  max-width: 1440px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.purchase__title {
  font-size: 4rem;
  font-weight: 700;
  color: var(--deep-blue);
  margin-bottom: 29px;
}
.purchase__list {
  display: flex;
  justify-content: center;
  margin-top: 61px;
  gap: 17px;
}
.purchase-item {
  background: white;
  height: 216px;
  width: 216px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: scale(1);
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  transition: transform 0.3s, box-shadow 0.3s;
  border: none;
}
.purchase-item:hover {
  box-shadow: 0px 0px 80px 0px rgba(0, 177, 173, 0.4);
  transform: scale(1.11);
}
.purchase-item__image_uteka {
  width: 143px;
  height: auto;
}
.purchase__redirect {
  font-size: 2rem;
  font-weight: 400;
  color: var(--graphite-black);
  margin-top: 58px;
  margin-bottom: 36px;
}
.purchase-background {
  width: 100%;
  height: 1009px;
  position: absolute;
}
.purchase-background__top {
  width: 100%;
  height: 184px;
  background: white;
}
.purchase-background__wrapper {
  display: flex;
  justify-content: center;
}
.purchase-wrapper__hexagon {
  min-width: 1870px;
  height: 786px;
  background-image: url(../assets/images/hexagon-white-half-invert.webp);
  background-repeat: no-repeat;
  margin-top: auto;
}
.purchase-wrapper__fill {
  background: white;
  width: 100%;
}

@media (max-width: 1023px) {
  .purchase__content {
    padding-top: 168px;
  }
  .purchase__title {
    font-size: 3.2rem;
    margin-bottom: 32px;
  }
  .purchase-background__top {
    height: 129px;
  }
  .purchase__list {
    margin-top: 43px;
  }
  .purchase__redirect {
    margin-top: 36px;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .purchase-background__top {
    height: 48px;
  }
  .purchase__content {
    padding-top: 89px;
  }
  .purchase__title {
    font-size: 2.4rem;
    margin-bottom: 17px;
  }
  .purchase-item {
    height: 114px;
    width: 114px;
  }
  .purchase-item__image_yandex {
    height: 15px;
  }
  .purchase-item__image_wildberries {
    height: 23px;
  }
  .purchase-item__image_pharmacy {
    height: 22px;
  }
  .purchase-item__image_uteka {
    width: 76px;
    height: auto;
  }
  .purchase__list {
    gap: 8px;
    margin-top: 37px;
  }
  .purchase__redirect {
    text-align: center;
    width: 254px;
    font-size: 1.6rem;
    margin-bottom: 19px;
    line-height: 22px;
    margin-top: 35px;
  }
}
@media (max-width: 360px) {
  .purchase-background__top {
    height: 67px;
  }
  .purchase__list {
    flex-direction: column;
    gap: 12px;
  }
  .purchase-item {
    height: 134px;
    width: 134px;
  }
}/*# sourceMappingURL=purchase.css.map */