@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}

article, aside, details, figcaption, figure, footer, header, menu, nav, section, video {
	display: block;
}

:focus {
	outline: 0;
}

html, body {
	height: 100%;
}

body {
	min-width: 320px;
	font-family: "Ubuntu", sans-serif;
	font-size: 16px;
	font-weight: 300;
	line-height: 1.25;
	color: #585045;
}

ol, ul {
	list-style-position: inside;
}

a {
	color: #585045;
	text-decoration: none;
	transition: 0.2s;
}

a img {
	transition: opacity 0.2s;
}

a:hover {
	text-decoration: none;
}

a:hover img {
	opacity: 0.8;
}

input[type="text"], input[type="email"], input[type="password"], input[type="tel"], textarea {
	display: block;
	width: 100%;
	max-width: 480px;
	box-sizing: border-box;
	position: relative;
	padding: 10px 20px;
	font-family: "Ubuntu", sans-serif;
	box-shadow: 0 0 18px rgba(201, 204, 221, 0.4);
	border: none;
	background: #ffffff;
	font-size: 14px;
	font-weight: 300;
	line-height: 20px;
	transition: 0.2s;
	border-radius: 10px;
	z-index: 2;
}

textarea {
	overflow: auto;
	width: 100%;
	height: 200px;
	max-width: none;
}

input[type="submit"], .button {
	display: inline-block;
	border-radius: 25px;
	color: #a0b76f;
	font-family: "Ubuntu", sans-serif;
	font-size: 14px;
	font-weight: 300;
	line-height: 18px;
	border: 1px solid #a0b76f;
	background: transparent;
	cursor: pointer;
	padding: 10px 20px;
	transition: 0.2s;
	-webkit-appearance: none;
}

input[type="submit"]:hover, .button:hover {
	background-color: #a0b76f;
	color: #ffffff;
}

input[type="submit"].green, .button.green {
	background-color: #a0b76f;
	color: #ffffff;
}

input[type="submit"].green:hover, .button.green:hover {
	background-color: transparent;
	color: #a0b76f;
}

#site {
	display: flex;
	flex-direction: column;
	position: relative;
	overflow: hidden;
	min-height: 100%;
}

#site.is_frontpage:before {
	display: none;
}

#site.is_singular:before {
	background-image: url(../images/bg_header_single.png);
	width: 1564px;
	height: 471px;
	top: 0;
	margin-left: -830px;
}

#site:before {
	content: '';
	display: block;
	position: absolute;
	left: 50%;
	top: -14px;
	background: url(../images/bg_header.png) 50% 0 no-repeat;
	width: 1735px;
	height: 615px;
	z-index: 1;
	margin-left: -990px;
}

.container_box {
	display: block;
	flex-grow: 1;
	flex-shrink: 0;
	position: relative;
	z-index: 2;
	width: 100%;
}

.wrapper_box {
	display: flex;
	align-items: flex-start;
	flex-wrap: nowrap;
}

@media (max-width: 1024px) {
	.wrapper_box {
		flex-wrap: wrap;
		justify-content: center;
	}
	.wrapper_box .main_box {
		width: 100%;
		order: 1;
	}
}

.main_box {
	display: block;
	flex-basis: auto;
	flex-shrink: 1;
	flex-grow: 1;
	position: relative;
	order: 1;
	min-width: 0;
}

.sidebar_box {
	display: block;
	flex-shrink: 0;
	flex-grow: 0;
	width: 380px;
	margin-top: 30px;
	margin-left: 50px;
	order: 2;
}

@media (max-width: 1340px) {
	.sidebar_box {
		margin-left: 30px;
		width: 300px;
	}
}

@media (max-width: 1024px) {
	.sidebar_box {
		margin-top: 0;
		margin-left: 0;
		width: 100%;
		max-width: 380px;
	}
}

.footer_box {
	display: block;
	flex-grow: 0;
	flex-shrink: 0;
	position: relative;
	z-index: 1;
}

.fixed {
	box-sizing: border-box;
	position: relative;
	width: 100%;
	max-width: 1340px;
	margin: 0 auto;
	padding: 0 20px;
	z-index: 2;
}

#orphus {
	display: none;
}

.header_box {
	display: block;
	position: relative;
	padding: 40px 0 90px;
	z-index: 20;
}

.header_box .fixed {
	display: flex;
	align-items: center;
	z-index: 2;
}

.header_box .fixed:before {
	content: '';
	display: block;
	position: absolute;
	top: -64px;
	left: -130px;
	width: 78px;
	height: 49px;
	background: url(../images/ico_triangle_green.svg) 0 0 no-repeat;
	background-size: contain;
}

.header_box .company {
	display: flex;
	justify-content: center;
	flex-grow: 0;
	flex-shrink: 0;
	position: relative;
	width: 200px;
	color: #585045;
	text-align: center;
	text-decoration: none;
}

.header_box .logo {
	display: block;
	position: relative;
	top: -8px;
	width: 77px;
	height: 63px;
	background: url(../images/ico_logo.png) 50% 50% no-repeat;
	background-size: contain;
}

.header_box .about {
	display: block;
	position: absolute;
	top: 100%;
	left: 50%;
	margin-top: 10px;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.33;
	text-transform: uppercase;
	transform: translateX(-50%);
}

.header_box .about span {
	display: block;
	font-size: 20px;
}

.header_box .about .slogan {
	display: block;
	width: 190px;
	margin-top: 10px;
	font-size: 12px;
	font-weight: 300;
	line-height: 1.5;
	text-transform: none;
}

.header_box .navigation {
	display: block;
	position: relative;
	margin: 0 auto;
}

.header_box .menu {
	display: flex;
	align-items: center;
	flex-grow: 1;
	position: relative;
	font-size: 15px;
	font-weight: 500;
	line-height: 20px;
}

.header_box .menu ul {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	overflow: hidden;
	max-width: 280px;
	margin-top: 20px;
	background-color: #ffffff;
	box-shadow: 0 0 20px 4px rgba(147, 157, 126, 0.25);
	border-radius: 20px;
	z-index: 1;
}

.header_box .menu ul ul {
	display: none;
}

.header_box .menu ul li {
	display: block;
	border-bottom: 1px solid #f4f4f4;
	text-align: left;
}

.header_box .menu ul li:last-child {
	border-bottom: 0;
}

.header_box .menu ul a {
	border-radius: 0;
}

.header_box .menu li {
	display: block;
	position: relative;
	text-align: center;
}

.header_box .menu li.submenu:hover:after {
	content: '';
	display: block;
	position: absolute;
	top: 100%;
	left: 50%;
	width: 0;
	height: 4px;
	margin-left: -8px;
	border: 8px solid transparent;
	border-bottom-color: #ffffff;
	z-index: 2;
}

.header_box .menu li.submenu:hover:before {
	content: '';
	display: block;
	position: absolute;
	top: 100%;
	right: 0;
	left: 0;
	height: 20px;
}

.header_box .menu li.submenu:hover ul {
	display: block;
}

.header_box .menu li.active > a, .header_box .menu li a:hover {
	background-color: #98948e;
	color: #ffffff;
}

.header_box .menu a {
	display: block;
	padding: 10px 20px;
	border-radius: 20px;
	color: #585045;
}

.header_box .menu_btn {
	display: none;
	box-sizing: border-box;
	position: relative;
	width: 50px;
	height: 50px;
	border: 1px solid #e9e9e9;
	border-radius: 50%;
	color: #585045;
	transition: 0.2s;
	cursor: pointer;
	order: 3;
}

.header_box .menu_btn:hover {
	border-color: #a0b76f;
	color: #a0b76f;
}

.header_box .menu_btn:hover:before, .header_box .menu_btn:hover:after {
	border-color: #a0b76f;
}

.header_box .menu_btn:before, .header_box .menu_btn:after {
	content: '';
	display: block;
	position: absolute;
	top: 15px;
	left: 15px;
	width: 19px;
	height: 6px;
	border-top: 2px solid #9e9486;
	transition: 0.2s;
}

.header_box .menu_btn:after {
	top: 23px;
	border-bottom: 2px solid #9e9486;
}

.header_box .menu_btn.close:before, .header_box .menu_btn.close:after {
	top: 23px;
	right: auto;
	left: 13px;
	width: 24px;
	height: 0;
	transform: rotate(45deg);
}

.header_box .menu_btn.close:after {
	border-top: none;
	transform: rotate(-45deg);
}

.header_box .search {
	display: block;
	flex-grow: 1;
	position: relative;
	max-width: 350px;
}

.header_box .search input[type="text"] {
	padding: 14px 50px 14px 25px;
	box-shadow: none;
	border: 1px solid #e9e9e9;
	border-radius: 25px;
	font-size: 16px;
}

.header_box .search input[type="submit"] {
	display: block;
	position: absolute;
	top: 15px;
	right: 20px;
	width: 20px;
	height: 20px;
	padding: 0;
	background: url(../images/ico_search.png) 50% 50% no-repeat;
	border: none;
	border-radius: 0;
	z-index: 3;
}

.header_box .search input[type="submit"]:hover {
	opacity: 0.7;
}

