@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 {
	font-family: "PT Sans", sans-serif;
	font-size: 18px;
	line-height: 1.4;
	color: #2a304b;
	min-width: 320px;
}

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

input, textarea {
	font-family: "PT Sans", sans-serif;
}

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

a:hover {
	text-decoration: none;
	color: #0bafdb;
}

a:hover img {
	opacity: 0.8;
}

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

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

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



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

.sidebar_box {
	display: block;
	flex-shrink: 0;
	width: 318px;
	margin-left: 30px;
}

@media (max-width: 1024px) {
	.sidebar_box {
		width: 270px;
		margin-left: 20px;
		margin-bottom: 20px;
	}
}

@media (max-width: 768px) {
	.sidebar_box {
		margin-left: 0;
		width: 100%;
		max-width: 400px;
	}
}

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

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

.block, .header_box, .comment-respond, .content_box, .featured_box, .front_box, .news_box, .promo_box, .questions_box, .social_box {
	display: block;
	position: relative;
	margin-bottom: 40px;
}

@media (max-width: 1024px) {
	.block, .header_box, .comment-respond, .content_box, .featured_box, .front_box, .news_box, .promo_box, .questions_box, .social_box {
		margin-bottom: 20px;
	}
}

.header_box {
	height: 217px;
	background: url(../images/bg_header.jpg) 50% 50% no-repeat, linear-gradient(to right, #cde8fb, #cde8fb 50%, #8edbeb 50%, #8edbeb 100%);
}

.header_box .fixed {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	height: 100%;
	box-sizing: border-box;
}

.header_box .header {
	display: block;
	margin-right: 40px;
	flex-grow: 1;
}

.header_box .logo_wrapper {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	border-bottom: 1px solid #9ed6ea;
	padding: 40px 0;
}

.header_box .logo {
	display: block;
	position: relative;
	margin-right: 40px;
	width: 200px;
	flex-grow: 0;
	flex-shrink: 0;
	text-decoration: none;
	color: #2a304b;
	padding-left: 78px;
}

.header_box .logo:before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: -14px;
	background: url("../images/sprite.png") 0px -718px no-repeat;
	background-size: 63px 773px;
	width: 63px;
	height: 55px;
}

.header_box .logo:hover {
	opacity: 0.7;
}

.header_box .logo .name {
	display: block;
	font-size: 24px;
	font-weight: 700;
	font-family: "Montserrat", sans-serif;
	margin-bottom: 3px;
}

.header_box .logo .slogan {
	display: block;
	color: #2a304b;
	font-size: 12px;
	line-height: 1.3;
}

.header_box .logo b {
	display: inline-block;
	vertical-align: middle;
	position: relative;
	top: -4px;
	color: #3b5c93;
	font-size: 12px;
	margin-left: 3px;
}

.header_box .menu {
	display: flex;
	flex-wrap: nowrap;
	position: relative;
	margin-right: -60px;
	align-items: center;
	padding: 25px 0 15px;
}

.header_box .menu li {
	display: inline-block;
	margin-right: 60px;
}

.header_box .menu li:active > a, .header_box .menu li:hover > a {
	color: #0bafdb;
}

.header_box .menu a {
	display: block;
	font-size: 20px;
	font-weight: 700;
	color: #3b5c93;
}

.header_box .search {
	display: block;
	position: relative;
	flex-grow: 1;
}

.header_box .search input[type="text"] {
	display: block;
	width: 100%;
	box-sizing: border-box;
	border-radius: 10px;
	border: 1px solid #ffffff;
	background-color: transparent;
	padding: 10px 30px 10px 20px;
	color: #2a304b;
	font-size: 14px;
}

.header_box .search input[type="text"]:-ms-input-placeholder {
	color: rgba(42, 48, 75, 0.7);
}

.header_box .search input[type="text"]:-moz-placeholder {
	color: rgba(42, 48, 75, 0.7);
}

.header_box .search input[type="text"]::-moz-placeholder {
	color: rgba(42, 48, 75, 0.7);
}

.header_box .search input[type="text"]::-webkit-input-placeholder {
	color: rgba(42, 48, 75, 0.7);
}

.header_box .search input[type="submit"] {
	display: block;
	border: none;
	position: absolute;
	right: 20px;
	top: 50%;
	margin-top: -5px;
	cursor: pointer;
	background: url("../images/sprite.png") 0px -16px no-repeat;
	background-size: 63px 773px;
	width: 11px;
	height: 11px;
}

.header_box .tickets {
	display: block;
	flex-shrink: 0;
	flex-grow: 0;
	padding-right: 170px;
	width: 220px;
}

.header_box .tickets .title {
	display: block;
	color: #2a304b;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 15px;
}

.header_box .tickets .text {
	display: block;
	color: #2a304b;
	font-size: 12px;
	line-height: 1.3;
	margin-bottom: 20px;
}

