* {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	outline: none;
}
body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
	background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
	background-attachment: fixed;
}
a {
	color: #23527c;
	text-decoration: underline;
}
a:hover {
	color: #b0493b;
}
.container {
	width: 1000px;
	max-width: 100%;
	margin: 0 auto;
	position: relative;
}
.logo {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
	background: linear-gradient(135deg, #006600 0%, #DA020E 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-decoration: none;
	text-transform: uppercase;
	text-align: center;
	margin: 20px auto;
	display: block;
	font-size: 60px;
	font-weight: 800;
	letter-spacing: 2px;
	transition: all 0.3s ease;
}
.logo:hover {
	transform: scale(1.05);
	filter: drop-shadow(0 4px 8px rgba(0, 102, 0, 0.3));
}
.nav {
	background: linear-gradient(135deg, #006600 0%, #DA020E 100%);
	line-height: 50px;
	box-shadow: 0 4px 15px rgba(0, 102, 0, 0.2);
	position: sticky;
	top: 0;
	z-index: 1000;
}
.nav li {
	display: inline-block;
	vertical-align: middle;
	text-align: center;
	padding: 0 8px;
}
.nav li a {
	text-decoration: none;
	color: #fff;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 1px;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	-moz-transition: 0.3s;
	transition: 0.3s;
}
.nav li a:hover {
	color: #FFD700;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	-moz-transition: 0.3s;
	transition: 0.3s;
	transform: translateY(-2px);
}
.social {
	position: absolute;
	right: 5px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}
.social li {
	display: inline-block;
	vertical-align: middle;
	font-size: 20px;
}
.social li .facebook {
	color: #3b5998;
}
.social li .youtube {
	color: #d8362a;
}
.social li .twitter {
	color: #55bfee;
}
.content {
	display: block;
	width: 80%;
	background: #fff;
	padding: 30px 40px;
	margin: 20px auto;
	border-radius: 12px;
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
	transition: box-shadow 0.3s ease;
}
.content:hover {
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}
.soc_crumbs {
	font-size: 0;
	background: #eee;
	padding: 5px;
}
.soc_crumbs .soc_img {
	display: inline-block;
	vertical-align: middle;
	width: 50%;
}
.content .soc_crumbs .soc_img img {
	width: auto;
	margin-bottom: 0;
}
.soc_crumbs span {
	display: inline-block;
	vertical-align: middle;
	width: 50%;
	font-size: 13px;
	text-align: right;
}
.content h1 {
	text-align: center;
	margin-bottom: 16px;
}
.content h2 {
	font-size: 28px;
	border-bottom: 4px solid #006600;
	padding-bottom: 15px;
	font-weight: 700;
	color: #006600;
	position: relative;
}
.content h2::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 60px;
	height: 4px;
	background: #DA020E;
}
.content .photo_block {
	font-size: 0;
	width: 100%;
	max-width: 100%;
}
.content .photo_block img {
	display: inline-block;
	vertical-align: top;
	width: 50%;
}
.btn {
	background: linear-gradient(135deg, #006600 0%, #008800 50%, #006600 100%);
	-webkit-border-radius: 35px;
	-moz-border-radius: 35px;
	border-radius: 35px;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
	color: rgb(255, 255, 255);
	font-size: 22px;
	font-weight: 700;
	padding: 15px 30px;
	text-decoration: none;
	cursor: pointer;
	display: block;
	text-align: center;
	width: 310px;
	max-width: 90%;
	margin: 25px auto;
	transition: all 0.3s ease;
	box-shadow: 0 6px 20px rgba(0, 102, 0, 0.3);
	position: relative;
	overflow: hidden;
}
.btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.5s;
}
.btn:hover::before {
	left: 100%;
}
.btn:hover {
	background: linear-gradient(135deg, #008800 0%, #00AA00 50%, #008800 100%);
	text-decoration: none;
	color: #fff;
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(0, 102, 0, 0.5);
}
.btn:active {
	transform: translateY(-1px);
	box-shadow: 0 4px 15px rgba(0, 102, 0, 0.4);
}
.content p,
.content img,
.content h1,
.content h2 {
	margin-bottom: 16px;
}
.content p {
	line-height: 1.8;
	font-size: 18px;
	color: #333;
	margin-bottom: 20px;
}
.content img {
	display: block;
	width: 100%;
	max-width: 100%;
}
.content .prod {
	width: 365px;
	max-width: 90%;
	margin: 0 auto 16px;
}
.content .list {
	margin-bottom: 16px;
}
.content .list p {
	margin-bottom: 0;
}
.social_block {
	border: 2px solid #e6e6e6;
	padding: 20px;
	margin-bottom: 20px;
	border-radius: 8px;
	background: linear-gradient(135deg, rgba(0, 102, 0, 0.02) 0%, rgba(218, 2, 14, 0.02) 100%);
	transition: all 0.3s ease;
}
.social_block:hover {
	border-color: #006600;
	box-shadow: 0 4px 15px rgba(0, 102, 0, 0.1);
}
.content .social_block span {
	font-weight: bold;
	display: block;
	margin-bottom: 16px;
}
.content .social_block img {
	width: auto;
	margin: 0;
}
.quantity {
	color: #45688e;
	font-weight: bold;
	padding: 2px 3px 1px;
	background: #dae2e8;
	margin-bottom: 20px;
}
.comment {
	border-bottom: 1px solid #dae1e8;
	padding-bottom: 15px;
	margin-bottom: 15px;
	border-left: 3px solid transparent;
	padding-left: 10px;
	transition: all 0.3s ease;
}
.comment:hover {
	border-left-color: #006600;
	background: rgba(0, 102, 0, 0.02);
	padding-left: 15px;
}
.content .comment .avatar {
	width: 48px;
    margin-right: 10px;
    display: inline-block;
    vertical-align: top;
    height: 48px;
    object-fit: cover;
    object-position: top;
}
.comm_text {
	display: inline-block;
	vertical-align: top;
	width: -webkit-calc(100% - 65px);
	width: -moz-calc(100% - 65px);
	width: calc(100% - 65px);
}
.content .comm_text .user_name {
	color: #2b587a;
	font-weight: bold;
	font-size: 12px;
	margin-bottom: 0px;
}
.content .comm_text .text {
	font-size: 15px;
}
.content .comm_text .time {
	color: #999;
	margin-bottom: 0;
}
.sidebar {
	display: inline-block;
	vertical-align: top;
	width: 27%;
	background: #fff;
	padding: 25px 0 0;
}
.sidebar img {
	width: 100%;
	margin-bottom: 16px;
}
.sidebar a {
	text-decoration: none;
}
.sidebar p {
	font-weight: bold;
	margin-bottom: 16px;
}
.footer {
	padding: 30px 1.5%;
	margin: 30px auto 0;
	background: linear-gradient(135deg, #006600 0%, #DA020E 100%);
	text-align: center;
	color: #fff;
	box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
}
.footer a {
	color: #FFD700;
	text-decoration: none;
}
.footer a:hover {
	color: #fff;
	text-decoration: underline;
}
.burg {
	display: none;
}
.popup {
	position: fixed;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 781px;
	height: 460px;
	background: linear-gradient(135deg, #006600 0%, #DA020E 100%);
	border: 5px solid #fff;
	padding: 30px;
	display: none;
	border-radius: 12px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}
.popup h1 {
	color: #fff;
	text-align: center;
	margin-bottom: 25px;
}
.popup img {
	width: 240px;
	margin-right: 20px;
	display: inline-block;
	vertical-align: middle;
}
.popup .text {
	display: inline-block;
	vertical-align: middle;
	width: -webkit-calc(100% - 270px);
	width: -moz-calc(100% - 270px);
	width: calc(100% - 270px);
}
.popup .text p {
	font-size: 22px;
	color: #fff;
	margin-bottom: 16px;
}
.popup .popup_btn {
	display: block;
	max-width: 345px;
	margin: 10px auto;
	font-size: 23px;
	text-decoration: none;
	color: #fff;
	text-transform: uppercase;
	font-family: sans-serif;
	font-weight: bold;
	border: 1px solid #fff;
	text-align: center;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	padding: 15px 15px !important;
	margin-top: 25px;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	-moz-transition: 0.3s;
	transition: 0.3s;
}
.popup .popup_btn:hover {
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	-moz-transition: 0.3s;
	transition: 0.3s;
	background: #fff;
	color: #006600;
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}
.close {
	position: absolute;
	top: -39px;
	right: -43px;
	border: 3px solid #fff;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	width: 31px;
	height: 31px;
	text-align: center;
	font-size: 23px;
	font-weight: bold;
	color: #fff;
	background: linear-gradient(135deg, #006600 0%, #DA020E 100%);
	cursor: pointer;
	transition: all 0.3s ease;
}
.close:hover {
	transform: rotate(90deg) scale(1.1);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
@media all and (max-width: 1000px) {
	.social,
	.soc_crumbs,
	.sidebar,
	.social_block,
	.nav li {
		display: none;
	}
	.content {
		width: 100%;
		padding: 20px 15px;
		margin: 10px auto;
		border-radius: 8px;
	}
	.logo {
		font-size: 42px;
		margin: 10px auto;
		letter-spacing: 1px;
	}
	.content h1 {
		font-size: 22px;
	}
	.content h2 {
		font-size: 24px;
	}
	.content p {
		font-size: 16px;
		line-height: 1.6;
	}
	.btn {
		font-size: 18px;
		padding: 12px 25px;
		width: 280px;
	}
	.burg {
		display: block;
		margin: 0 auto;
		text-align: center;
	}
	.burg img {
		width: 40px;
		margin-top: 2px;
	}
	.popup {
		width: 90%;
		max-width: 315px;
		height: auto;
		padding: 15px;
		border-radius: 12px;
	}
	.popup img {
		width: 170px;
		margin: 0 auto;
		display: block;
	}
	.popup .text {
		width: 100%;
	}
	.popup h1 {
		margin-bottom: 16px;
		font-size: 20px;
	}
	.popup .text p {
		font-size: 15px;
		margin-bottom: 10px;
	}
	.popup .popup_btn {
		font-size: 16px;
	}
}

.privacy__block {
	text-align: center;
	margin: 25px 0;
}

.privacy__block a {
	color: red;
}

.graph-wrap {
	border-left: 2px solid #000;
	border-bottom: 2px solid #000;
	height: 350px;
}
.graph-row {
	display: flex;
	height: 100%;
}
.graph-col {
	width: 25%;
	height: 100%;
}
.graph-item {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	height: 100%;
	align-items: flex-end;
}
.graph-col:nth-child(1) .graph-item {
	background: rgb(235, 255, 234);
}
.graph-col:nth-child(2) .graph-item {
	background: rgb(224, 255, 222);
}
.graph-col:nth-child(3) .graph-item {
	background: rgb(217, 255, 215);
}
.graph-col:nth-child(4) .graph-item {
	background: rgb(202, 255, 199);
}
.graph-item-title {
	text-align: center;
	font-weight: 700;
	margin-top: 10px;
}
.graph-item-text {
	text-align: center;
	max-width: 80%;
	margin: 0 auto;
	font-size: 14px;
	margin-bottom: 14px;
}
.graph-item-volume {
	background: rgb(50, 138, 45);
	min-height: 30px;
	width: 50%;
	margin: 0 auto;
}
@media all and (max-width: 767px) {
	.graph-item-text,
	.graph-item-title {
		font-size: 12px;
		line-height: 1;
	}
}

.pulse {
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0% {
		transform: scale(1);
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		-o-transform: scale(1);
		-ms-transform: scale(1);
	}

	50% {
		transform: scale(1.05);
		-webkit-transform: scale(1.05);
		-moz-transform: scale(1.05);
		-o-transform: scale(1.05);
		-ms-transform: scale(1.05);
	}

	100% {
		transform: scale(1);
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		-o-transform: scale(1);
		-ms-transform: scale(1);
	}
}