@media (max-width: 1340px) {
	.header_box {
		padding: 30px 0 70px;
	}
	.header_box .company {
		width: 140px;
	}
	.header_box .about {
		margin-top: 0;
	}
	.header_box .about .slogan {
		width: 140px;
		margin-top: 5px;
		line-height: 1.25;
	}
}

@media (max-width: 1024px) {
	.header_box .company {
		order: 1;
		width: 90px;
	}
	.header_box .company .slogan {
		display: none;
	}
	.header_box .search {
		order: 2;
		margin-left: auto;
	}
	.header_box .navigation {
		order: 3;
		flex-grow: 0;
		flex-shrink: 0;
		margin: 0 0 0 20px;
	}
	.header_box .menu {
		display: none;
		position: absolute;
		right: 0;
		top: 100%;
		margin-top: 20px;
		background-color: #ffffff;
		box-shadow: 0 0 20px 4px rgba(147, 157, 126, 0.25);
		border-radius: 20px;
		width: 280px;
		z-index: 1;
	}
	.header_box .menu:after {
		content: '';
		display: block;
		position: absolute;
		top: -8px;
		right: 16px;
		z-index: 2;
		width: 0;
		height: 0;
		border: 8px solid transparent;
		border-top-width: 0;
		border-bottom-color: #ffffff;
	}
	.header_box .menu ul {
		border-radius: 0;
		box-shadow: none;
		position: relative;
		left: auto;
		top: auto;
		margin: 0;
	}
	.header_box .menu ul a {
		font-size: 13px;
		padding-left: 30px;
	}
	.header_box .menu li {
		display: block;
		border-bottom: 1px solid #f4f4f4;
		text-align: left;
	}
	.header_box .menu li:first-child a {
		border-radius: 20px 20px 0 0;
	}
	.header_box .menu li:last-child {
		border-bottom: 0;
	}
	.header_box .menu li:last-child a {
		border-radius: 0 0 20px 20px;
	}
	.header_box .menu li.submenu:after, .header_box .menu li.submenu:before {
		display: none;
	}
	.header_box .menu li.submenu li a {
		border-radius: 0;
	}
	.header_box .menu li.submenu:hover ul {
		display: block;
	}
	.header_box .menu a {
		border-radius: 0;
	}
	.header_box .menu_btn {
		display: block;
	}
}

@media (max-width: 640px) {
	.header_box {
		padding: 20px 0 60px;
	}
	.header_box .company {
		display: block;
		width: 77px;
		margin-right: auto;
	}
	.header_box .about {
		font-size: 16px;
	}
	.header_box .about span {
		font-size: 18px;
	}
	.header_box .search {
		margin-left: 20px;
	}
	.header_box .search input[type="text"] {
		padding-left: 15px;
		padding-right: 40px;
	}
	.header_box .search input[type="submit"] {
		right: 15px;
	}
}

@media (max-width: 420px) {
	.header_box {
		padding: 20px 0;
	}
	.header_box .company {
		width: auto;
		display: flex;
		align-items: center;
		text-align: left;
	}
	.header_box .logo {
		flex-grow: 0;
		flex-shrink: 0;
		margin-right: 15px;
		top: 0;
	}
	.header_box .about {
		position: relative;
		top: auto;
		left: auto;
		transform: none;
	}
	.header_box .search {
		display: none;
	}
}

.answers_box {
	display: block;
	position: relative;
	margin-bottom: 40px;
}

.answers_box .posts {
	display: block;
	position: relative;
}

.answers_box .post {
	display: block;
	position: relative;
	margin-bottom: 30px;
	background-color: #f6f6f6;
	border-radius: 20px;
	padding: 25px 30px;
}

.answers_box .title {
	display: block;
	font-size: 20px;
	font-weight: 500;
	color: #a0b76f;
	margin-bottom: 15px;
}

.answers_box .title:hover {
	color: #bd9f66;
}

.answers_box .text {
	display: block;
	font-size: 16px;
	line-height: 1.5;
	margin-bottom: 15px;
}

@media (max-width: 1024px) {
	.answers_box {
		margin-bottom: 10px;
	}
	.answers_box .post {
		padding: 15px 20px;
		margin-bottom: 30px;
	}
	.answers_box .title {
		font-size: 18px;
		margin-bottom: 12px;
	}
	.answers_box .text {
		font-size: 14px;
	}
}

.author_box {
	display: flex;
	align-items: center;
	position: relative;
	margin-bottom: 25px;
}

.author_box .thumb {
	display: block;
	position: relative;
	margin-right: 20px;
	flex-grow: 0;
	flex-shrink: 0;
	width: 40px;
	height: auto;
	border-radius: 50%;
}

.author_box .name {
	display: block;
	color: #585045;
	font-size: 14px;
	font-weight: 400;
	line-height: 16px;
	margin-right: 40px;
}

.author_box .date, .author_box .time {
	display: block;
	margin-right: 40px;
	font-size: 12px;
	font-weight: 300;
	line-height: 16px;
}

.author_box .time {
	margin-right: 0;
	color: #a0b76f;
}

@media (max-width: 1024px) {
	.author_box {
		margin-bottom: 25px;
	}
	.author_box .date, .author_box .time {
		margin-right: 20px;
	}
}

@media (max-width: 420px) {
	.author_box {
		flex-wrap: wrap;
	}
	.author_box .date, .author_box .time {
		width: 50%;
		margin: 20px 0 0;
	}
}

.breadcrumbs_box {
	display: block;
	position: relative;
	margin: 30px 0 40px;
}

.breadcrumbs_box a, .breadcrumbs_box span, .breadcrumbs_box b {
	display: inline-block;
	color: #bd9f66;
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	position: relative;
	cursor: default;
}

.breadcrumbs_box a:hover {
	cursor: pointer;
	color: #a0b76f;
}

.breadcrumbs_box .home {
	padding-left: 25px;
}

.breadcrumbs_box .home:before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 50%;
	background: url(../images/ico_home.png) 0 0 no-repeat;
	width: 11px;
	height: 9px;
	margin-top: -4px;
}

.breadcrumbs_box b {
	width: 0;
	height: 0;
	border-left: 3px solid;
	border-top: 3px solid transparent;
	border-bottom: 3px solid transparent;
	top: -1px;
	margin: 0 8px;
}

@media (max-width: 1024px) {
	.breadcrumbs_box {
		margin: 20px 0;
	}
}

.categories_box {
	display: block;
	position: relative;
	margin-bottom: 80px;
	background-color: #f6f6f6;
	padding: 60px 0;
}

.categories_box:before {
	content: '';
	display: block;
	position: absolute;
	width: 140px;
	height: 140px;
	background-color: #ffffff;
	border-radius: 50%;
	right: 50%;
	margin-right: 80px;
}

.categories_box .items {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	margin: 0 -15px -30px;
}

.categories_box .item {
	display: block;
	position: relative;
	box-sizing: border-box;
	width: 16.66667%;
	padding: 0 15px;
	margin: 0 0 30px;
}

.categories_box .icon {
	display: block;
	width: 50px;
	height: 50px;
	margin: 0 0 15px;
	background: 0 0 no-repeat;
}

.categories_box .ico_1 {
	background-image: url(../images/ico_category_1.png);
}

.categories_box .ico_2 {
	background-image: url(../images/ico_category_2.png);
}

.categories_box .ico_3 {
	background-image: url(../images/ico_category_3.png);
}

.categories_box .ico_4 {
	background-image: url(../images/ico_category_4.png);
}

.categories_box .ico_5 {
	background-image: url(../images/ico_category_5.png);
}

.categories_box .ico_6 {
	background-image: url(../images/ico_category_6.png);
}

.categories_box .title {
	display: inline-block;
	color: #a0b76f;
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 15px;
}

.categories_box .title:hover {
	color: #bd9f66;
}

.categories_box .text {
	display: block;
	color: #585045;
	font-size: 12px;
	font-weight: 300;
	line-height: 1.5;
}

@media (max-width: 1024px) {
	.categories_box {
		padding: 30px 0 0;
		margin-bottom: 40px;
	}
	.categories_box .items {
		margin: 0 -10px;
	}
	.categories_box .item {
		width: 33.33%;
		padding: 0 10px;
		margin-bottom: 30px;
		text-align: center;
	}
	.categories_box .icon {
		margin: 0 auto 10px;
	}
	.categories_box .title {
		margin-bottom: 10px;
	}
	.categories_box .text {
		margin: 0 auto;
		max-width: 240px;
	}
}

@media (max-width: 640px) {
	.categories_box .item {
		width: 50%;
	}
}

/* Стили для оформления комментариев */
.comments_box, .comments, .comment, .comment_inner {
	display: block;
	position: relative;
	overflow: hidden;
}

.comments_box {
	margin-bottom: 80px;
}

@media (max-width: 1024px) {
	.comments_box {
		margin-bottom: 40px;
	}
}

.comment:last-child .comment_inner {
	border-bottom-width: 0;
}

.comment .comment_inner {
	display: flex;
	flex-wrap: nowrap;
	align-items: flex-start;
	font-size: 16px;
	line-height: 1.4;
}

.comment + .comment, .comment .comment {
	margin-top: 40px;
}