.header_box .button {
	display: inline-block;
	background: linear-gradient(to right, #0bafdb 0%, #17c5b3 100%);
	border-radius: 30px;
	color: #ffffff;
	font-size: 16px;
	font-weight: 700;
	padding: 6px 20px 8px;
}

.header_box .button:hover {
	opacity: 0.6;
}

@media (max-width: 1024px) {
	.header_box {
		height: auto;
		background: linear-gradient(to right, #cde8fb, #8edbeb);
	}
	.header_box .header {
		margin-right: 20px;
	}
	.header_box .logo_wrapper {
		padding: 30px 0 25px;
	}
	.header_box .logo {
		margin-right: 20px;
	}
	.header_box .menu {
		padding: 20px 0;
		margin-right: -20px;
	}
	.header_box .menu li {
		margin-right: 20px;
	}
	.header_box .tickets {
		padding-right: 0;
	}
}

@media (max-width: 768px) {
	.header_box .header {
		margin-right: 0;
	}
	.header_box .tickets {
		display: none;
	}
	.header_box .logo_wrapper {
		padding-bottom: 20px;
	}
	.header_box .menu {
		flex-wrap: wrap;
		padding: 15px 0 5px;
		margin: 0 -10px 0;
		justify-content: center;
	}
	.header_box .menu li {
		margin: 0 10px 10px;
	}
	.header_box .menu a {
		font-size: 18px;
	}
}

@media (max-width: 480px) {
	.header_box .logo_wrapper {
		justify-content: center;
		flex-wrap: wrap;
		padding-bottom: 0;
	}
	.header_box .logo {
		margin: 0 auto 20px;
	}
	.header_box .search {
		margin: 0 auto 20px;
	}
}

.breadcrumbs_box {
	display: block;
	position: relative;
	margin-bottom: 25px;
}

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

.breadcrumbs_box .home:after {
	display: block;
	content: '';
	position: absolute;
	left: 0;
	top: 5px;
	background: url("../images/sprite.png") 0px -7px no-repeat;
	background-size: 63px 773px;
	width: 11px;
	height: 9px;
}

.breadcrumbs_box a, .breadcrumbs_box b, .breadcrumbs_box span {
	display: inline-block;
	vertical-align: middle;
	position: relative;
	color: #0bafdb;
	font-size: 14px;
	font-weight: 400;
}

.breadcrumbs_box a:hover {
	color: #2a304b;
}

.breadcrumbs_box b {
	margin: 0 5px 0 7px;
	background: url("../images/sprite.png") 0px 0px no-repeat;
	background-size: 63px 773px;
	width: 5px;
	height: 7px;
}

.categories_box {
	display: block;
	position: relative;
}

.categories_box .categories {
	display: block;
	border-radius: 10px;
	background-color: #e7fbff;
	margin-bottom: 30px;
	padding: 10px 0;
}

.categories_box .category {
	display: block;
	position: relative;
	padding: 10px 30px 10px 90px;
	color: #3b5c93;
	font-size: 18px;
	font-weight: 700;
}

.categories_box .category:hover {
	cursor: pointer;
	color: #2a304b;
	background: linear-gradient(to right, #ffe100, #ffcd6f);
}

.categories_box .category:before {
	content: '';
	display: block;
	position: absolute;
	left: 34px;
	top: 50%;
	transform: translateY(-50%);
}

.categories_box .count {
	display: block;
	position: absolute;
	top: 50%;
	margin-top: -8px;
	right: 15px;
	opacity: 0.3;
	color: #2a304b;
	font-size: 12px;
	font-weight: 700;
}

.categories_box .ico_1:before {
	background: url("../images/sprite.png") 0px -161px no-repeat;
	background-size: 63px 773px;
	width: 30px;
	height: 21px;
}

.categories_box .ico_1:hover:before {
	background: url("../images/sprite.png") 0px -140px no-repeat;
	background-size: 63px 773px;
	width: 30px;
	height: 21px;
}

.categories_box .ico_2:before {
	margin-left: 1px;
	background: url("../images/sprite.png") 0px -647px no-repeat;
	background-size: 63px 773px;
	width: 26px;
	height: 30px;
}

.categories_box .ico_2:hover:before {
	background: url("../images/sprite.png") 0px -617px no-repeat;
	background-size: 63px 773px;
	width: 26px;
	height: 30px;
}

.categories_box .ico_3:before {
	background: url("../images/sprite.png") 0px -204px no-repeat;
	background-size: 63px 773px;
	width: 29px;
	height: 22px;
}

.categories_box .ico_3:hover:before {
	background: url("../images/sprite.png") 0px -248px no-repeat;
	background-size: 63px 773px;
	width: 29px;
	height: 22px;
}

.categories_box .ico_4:before {
	background: url("../images/sprite.png") 0px -320px no-repeat;
	background-size: 63px 773px;
	width: 29px;
	height: 25px;
}

.categories_box .ico_4:hover:before {
	background: url("../images/sprite.png") 0px -345px no-repeat;
	background-size: 63px 773px;
	width: 29px;
	height: 25px;
}

.categories_box .ico_5:before {
	background: url("../images/sprite.png") 0px -447px no-repeat;
	background-size: 63px 773px;
	width: 31px;
	height: 28px;
}

.categories_box .ico_5:hover:before {
	background: url("../images/sprite.png") 0px -531px no-repeat;
	background-size: 63px 773px;
	width: 31px;
	height: 28px;
}

.categories_box .ico_6:before {
	margin-left: 2px;
	background: url("../images/sprite.png") 0px -475px no-repeat;
	background-size: 63px 773px;
	width: 28px;
	height: 28px;
}

.categories_box .ico_6:hover:before {
	background: url("../images/sprite.png") 0px -503px no-repeat;
	background-size: 63px 773px;
	width: 28px;
	height: 28px;
}

.categories_box .ico_7:before {
	background: url("../images/sprite.png") 0px -395px no-repeat;
	background-size: 63px 773px;
	width: 29px;
	height: 26px;
}

.categories_box .ico_7:hover:before {
	background: url("../images/sprite.png") 0px -421px no-repeat;
	background-size: 63px 773px;
	width: 29px;
	height: 26px;
}

.categories_box .ico_8:before {
	margin-left: 5px;
	background: url("../images/sprite.png") 0px -588px no-repeat;
	background-size: 63px 773px;
	width: 19px;
	height: 29px;
}

.categories_box .ico_8:hover:before {
	background: url("../images/sprite.png") 0px -559px no-repeat;
	background-size: 63px 773px;
	width: 19px;
	height: 29px;
}

.categories_box .ico_9:before {
	background: url("../images/sprite.png") 0px -226px no-repeat;
	background-size: 63px 773px;
	width: 30px;
	height: 22px;
}

.categories_box .ico_9:hover:before {
	background: url("../images/sprite.png") 0px -182px no-repeat;
	background-size: 63px 773px;
	width: 30px;
	height: 22px;
}

.categories_box .ico_10:before {
	margin-left: 2px;
	background: url("../images/sprite.png") 0px -270px no-repeat;
	background-size: 63px 773px;
	width: 25px;
	height: 25px;
}

.categories_box .ico_10:hover:before {
	background: url("../images/sprite.png") 0px -295px no-repeat;
	background-size: 63px 773px;
	width: 25px;
	height: 25px;
}

.categories_box .ico_11:before {
	background: url("../images/sprite.png") 0px -39px no-repeat;
	background-size: 63px 773px;
	width: 30px;
	height: 14px;
}

.categories_box .ico_11:hover:before {
	background: url("../images/sprite.png") 0px -53px no-repeat;
	background-size: 63px 773px;
	width: 30px;
	height: 14px;
}

.categories_box .promo {
	display: block;
	position: relative;
}

.categories_box .promo img {
	display: block;
	width: 100%;
	height: auto;
}

@media (max-width: 1024px) {
	.categories_box .categories {
		margin-bottom: 20px;
	}
}

@media (max-width: 768px) {
	.categories_box .featured_box {
		margin-bottom: 20px;
	}
}

@media (max-width: 480px) {
	.categories_box .category {
		padding-left: 70px;
	}
	.categories_box .category:before {
		left: 22px;
	}
}

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

.comments_box {
	margin-bottom: 20px;
}

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

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

.comment .comment_inner {
	display: flex;
	flex-wrap: nowrap;
	align-items: flex-start;
	font-size: 14px;
	line-height: 1.4;
	border-bottom: 1px solid #e3e6f7;
	padding-bottom: 15px;
}

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

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

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

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

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

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

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

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

.comment .name {
	display: inline-block;
	vertical-align: middle;
	margin-right: 10px;
	color: #3b5c93;
}

.comment .comment-reply-link {
	display: inline-block;
	text-decoration: none;
	background: linear-gradient(to right, #0bafdb 0%, #17c5b3 100%);
	padding: 3px 10px;
	color: #ffffff;
	font-size: 10px;
	border-radius: 5px;
	position: relative;
	z-index: 3;
	cursor: pointer;
}

.comment .comment-reply-link:hover {
	opacity: 0.7;
}

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

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

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

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

/* Стили для оформления формы комментариев */
.comment-reply-title a {
	color: #953c21;
}

.comment-reply-title small, .comment-reply-title small a {
	font-size: 16px;
	color: #555555;
	text-decoration: none;
	text-transform: lowercase;
}

.comment-reply-title small a:hover {
	text-decoration: underline;
}

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

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

.comment-respond input[type="text"], .comment-respond input[type="email"], .comment-respond textarea {
	display: block;
	box-sizing: border-box;
	width: 100%;
	height: auto;
	margin-bottom: 10px;
	padding: 10px 20px;
	border: 1px solid #e9ebee;
	border-radius: 5px;
	font-weight: normal;
	font-size: 14px;
	font-family: "PT Sans", sans-serif;
	line-height: 1.3;
	color: #3c3452;
}

.comment-respond textarea {
	overflow: auto;
	max-width: 100%;
	height: 160px;
}

.comment-respond input[type="submit"] {
	display: inline-block;
	padding: 15px 25px;
	border: 0;
	border-radius: 10px;
	background-color: #ffde32;
	text-align: center;
	font-size: 20px;
	font-weight: 700;
	font-family: "PT Sans", sans-serif;
	color: #2a304b;
	cursor: pointer;
	transition: 0.2s;
}

.comment-respond input[type="submit"]:hover {
	color: #ffffff;
	background: #0bafdb;
}

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

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

@media (max-width: 480px) {
	.comment-respond .field {
		width: 100%;
	}
}

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

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

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

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

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

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

.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 .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;
	padding-top: 15px;
	margin-left: 0;
}

.content ul, .content ol {
	display: contents;
	position: relative;
	overflow: hidden;
	margin: 20px auto;
}

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

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

.content ul>li:last-child {
	margin-bottom: 20px!important;
}

ul > li > ul {
    padding: 0px 20px 0 !important;
}
ul > li > ul > li:last-child {
    margin-bottom: 0px !important;
}
.content ul li:before {
	content: '';
	display: block;
	position: absolute;
/* 	left: 0; */
	top: 4px;
	background: url("../images/sprite.png") 0px -123px no-repeat;
	background-size: 63px 773px;
	width: 17px;
	height: 17px;
	margin: 0 22px 0 -25px;
}

.content ol {
	counter-reset: list;
}

.content ol li {
	counter-increment: list;
}

.content ol li:before {
	content: counter(list);
	display: block;
	text-align: center;
	position: absolute;
	left: 0;
	top: 1px;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	color: #ffffff;
	font-size: 16px;
	font-weight: 700;
	line-height: 23px;
	background: linear-gradient(to right, #0bafdb 0%, #17c5b3 100%);
}

.content #toc_container li {
	display: block;
}
.content #toc_container ul > li:before {	
	left: 6px;
	margin:unset;
}
.content table, .content img {
	height: auto;
	width: auto;
	max-width: 100%;
}

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

.content tr :first-child {
	text-align: left;
}

.content tr > :first-child {
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}

.content tr > :last-child {
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
}

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

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

.content th {
	color: #3b5c93;
	font-size: 18px;
	font-weight: 400;
}

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

@media (max-width: 1024px) {
	.content {
		font-size: 16px;
	}
	.content h2 {
		font-size: 24px;
	}
	.content h3 {
		font-size: 20px;
	}
	.content h4 {
		font-size: 18px;
	}
	.content h5 {
		font-size: 16px;
	}
	.content h6 {
		font-size: 14px;
	}
	.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;
	padding: 25px 30px 27px;
	margin-bottom: 25px;
	background: linear-gradient(to right, #eff4fc 0%, #e7fbff 100%);
	border-radius: 10px;
	color: #2a304b;
	font-size: 16px;
	font-style: italic;
}

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

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

.content .wp-caption-text {
	display: block;
	text-align: center;
	margin: 0;
	color: #2a304b;
	font-size: 14px;
	font-weight: 400;
}

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

.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;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-start;
	position: relative;
	overflow: hidden;
	margin: 0 -5px 10px;
}

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

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

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

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

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

.content .wpcmsdev-alert {
	border: none;
	margin: 0 0 25px;
	padding: 20px 30px;
	border-radius: 10px;
}

.content .wpcmsdev-alert.has-icon {
	padding-left: 100px;
}

.content .wpcmsdev-alert.has-icon > .fa {
	left: 0;
	width: 100px;
	text-align: center;
	font-size: 40px;
}

.content .wpcmsdev-alert p {
	margin: 10px 0;
}

.content .wpcmsdev-alert p:empty {
	display: none;
}

@media (max-width: 1024px) {
	.content .wpcmsdev-alert {
		padding: 20px 20px 10px;
	}
	.content .wpcmsdev-alert.has-icon {
		padding-left: 80px;
	}
	.content .wpcmsdev-alert.has-icon > .fa {
		font-size: 32px;
		width: 80px;
	}
}

.featured_box.bordered {
	border-radius: 10px;
	border: 1px solid #dee8f0;
	padding: 30px 30px 0;
}

.featured_box.bordered .title_box, .featured_box.bordered .comment-reply-title {
	text-align: left;
}

.featured_box .title_box, .featured_box .comment-reply-title {
	text-align: center;
}

.featured_box .featured {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	margin: 0 -15px;
}

.featured_box .post {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: calc(33.333% - 30px);
	margin: 0 15px 30px;
	border-radius: 10px;
	position: relative;
	overflow: hidden;
	min-height: 250px;
	box-sizing: border-box;
	padding: 20px;
	cursor: default;
}

.featured_box .post:before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 200%;
	z-index: 2;
	transition: 0.3s;
	background: linear-gradient(to bottom, transparent 25%, #2e334c 50%, #2e334c);
}

.featured_box .post:hover:before {
	top: -100%;
}

.featured_box .post:hover .text {
	height: 82px;
}

.featured_box .wide .post {
	width: calc(20% - 30px);
}

.featured_box .thumb {
	display: block;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	min-height: 100%;
	min-width: 100%;
	width: auto;
	height: auto;
	z-index: 1;
}

.featured_box .category {
	display: inline-block;
	text-decoration: none;
	background: linear-gradient(to right, #0bafdb 0%, #17c5b3 100%);
	padding: 3px 10px;
	color: #ffffff;
	font-size: 10px;
	border-radius: 30px;
	position: relative;
	z-index: 3;
	cursor: pointer;
	flex-grow: 0;
	margin-bottom: 20px;
}

.featured_box .category:hover {
	opacity: 0.7;
}

.featured_box .info {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	justify-content: flex-end;
	position: relative;
	flex-grow: 1;
	z-index: 4;
}

.featured_box .title {
	display: block;
	text-decoration: none;
	font-size: 18px;
	font-weight: 700;
	color: #ffffff;
	line-height: 1.2;
}

.featured_box .title:hover {
	color: #0bafdb;
}

.featured_box .text {
	display: block;
	opacity: 0.7;
	color: #ffffff;
	font-size: 14px;
	line-height: 18px;
	box-sizing: border-box;
	padding-top: 10px;
	transition: 0.3s;
	overflow: hidden;
	height: 0;
}

.featured_box .buttons {
	display: block;
	text-align: center;
}

.featured_box .button {
	display: inline-block;
	background: linear-gradient(to right, #0bafdb 0%, #17c5b3 100%);
	border-radius: 30px;
	color: #ffffff;
	font-size: 16px;
	font-weight: 700;
	padding: 6px 20px 8px;
	cursor: pointer;
}

.featured_box .button:hover {
	opacity: 0.6;
}

@media (max-width: 1024px) {
	.featured_box.bordered {
		padding: 20px 20px 0;
	}
	.featured_box .featured {
		margin: 0 -10px;
		justify-content: center;
	}
	.featured_box .post {
		width: calc(50% - 20px);
		margin: 0 10px 20px;
	}
	.featured_box .wide .post {
		width: calc(33.33% - 20px);
	}
}

@media (max-width: 640px) {
	.featured_box .wide .post {
		width: calc(50% - 20px);
	}
}

@media (max-width: 480px) {
	.featured_box .featured {
		margin: 0;
	}
	.featured_box .wide .post {
		width: 100%;
	}
	.featured_box .post {
		width: 100%;
		margin: 0 0 20px;
	}
}

.front_box .fixed {
	display: flex;
	flex-wrap: nowrap;
}

.front_box .categories_box {
	flex-grow: 0;
	width: 318px;
	margin-left: 30px;
	flex-shrink: 0;
}

.front_box .featured_box {
	flex-grow: 1;
	margin: 0;
}

@media (max-width: 1024px) {
	.front_box .categories_box {
		margin-left: 20px;
		width: 270px;
	}
}

@media (max-width: 768px) {
	.front_box .fixed {
		flex-wrap: wrap;
		justify-content: center;
	}
	.front_box .featured_box {
		margin-bottom: 20px;
	}
	.front_box .categories_box {
		margin-left: 0;
		width: 100%;
		max-width: 320px;
	}
}

@media (max-width: 480px) {
	.front_box .categories_box {
		max-width: none;
	}
}

.news_box .news_wrapper {
	display: flex;
	flex-wrap: nowrap;
	align-items: flex-start;
	margin: 0 -15px;
}

.news_box .news, .news_box .offers_box {
	padding: 0 15px;
	box-sizing: border-box;
	width: 50%;
}

.news_box .item {
	display: flex;
	flex-wrap: nowrap;
	align-items: flex-start;
	margin-bottom: 18px;
}

.news_box .item .date {
	display: inline-block;
	width: 120px;
	color: #0bafdb;
	font-weight: 700;
	font-size: 14px;
	flex-shrink: 0;
	line-height: 22px;
}

.news_box .item .title {
	display: inline-block;
	font-size: 18px;
	font-weight: 700;
	line-height: 22px;
}

.news_box .news .more {
	display: inline-block;
	margin-top: 10px;
	color: #0bafdb;
}

.news_box .news .more:hover {
	color: #2a304b;
}

@media (max-width: 1024px) {
	.news_box .news_wrapper {
		flex-wrap: wrap;
		justify-content: center;
		margin: 0;
	}
	.news_box .news, .news_box .offers_box {
		padding: 0;
		width: 100%;
		max-width: 640px;
	}
	.news_box .news {
		margin-bottom: 20px;
	}
	.news_box .news .more {
		margin-top: 0;
		margin-bottom: 10px;
	}
}

@media (max-width: 480px) {
	.news_box .item .title {
		font-size: 17px;
	}
	.news_box .item .date {
		width: 110px;
	}
}

.offers_box .offers {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px -30px;
}

.offers_box .offer {
	display: block;
	margin: 0 15px 30px;
	width: calc(50% - 30px);
	padding: 30px;
	box-sizing: border-box;
	border-radius: 10px;
	background-color: #f0f5f9;
	text-align: center;
}

.offers_box .title {
	display: block;
	position: relative;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 20px;
	padding: 60px 0 20px;
	border-bottom: 1px solid #d3dde4;
}

.offers_box .title:before {
	content: '';
	display: block;
	position: absolute;
	left: 50%;
	margin-left: -12px;
	top: 5px;
	background: url("../images/sprite.png") 0px -370px no-repeat;
	background-size: 63px 773px;
	width: 25px;
	height: 25px;
}

.offers_box .price {
	display: block;
	margin-bottom: 10px;
	color: #fd762d;
	font-size: 22px;
	font-family: "Montserrat", sans-serif;
	font-weight: 700;
}

.offers_box .text {
	display: block;
	color: #2a304b;
	font-size: 12px;
	font-weight: 400;
	margin-bottom: 15px;
	opacity: 0.8;
}

.offers_box .button {
	display: inline-block;
	background: #e3e6f6;
	border-radius: 10px;
	padding: 5px 20px;
	font-size: 14px;
	font-weight: 400;
	color: #3b5c93;
}

.offers_box .button:hover {
	color: #ffffff;
	background: #b998d1;
}

@media (max-width: 1024px) {
	.offers_box .offers {
		margin: 0 -10px -20px;
	}
	.offers_box .offer {
		margin: 0 10px 20px;
		width: calc(50% - 20px);
		padding: 20px;
	}
	.offers_box .title {
		padding-top: 50px;
	}
	.offers_box .title:before {
		top: 7px;
	}
}

@media (max-width: 480px) {
	.offers_box .offers {
		margin: 0 0 -20px;
	}
	.offers_box .offer {
		width: 100%;
		margin: 0 0 20px;
	}
}

/* Стили для пагинации */
.pagination {
	display: block;
	position: relative;
	text-align: center;
	margin-bottom: 40px;
}

.pagination span, .pagination a {
	display: inline-block;
	margin: 0 4px;
	padding: 2px 10px 3px;
	text-decoration: none;
	vertical-align: middle;
	border-radius: 5px;
	font-size: 16px;
	font-weight: bold;
	line-height: 24px;
	transition: none;
}

.pagination span, .pagination a:hover {
	background: linear-gradient(to right, #0bafdb 0%, #17c5b3 100%);
	color: #ffffff;
}

.pagination .extend {
	background: transparent;
}

.pagination span.next, .pagination span.prev {
	background: transparent;
}

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

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

.posts_box .posts {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -16px 0 -15px;
}

.posts_box .post {
	display: flex;
	flex-direction: column;
	width: calc(33.33% - 31px);
	margin: 0 16px 30px 15px;
	border-radius: 10px;
	background-color: #f0f5f9;
	overflow: hidden;
	position: relative;
	align-items: flex-start;
}

.posts_box .thumb {
	display: block;
	position: relative;
	overflow: hidden;
	border-radius: 10px 10px 0 0;
	flex-grow: 0;
	width: 100%;
}

.posts_box .thumb img {
	display: block;
	height: auto;
	width: 100%;
}

.posts_box .title {
	display: block;
	font-weight: 700;
	line-height: 1.3;
	margin: 25px 30px;
	flex-grow: 1;
}

.posts_box .button {
	display: inline-block;
	background: #e3e6f6;
	border-radius: 10px;
	padding: 5px 20px;
	font-size: 14px;
	font-weight: 400;
	color: #3b5c93;
	margin: 0 30px 30px;
	flex-grow: 0;
}

.posts_box .button:hover {
	color: #ffffff;
	background: #b998d1;
}

@media (max-width: 1024px) {
	.posts_box .posts {
		margin: 0 -10px;
	}
	.posts_box .post {
		width: calc(50% - 20px);
		margin: 0 10px 20px;
	}
	.posts_box .title {
		margin: 15px 20px;
	}
	.posts_box .button {
		margin: 0 20px 20px;
	}
}

@media (max-width: 480px) {
	.posts_box .posts {
		display: block;
		margin: 0;
	}
	.posts_box .post {
		display: block;
		width: auto;
		margin: 0 0 20px;
	}
}

.promo_box {
	overflow: hidden;
	padding: 35px 0;
	background: linear-gradient(to right, #8b8cee, #b998d1);
}

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

.questions_box {
	overflow: hidden;
	background: #f0f5f9;
	padding: 40px 0 0;
}

.questions_box .title_box, .questions_box .comment-reply-title {
	position: relative;
	z-index: 3;
	text-align: center;
}

.questions_box .questions {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	margin: 0 -120px;
	position: relative;
	z-index: 1;
}

.questions_box .questions:before {
	content: '';
	display: block;
	background: url(../images/bg_questions.jpg) 0 0 no-repeat;
	width: 452px;
	height: 420px;
	position: absolute;
	left: 50%;
	margin-left: -226px;
	bottom: 0;
	z-index: 1;
}

.questions_box .question {
	display: flex;
	flex-wrap: nowrap;
	padding: 0 120px;
	box-sizing: border-box;
	width: 50%;
	margin-bottom: 20px;
	z-index: 2;
}

.questions_box .question:nth-child(2n) .thumb {
	margin-right: 0;
	margin-left: 20px;
	order: 3;
}

.questions_box .thumb {
	display: block;
	width: 100px;
	margin-right: 20px;
	flex-shrink: 0;
	flex-grow: 0;
	order: 1;
}

.questions_box .thumb img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 10px;
}

.questions_box .info {
	display: block;
	flex-grow: 1;
	order: 2;
}

.questions_box .title {
	display: block;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 10px;
}

.questions_box .text {
	display: block;
	color: #2a304b;
	font-size: 14px;
	font-weight: 400;
	margin-bottom: 14px;
	line-height: 1.3;
}

.questions_box .button {
	display: inline-block;
	background: #e3e6f6;
	border-radius: 30px;
	padding: 4px 12px;
	font-size: 12px;
	font-weight: 400;
	color: #3b5c93;
}

.questions_box .button:hover {
	color: #ffffff;
	background: #b998d1;
}

@media (max-width: 1024px) {
	.questions_box {
		padding: 30px 0 0;
	}
	.questions_box .title_box, .questions_box .comment-reply-title {
		margin-bottom: 25px;
	}
	.questions_box .questions {
		margin: 0 -70px;
	}
	.questions_box .question {
		padding: 0 70px;
	}
}

@media (max-width: 768px) {
	.questions_box .questions:before {
		display: none;
	}
	.questions_box .questions {
		margin: 0 -10px;
	}
	.questions_box .question {
		padding: 0 10px;
	}
}

@media (max-width: 640px) {
	.questions_box .question {
		width: 100%;
	}
	.questions_box .question:nth-child(2n) .thumb {
		order: 1;
		margin-left: 0;
		margin-right: 20px;
	}
}

.title_box, .comment-reply-title {
	display: block;
	margin-bottom: 25px;
	margin-top: -5px;
	color: #2a304b;
	font-size: 24px;
	font-weight: 700;
}

.title_box h1, .comment-reply-title h1 {
	display: inline-block;
	font-size: inherit;
	font-weight: inherit;
	margin: 0;
}

@media (max-width: 1024px) {
	.title_box, .comment-reply-title {
		margin-top: 0;
		margin-bottom: 15px;
	}
}

@media (max-width: 768px) {
	.title_box, .comment-reply-title {
		font-size: 20px;
	}
}

#toc_container {
	display: block;
	position: relative;
	margin-bottom: 25px;
	background: #f0f5f9;
	border-radius: 5px;
	padding: 25px 30px;
}

#toc_container .toc_title {
	display: block;
	font-size: 28px;
	position: relative;
	font-weight: 400;
	color: #2a304b;
	margin-bottom: 15px;
}

#toc_container li {
	padding-left: 25px;
}

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

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

.widget {
	display: block;
	position: relative;
	margin-bottom: 30px;
}

.widget .promo > img {
	display: block;
	width: 100%;
	height: auto;
}

.widget .offers_box .offers {
	margin: 0 0 -30px;
}

.widget .offers_box .offer {
	display: block;
	width: 100%;
	margin: 0 0 30px;
}

.widget .posts .post {
	display: flex;
	flex-wrap: nowrap;
	align-items: flex-start;
	position: relative;
	margin-bottom: 30px;
}

.widget .posts .thumb {
	display: block;
	margin-left: 20px;
	flex-shrink: 0;
}

.widget .posts .thumb img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 5px;
}

.widget .posts .info {
	display: block;
}

.widget .posts .title {
	display: block;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 10px;
}

.widget .posts .text {
	display: block;
	color: #2a304b;
	font-size: 14px;
	font-weight: 400;
	margin-bottom: 15px;
}

.widget .posts .button {
	display: inline-block;
	background: #e3e6f6;
	border-radius: 30px;
	padding: 5px 15px;
	font-size: 14px;
	font-weight: 400;
	color: #3b5c93;
}

.widget .posts .button:hover {
	color: #ffffff;
	background: #b998d1;
}

@media (max-width: 1024px) {
	.widget .widget {
		margin-bottom: 20px;
	}
	.widget .posts .post {
		margin-bottom: 20px;
	}
	.widget .offers_box .offers {
		margin-bottom: -20px;
	}
	.widget .offers_box .offer {
		margin-bottom: 20px;
	}
}

.footer_box {
	display: block;
	padding: 25px 0;
	background: linear-gradient(to right, #cdebf9, #8fdfef);
}

.footer_box .fixed {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
}

.footer_box .logo_wrapper {
	flex-shrink: 0;
	flex-grow: 0;
	margin-right: 30px;
}

.footer_box .logo {
	display: block;
	flex-grow: 0;
	flex-shrink: 0;
	position: relative;
	width: 195px;
	margin-bottom: 5px;
	padding-left: 58px;
	color: #2a304b;
	text-decoration: none;
}

.footer_box .logo:before {
	content: '';
	display: block;
	position: absolute;
	top: -10px;
	left: 0;
	background: url("../images/sprite.png") 0px -677px no-repeat;
	background-size: 63px 773px;
	width: 47px;
	height: 41px;
}

.footer_box .logo:hover {
	opacity: 0.7;
}

.footer_box .logo .name {
	display: block;
	margin-bottom: 5px;
	font-family: "Montserrat", sans-serif;
	font-size: 17px;
	font-weight: 700;
}

.footer_box .logo .slogan {
	display: block;
	font-size: 12px;
	line-height: 1.3;
	color: #2a304b;
}

.footer_box .logo b {
	display: inline-block;
	position: relative;
	top: -2px;
	margin-left: 3px;
	font-size: 9px;
	color: #3b5c93;
	vertical-align: middle;
}

.footer_box .policy {
	display: inline-block;
	padding-left: 58px;
	font-size: 12px;
	font-weight: 400;
}

.footer_box .menu_wrapper {
	flex-grow: 1;
	margin-right: 30px;
}

.footer_box .menu {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin: 0 -5px 10px;
}

.footer_box .menu li {
	display: inline-block;
	margin: 0 5px 5px;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.3;
}

.footer_box .copy {
	display: block;
	opacity: 0.5;
	color: #2a304b;
	font-size: 12px;
	font-weight: 400;
}

.footer_box .social_wrapper {
	display: block;
	text-align: center;
	flex-grow: 0;
	margin-right: 30px;
}

.footer_box .social {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
	margin-bottom: 15px;
	cursor: default;
}

.footer_box .social a {
	display: inline-block;
	vertical-align: middle;
	margin: 0 5px;
	cursor: pointer;
}

.footer_box .social a:hover {
	opacity: 0.5;
}

.footer_box .social .ico_1 {
	background: url("../images/sprite.png") 0px -27px no-repeat;
	background-size: 63px 773px;
	width: 21px;
	height: 12px;
}

.footer_box .social .ico_2 {
	background: url("../images/sprite.png") 0px -67px no-repeat;
	background-size: 63px 773px;
	width: 16px;
	height: 14px;
}

.footer_box .social .ico_3 {
	background: url("../images/sprite.png") 0px -109px no-repeat;
	background-size: 63px 773px;
	width: 16px;
	height: 14px;
}

.footer_box .social .ico_4 {
	background: url("../images/sprite.png") 0px -95px no-repeat;
	background-size: 63px 773px;
	width: 20px;
	height: 14px;
}

.footer_box .social .ico_5 {
	background: url("../images/sprite.png") 0px -81px no-repeat;
	background-size: 63px 773px;
	width: 16px;
	height: 14px;
}

.footer_box .counters {
	display: block;
	position: relative;
	overflow: hidden;
	font-size: 0;
	line-height: 0;
}

.footer_box .counters img {
	display: inline-block;
}

.footer_box .tickets {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	position: relative;
	background: url(../images/bg_footer.png) 0 50% no-repeat;
	min-width: 200px;
	min-height: 105px;
	flex-grow: 0;
	padding-left: 120px;
	box-sizing: border-box;
}

.footer_box .tickets .title {
	display: block;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 10px;
	width: 100%;
}

.footer_box .button {
	display: inline-block;
	background: linear-gradient(to right, #0bafdb 0%, #17c5b3 100%);
	border-radius: 30px;
	color: #ffffff;
	font-size: 16px;
	font-weight: 700;
	padding: 6px 20px 8px;
}

.footer_box .button:hover {
	opacity: 0.6;
}

@media (max-width: 1024px) {
	.footer_box .logo_wrapper, .footer_box .menu_wrapper {
		margin-right: 20px;
	}
	.footer_box .tickets {
		display: none;
	}
	.footer_box .menu {
		justify-content: center;
		margin-bottom: 10px;
	}
	.footer_box .copy {
		text-align: center;
	}
	.footer_box .counters {
		text-align: right;
	}
	.footer_box .social_wrapper {
		margin-right: 0;
	}
	.footer_box .social {
		justify-content: flex-end;
	}
}

@media (max-width: 768px) {
	.footer_box .logo {
		width: 140px;
	}
}

@media (max-width: 640px) {
	.footer_box {
		padding-bottom: 10px;
	}
	.footer_box .fixed {
		flex-wrap: wrap;
	}
	.footer_box .logo_wrapper, .footer_box .menu_wrapper, .footer_box .social_wrapper {
		margin: 0 0 15px;
		flex-grow: 1;
		width: auto;
		text-align: left;
	}
	.footer_box .logo_wrapper {
		order: 1;
		width: 60%;
	}
	.footer_box .social_wrapper {
		width: 40%;
		order: 2;
	}
	.footer_box .menu_wrapper {
		width: 100%;
		order: 3;
	}
	.footer_box .logo {
		width: auto;
	}
}

@media (max-width: 420px) {
	.footer_box .logo_wrapper, .footer_box .social_wrapper {
		width: 100%;
	}
	.footer_box .social {
		justify-content: center;
	}
	.footer_box .counters {
		text-align: center;
	}
}
/*отступ от шапки до рекламы*/
.header_box {
	margin-bottom: 3px;
}
/*перекрытие блока прилипишки на мобилки*/
.flat_pm_outgoing {
	z-index: 999999;
}
/*для видео*/
p iframe {
    width: 100%;
    height: 400px;
}

@media only screen and (max-width: 992px) {
	p iframe {
		width: 100%;
		height: 320px
	}
}
@media only screen and (max-width: 576px) {
	p iframe {
		width: 100%;
		height: 220px;
	}	
}

.promo_box {
	background: #8fdfef;
}

.button_a {
	display: inline-block;
	background: linear-gradient(to right, #0bafdb 0%, #17c5b3 100%);
	border-radius: 30px;
	color: #ffffff;
	font-size: 17px;
	font-weight: 700;
	padding: 6px 20px 8px;
	cursor: pointer;
}

.button_a a:hover {
	color: #8f213e;
}

.p_item_13487 {
	height: 345px;
}

.paloska_13487 .view_1_render {
	padding-top: 0px;
}

.posts_box .button {
	font-weight: bold;
}

.posts_box .thumb img {
	border-radius: 10px;
}


/*стили для дзена и вк конец статьи*/

#vk_subscribe {
	margin-bottom: 20px;
margin-left: 95px;
}

.block-dzenvk {
	margin-left: 100px;
}

.dzen-vk {
	text-align: center;
	font-weight: bold;
}

#vk_subscribe {
	display: flex;
	justify-content: center;
}

@media only screen and (max-width: 992px) {
.block-dzenvk {
    margin-left: 0;
	}
	.yan-dz img {
		max-width:350px;
	}
	#vk_subscribe {
	margin-left: 55px;
}
}



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