
/* latin-ext */
@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../fonts/92zPtBhPNqw79Ij1E865zBUv7myjJTVPNI48mg.woff) format('woff');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../fonts/92zPtBhPNqw79Ij1E865zBUv7myjJTVBNI4.woff) format('woff');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* latin-ext */
@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(../fonts/92zPtBhPNqw79Ij1E865zBUv7mxEIjVPNI48mg.woff) format('woff');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(../fonts/92zPtBhPNqw79Ij1E865zBUv7mxEIjVBNI4.woff) format('woff');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}



html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

body {
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.5;
  font-family: "Jost", Arial, Helvetica, sans-serif;
  color: #222222;
  background: #F2F2F2;
}

img {
  max-width: 100%;
}

ul,
li {
  list-style: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.overflow {
  overflow: hidden;
}

/* -----------------------------------------Common----------------------------------------- */
.container {
  width: 100%;
  max-width: 768px;
  margin: 0 auto;
  padding: 0 15px;
}

.button {
  position: relative;
  display: block;
  width: 100%;
  max-width: 176px;
  margin: 0 auto;
  padding: 8px 13px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  font-family: "Jost", Arial, Helvetica, sans-serif;
  text-align: center;
  color: #FFFFFF;
  background-color: #44B946;
  border: none;
  border-radius: 4px;
  outline: none;
  transition: all .3s ease-out;
  cursor: pointer;
  z-index: 1;
}

.button:hover {
  background-color: #9AD829;
}

.button::before,
.button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  transition: all .3s ease-out;
  z-index: -1;
}