.comment .comment {
	margin-left: 50px;
}

.comment .comment:last-child .comment_inner {
	border-bottom-width: 1px;
}

.comment .comment-respond {
	margin-top: 40px;
}

.comment.depth-3 .comment {
	margin-left: 0;
}

.comment .thumb {
	display: block;
	flex-shrink: 0;
	width: 70px;
	margin-right: 20px;
}

.comment .thumb img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 50%;
}

.comment .heading {
	display: block;
	margin-bottom: 10px;
}

.comment .name {
	display: inline-block;
	vertical-align: middle;
	font-size: 13px;
	font-weight: 300;
	margin-right: 20px;
	color: #bd9f66;
}

.comment .comment-reply-link {
	display: inline-block;
	text-decoration: none;
	background-color: #bd9f66;
	padding: 3px 10px;
	color: #ffffff;
	font-size: 11px;
	font-weight: 500;
	line-height: 16px;
	border-radius: 20px;
	position: relative;
	z-index: 3;
	transition: 0.2s;
	cursor: pointer;
}

.comment .comment-reply-link:hover {
	background-color: #a0b76f;
}

.comment .text {
	font-style: normal;
}

.comment .text p {
	margin-bottom: 12px;
}

.comment .date {
	display: block;
	position: relative;
	opacity: 0.7;
	color: #585045;
	font-size: 12px;
	font-weight: 300;
	margin-top: 12px;
}

.comment .comment_on_moderation {
	font-style: italic;
	color: #990000;
}

@media (max-width: 1024px) {
	.comment .comment {
		margin-left: 20px;
	}
	.comment + .comment, .comment .comment {
		margin-top: 30px;
	}
}

/* Стили для оформления формы комментариев */
.comment-reply-title {
	display: none;
}

.comment-respond {
	display: block;
	position: relative;
	margin-bottom: 80px;
	border-radius: 10px;
	background-color: #f6f6f6;
	padding: 30px;
}

.comment-respond .fields {
	display: flex;
	flex-wrap: wrap;
	position: relative;
	margin: 0 -10px 10px;
}

.comment-respond .field {
	display: block;
	width: 50%;
	box-sizing: border-box;
	padding: 0 10px;
	margin-bottom: 20px;
}

.comment-respond textarea {
	max-width: none;
	margin-bottom: 20px;
}

.comment-respond p {
	margin-bottom: 20px;
}

.comment-respond p.form-submit {
	overflow: hidden;
	width: 100%;
}

.comment-respond .logout, .comment-respond .login {
	font-weight: bold;
}

.comment-respond .logout {
	text-decoration: none;
}

.comment-respond .logout:hover {
	text-decoration: underline;
}

.comment-respond .login {
	color: #953c21;
}

.comment-respond .form-submit {
	display: flex;
	align-items: center;
}

.comment-respond .inputs {
	display: block;
	flex-grow: 0;
}

.comment-respond .agreement {
	flex-grow: 1;
	padding: 0 0 0 25px;
	margin-left: 20px;
	color: #B8B9C1;
	background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAALCAYAAACgR9dcAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAMdJREFUeNqU0c0KAVEYxvEzjAuxk4uwQNkoG6WUrCwsLRQhJflKNrJQNKVEysbaRdjIRYhbGP+3ztQsZsbMW7/NmXmmM89r2LatZIZWVoUcAxs8YiraSHCLJtJRwvLuDg2s0DJDBuPYo44l2nJohvhXCVqoYY6O+yopFAKCBx2cuINOeI0bih7BI6oYo+dVgjx84YqSPk/gjIpsEQO/Bt/I4YmLDpxQRh8jvzKctj/I444pkuhiFtSke1VfZPQV5WOLf2v4CTAA2cMkUesuWeAAAAAASUVORK5CYII=") 0 50% no-repeat;
	font-size: 14px;
	line-height: 1.25;
}

.comment-respond .agreement a {
	color: #a0b76f;
	text-decoration: underline;
}

.comment-respond .agreement a:hover {
	text-decoration: none;
}

@media (max-width: 1024px) {
	.comment-respond {
		margin-bottom: 40px;
		padding: 20px;
	}
	.comment-respond .fields {
		margin-bottom: 0;
	}
}

@media (max-width: 480px) {
	.comment-respond .field {
		width: 100%;
	}
	.comment-respond .form-submit {
		flex-direction: column;
		align-items: center;
	}
	.comment-respond .agreement {
		margin: 20px 0 0;
	}
}

h1 {
	display: block;
	margin-bottom: 25px;
	font-size: 36px;
	font-weight: 300;
	line-height: 1.1;
}

@media (max-width: 1024px) {
	h1 {
		font-size: 28px;
		margin-bottom: 20px;
	}
}

@media (max-width: 640px) {
	h1 {
		font-size: 24px;
	}
}

.content_box {
	display: block;
	position: relative;
	margin-bottom: 80px;
}

@media (max-width: 1024px) {
	.content_box {
		margin-bottom: 40px;
	}
}

.content {
	display: block;
	position: relative;
	overflow: hidden;
	font-size: 16px;
	line-height: 1.5;
}

.content h2, .content h3, .content h4, .content h5, .content h6 {
	margin-bottom: 25px;
	font-weight: 300;
	line-height: 1.2;
}

.content h2 {
	font-size: 32px;
}

.content h3 {
	font-size: 26px;
}

.content h4 {
	font-size: 20px;
}

.content h5 {
	font-size: 18px;
}

.content h6 {
	font-size: 16px;
}

.content p, .content > table, .content > ul, .content > ol, .content .table_wrapper {
	margin-bottom: 25px;
}

.content strong {
	font-weight: 500;
}

.content a {
	color: #a0b76f;
	text-decoration: underline;
}

.content a:hover {
	text-decoration: none;
}

.content .table_wrapper {
	overflow: auto;
}

.content ul, .content ol {
	display: block;
	position: relative;
}

.content ul ul, .content ul ol, .content ol ul, .content ol ol {
	display: block;
	margin-left: 0;
	padding-top: 11px;
}

.content li {
	display: block;
	position: relative;
	margin-bottom: 15px;
	padding-left: 25px;
}

.content li:last-child {
	margin-bottom: 0;
}

.content ul > li:before {
	content: '';
	display: block;
	position: absolute;
	top: 6px;
	left: 0;
	width: 11px;
	height: 12px;
	background: url(../images/ico_list.png) 0 0 no-repeat;
}

.content ol {
	counter-reset: list;
}

.content ol > li {
	counter-increment: list;
	padding-left: 35px;
}

.content ol > li:before {
	content: counter(list);
	display: block;
	position: absolute;
	top: 1px;
	left: 0;
	text-align: center;
	min-width: 23px;
	height: 23px;
	background-color: #a0b76f;
	color: #ffffff;
	font-size: 14px;
	font-weight: 500;
	line-height: 23px;
	border-radius: 15px;
}

.content table, .content img {
	width: auto;
	max-width: 100%;
	height: auto;
}

.content table {
	border-radius: 10px;
	width: 100%;
	border-spacing: 0;
	border-collapse: collapse;
	overflow: hidden;
}

.content td, .content th {
	font-size: 14px;
	padding: 10px 15px;
	text-align: center;
}

.content td:first-child, .content th:first-child {
	text-align: left;
}

.content th {
	background-color: #e6e6e6;
	font-weight: 500;
}

.content tr:nth-child(2n) td {
	background-color: #f6f6f6;
}

.content > :last-child {
	margin-bottom: 0;
}

@media (max-width: 1024px) {
	.content h2 {
		font-size: 24px;
	}
	.content h3 {
		font-size: 20px;
	}
	.content h4 {
		font-size: 18px;
	}
	.content h5 {
		font-size: 17px;
	}
	.content h6 {
		font-size: 15px;
	}
	.content p, .content > table, .content > ul, .content > ol, .content .table_wrapper {
		margin-bottom: 20px;
	}
}

@media (max-width: 768px) {
	.content .table_wrapper {
		display: block;
		overflow-x: auto;
		overflow-y: hidden;
	}
}

.content .alignleft {
	float: left;
	margin: 0 25px 25px 0;
}

.content .alignright {
	float: right;
	margin: 0 0 25px 25px;
}

.content .alignnone {
	margin: 0 0 25px;
}

.content .aligncenter {
	display: block;
	margin: 0 auto 25px;
}

@media (max-width: 768px) {
	.content .alignright, .content .alignleft {
		float: none;
		display: block;
		margin: 0 auto 25px;
		text-align: center;
	}
}

.content blockquote {
	display: block;
	position: relative;
	overflow: hidden;
	margin-bottom: 30px;
	padding: 20px 30px 20px 120px;
	border-radius: 10px;
	line-height: 1.5;
	background: #f6f6f6;
}

.content blockquote:before {
	content: '';
	display: block;
	position: absolute;
	left: 35px;
	top: 50%;
	margin-top: -25px;
	background: url(../images/ico_blockquote.png) 0 0 no-repeat;
	width: 50px;
	height: 50px;
}

.content blockquote :last-child {
	margin-bottom: 0;
}

