.header {
	background: #2e3c0b;
}
.header__wrap {
	display: grid;
	grid-template-columns: 1fr 3fr 1fr;
	padding: 25px 0;
	grid-gap: 10px;
}
@media (max-width: 990px) {
	.header__wrap {
		padding: 15px 0;
		grid-gap: 20px;
		grid-template-columns: 1fr;
	}
}
@media (max-width: 990px) {
	.header__logo {
		display: flex;
		align-items: center;
		justify-content: center;
	}
}
.header__logo img {
	max-width: 100%;
	height: 45px;
	width: auto;
	object-fit: contain;
}
@media (max-width: 576px) {
	.header__logo {
		margin: 0 auto;
		display: flex;
		align-items: center;
		justify-content: center;
	}
}
.header__btn {
	display: flex;
	align-items: center;
	grid-column-start: 3;
}
@media (max-width: 990px) {
	.header__btn {
		justify-content: center;
		grid-column-start: auto;
	}
}
@media (max-width: 576px) {
	.header__btn {
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-gap: 15px;
	}
}
.header__btn button {
	max-width: 160px;
	min-width: 160px;
	width: 100%;
	box-sizing: border-box;
	margin-left: 20px;
	padding: 10px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	line-height: 20px;
	color: #fff;
	font-weight: 900;
	border-radius: 100px;
}
@media (max-width: 990px) {
	.header__btn button {
		max-width: 150px;
		min-width: 150px;
	}
}
@media (max-width: 576px) {
	.header__btn button {
		min-width: auto;
		max-width: 100%;
		margin: 0;
	}
}
.header__menu {
	display: flex;
	align-items: center;
	justify-content: center;
	list-style-type: none;
}
@media (max-width: 990px) {
	.header__menu {
		flex-wrap: wrap;
	}
}
.header__menu li {
	margin: 0 10px;
}
@media (max-width: 990px) {
	.header__menu li {
		margin: 10px;
	}
}
.header__menu li a {
	font-size: 16px;
	line-height: 20px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
}
.header__menu li img {
	margin: 0 5px 0 0;
}

.acf-comment-fields {
	display: none;
}

.navigations__wrap {
	list-style-type: none;
	padding: 0 0 15px 0;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}
@media (max-width: 990px) {
	.navigations__wrap {
		align-items: start;
		justify-content: start;
		overflow-x: auto;
		flex-wrap: nowrap;
	}
}
.navigations ::-webkit-scrollbar {
	background-color: rgba(26, 24, 47, 0.15);
	border-radius: 3px;
	height: 3px;
}
.navigations ::-webkit-scrollbar-thumb {
	background: #cf222d;
	height: 3px;
	border-radius: 3px;
}
.navigations li {
	margin: 0 15px 15px 0;
	padding: 10px 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	white-space: nowrap;
	color: #fff;
	font-size: 16px;
	font-weight: 900;
	line-height: 19px;
	border-radius: 6px;
	background: #2a2a2a;
	box-shadow: 0 5px 0 0 #000;
	cursor: pointer;
}
@media (max-width: 990px) {
	.navigations li {
		margin: 0 10px;
	}
}
.navigations li img {
	margin: 0 5px 0 0;
	object-fit: contain;
}
.navigations li a {
	display: flex;
	align-items: center;
	justify-content: center;
}
@media (max-width: 576px) {
	.navigations li:first-child {
		margin-left: 0;
	}
}

/*# sourceMappingURL=header.css.map */
.img-cov {
	width: 100%;
}
.img-cov img {
	border-radius: 8px;
	width: 100%;
	height: 100%;
}

.content p,
.content li {
	margin: 0 0 10px 0;
}

.content ul,
.content ol {
	list-style: none;
	padding: 0;
	margin: 0 0 15px 0;
}
.content h2,
.content h3 {
	margin: 0 0 20px 0;
}
.content ul {
	position: relative;
}
.content ol {
	list-style: auto;
}
.content ul::before {
	content: '';
	position: absolute;
	top: 5px;
	left: 25px;
	width: 2px;
	height: 85%;
	background: #226100;
}
.content ul li {
	position: relative;
	padding: 0 0 0 25px;
}

.content ul li::before {
	content: '';
	width: 12px;
	height: 12px;
	background: #45cf22;
	position: absolute;
	top: 5px;
	left: 0;
	border-radius: 100px;
}
.content ul li:last-child::before {
	content: '';
	width: 20px;
	height: 20px;
	background: url('/images/gift.svg') center center / cover no-repeat;
	position: absolute;
	top: 0px;
	left: -3px;
	border-radius: 100px;
}
.title-img {
	padding: 45px 35px;
	position: relative;
}
.title-img .img-cov {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}
.title-img .img-cov img {
	object-fit: cover;
	border-radius: 8px;
}
.title-img .img-cov::before {
	content: '';
	position: absolute;
	border-radius: 8px;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #00000090;
}
.title-img h2,
.title-img p {
	margin: 0 0 25px 0 !important;
}

.top {
	display: flex;
	justify-content: space-between;
	gap: 25px;
	margin: 0 0 25px 0;
}
.right {
	padding: 15px;
	background-color: #ffffff1a;
	min-width: 300px;
}
.right__title {
	font-size: 16px;
	line-height: 19px;
	font-weight: 700;
	color: white;
	margin: 0 0 30px 0;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 5px;
}
.user {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	margin: 0 0 10px 0;
}
.user__logo {
	width: 64px;
	height: 64px;
}
.user__logo img {
	width: 100%;
	height: 100%;
}

.user__text h3 {
	font-size: 16px;
	line-height: 19px;
	font-weight: 500;
	color: #fff;
	margin: 0 0 10px 0;
}
.user__text span {
	font-size: 18px;
	line-height: 21px;
	font-weight: 700;
	color: white;
}

.user__descr p {
	font-size: 10px;
	line-height: 12px;
	font-weight: 500;
	color: #dedede;
}
@media (max-width: 768px) {
	.top {
		flex-direction: column;
	}
	.right {
		min-width: auto;
	}
}
