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 16px;
}

.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 0.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 0.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 0.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;
}

.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('../images/icon-delivery.svg');
}

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

.product__prices {
	margin-top: 26px;
}

.prices {
	text-align: center;
}

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

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

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

.product__button {
	margin-top: 8px;
}

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

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

.article__advantages {
	margin-top: 16px;
}

.advantages {
	padding: 16px;
	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;
}

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

.article__order {
	margin-top: 16px;
}

.order__product {
	font-size: 0;
	text-align: center;
}

.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 0.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('../images/select-arrow.svg') center right 8px no-repeat,
		#ffffff;
}

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

.order__prices {
	margin-top: 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 16px;
	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 0.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 0.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 0.3s ease-out;
	}

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

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

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

	.nav__signin {
		max-width: 90px;
		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 0.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('../images/icon-arrow.svg') center no-repeat;
		opacity: 0;
		transition: all 0.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 0.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('../images/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: 0;
		margin-bottom: -100px;
	}

	.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: 80px;
		height: 80px;
		margin-right: 16px;
	}

	.comments__content {
		margin-left: 96px;
	}

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

	.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;
}