@media (max-width: 1024px) {
	.content blockquote {
		padding: 15px 20px 15px 80px;
	}
	.content blockquote:before {
		left: 15px;
	}
}

.content .block_ico_1, .content .block_ico_2 {
	display: block;
	position: relative;
	padding: 30px 40px;
	margin-bottom: 30px;
	border-radius: 20px;
	border: 1px solid #a0b76f;
	background-color: #ffffff;
	line-height: 1.5;
}

.content .block_ico_1:before, .content .block_ico_2:before {
	content: 'Полезно знать';
	display: block;
	background-color: #ffffff;
	position: absolute;
	left: 20px;
	padding: 0 20px;
	top: -10px;
	color: #a0b76f;
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
}

.content .block_ico_1 :last-child, .content .block_ico_2 :last-child {
	margin-bottom: 0;
}

@media (max-width: 1024px) {
	.content .block_ico_1, .content .block_ico_2 {
		padding: 15px 20px;
		border-radius: 10px;
	}
	.content .block_ico_1:before, .content .block_ico_2:before {
		padding: 0 10px;
		left: 10px;
	}
}

.content .block_ico_2 {
	border-color: #bd9f66;
}

.content .block_ico_2:before {
	content: 'Важная информация';
	color: #bd9f66;
}

.content .flat_ads_block {
	display: block;
	max-width: 100%;
	position: relative;
	overflow: hidden;
}

.content .wp-caption-text {
	display: block;
	margin: 0;
	text-align: center;
	color: rgba(88, 80, 69, 0.7);
	font-size: 16px;
	font-weight: 300;
}

.content .wp-caption {
	display: block;
	box-sizing: border-box;
	overflow: hidden;
	margin-bottom: 25px;
	padding: 0;
	border-radius: 10px;
	background: #f6f6f6;
}

.content .wp-caption .wp-caption-text {
	padding: 10px;
}

.content .wp-caption a, .content .wp-caption img {
	display: block;
	position: relative;
	margin: 0;
}

.gallery {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	flex-wrap: wrap;
	position: relative;
	overflow: hidden;
	margin: 0 -5px 10px;
}

.gallery .gallery-item {
	display: inline-block;
	box-sizing: border-box;
	width: 33.33%;
	margin: 0 0 10px;
	padding: 0 5px;
	vertical-align: top;
}

.gallery .gallery-icon {
	display: block;
	margin: 0;
	padding: 0;
	background: #f6f6f6;
}

.gallery .gallery-icon a, .gallery .gallery-icon img {
	display: block;
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	border-radius: 10px;
}

.gallery .gallery-caption {
	display: block;
	padding: 0 10px 10px;
	background: #f6f6f6;
}

.gallery-columns-1 .gallery-item {
	width: 100%;
}

.gallery-columns-2 .gallery-item {
	width: 50%;
}

.gallery-columns-4 .gallery-item {
	width: 25%;
}

.gallery-columns-5 .gallery-item {
	width: 20%;
}

.gallery-columns-6 .gallery-item {
	width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	width: 11.11%;
}

.gallery-columns-6 .gallery-caption,
.gallery-columns-7 .gallery-caption,
.gallery-columns-8 .gallery-caption,
.gallery-columns-9 .gallery-caption {
	display: none;
}

@media (max-width: 768px) {
	.gallery-columns-2 .gallery-item {
		width: 100%;
	}
	.gallery-columns-4 .gallery-item, .gallery-columns-5 .gallery-item {
		width: 50%;
	}
	.gallery-columns-6 .gallery-item, .gallery-columns-7 .gallery-item {
		width: 33.33%;
	}
	.gallery-columns-8 .gallery-item, .gallery-columns-9 .gallery-item {
		width: 25%;
	}
}

@media (max-width: 480px) {
	.gallery-columns-3 .gallery-item, .gallery-columns-4 .gallery-item, .gallery-columns-5 .gallery-item {
		width: 100%;
	}
	.gallery-columns-6 .gallery-item, .gallery-columns-7 .gallery-item {
		width: 50%;
	}
	.gallery-columns-8 .gallery-item, .gallery-columns-9 .gallery-item {
		width: 33.33%;
	}
}

.wpcf7 {
	margin-bottom: 80px;
}

.wpcf7 .fields {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	margin: 0 -10px;
}

.wpcf7 .wpcf7-form-control-wrap {
	display: block;
	box-sizing: border-box;
	width: 50%;
	margin-bottom: 20px;
	padding: 0 10px;
}

.wpcf7 .your-message, .wpcf7 .your-file {
	width: 100%;
}

.wpcf7 .screen-reader-response, .wpcf7 .ajax-loader {
	display: none;
}

.wpcf7 .wpcf7-display-none {
	display: none;
}

.wpcf7 .wpcf7-response-output {
	margin: 20px 0 0;
	padding: 15px 20px;
	border: 2px solid #9cc161;
	border-radius: 10px;
	font-size: 15px;
	line-height: 1.25;
}

.wpcf7 .wpcf7-validation-errors {
	border-color: #ff0000;
}

.wpcf7 .wpcf7-not-valid-tip {
	display: block;
	margin: 10px 20px -10px;
	font-size: 14px;
	line-height: 20px;
	color: #ff0000;
}

@media (max-width: 1024px) {
	.wpcf7 {
		margin-bottom: 40px;
	}
}

@media (max-width: 480px) {
	.wpcf7 .wpcf7-form-control-wrap {
		width: 100%;
	}
}

.jq-file {
	display: inline-block;
	position: relative;
	overflow: hidden;
	width: 100%;
	max-width: 360px;
	box-shadow: 0 0 18px rgba(201, 204, 221, 0.4);
	border-radius: 4px;
}

.jq-file input {
	position: absolute;
	top: 0;
	right: 0;
	height: auto;
	margin: 0;
	padding: 0;
	font-size: 40px;
	line-height: 1;
	opacity: 0;
	cursor: pointer;
	border-radius: 10px;
	z-index: 10;
}

.jq-file__name {
	display: block;
	box-sizing: border-box;
	overflow: hidden;
	width: 100%;
	height: 40px;
	padding: 10px 80px 10px 20px;
	background: #ffffff;
	font-size: 14px;
	font-weight: 300;
	line-height: 20px;
	color: #585045;
	text-overflow: ellipsis;
	white-space: nowrap;
	border-radius: 10px;
	z-index: 1;
}

.jq-file__browse {
	position: absolute;
	top: 0;
	right: 0;
	padding: 10px 15px;
	border: 1px solid #a0b76f;
	background-color: #a0b76f;
	border-radius: 0 10px 10px 0;
	font-size: 14px;
	line-height: 18px;
	color: #ffffff;
	cursor: pointer;
	transition: 0.2s;
	z-index: 2;
}

.jq-file__browse:hover {
	background-color: #ffffff;
	color: #a0b76f;
}

.jq-file:hover .jq-file__browse {
	background: linear-gradient(#f6f6f6, #e6e6e6);
}

.jq-file:active .jq-file__browse {
	background: #f5f5f5;
	box-shadow: inset 1px 1px 3px #dddddd;
}

.jq-file.focused .jq-file__name {
	border: 1px solid #5794bf;
}

.jq-file.disabled, .jq-file.disabled .jq-file__name, .jq-file.disabled .jq-file__browse {
	background: #f5f5f5;
	box-shadow: none;
	border-color: #cccccc;
	color: #888888;
}

.modal_box {
	display: flex;
	visibility: hidden;
	align-items: center;
	justify-content: center;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	overflow-x: hidden;
	overflow-y: auto;
	background-color: rgba(0, 0, 0, 0.8);
	transition: 0.5s;
	padding: 20px;
	opacity: 0;
	z-index: 10;
}

.modal_box.is_visible {
	visibility: visible;
	opacity: 1;
}

.modal_box.is_visible .modal {
	top: 0;
}

.modal_box .modal {
	display: block;
	position: relative;
	top: -600px;
	overflow: hidden;
	width: 100%;
	max-width: 500px;
	margin: auto;
	padding: 40px;
	background-color: #ffffff;
	text-align: center;
	transition: 0.5s;
}

.modal_box .close {
	display: block;
	position: absolute;
	top: 10px;
	right: 10px;
	background: none;
	border: none;
	outline: none;
	width: 18px;
	height: 18px;
	cursor: pointer;
}

.modal_box .close:after, .modal_box .close:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-50%) rotate(45deg);
	display: block;
	width: 100%;
	height: 1px;
	background-color: #000000;
	transition: 0.2s;
}

.modal_box .close:before {
	transform: translateY(-50%) rotate(-45deg);
}

.modal_box .close:hover:before, .modal_box .close:hover:after {
	background-color: #009900;
}

@media (max-width: 1024px) {
	.modal_box .modal {
		padding: 20px;
	}
}

@media (max-width: 420px) {
	.modal_box {
		padding: 10px;
	}
	.modal_box .modal {
		padding: 10px;
	}
}

/* Стили для пагинации */
.pagination {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	position: relative;
	text-align: center;
	margin: 0 -3px 55px;
}