.button::before {
  background: linear-gradient(to bottom, #9AD829 0%, #44B946 100%);
}

.button::after {
  background: linear-gradient(to top, #9AD829 0%, #44B946 100%);
  opacity: 0;
}

.button:hover::after {
  opacity: 1;
}

.button--blue {
  background-color: #2A8DDA;
}

.button--blue:hover {
  background-color: #26DEF4;
}

.button--blue::before {
  background: linear-gradient(to bottom, #26DEF4 0%, #2A8DDA 100%);
}

.button--blue::after {
  background: linear-gradient(to top, #26DEF4 0%, #2A8DDA 100%);
}

.title {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
  color: #2A8DDA;
}

.product-link {
  font-weight: 700;
  color: #2A8DDA;
  transition: all .3s ease-out;
}

.product-link:hover {
  text-decoration: none;
  color: #39B54A;
}

.main-header {
  padding: 8px 0;
  background-color: #ffffff;
}

.main-header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-header__logo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.main-header__logo-image {
  flex-shrink: 0;
  max-width: 27px;
  margin-right: 5px;
  font-size: 0;
  text-align: center;
}

.main-header__logo-text {
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  color: #768589;
}

.main-header__logo-text-span {
  display: block;
  margin-top: -2px;
  font-weight: 400;
  font-size: 8px;
}

.main-header__top,
.nav__list,
.nav__search {
  display: none;
}

.nav__signin {
  display: inline-block;
  margin-left: auto;
  font-weight: 400;
}

.main-content {
  display: block;
  margin-top: 16px;
}

.main-content__crumbs,
.main-content__sidebar {
  display: none;
}

.product {
  padding: 8px 16px 16px;
  background-color: #ffffff;
  border-radius: 4px;
}

.product__image {
  font-size: 0;
  text-align: center;
  background: url(../images/bg_product.png) center no-repeat;
  background-size: contain;
}

.product__info {
  max-width: 260px;
  margin: 13px auto 0;
}

.product__title {
  margin-bottom: 8px;
}

.product__list {
  margin-top: 8px;
}

.product__item {
  position: relative;
  padding-left: 28px;
}

.product__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 24px;
  height: 24px;
  background-position: center;
  background-repeat: no-repeat;
}

.product__item--1::before {
  background-image: url("../images/icon-certificate.png");
}

.product__item--2::before {
  background-image: url("../fonts/icon-delivery.svg");
}

.product__item--3::before {
  background-image: url("../fonts/icon-payment.svg");
}

.product__prices {
  margin-top: 26px;
}

.prices {
  text-align: center;
}

.prices__item--old {
  text-decoration: line-through;
  color: #768589;
}

.prices__item--new {
  font-weight: 700;
}

.prices__item-value {
  color: #39B54A;
}

.product__button {
  margin-top: 8px;
  text-decoration: none!important;
}
.button--blue {
  text-decoration: none;
}
.main-content__article {
  margin-top: 16px;
}

.article {
  margin-left: -16px;
  margin-right: -16px;
  padding: 15px;
  background-color: #ffffff;
}

.article__advantages {
  margin-top: 16px;
}

.advantages {
  padding: 15px;
  color: #ffffff;
  background-color: #000000;
  background: url("../images/advantages-bg.jpg") center / cover no-repeat, #000000;
  border-radius: 4px;
  overflow: hidden;
}

.advantages__slogan {
  padding: 5px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  background-color: rgba(0, 0, 0, 0.6);
}

.advantages__list {
  padding: 5px;
  margin-top: 16px;
  background-color: rgba(0, 0, 0, 0.6);
}

.advantages__item {
  position: relative;
  padding-left: 20px;
  font-weight: 700;
  font-size: 14px;
}

.advantages__item::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  display: block;
  width: 14px;
  height: 14px;
  background: url("../images/advantages-marker.png") center / contain no-repeat;
}

.advantages__product {
  margin-top: 16px;
  margin-bottom: -40px;
  font-size: 0;
  text-align: center;
}

.article__paragraph {
  margin-top: 16px;
}

.article__title {
  margin-top: 16px;
}

.article__paragraph+.article__title {
  margin-top: 24px;
}

.article__title+.article__paragraph {
  margin-top: 8px;
}

.article__list {
  margin-top: 8px;
  margin-left: 10px;
}

.article__item {
  position: relative;
  padding-left: 10px;
}

.article__item::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  display: block;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background-color: #222222;
}

.article__image {
  margin-top: 16px;
  font-size: 0;
  text-align: center;
}

.article__image img {
  border-radius: 4px;
}

.article__efficiency {
  margin-top: 16px;
}

.efficiency {
  padding: 16px;
  background-color: #F2F2F2;
  background: url("../images/efficiency-bg.jpg") left / cover no-repeat, #F2F2F2;
  border-radius: 4px;
}

.efficiency__slogan {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.efficiency__list {
  max-width: 240px;
  margin: 16px auto 0;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  text-align: center;
}

.efficiency__item {
  position: relative;
  margin-top: 16px;
  padding-top: 88px;
}

.efficiency__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid #FBA5A6;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.efficiency__item--1::before {
  background-image: url("../images/efficiency-image1.jpg");
}

.efficiency__item--2::before {
  background-image: url("../images/efficiency-image2.jpg");
}

.efficiency__item--3::before {
  background-image: url("../images/efficiency-image3.jpg");
}

.efficiency__item-text {
  display: block;
  padding: 5px;
  background-color: rgba(255, 255, 255, 0.6);
}

.article__ingredients {
  margin-top: 24px;
  margin-bottom: 24px;
}

.article__ingredient:not(:first-of-type) {
  margin-top: 16px;
}

.article__ingredient-image {
  width: 80px;
  height: 80px;
  font-size: 0;
  text-align: center;
  border-radius: 4px;
  overflow: hidden;
}

.article__ingredient-info {
  margin-top: 8px;
}

.article__ingredient-name {
  font-weight: 700;
  margin-bottom: 5px;
}

/* .article__ingredient-decs {
  margin-top: 8px;
} */

.article__order {
  margin-top: 16px;
}

.order__product {
  font-size: 0;
  text-align: center;
  background: url(../images/bg_product.png) center no-repeat;
  background-size: contain;
}

.order__title {
  font-size: 16px;
  text-align: center;
}

.order__form {
  max-width: 280px;
  margin: 16px auto 0;
}

.order__label {
  display: block;
  width: 100%;
}

.order__label:not(:first-of-type) {
  margin-top: 8px;
}

.order__field {
  display: block;
  width: 100%;
  padding: 8px 16px;
  font-size: 14px;
  line-height: 1.2;
  font-family: "Jost", Arial, Helvetica, sans-serif;
  text-align: center;
  text-align-last: center;
  color: #7C7C7C;
  border: 1px solid #EAEAEA;
  border-radius: 4px;
  background-color: #ffffff;
  outline: none;
  transition: all .3s ease-out;
}

.order__field::-webkit-input-placeholder {
  font-size: 14px;
  line-height: 1.2;
  font-family: "Jost", Arial, Helvetica, sans-serif;
  text-align: center;
  text-align-last: center;
  color: #7C7C7C;
}

.order__field::-moz-placeholder {
  font-size: 14px;
  line-height: 1.2;
  font-family: "Jost", Arial, Helvetica, sans-serif;
  text-align: center;
  text-align-last: center;
  color: #7C7C7C;
}

.order__field:-moz-placeholder {
  font-size: 14px;
  line-height: 1.2;
  font-family: "Jost", Arial, Helvetica, sans-serif;
  text-align: center;
  text-align-last: center;
  color: #7C7C7C;
}

.order__field:-ms-input-placeholder {
  font-size: 14px;
  line-height: 1.2;
  font-family: "Jost", Arial, Helvetica, sans-serif;
  text-align: center;
  text-align-last: center;
  color: #7C7C7C;
}

.order__field--select::-ms-expand {
  display: none;
}

.order__field--select {
  -webkit-appearance: none;
  appearance: none;
  background: url("../fonts/select-arrow.svg") center right 8px no-repeat, #ffffff;
}

.order__field:focus {
  border-color: #7C7C7C;
}

.order__prices {
  margin-bottom: 20px;
}

.order__button {
  margin-top: 8px;
  max-width: 100%;
}

.article__footer {
  margin-top: 24px;
  padding-top: 8px;
  font-size: 14px;
  text-align: right;
  color: #768589;
  border-top: 1px solid #EAEAEA;
}

.main-content__comments {
  margin-top: 24px;
}

.comments {
  margin-left: -16px;
  margin-right: -16px;
  padding: 24px 15px;
  background-color: #ffffff;
}

.comments__title {
  font-size: 16px;
}

.comments__list {
  margin-top: 8px;
}

.comments__item {
  padding: 16px 0;
  border-top: 1px solid #EAEAEA;
}

.comments__item--reply {
  margin-left: 24px;
  border-top: none;
}

.comments__item:nth-last-child(n+7) {
  display: none;
}

.comments__item:first-of-type {
  border-top: none;
}

.comments__item:last-of-type {
  border-bottom: 1px solid #EAEAEA;
}

.comments__item::after {
  content: "";
  display: block;
  width: 100%;
  clear: both;
}

.comments__avatar {
  float: left;
  width: 40px;
  height: 40px;
  margin-right: 8px;
  font-size: 0;
  text-align: center;
  border-radius: 4px;
  overflow: hidden;
}

.comments__content {
  margin-left: 48px;
}

.comments__name {
  font-weight: 700;
  line-height: 1.2;
}

.comments__date {
  display: none;
}

.comments__text {
  margin-top: 8px;
}

.comments__reply {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  text-decoration: none;
  color: #768589;
}

.comments__reply:hover {
  text-decoration: underline;
}

.comments__attention {
  margin-top: 8px;
  font-weight: 700;
  text-align: center;
  color: #FF3F3F;
}

@supports (backdrop-filter: blur(6px)) or (-webkit-backdrop-filter: blur(6px)) {

  .advantages__slogan,
  .advantages__list,
  .efficiency__item-text {
    background-color: transparent;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
  }
}




@media (min-width: 992px) {
  .container {
    max-width: 1248px;
    padding: 0 16px;
  }

  .main-header {
    padding: 0;
  }

  .main-header__logo {
    max-width: 280px;
    margin-right: 32px;
  }

  .main-header__logo-image {
    max-width: 66px;
    margin-right: 10px;
  }

  .main-header__logo-text {
    font-size: 36px;
  }

  .main-header__logo-text-span {
    margin-top: -4px;
    font-size: 18px;
  }

  .main-header__top,
  .nav__list,
  .nav__search {
    display: block;
  }

  .main-header__wrapper {
    width: 100%;
    max-width: calc(100% - 280px - 32px);
  }

  .main-header__top {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 6px 0;
    font-size: 14px;
    line-height: 1.2;
    color: #768589;
    border-bottom: 1px solid #EAEAEA;
  }

  .main-header__cart {
    display: inline-flex;
    justify-content: flex-end;
    align-items: center;
    margin-left: auto;
    margin-right: 0;
    text-decoration: none;
    color: inherit;
  }

  .main-header__cart-icon {
    margin-right: 4px;
    fill: #2A8DDA;
    transition: all .3s ease-out;
  }

  .main-header__cart:hover .main-header__cart-icon {
    fill: #39B54A;
  }

  .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    font-size: 14px;
    line-height: 1.2;
  }

  .nav__list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    max-width: 55%;
  }

  .nav__item:not(:last-of-type) {
    margin-right: 40px;
  }

  .nav__item {
    padding: 2px 0;
  }

  .nav__link {
    text-decoration: none;
    color: inherit;
    transition: all .3s ease-out;
  }

  .nav__link:hover {
    color: #2A8DDA;
  }

  .nav__search {
    position: relative;
    display: block;
    width: 100%;
    max-width: 176px;
    margin-left: auto;
    margin-right: 32px;
    padding: 8px 16px;
    padding-right: 40px;
    font-size: 14px;
    line-height: 1.2;
    text-decoration: none;
    color: #768589;
    border: 1px solid #EAEAEA;
    border-radius: 4px;
    background-color: #ffffff;
    cursor: text;
    transition: all .3s ease-out;
  }

  .nav__search::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    display: block;
    width: 24px;
    height: 24px;
    background: url("../fonts/icon-search.svg") center no-repeat;
    opacity: 0.17;
    transition: all .3s ease-out;
  }

  .nav__search:hover {
    color: #222222;
    border-color: #7C7C7C;
  }

  .nav__search:hover::after {
    opacity: 1;
  }

  .nav__signin {
    max-width: 120px;
    margin-right: 0;
    margin-left: 0;
  }

  .main-content {
    display: block;
    margin-top: 0;
  }

  .main-content__crumbs,
  .main-content__sidebar {
    display: block;
  }

  .main-content__crumbs {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 16px 0;
  }

  .main-content__crumb {
    font-size: 14px;
    line-height: 1.2;
    color: #768589;
  }

  .main-content__crumb:not(:last-of-type) {
    position: relative;
    padding-right: 16px;
    margin-right: 8px;
  }

  .main-content__crumb:not(:last-of-type)::after {
    content: "/";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: block;
  }

  .main-content__crumb-link {
    text-decoration: none;
    color: inherit;
  }

  .main-content__crumb-link--active {
    color: #2A8DDA;
  }

  .main-content__crumb-link:hover {
    text-decoration: underline;
  }

  .main-content__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }

  .main-content__sidebar {
    width: 100%;
    max-width: 280px;
    margin-right: 32px;
  }

  .main-content__column {
    width: 100%;
    max-width: calc(100% - 280px - 32px);
  }

  .sidebar__block {
    padding: 16px 0;
    background-color: #ffffff;
    border-radius: 4px;
  }

  .sidebar__title {
    padding: 0 16px;
    font-weight: 700;
    font-size: 14px;
    line-height: 1, 2;
    color: #2A8DDA;
  }

  .sidebar__categories {
    margin-top: 8px;
  }

  .sidebar__category {
    font-size: 14px;
    line-height: 1.2;
  }

  .sidebar__category-link {
    position: relative;
    display: block;
    padding: 0 16px;
    text-decoration: none;
    color: inherit;
    transition: all .3s ease-out;
  }

  .sidebar__category-link::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    display: block;
    width: 24px;
    height: 24px;
    background: url("../fonts/icon-arrow.svg") center no-repeat;
    opacity: 0;
    transition: all .3s ease-out;
  }

  .sidebar__category-link--active {
    font-weight: 700;
    color: #ffffff;
    background-color: #2A8DDA;
  }

  .sidebar__category-link--active::after {
    opacity: 1;
  }

  .sidebar__category-link-span {
    display: block;
    padding: 10px 24px 10px 0;
  }

  .sidebar__category:not(:last-of-type) .sidebar__category-link-span {
    border-bottom: 1px solid #EAEAEA;
    transition: all .3s ease-out;
  }

  .sidebar__category-link--active .sidebar__category-link-span {
    border-color: transparent !important;
  }

  .sidebar__category-link:hover {
    color: #ffffff;
    background-color: #2A8DDA;
  }

  .sidebar__category-link:hover::after {
    opacity: 1;
  }

  .sidebar__category-link:hover .sidebar__category-link-span {
    border-color: transparent !important;
  }

  .sidebar__banner {
    display: block;
    margin-top: 32px;
  }

  .banner {
    padding: 16px;
    text-decoration: none;
    background-color: #ffffff;
    border-radius: 4px;
  }

  .banner__product {
    max-width: 160px;
    margin: 0 auto;
    font-size: 0;
    text-align: center;
  }

  .banner__button {
    margin-top: 16px;
  }

  .banner:hover .button::after {
    opacity: 1;
  }

  .sidebar__articles {
    margin-top: 32px;
  }

  .sidebar__article:not(:first-of-type) {
    margin-top: 16px;
  }

  .sidebar__article-link {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-decoration: none;
    color: inherit;
  }

  .sidebar__article-poster {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    margin-right: 16px;
    font-size: 0;
    text-align: center;
    border-radius: 4px;
    overflow: hidden;
  }

  .sidebar__article-info {
    max-width: calc(100% - 80px - 16px);
  }

  .sidebar__article-heading {
    font-weight: 700;
    font-size: 14px;
    line-height: 1.3;
  }

  .sidebar__article-date {
    margin-top: 8px;
    color: #768589;
    font-size: 14px;
    line-height: 1.2;
  }

  .sidebar__article-link:hover .sidebar__article-heading {
    text-decoration: underline;
  }

  .sidebar__more-articles {
    display: block;
    margin-top: 16px;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.2;
    color: #2A8DDA;
    text-decoration: none;
  }

  .sidebar__more-articles-span {
    position: relative;
    display: inline-block;
    padding-right: 26px;
  }

  .sidebar__more-articles-span::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: block;
    width: 24px;
    height: 24px;
    background: url("../fonts/icon-blue-arrow.svg") center no-repeat;
  }

  .sidebar__more-articles:hover .sidebar__more-articles-span {
    text-decoration: underline;
  }

  .product {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 16px;
  }

  .product__image {
    max-width: 374px;
    margin-right: 24px;
  }

  .product__info {
    max-width: calc(100% - 374px - 8px);
    padding: 8px;
    margin: 0;
  }

  .product__list {
    margin-top: 2px;
  }

  .product__prices {
    margin-top: 8px;
  }

  .prices {
    text-align: left;
  }

  .product__button {
    margin-left: 0;
  }

  .main-content__article {
    margin-top: 32px;
  }

  .article {
    margin-left: 0;
    margin-right: 0;
    padding: 32px;
    border-radius: 4px;
  }

  .advantages {
    padding: 24px 32px 32px;
  }

  .advantages__slogan {
    font-size: 32px;
  }

  .advantages__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .advantages__list {
    max-width: 530px;
    margin-top: 16px;
    margin-left: 40px;
  }

  .advantages__item {
    padding-left: 38px;
    font-size: 21px;
  }

  .advantages__item::before {
    top: 4px;
    width: 30px;
    height: 30px;
  }

  .advantages__item:not(:first-of-type) {
    margin-top: 16px;
  }

  .advantages__product {
    margin-top: 15px;
    margin-bottom: 0px;
    margin-left: 15px;
}

  .article__efficiency {
    margin-top: 16px;
  }

  .efficiency {
    padding: 24px 32px;
    background: url("../images/efficiency-bg.jpg") center / cover no-repeat, #F2F2F2;
  }

  .efficiency__slogan {
    font-size: 32px;
  }

  .efficiency__list {
    max-width: 340px;
    font-size: 21px;
  }

  .efficiency__item {
    margin-top: 16px;
    padding-top: 143px;
  }

  .efficiency__item::before {
    width: 135px;
    height: 135px;
  }

  .article__ingredients {
    margin-top: 16px;
    margin-bottom: 16px;
  }

  .article__ingredient {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .article__ingredient-image {
    flex-shrink: 0;
    margin-right: 16px;
  }

  .article__ingredient-info {
    max-width: calc(100% - 80px - 16px);
    margin-top: 0;
  }

  .article__ingredient-decs {
    margin-top: 4px;
  }

  .article__order {
    margin-top: 32px;
  }

  .order {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .order__product {
    max-width: calc(100% - 280px - 32px);
    margin-right: 32px;
  }

  .order__wrapper {
    width: 100%;
    max-width: 280px;
  }

  .order__prices {
    text-align: center;
  }

  .article__footer {
    margin-top: 32px;
  }

  .main-content__comments {
    margin-top: 32px;
    margin-bottom: 32px;
  }

  .comments {
    margin-left: 0;
    margin-right: 0;
    padding: 32px;
    border-radius: 4px;
  }

  .comments__title {
    font-size: 24px;
  }

  .comments__list {
    margin-top: 0;
  }

  .comments__item:nth-last-child(n+7) {
    display: block;
  }

  .comments__item--reply {
    margin-left: 40px;
  }

  .comments__avatar {
    width: 50px;
    height: 50px;
    margin-right: 16px;
  }

  .comments__content {
    margin-left: 65px;
  }

  .comments__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
  }

  .comments__name {
    max-width: calc(100% - 100px - 15px);
    margin-right: 15px;
  }

  .comments__date {
    display: block;
    max-width: 100px;
    font-size: 14px;
    color: #768589;
  }
}