.pagination span, .pagination a {
	display: inline-block;
	height: 30px;
	min-width: 30px;
	text-align: center;
	box-sizing: border-box;
	text-decoration: none;
	vertical-align: middle;
	border-radius: 20px;
	margin: 0 3px 5px;
	padding: 0 5px;
	color: #a0b76f;
	font-size: 16px;
	font-weight: 500;
	line-height: 27px;
	border: 1px solid #a0b76f;
	background-color: #ffffff;
	transition: 0.2s;
}

.pagination span, .pagination a:hover {
	border-color: #fcba26;
	background-color: #fcba26;
	color: #585045;
}

.pagination a:hover {
	color: #fcba26;
	background-color: #ffffff;
}

.pagination .extend {
	border-color: transparent;
	background: transparent;
}

.pagination span.next, .pagination span.prev {
	background: transparent;
	color: #0d7b0d;
}

.pagination .prev, .pagination .next {
	padding: 0 12px;
}

@media (max-width: 1024px) {
	.pagination {
		margin-bottom: 30px;
	}
}

.popular_box {
	display: block;
	position: relative;
	margin-bottom: 80px;
}

.popular_box .fixed {
	display: flex;
	align-items: flex-start;
}

.popular_box .fixed:before {
	content: '';
	display: block;
	position: absolute;
	background: url(../images/ico_triangle_large.svg) 0 0 no-repeat;
	background-size: contain;
	width: 421px;
	height: 285px;
	z-index: 1;
	left: 50%;
	margin-left: -280px;
	top: -80px;
}

.popular_box .content {
	display: block;
	width: 280px;
	flex-grow: 0;
	flex-shrink: 0;
	margin-right: 40px;
	position: relative;
	z-index: 2;
}

.popular_box .items {
	display: flex;
	flex-wrap: wrap;
	flex-grow: 1;
	margin: 0 -10px -20px;
	position: relative;
	overflow: hidden;
	z-index: 2;
}

.popular_box .item {
	display: block;
	position: relative;
	overflow: hidden;
	width: calc(25% - 20px);
	margin: 0 10px 20px;
}

.popular_box .large {
	width: calc(50% - 20px);
}

.popular_box .large .info {
	left: 30px;
}

.popular_box .large .title {
	font-size: 20px;
}

.popular_box .large .category {
	margin-top: 8px;
}

.popular_box .thumb {
	display: block;
	position: relative;
	overflow: hidden;
	border-radius: 20px;
	z-index: 1;
}

.popular_box .thumb:before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: linear-gradient(to bottom, transparent, rgba(48, 45, 40, 0.8));
	z-index: 2;
}

.popular_box .thumb img {
	display: block;
	width: 100%;
	height: auto;
	position: relative;
	z-index: 1;
}

.popular_box .info {
	display: block;
	position: absolute;
	left: 20px;
	right: 20px;
	bottom: 15px;
	z-index: 2;
	color: #ffffff;
}

.popular_box .title {
	display: block;
	color: #ffffff;
	font-size: 16px;
	font-weight: 300;
}

.popular_box .title:hover {
	color: #cfff8e;
}

.popular_box .category {
	display: inline-block;
	margin-top: 10px;
	color: #a0b76f;
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
}

.popular_box .category:hover {
	color: #bd9f66;
}

.popular_box .photos {
	display: inline-block;
	margin-bottom: 10px;
	position: relative;
	background-color: #bd9f66;
	color: #ffffff;
	font-size: 12px;
	font-weight: 500;
	line-height: 18px;
	text-transform: uppercase;
	padding: 5px 15px 5px 40px;
	border-radius: 10px;
}

.popular_box .photos:before {
	content: '';
	display: block;
	position: absolute;
	left: 11px;
	top: 50%;
	background: url(../images/ico_photo_small.png) 0 0 no-repeat;
	width: 19px;
	height: 16px;
	margin-top: -8px;
}

@media (max-width: 1340px) {
	.popular_box .fixed {
		display: block;
	}
	.popular_box .title_box {
		display: block;
		margin-bottom: 20px;
	}
	.popular_box .title_box:after {
		display: none;
	}
	.popular_box .content {
		width: auto;
		margin: 0 0 30px;
	}
}

@media (max-width: 1024px) {
	.popular_box {
		margin-bottom: 40px;
	}
	.popular_box .fixed:before {
		top: -40px;
	}
	.popular_box .large .title {
		font-size: 18px;
		margin-bottom: 0;
	}
	.popular_box .title {
		line-height: 1.2;
	}
	.popular_box .category {
		margin-top: 8px;
	}
}

@media (max-width: 768px) {
	.popular_box .item {
		width: calc(50% - 20px);
	}
	.popular_box .large {
		width: calc(100% - 20px);
	}
}

@media (max-width: 420px) {
	.popular_box .items {
		display: block;
		margin: 0;
	}
	.popular_box .item {
		width: auto;
		margin: 0 0 20px;
	}
	.popular_box .large img {
		width: 200%;
		left: -50%;
	}
	.popular_box .title {
		font-size: 18px;
	}
	.popular_box .photos {
		display: none;
	}
}

.posts_box {
	display: block;
	position: relative;
	margin-bottom: 20px;
}

.posts_box .title_box:after {
	left: 500px;
}

.posts_box .posts {
	display: block;
	position: relative;
	overflow: hidden;
}

.posts_box .posts_small {
	font-size: 0;
	line-height: 0;
	margin: 0 -20px;
}

.posts_box .posts_small .post {
	display: inline-flex;
	vertical-align: top;
	width: 50%;
	padding: 0 20px;
	box-sizing: border-box;
}

.posts_box .post {
	display: flex;
	position: relative;
	align-items: center;
	font-size: 16px;
	line-height: 1.5;
	margin-bottom: 60px;
	text-align: left;
}

.posts_box .thumb {
	display: block;
	position: relative;
	flex-grow: 0;
	flex-shrink: 0;
	margin: 10px 40px 10px 10px;
	width: 200px;
}

.posts_box .thumb:before {
	content: '';
	display: block;
	position: absolute;
	left: -10px;
	top: -10px;
	bottom: -10px;
	right: -10px;
	border-radius: 30px;
	border: 5px solid #f3f1eb;
}

.posts_box .thumb img {
	display: block;
	position: relative;
	border-radius: 20px;
	width: 100%;
	height: auto;
	z-index: 2;
}

.posts_box .title {
	display: block;
	position: relative;
	font-size: 22px;
	line-height: 1.25;
	color: #585045;
}

.posts_box .title:hover {
	color: #a0b76f;
}

.posts_box .category {
	display: inline-block;
	margin-bottom: 15px;
	color: #a0b76f;
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
}

.posts_box .category:hover {
	color: #bd9f66;
}

.posts_box .text {
	margin-top: 10px;
}

.posts_box .button {
	margin-top: 18px;
}

.posts_box .more {
	display: block;
	position: relative;
	overflow: hidden;
	margin-top: -20px;
	margin-bottom: 80px;
	text-align: center;
}

.posts_box .more span {
	display: inline-block;
	position: relative;
	border-radius: 15px;
	background-color: #a0b76f;
	padding: 5px 20px;
	color: #ffffff;
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	cursor: pointer;
	transition: 0.2s;
}

.posts_box .more span:before, .posts_box .more span:after {
	content: '';
	display: block;
	width: 1000px;
	height: 1px;
	background-color: #d8e2c2;
	position: absolute;
	top: 50%;
	margin-top: -1px;
	left: 100%;
	margin-left: 20px;
}

.posts_box .more span:before {
	left: auto;
	right: 100%;
	margin-right: 20px;
	margin-left: 0;
}

.posts_box .more span:hover {
	background-color: #bd9f66;
}

@media (max-width: 1024px) {
	.posts_box {
		margin-bottom: 20px;
	}
	.posts_box .posts_small {
		margin: 0;
	}
	.posts_box .posts_small .post {
		display: flex;
		width: 100%;
		padding: 0;
	}
	.posts_box .posts {
		margin: 0;
	}
	.posts_box .post {
		margin-bottom: 20px;
	}
	.posts_box .thumb {
		margin-right: 25px;
	}
	.posts_box .title {
		font-size: 20px;
	}
	.posts_box .category {
		margin-bottom: 8px;
	}
	.posts_box .text {
		margin-top: 8px;
	}
	.posts_box .button {
		margin-top: 15px;
	}
	.posts_box .more {
		margin-top: 10px;
		margin-bottom: 30px;
	}
}

@media (max-width: 768px) {
	.posts_box .title {
		font-size: 18px;
	}
}

@media (max-width: 480px) {
	.posts_box .thumb {
		width: 140px;
	}
}

@media (max-width: 420px) {
	.posts_box .title_box {
		text-align: center;
	}
	.posts_box .thumb {
		width: 200px;
		margin-right: 10px;
		margin-bottom: 20px;
	}
	.posts_box .post {
		flex-direction: column;
		text-align: center;
	}
}

.questions_box {
	display: block;
	position: relative;
	margin-bottom: 80px;
}

.questions_box:before {
	content: '';
	display: block;
	position: absolute;
	background: url(../images/bg_questions.png) 0 0 no-repeat;
	width: 1646px;
	height: 682px;
	z-index: 1;
	left: 50%;
	margin-left: -550px;
	top: -8px;
}

.questions_box .background {
	display: block;
	position: absolute;
	top: 100px;
	left: 50%;
	margin-left: 650px;
	z-index: 1;
}

.questions_box .background:before, .questions_box .background:after {
	content: '';
	display: block;
	width: 180px;
	height: 14px;
	background-color: #a0b76f;
	transform: skew(-45deg);
	position: absolute;
	left: 0;
	top: 0;
}

.questions_box .background:after {
	display: block;
	height: 9px;
	left: 80px;
	top: 14px;
	width: 140px;
	background-color: #bd9f66;
}

.questions_box .title_box {
	font-size: 26px;
	color: #a0b76f;
}

.questions_box .title_box:before {
	background-color: #bd9f66;
}

.questions_box .title_box:after {
	left: -60px;
	background-color: #a0b76f;
}

.questions_box .subtitle {
	display: block;
	font-size: 26px;
	color: #585045;
	font-weight: 300;
	margin-bottom: 20px;
}

.questions_box .fixed {
	display: flex;
	align-items: flex-start;
	z-index: 3;
}

.questions_box .lamp {
	display: block;
	margin: 0 20px;
	background: url(../images/ico_lamp.png) 0 0 no-repeat;
	width: 364px;
	height: 776px;
	flex-grow: 0;
	flex-shrink: 0;
}

.questions_box .questions {
	display: block;
	position: relative;
	flex-basis: 560px;
}

.questions_box .title {
	display: block;
	color: #585045;
	font-size: 36px;
	font-weight: 300;
	line-height: 1.2;
	margin-bottom: 15px;
}

.questions_box .text {
	display: block;
	color: #585045;
	font-size: 16px;
	font-weight: 300;
	line-height: 1.5;
	margin-bottom: 20px;
}

.questions_box .info {
	display: flex;
	align-items: center;
}

.questions_box .replies {
	display: inline-block;
	color: #bd9f66;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.5;
	text-transform: uppercase;
	margin-left: 30px;
}

.questions_box .replies:after {
	content: '';
	display: inline-block;
	vertical-align: middle;
	margin-left: 10px;
	background: url(../images/ico_comment.png) 0 0 no-repeat;
	width: 18px;
	height: 18px;
	position: relative;
	top: -2px;
}

.questions_box .links {
	display: block;
	position: relative;
	padding-top: 50px;
	margin-top: 50px;
	border-top: 1px solid #f3f6ed;
}

.questions_box .link {
	display: block;
	position: relative;
	padding-left: 40px;
	color: #585045;
	font-size: 18px;
	font-weight: 300;
	line-height: 1.33;
	margin-bottom: 25px;
}

.questions_box .link:before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 4px;
	background: url(../images/ico_question.png) 0 0 no-repeat;
	width: 15px;
	height: 15px;
}

.questions_box .link:hover {
	color: #a0b76f;
}

.questions_box .link:last-child {
	margin-bottom: 0;
}

.questions_box .more {
	display: inline-block;
	color: #bd9f66;
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	margin-top: 35px;
}

.questions_box .more:hover {
	color: #a0b76f;
}

.questions_box .ask {
	display: block;
	position: relative;
	align-self: center;
	flex-basis: 340px;
}

.questions_box .icon {
	display: inline-block;
	position: relative;
	background: url(../images/ico_questions.png) 0 0 no-repeat;
	width: 100px;
	height: 100px;
	margin-bottom: 20px;
}

@media (max-width: 1340px) {
	.questions_box .lamp {
		display: none;
	}
	.questions_box .links {
		margin-top: 30px;
		padding-top: 30px;
	}
	.questions_box .link {
		padding-left: 30px;
		margin-bottom: 15px;
	}
	.questions_box .questions, .questions_box .ask {
		flex-basis: 50%;
		box-sizing: border-box;
		padding: 0;
		margin: 0;
	}
	.questions_box .questions {
		padding-right: 20px;
	}
	.questions_box .ask {
		padding-left: 20px;
	}
	.questions_box .more {
		margin-top: 20px;
	}
}

@media (max-width: 1024px) {
	.questions_box {
		margin-bottom: 40px;
	}
	.questions_box .title {
		font-size: 28px;
	}
	.questions_box .title_box, .questions_box .subtitle {
		font-size: 24px;
		margin-bottom: 15px;
	}
	.questions_box .icon {
		margin-bottom: 18px;
	}
	.questions_box .links {
		margin-top: 20px;
		padding-top: 20px;
	}
	.questions_box .link {
		font-size: 16px;
		margin-bottom: 10px;
	}
}

@media (max-width: 768px) {
	.questions_box {
		margin-bottom: 0;
	}
	.questions_box:before {
		top: -90px;
	}
	.questions_box .fixed {
		display: block;
	}
	.questions_box .questions, .questions_box .ask {
		padding: 0;
		margin: 0 0 40px;
	}
	.questions_box .ask {
		text-align: center;
	}
}

@media (max-width: 480px) {
	.questions_box:before {
		display: none;
	}
	.questions_box .title {
		font-size: 24px;
	}
	.questions_box .title_box, .questions_box .subtitle {
		font-size: 20px;
	}
	.questions_box .icon {
		margin-bottom: 15px;
	}
	.questions_box .subtitle {
		margin-bottom: 10px;
	}
	.questions_box .info {
		flex-direction: column;
		align-items: center;
	}
	.questions_box .replies {
		margin: 15px 0 0;
	}
}

.related_box {
	display: block;
	position: relative;
	margin-bottom: 40px;
}

.related_box .title_box:after {
	left: 340px;
}

.related_box .posts {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	margin: 0 -20px;
}

.related_box .post {
	display: block;
	position: relative;
	width: 50%;
	box-sizing: border-box;
	padding: 0 30px;
	margin-bottom: 40px;
}

.related_box .thumb {
	display: block;
	position: relative;
	flex-grow: 0;
	flex-shrink: 0;
	margin: 10px 0 30px;
}

.related_box .thumb:before {
	content: '';
	display: block;
	position: absolute;
	left: -10px;
	top: -10px;
	bottom: -10px;
	right: -10px;
	border-radius: 30px;
	border: 5px solid #f3f1eb;
}

.related_box .thumb img {
	display: block;
	position: relative;
	border-radius: 20px;
	width: 100%;
	height: auto;
	z-index: 2;
}

.related_box .title {
	display: block;
	position: relative;
	font-size: 22px;
	line-height: 1.25;
	color: #585045;
	margin-bottom: 15px;
}

.related_box .title:hover {
	color: #a0b76f;
}

.related_box .category {
	display: inline-block;
	margin-bottom: 15px;
	color: #a0b76f;
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
}

.related_box .category:hover {
	color: #bd9f66;
}

.related_box .button {
	margin-top: 20px;
}

@media (max-width: 1024px) {
	.related_box {
		margin-bottom: 10px;
	}
	.related_box .posts {
		margin: 0 -10px;
	}
	.related_box .post {
		padding: 0 20px;
		margin-bottom: 30px;
	}
	.related_box .thumb {
		margin-bottom: 25px;
	}
	.related_box .category {
		margin-bottom: 10px;
	}
	.related_box .title {
		font-size: 18px;
		margin-bottom: 10px;
	}
}

@media (max-width: 640px) {
	.related_box .post {
		width: 100%;
	}
	.related_box .thumb {
		max-width: 395px;
	}
}

.social_box {
	display: flex;
	align-items: center;
	position: relative;
	margin-bottom: 80px;
	border-radius: 10px;
	padding: 20px 30px;
	background-color: #f6f6f6;
}

.social_box .label {
	display: block;
	font-size: 16px;
	font-weight: 500;
	margin-right: 30px;
}

.social_box .like {
	display: flex;
	align-items: center;
	border-radius: 20px;
	background-color: #a0b76f;
	padding: 5px 20px;
	height: 40px;
	color: #ffffff;
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
	box-sizing: border-box;
	margin-right: auto;
	cursor: pointer;
	transition: 0.2s;
	white-space: nowrap;
}

.social_box .like:before {
	content: '';
	display: block;
	position: relative;
	background: url(../images/ico_like.png) 0 0 no-repeat;
	width: 21px;
	height: 22px;
	margin-right: 12px;
	margin-left: 3px;
	top: -1px;
}

.social_box .like:hover {
	background-color: #bd9f66;
}

.social_box .like span {
	display: block;
	opacity: 0.5;
	color: #ffffff;
	font-size: 15px;
	font-weight: 700;
	line-height: 20px;
	margin-left: 15px;
}

.social_box .social {
	display: flex;
	justify-content: flex-end;
	position: relative;
}

.social_box .icon {
	display: block;
	position: relative;
	width: 36px;
	height: 36px;
	margin-left: 10px;
	background: #48729e url(../images/ico_vk.png) 50% 50% no-repeat;
	cursor: pointer;
	border-radius: 3px;
}

.social_box .icon.icon_fb {
	background-color: #3d5a98;
	background-image: url(../images/ico_fb.png);
}

.social_box .icon.icon_ok {
	background-color: #f69500;
	background-image: url(../images/ico_ok.png);
}

.social_box .icon.icon_tw {
	background-color: #1da1f2;
	background-image: url(../images/ico_tw.png);
}