@media (min-width: 1180px) {
  .article__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }

  .article__image {
    flex-shrink: 0;
    min-width: 0;
    margin-left: 18px;
  }

  .efficiency__list {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 100%;
  }

  .efficiency__item {
    max-width: 230px;
  }
}

.nds {
  text-align: center;
  font-size: 12px;
  margin: 10px 0;
  line-height: 1.1;
}


.main-footer {
  padding: 15px;
  font-size: 14px;
  line-height: 1.2;
  text-transform: none;
  text-align: center;
  background-color: #ffffff;
}

.main-footer__heading {
  margin: 0;
  font-size: 16px;
  color: #2A8DDA;
}

.main-footer__wrapper:not(:first-of-type) {
  margin-top: 15px;
}

ul,
li {
  list-style: none;
}

.main-footer__list {
  margin-top: 8px;
}

.main-footer__item {
  margin-top: 5px;
}

.main-footer__link {
  color: inherit;
  transition: all 0.3s ease-out;
}

.main-footer__link:hover {
  text-decoration: underline;
  color: #2A8DDA;
}

.ac_footer {
  padding: 30px 15px !important;
  font-size: 14px !important;
  text-align: center !important;
  text-transform: none;
}

.ac_footer a {
  display: inline-block;
  margin-top: 5px;
  font-weight: 700;
  text-decoration: underline;
  color: inherit;
  transition: all 0.3s ease-out;
}

.ac_footer a:hover {
  color: #2A8DDA;
  text-decoration: none;
}

.additional-info {
  padding: 15px;
  font-size: 14px;
  line-height: 1.2;
  text-align: center;
  color: #768589;
  background-color: #ffffff;
}


.additional-info__paragraph {
  max-width: 991px;
  margin: 0 auto;
}

.ac_footer {
  position: relative;
  text-align: center;
  overflow: hidden;
  padding: 50px 0;
  color: #A12000;
}

.ac_footer a {
  color: #A12000;
}

.ac_footer p {
  text-align: center;
}

img[height="1"], img[width="1"] {
  display: none !important;
}


@media screen and (max-width: 991px) {
  .advantages__product {
    display: block;
    margin-right: auto;
    margin-left: auto;
    max-width: 220px;
    margin-bottom: 5px;
  }
  .product__info {
    width: 100%!important;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .product__title {
    text-align: center;
  }
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .advantages__product {
    width: 100%;
    max-width: 200px;
  }
}
@media screen and (max-width: 767px) {
.prod-img, .advantages__product {
  display: block;
  margin-right: auto;
  margin-left: auto;
  width: 180px!important;
}
}
a {
  scroll-behavior: smooth;
  }