.social_box .icon:hover {
	opacity: 0.8;
}

@media (max-width: 1340px) {
	.social_box {
		flex-wrap: wrap;
		justify-content: center;
		max-width: 440px;
		margin-left: auto;
		margin-right: auto;
	}
	.social_box .label {
		margin-right: 0;
	}
	.social_box .like {
		margin: 0 0 0 20px;
	}
	.social_box .icon {
		margin: 0 5px;
	}
	.social_box .social {
		margin-top: 20px;
		width: 100%;
		text-align: center;
		overflow: hidden;
		justify-content: center;
	}
}

@media (max-width: 1024px) {
	.social_box {
		padding: 20px;
		margin-bottom: 40px;
	}
}

@media (max-width: 640px) {
	.social_box {
		flex-direction: column;
		align-items: center;
	}
	.social_box .label, .social_box .like {
		margin: 0 0 20px;
	}
	.social_box .social {
		margin-top: 0;
	}
}

.splash_box {
	display: block;
	position: relative;
	margin-top: -50px;
	margin-bottom: 80px;
	background: url(../images/bg_splash.png) 50% 0 no-repeat;
}

.splash_box .splash {
	display: block;
	position: relative;
	height: 615px;
}

.splash_box .items {
	display: block;
	position: relative;
	height: 100%;
}

.splash_box .item {
	display: block;
	position: absolute;
	top: 150px;
	left: 0;
	padding-left: 50px;
	padding-bottom: 40px;
	max-width: 150px;
}

.splash_box .item:before {
	content: '';
	display: block;
	width: 22px;
	height: 25px;
	background: url(../images/ico_arrow_green.svg) 0 0 no-repeat;
	background-size: contain;
	position: absolute;
	left: 50px;
	bottom: 0;
}

.splash_box .item:after {
	content: '';
	display: block;
	width: 32px;
	height: 32px;
	background: url(../images/ico_video.png) 0 0 no-repeat;
	position: absolute;
	left: 0;
	top: 5px;
}

.splash_box .item .title {
	display: block;
	color: #a0b76f;
	font-weight: 500;
	margin-bottom: 10px;
}

.splash_box .item .title:hover {
	color: #bd9f66;
}

.splash_box .item .text {
	display: block;
	color: #585045;
	font-family: "Ubuntu", sans-serif;
	font-size: 12px;
	font-weight: 300;
	line-height: 1.5;
}

.splash_box .diy {
	left: auto;
	right: 0;
}

.splash_box .diy:before {
	background-image: url(../images/ico_arrow_brown.svg);
}

.splash_box .diy:after {
	background-image: url(../images/ico_diy.png);
}

.splash_box .diy .title {
	color: #bd9f66;
}

.splash_box .diy .title:hover {
	color: #a0b76f;
}

.splash_box .featured {
	display: block;
	position: absolute;
	right: 0;
	bottom: 0;
	width: 480px;
}

.splash_box .featured:before {
	content: '';
	display: block;
	position: absolute;
	background: url(../images/ico_splash.png) 0 0 no-repeat;
	width: 152px;
	height: 208px;
	left: -260px;
	bottom: 0;
}

.splash_box .featured .title {
	display: block;
	font-size: 36px;
	font-weight: 300;
	line-height: 1.1;
	margin-bottom: 10px;
}

.splash_box .featured .title:hover {
	color: #a0b76f;
}

.splash_box .featured .text {
	display: block;
	font-size: 16px;
	font-weight: 300;
	line-height: 1.5;
	margin-bottom: 20px;
}

.splash_box .info {
	display: flex;
	align-items: center;
}

.splash_box .photos {
	display: block;
	color: #bd9f66;
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
	margin-left: 30px;
}

.splash_box .photos:after {
	content: '';
	display: inline-block;
	background: url(../images/ico_photo.png) 0 0 no-repeat;
	width: 24px;
	height: 20px;
	vertical-align: middle;
	margin-left: 10px;
	position: relative;
	top: -2px;
}

.splash_box .label {
	display: block;
	position: absolute;
	left: -40px;
	top: 90px;
	transform-origin: 0 0;
	transform: rotate(-90deg);
	color: #a0b76f;
	font-size: 12px;
	font-weight: 400;
	line-height: 16px;
	height: 16px;
	width: 78px;
	text-transform: uppercase;
	padding-bottom: 5px;
	border-bottom: 2px solid #a0b76f;
}

@media (max-width: 1340px) {
	.splash_box .video {
		top: 100px;
	}
	.splash_box .diy {
		top: 280px;
	}
	.splash_box .featured {
		width: 420px;
	}
	.splash_box .featured:before {
		left: -220px;
	}
	.splash_box .featured .title {
		font-size: 28px;
	}
}

@media (max-width: 1024px) {
	.splash_box {
		margin: 0 0 40px;
		background: transparent;
	}
	.splash_box .splash {
		display: flex;
		align-items: center;
		height: auto;
	}
	.splash_box .items {
		height: auto;
		width: 30%;
	}
	.splash_box .item {
		display: block;
		position: relative;
		top: auto;
		left: auto;
		right: auto;
		max-width: none;
		padding-bottom: 0;
		padding-left: 45px;
		margin: 15px 0;
	}
	.splash_box .item:before {
		display: none;
	}
	.splash_box .item .title {
		margin-bottom: 5px;
	}
	.splash_box .featured {
		box-sizing: border-box;
		right: auto;
		bottom: auto;
		width: 70%;
		position: relative;
		padding-left: 170px;
	}
	.splash_box .featured:before {
		left: 0;
		top: 50%;
		margin-top: -104px;
	}
	.splash_box .featured .title {
		font-size: 24px;
	}
	.splash_box .label {
		display: none;
	}
}

@media (max-width: 768px) {
	.splash_box .splash {
		display: block;
	}
	.splash_box .items {
		display: flex;
		align-items: flex-start;
		width: auto;
		margin: 0 -10px;
	}
	.splash_box .item {
		margin: 0 10px;
		width: calc(50% - 20px);
	}
	.splash_box .featured {
		margin: 40px 0 0;
		width: auto;
	}
	.splash_box .featured .title {
		font-size: 20px;
	}
	.splash_box .featured .text {
		font-size: 14px;
	}
	.splash_box .photos {
		margin-left: 15px;
	}
}

@media (max-width: 480px) {
	.splash_box .featured {
		margin-top: 25px;
		padding-left: 0;
	}
	.splash_box .featured:before {
		display: none;
	}
}

@media (max-width: 420px) {
	.splash_box .items {
		display: block;
		margin: 0;
	}
	.splash_box .item {
		width: auto;
		margin: 0 0 20px;
	}
	.splash_box .item:last-child {
		margin-bottom: 0;
	}
	.splash_box .featured {
		margin-top: 20px;
	}
}

.title_box {
	display: block;
	position: relative;
	color: #585045;
	font-size: 30px;
	font-weight: 300;
	line-height: 1.2;
	margin-bottom: 70px;
}

.title_box:before, .title_box:after {
	content: '';
	display: block;
	width: 170px;
	height: 14px;
	background-color: #a0b76f;
	transform: skew(-45deg);
	position: absolute;
	left: -220px;
	top: 10px;
}

.title_box:after {
	display: block;
	height: 9px;
	left: 100px;
	top: auto;
	width: 110px;
	bottom: -38px;
	background-color: #bd9f66;
}

@media (max-width: 1340px) {
	.title_box {
		margin-bottom: 20px;
	}
	.title_box:after {
		display: none;
	}
}

@media (max-width: 1024px) {
	.title_box {
		font-size: 28px;
	}
}

@media (max-width: 640px) {
	.title_box {
		font-size: 24px;
	}
}

#toc_container {
	display: block !important;
	position: relative;
	border-radius: 20px;
	margin-bottom: 25px;
	background: #f6f6f6;
	padding: 30px 40px;
	width: 100% !important;
	box-sizing: border-box;
}

#toc_container .toc_toggle {
	display: inline-block;
	border-radius: 25px;
	font-family: "Ubuntu", sans-serif;
	font-size: 14px;
	font-weight: 300;
	line-height: 18px;
	border: 1px solid #a0b76f;
	background: transparent;
	cursor: pointer;
	padding: 5px 10px;
	transition: 0.2s;
	color: transparent;
	-webkit-appearance: none;
}

#toc_container .toc_toggle a {
	color: #a0b76f;
}

#toc_container .toc_toggle:hover {
	background-color: #a0b76f;
}

#toc_container .toc_toggle:hover a {
	color: #ffffff;
}

#toc_container .toc_title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 26px;
	position: relative;
	font-weight: 400;
	color: #585045;
	margin: 0;
}

#toc_container .toc_list {
	padding-top: 15px;
}

#toc_container li {
	padding-left: 20px;
	margin-bottom: 10px;
}

#toc_container li:before {
	width: 8px;
	height: 8px;
	top: 8px;
	left: 3px;
	background: #a0b76f;
	border-color: transparent;
	border-radius: 50%;
}

#toc_container li:last-child {
	margin-bottom: 0;
}

#toc_container a {
	color: #585045;
	text-decoration: none;
}

#toc_container a:hover {
	color: #a0b76f;
}

@media (max-width: 1024px) {
	#toc_container {
		padding: 20px;
	}
	#toc_container .toc_title {
		font-size: 20px;
	}
}

.widget_box {
	display: block;
	position: relative;
	margin-bottom: 40px;
}

.widget_box .widget_title {
	display: block;
	position: relative;
	color: #a0b76f;
	font-size: 26px;
	font-weight: 300;
	margin-bottom: 50px;
}

.widget_box .widget_title:before {
	content: '';
	display: block;
	width: 110px;
	height: 9px;
	background-color: #a0b76f;
	transform: skew(-45deg);
	transform-origin: 0 100%;
	position: absolute;
	left: 0;
	bottom: -30px;
}

.widget_box .categories_box {
	display: block;
	margin-bottom: 0;
	padding: 30px;
	border-radius: 20px;
}

.widget_box .categories_box:before {
	left: 40px;
	top: 50%;
	transform: translateY(-50%);
	margin: -20px 0 0;
}

.widget_box .categories_box .item {
	display: flex;
	align-items: center;
	width: auto;
	margin: 0 0 30px;
	padding: 0;
	text-align: left;
}

.widget_box .categories_box .item:last-child {
	margin-bottom: 0;
}

.widget_box .categories_box .icon {
	flex-grow: 0;
	flex-shrink: 0;
	margin: 0 20px 0 0;
}

.widget_box .categories_box .title {
	margin-bottom: 10px;
}

.widget_box .questions_box:before {
	background-image: url(../images/bg_questions_small.png);
	width: 449px;
	height: 558px;
	top: auto;
	bottom: -20px;
	left: 200px;
	margin: 0;
}

.widget_box .questions_box .ask {
	margin-top: 50px;
}

@media (max-width: 1340px) {
	.widget_box .questions_box .questions, .widget_box .questions_box .ask {
		padding: 0;
	}
}

@media (max-width: 1024px) {
	.widget_box {
		margin-bottom: 30px;
	}
	.widget_box .widget_title {
		font-size: 24px;
	}
	.widget_box .categories_box {
		padding: 20px;
	}
	.widget_box .questions_box .info {
		flex-direction: column;
		align-items: flex-start;
	}
	.widget_box .questions_box .replies {
		margin: 20px 0 0;
	}
}

@media (max-width: 640px) {
	.widget_box .widget_title {
		font-size: 22px;
	}
	.widget_box .questions_box .title {
		font-size: 22px;
	}
}

.footer_box {
	display: block;
	position: relative;
	background-color: #f3f1eb;
}

.footer_box .items {
	display: flex;
	position: relative;
	align-items: center;
	justify-content: space-between;
	padding: 50px 0 20px;
	margin: 0 -15px;
}

.footer_box .items:before {
	content: '';
	display: block;
	position: absolute;
	height: 1px;
	left: 15px;
	right: 15px;
	bottom: 0;
	background-color: #eae8e2;
}

.footer_box .item {
	display: block;
	position: relative;
	padding: 0 15px;
	box-sizing: border-box;
	margin-bottom: 30px;
}

.footer_box .company {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex-grow: 0;
	flex-shrink: 0;
	position: relative;
	color: #585045;
	text-align: center;
	text-decoration: none;
}

.footer_box .logo {
	display: block;
	position: relative;
	width: 56px;
	height: 45px;
	background: url(../images/ico_logo_small.png) 50% 50% no-repeat;
	background-size: contain;
	margin-bottom: 10px;
}

.footer_box .about {
	display: block;
	position: relative;
	font-size: 13px;
	font-weight: 400;
	line-height: 20px;
	text-transform: uppercase;
}

.footer_box .about span {
	display: block;
	font-size: 14px;
	font-weight: 700;
}

.footer_box .copyright {
	display: block;
	font-size: 12px;
	font-weight: 300;
	line-height: 1.5;
	max-width: 240px;
}

.footer_box .copyright p {
	margin-bottom: 15px;
}

.footer_box .copyright p:last-child {
	margin-bottom: 0;
}

.footer_box .video, .footer_box .diy {
	padding-left: 60px;
	max-width: 220px;
}

.footer_box .video:after, .footer_box .diy:after {
	content: '';
	display: block;
	width: 32px;
	height: 32px;
	background: url(../images/ico_video.png) 0 0 no-repeat;
	position: absolute;
	left: 15px;
	top: 5px;
}

.footer_box .diy:after {
	background-image: url(../images/ico_diy.png);
}

.footer_box .diy .title {
	color: #9f8057;
}

.footer_box .diy .title:hover {
	color: #a0b76f;
}

.footer_box .title {
	display: inline-block;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.25;
	margin-bottom: 10px;
	color: #a0b76f;
}

.footer_box .title:hover {
	color: #bd9f66;
}

.footer_box .text {
	display: block;
	font-size: 12px;
	font-weight: 300;
	line-height: 1.5;
}

.footer_box .search {
	width: 370px;
}

.footer_box .search input[type="text"] {
	padding: 14px 40px 14px 25px;
	box-shadow: none;
	border: 1px solid #e9e9e9;
	border-radius: 25px;
	font-size: 16px;
	max-width: none;
}

.footer_box .search input[type="submit"] {
	display: block;
	position: absolute;
	top: 15px;
	right: 30px;
	width: 20px;
	height: 20px;
	padding: 0;
	background: url(../images/ico_search.png) 50% 50% no-repeat;
	border: none;
	border-radius: 0;
	z-index: 3;
}

.footer_box .search input[type="submit"]:hover {
	opacity: 0.7;
}

.footer_box .contents {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 40px 0 10px;
	margin: 0 -15px;
}

.footer_box .orphus, .footer_box .menu, .footer_box .counters, .footer_box .development {
	display: block;
	position: relative;
	padding: 0 15px;
	box-sizing: border-box;
	margin-bottom: 30px;
}

.footer_box .orphus {
	padding-left: 65px;
	font-size: 14px;
	font-weight: 300;
	line-height: 1.33;
	max-width: 410px;
}

.footer_box .orphus:before {
	content: '';
	display: block;
	position: absolute;
	left: 15px;
	top: 3px;
	background: url(../images/ico_orphus.png) 0 0 no-repeat;
	width: 28px;
	height: 18px;
}

.footer_box .orphus span {
	font-weight: 500;
}

.footer_box .menu {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	padding: 0;
	max-width: 480px;
}

.footer_box .menu li {
	display: block;
	position: relative;
	padding: 5px 15px;
	box-sizing: border-box;
	width: 50%;
}

.footer_box .menu a {
	display: block;
	color: #8aa64d;
	font-size: 12px;
	font-weight: 300;
	line-height: 1.25;
}

.footer_box .menu a:hover {
	color: #bd9f66;
}

.footer_box .development {
	display: block;
	font-size: 10px;
	font-weight: 400;
	color: rgba(88, 80, 69, 0.5);
	white-space: nowrap;
}

.footer_box .development:after {
	content: '';
	display: inline-block;
	vertical-align: middle;
	position: relative;
	background: url(../images/ico_seonica.png) 0 0 no-repeat;
	width: 74px;
	height: 24px;
	margin-left: 10px;
}

@media (max-width: 1340px) {
	.footer_box .search {
		width: 330px;
	}
}

@media (max-width: 1024px) {
	.footer_box .items {
		flex-wrap: wrap;
		padding: 20px 0 0;
	}
	.footer_box .item {
		max-width: none;
		margin-bottom: 20px;
	}
	.footer_box .company {
		order: 1;
		margin-right: auto;
	}
	.footer_box .diy, .footer_box .video {
		order: 2;
		max-width: 250px;
	}
	.footer_box .copyright {
		order: 3;
		width: 50%;
	}
	.footer_box .search {
		width: 50%;
		order: 4;
	}
	.footer_box .contents {
		flex-wrap: wrap;
		padding: 20px 0 0;
	}
	.footer_box .orphus, .footer_box .menu, .footer_box .counters, .footer_box .development {
		margin-bottom: 20px;
		max-width: none;
	}
	.footer_box .menu {
		order: 1;
		width: 50%;
	}
	.footer_box .orphus {
		width: 50%;
		order: 2;
	}
	.footer_box .counters {
		order: 5;
	}
	.footer_box .development {
		order: 6;
	}
}

@media (max-width: 640px) {
	.footer_box .items {
		justify-content: center;
	}
	.footer_box .company {
		width: 100%;
	}
	.footer_box .diy, .footer_box .video {
		max-width: none;
		width: 50%;
	}
	.footer_box .search {
		width: 100%;
		order: 3;
	}
	.footer_box .copyright {
		width: 100%;
		order: 4;
		text-align: center;
	}
	.footer_box .menu, .footer_box .orphus {
		width: 100%;
	}
	.footer_box .menu {
		margin-bottom: 10px;
	}
	.footer_box .menu li {
		padding-top: 0;
		margin-bottom: 10px;
	}
}

@media (max-width: 420px) {
	.footer_box .diy, .footer_box .video {
		width: 100%;
	}
}

/*# sourceMappingURL=style.css.map */
