@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: "Montserrat", sans-serif;
	font-size: 17px;
	line-height: 1.6;
	color: #323458;
	min-width: 320px;
}

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

a {
	color: #323458;
	text-decoration: underline;
}

a:hover {
	text-decoration: none;
}

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

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

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

.fixed .fixed {
	width: auto;
	margin: 0;
	max-width: none;
	padding: 0;
}

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

.wrapper_box.wrapper_bg:before {
	display: block;
	content: '';
	background: url(../images/bg_girl_small.jpg) 0 0 no-repeat;
	width: 733px;
	height: 501px;
	position: absolute;
	left: 50%;
	top: -30px;
	margin-left: -300px;
	z-index: 0;
}

.wrapper_box .main_box {
	display: block;
	position: relative;
	overflow: hidden;
	z-index: 1;
	flex-grow: 1;
	flex-shrink: 1;
}

.wrapper_box .sidebar_box {
	display: block;
	position: relative;
	width: 330px;
	margin-left: 30px;
	flex-shrink: 0;
	z-index: 0;
}

@media (max-width: 1110px) {
	.wrapper_box.wrapper_bg:before {
		display: none;
	}
}

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

@media (max-width: 768px) {
	.wrapper_box {
		display: block;
		position: relative;
	}
	.wrapper_box .main_box {
		display: block;
		margin-bottom: 20px;
	}
	.wrapper_box .sidebar_box {
		display: block;
		width: auto;
		max-width: 400px;
		margin: 0 auto 20px;
	}
}

.header_box {
	display: block;
	position: relative;
	margin-bottom: 40px;
	padding: 40px 0 60px;
	background: url(../images/bg_wave.png) 0 100% repeat-x;
	z-index: 20;
}

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

.header_box .logo_wrapper {
	display: block;
	position: relative;
	margin-right: 50px;
	flex-grow: 0;
	flex-shrink: 0;
	text-align: center;
}

.header_box .logo {
	display: inline-block;
	position: relative;
	background: url(../images/ico_logo.png) 0 0 no-repeat;
	width: 243px;
	height: 71px;
}

.header_box .menu {
	display: block;
	position: relative;
	margin-right: 50px;
	flex-grow: 0;
	flex-shrink: 0;
	z-index: 5;
}

.header_box .menu.active ul {
	visibility: visible;
	opacity: 1;
}

.header_box .menu.active .label {
	border-radius: 10px 10px 0 0;
}

.header_box .menu ul {
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	background: linear-gradient(to right, #00bced 0%, #3ec1c6 100%);
	border-radius: 0 0 10px 10px;
	opacity: 0;
	visibility: hidden;
	transition: 0.2s;
}

.header_box .menu li {
	display: block;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.header_box .menu a {
	display: block;
	padding: 8px 30px;
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	color: #ffffff;
	transition: 0.2s;
}

.header_box .menu a:hover {
	background: linear-gradient(to right, #3ec1c6 0%, #00bced 100%);
}

.header_box .label {
	display: block;
	position: relative;
	background: linear-gradient(to right, #00bced 0%, #3ec1c6 100%);
	color: #ffffff;
	font-size: 16px;
	font-weight: 600;
	line-height: 20px;
	padding: 15px 60px 15px 30px;
	min-width: 200px;
	border-radius: 10px;
	cursor: pointer;
	transition: 0.2s;
}

.header_box .label:before, .header_box .label:after {
	content: '';
	display: block;
	position: absolute;
	width: 16px;
	height: 4px;
	top: 50%;
	margin-top: -9px;
	right: 30px;
	border-top: 3px solid;
}

.header_box .label:after {
	margin-top: -2px;
	border-bottom: 3px solid;
}

.header_box .label:hover {
	background: linear-gradient(to right, #3ec1c6 0%, #00bced 100%);
}

.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 #e2e2e2;
	background-color: #ffffff;
	font-size: 12px;
	font-family: "Montserrat", sans-serif;
	font-weight: 400;
	color: #323458;
	line-height: 20px;
	padding: 15px 30px;
}

.header_box .search input[type="submit"] {
	display: block;
	border: none;
	background: url(../images/ico_search.png) 50% 50% no-repeat;
	position: absolute;
	top: 0;
	bottom: 0;
	width: 50px;
	right: 0;
	cursor: pointer;
}

@media (max-width: 1024px) {
	.header_box {
		padding: 20px 0 40px;
		margin-bottom: 20px;
	}
	.header_box .logo_wrapper {
		margin-right: 20px;
	}
	.header_box .menu {
		margin-right: 20px;
	}
	.header_box .menu a {
		padding: 8px 20px;
	}
	.header_box .label {
		min-width: auto;
		padding: 15px 45px 15px 20px;
	}
	.header_box .label:before, .header_box .label:after {
		right: 15px;
	}
	.header_box .search input[type="text"] {
		padding: 15px 20px;
	}
	.header_box .search input[type="search"] {
		width: 30px;
	}
}

@media (max-width: 768px) {
	.header_box .fixed {
		flex-wrap: wrap;
		justify-content: center;
	}
	.header_box .logo_wrapper {
		width: 100%;
		margin: 0 auto 20px;
	}
	.header_box .menu {
		margin-right: 20px;
	}
}

@media (max-width: 480px) {
	.header_box .menu {
		margin: 0 auto 20px;
		width: 100%;
	}
	.header_box .search {
		width: 100%;
	}
	.header_box .fixed {
		flex-direction: column;
	}
}

.breadcrumbs {
	display: block;
	position: relative;
	margin-bottom: 35px;
}

.breadcrumbs a, .breadcrumbs span {
	display: inline-block;
	vertical-align: middle;
	color: #13bee1;
	font-size: 12px;
	font-weight: 400;
	text-decoration: none;
	position: relative;
}

.breadcrumbs a:hover {
	color: #3b82b4;
}

.breadcrumbs .separator {
	display: inline-block;
	vertical-align: middle;
	height: 6px;
	width: 24px;
	color: #13bee1;
	position: relative;
}

.breadcrumbs .separator:before {
	content: '';
	display: block;
	width: 0;
	height: 0;
	border-top: 3px solid transparent;
	border-bottom: 3px solid transparent;
	border-left: 3px solid #13bee1;
	position: absolute;
	top: 50%;
	left: 12px;
	margin-top: -3px;
}

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

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

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

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

.comments_box {
	margin-bottom: 40px;
}

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

.comments {
	margin-bottom: 30px;
}

.comments h3 {
	display: block;
	margin-bottom: 12px;
	font-weight: normal;
	font-size: 18px;
	line-height: 130%;
	color: #333333;
}

.comments .pagination {
	margin-top: 30px;
}

.comment .comment_inner {
	display: flex;
	flex-wrap: nowrap;
	align-items: flex-start;
	padding: 20px;
	border-radius: 5px;
	background: #f2f7f9;
	font-size: 14px;
	line-height: 1.4;
}

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

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

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

.comment .thumb {
	display: block;
	flex-shrink: 0;
	width: 60px;
	height: 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: #3b82b4;
}

.comment .comment-reply-link {
	display: inline-block;
	vertical-align: middle;
	color: #ffffff;
	font-size: 9px;
	font-weight: 400;
	border-radius: 5px;
	background-color: #3b82b4;
	padding: 3px 6px;
	text-decoration: none;
	transition: 0.2s;
}

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

.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: 15px;
	}
	.comment .comment {
		margin-left: 20px;
	}
	.comment .thumb {
		margin-right: 15px;
	}
}

/* Стили для оформления формы комментариев */
.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 {
	display: block;
	position: relative;
	margin-bottom: 40px;
}

.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: "Montserrat", sans-serif;
	line-height: 130%;
}

.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: #ffcc4a;
	text-align: center;
	font-size: 14px;
	font-weight: 700;
	font-family: "Montserrat", sans-serif;
	color: #323458;
	cursor: pointer;
	transition: 0.2s;
}

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

.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: 1024px) {
	.comment-respond {
		margin-bottom: 20px;
	}
}

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

h1 {
	display: block;
	font-size: 32px;
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 17px;
}

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

.content {
	margin-bottom: 40px;
}

.content h2, .content h3, .content h4, .content h5, .content h6 {
	display: block;
	margin-bottom: 17px;
	font-weight: 700;
	line-height: 1.2;
}

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

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

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

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

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

.content ul>li:last-child {
	margin-bottom: 20px!important;
}
.content ul>l{	
	margin: 0 22px 0 -25px;
}
.content ul > li > ul {
    padding: 0px 20px 0 !important;
}
.content ul > li > ul > li:last-child {
    margin-bottom: 0px !important;
}

.content #toc_container ul > li:before {	
	left: 6px;
	margin:unset;
}

.content ul > li:before {
	content: '';
	display: block;
	width: 8px;
	height: 8px;
	position: absolute;
	left: 0;
	top: 2px;
	background-color: #ffffff;
	border-radius: 50%;
	border: 2px solid #13bee1;
}

.content ol {
	counter-reset: list;
}

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

.content ol li:before {
	content: counter(list);
	display: block;
	width: 23px;
	height: 23px;
	text-align: center;
	position: absolute;
	left: 0;
	top: -2px;
	background-color: #13bee1;
	border-radius: 50%;
	color: #ffffff;
	font-size: 12px;
	font-weight: 700;
	line-height: 23px;
}

.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 > :first-child {
	border-top-left-radius: 5px;
}

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

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

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

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

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

.content th {
	background-color: #13bde0;
	color: #ffffff;
}

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

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

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

@media (max-width: 1024px) {
	.content {
		margin-bottom: 20px;
	}
	.content h2 {
		font-size: 22px;
	}
	.content h3 {
		font-size: 20px;
	}
	.content h4 {
		font-size: 18px;
	}
	.content p, .content > table, .content > ul, .content > ol {
		margin-bottom: 15px;
	}
	.content li {
		margin-bottom: 10px;
	}
	.content ul ul, .content ul ol, .content ol ul, .content ol ol {
		padding-top: 10px;
	}
}

@media (max-width: 768px) {
	.content .table_wrapper {
		overflow-y: visible;
		overflow-x: scroll;
	}
}

.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: 1024px) {
	.content .alignleft {
		margin: 0 20px 15px 0;
	}
	.content .alignright {
		margin: 0 0 15px 20px;
	}
	.content .alignnone, .content .aligncenter {
		margin-bottom: 15px;
	}
}

@media (max-width: 640px) {
	.content .alignleft, .content .alignright {
		float: none;
		margin: 0 auto 15px;
	}
}

.content blockquote {
	display: block;
	position: relative;
	overflow: hidden;
	border-radius: 5px;
	padding: 25px 30px 25px 140px;
	margin-bottom: 25px;
	background: linear-gradient(to right, #dcf5fb, #e2f6f6);
}

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

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

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

.content .wp-caption-text {
	display: block;
	text-align: center;
	margin-bottom: 0;
}

.content .wp-caption {
	display: block;
	overflow: hidden;
	box-sizing: border-box;
	margin-bottom: 25px;
	background: #f2f7f9;
	border-radius: 5px;
}

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

.content .wp-caption img {
	display: block;
	margin: 0;
}

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

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

.gallery .gallery-icon {
	display: block;
	padding: 10px;
	margin: 0;
	background: #f2f7f9;
}

.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: #f2f7f9;
}

.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;
	display: inline-block;
}

.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 {
	display: block;
	position: relative;
	margin-bottom: 40px;
}

.featured_box.featured_small {
	padding-right: 260px;
}

.featured_box.featured_small .items {
	margin: 0 -10px;
}

.featured_box.featured_small .item {
	width: calc(50% - 20px);
	margin: 0 10px 20px;
}

@media (max-width: 1110px) {
	.featured_box.featured_small {
		padding-right: 0;
	}
}

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

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

.featured_box .item {
	display: inline-block;
	vertical-align: top;
	width: calc(25% - 60px);
	margin: 0 30px 40px;
	box-sizing: border-box;
	position: relative;
}

.featured_box .inner {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: flex-start;
	position: relative;
	border-radius: 10px;
	padding: 20px;
	overflow: hidden;
	box-sizing: border-box;
	height: 260px;
	margin-bottom: 15px;
}

.featured_box .inner:before {
	content: '';
	display: block;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	position: absolute;
	background: linear-gradient(to bottom, transparent, rgba(31, 32, 49, 0.7));
	z-index: 2;
}

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

.featured_box .title {
	display: block;
	text-decoration: none;
	color: #ffffff;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.3;
	position: relative;
	z-index: 3;
	width: 100%;
	transition: 0.2s;
}

.featured_box .title:hover {
	color: #ffda7d;
}

.featured_box .category {
	display: inline-block;
	margin-bottom: 15px;
	padding: 4px 8px 3px;
	background: linear-gradient(to right, #00bced 0%, #3ec1c6 100%);
	border-radius: 30px;
	color: #ffffff;
	font-size: 10px;
	font-weight: 400;
	text-decoration: none;
	position: relative;
	z-index: 3;
}

.featured_box .category:hover {
	background: #ffcc4a;
}

.featured_box .author {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
}

.featured_box .photo {
	display: inline-block;
	width: 50px;
	height: auto;
	flex-shrink: 0;
	margin-right: 20px;
}

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

.featured_box .label {
	display: block;
	color: #13bee1;
	font-size: 10px;
	font-weight: 400;
	margin-bottom: 5px;
}

.featured_box .name {
	display: block;
	color: #323458;
	font-size: 12px;
	font-weight: 400;
	margin-bottom: 5px;
}

.featured_box .text {
	display: block;
	opacity: 0.7;
	color: #323458;
	font-size: 11px;
	font-weight: 400;
}

@media (max-width: 1024px) {
	.featured_box {
		margin-bottom: 20px;
	}
	.featured_box .items {
		margin: 0 -10px;
	}
	.featured_box .item {
		margin: 0 10px 20px;
		width: calc(25% - 20px);
	}
}

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

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

.front_box {
	display: block;
	position: relative;
	margin-bottom: 40px;
	padding-bottom: 50px;
	background: url(../images/bg_wave.png) 0 100% repeat-x;
}

.front_box .title_box, .front_box .comment-reply-title {
	font-size: 22px;
}

.front_box .fixed {
	display: flex;
	flex-wrap: nowrap;
	align-items: flex-start;
	justify-content: space-between;
}

.front_box .fixed:before {
	display: block;
	content: '';
	background: url(../images/bg_girl.jpg) 0 0 no-repeat;
	width: 903px;
	height: 593px;
	position: absolute;
	top: 0;
	left: 50%;
	margin-left: -360px;
	z-index: 1;
}

.front_box .left {
	position: relative;
	z-index: 2;
	flex-grow: 1;
}

.front_box .right {
	position: relative;
	z-index: 2;
	margin-left: 270px;
	width: 320px;
	flex-grow: 0;
	flex-shrink: 0;
}

.front_box .right .text {
	display: block;
	font-size: 12px;
	font-weight: 400;
	margin-bottom: 30px;
}

.front_box .right p {
	margin-bottom: 20px;
}

.front_box .right p:last-child {
	margin-bottom: 0;
}

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

.front_box .questions li {
	display: block;
	position: relative;
	margin-bottom: 15px;
	padding-left: 30px;
}

.front_box .questions li:before {
	display: block;
	content: '';
	position: absolute;
	background: url(../images/ico_question.png) 0 0 no-repeat;
	width: 18px;
	height: 18px;
	left: 0;
	top: 0;
}

.front_box .questions a {
	display: inline-block;
	color: #323458;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.4;
	text-decoration: none;
	transition: 0.2s;
}

.front_box .questions a:hover {
	color: #3b82b4;
}

.front_box .categories {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	margin: 0 -15px -20px;
}

.front_box .category {
	display: flex;
	flex-direction: column;
	width: calc(50% - 30px);
	margin: 0 15px 30px;
	border-radius: 10px;
	border: 1px solid #e2e2e2;
	box-sizing: border-box;
	padding: 20px;
	text-decoration: none;
	position: relative;
	transition: 0.2s;
}

.front_box .category:hover {
	border: 1px solid #ffcc4a;
	background-color: #ffffff;
}

.front_box .category .title {
	display: block;
	font-size: 15px;
	font-weight: 700;
	margin: -8px 0 12px;
	flex-grow: 0;
	position: relative;
	z-index: 2;
}

.front_box .category .text {
	display: block;
	color: #323458;
	font-size: 11px;
	font-weight: 400;
	flex-grow: 1;
	max-width: 150px;
	position: relative;
	z-index: 2;
	margin-bottom: 15px;
}

.front_box .category .info {
	display: flex;
	align-items: center;
	position: relative;
	flex-grow: 0;
	z-index: 2;
	font-size: 9px;
	font-weight: 400;
	max-width: 100px;
}

.front_box .category .count {
	display: inline-block;
	vertical-align: middle;
	text-align: center;
	width: 25px;
	height: 25px;
	background-color: #66b100;
	border-radius: 50%;
	margin-right: 5px;
	color: #ffffff;
	font-size: 10px;
	line-height: 25px;
	font-weight: 700;
	box-sizing: border-box;
	flex-shrink: 0;
}

.front_box .category .thumb {
	display: block;
	position: absolute;
	width: auto;
	height: auto;
	right: 10px;
	bottom: 10px;
	z-index: 1;
	opacity: 1;
}

.front_box .button {
	display: inline-block;
	border-radius: 5px;
	background-color: #ffcc4a;
	padding: 10px 25px;
	line-height: 20px;
	font-size: 14px;
	font-weight: 700;
	color: #323458;
	cursor: pointer;
	transition: 0.2s;
}

.front_box .button:hover {
	background-color: #ffda7d;
}

@media (max-width: 1110px) {
	.front_box {
		margin-bottom: 20px;
		padding-bottom: 45px;
	}
	.front_box .fixed:before {
		margin-left: -380px;
	}
	.front_box .right {
		width: 280px;
		margin-left: 250px;
	}
}

@media (max-width: 1024px) {
	.front_box .title_box, .front_box .comment-reply-title {
		font-size: 20px;
	}
	.front_box .fixed {
		display: block;
	}
	.front_box .fixed:before {
		left: auto;
		margin-left: 0;
		right: -300px;
	}
	.front_box .left {
		display: block;
		margin-bottom: 0;
		margin-right: 260px;
	}
	.front_box .right {
		display: flex;
		width: auto;
		margin: 0 -10px;
	}
	.front_box .right .item {
		display: block;
		width: 50%;
		padding: 0 10px;
		box-sizing: border-box;
	}
	.front_box .categories {
		margin: 0 -10px;
	}
	.front_box .category {
		margin: 0 10px 20px;
		width: calc(50% - 20px);
	}
	.front_box .questions {
		margin-bottom: 20px;
	}
}

@media (max-width: 768px) {
	.front_box .fixed:before {
		display: none;
	}
	.front_box .left {
		margin-right: 0;
	}
}

@media (max-width: 480px) {
	.front_box .category {
		margin-left: 0;
		margin-right: 0;
		width: 100%;
	}
	.front_box .category .info {
		max-width: none;
	}
	.front_box .category .text {
		max-width: 220px;
	}
	.front_box .right {
		display: block;
	}
	.front_box .right .item {
		width: auto;
	}
}

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

.latest_box .wrapper {
	display: block;
	background-color: #f2f7f9;
	border-radius: 10px;
	padding: 40px 40px 20px;
}

.latest_box .items {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -21px;
	position: relative;
	justify-content: flex-start;
}

.latest_box .item {
	display: inline-block;
	width: 20%;
	padding: 0 21px;
	box-sizing: border-box;
	margin-bottom: 40px;
}

.latest_box .thumb {
	display: block;
	position: relative;
	margin-bottom: 15px;
}

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

.latest_box .category {
	display: inline-block;
	text-decoration: none;
	font-size: 11px;
	color: #13bee1;
	transition: 0.2s;
	margin-bottom: 12px;
}

.latest_box .category:hover {
	color: #3b82b4;
}

.latest_box .title {
	display: block;
	color: #323458;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	transition: 0.2s;
}

.latest_box .title:hover {
	color: #3b82b4;
}

.latest_box .buttons {
	border-top: 2px solid #daf1f7;
	padding-top: 30px;
	padding-bottom: 10px;
	text-align: center;
}

.latest_box .button {
	color: #13bee1;
	text-decoration: none;
	font-size: 14px;
	font-weight: 700;
	transition: 0.2s;
	cursor: pointer;
}

.latest_box .button:hover {
	color: #3b82b4;
}

@media (max-width: 1024px) {
	.latest_box .wrapper {
		padding: 20px 20px 0;
	}
	.latest_box .items {
		margin: 0 -10px;
	}
	.latest_box .buttons {
		padding: 20px 0;
	}
	.latest_box .item {
		padding: 0 10px;
		margin-bottom: 20px;
	}
}

@media (max-width: 768px) {
	.latest_box .item {
		width: 33.33%;
	}
}

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

@media (max-width: 420px) {
	.latest_box .item {
		width: 100%;
	}
}

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

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

.modal_box.is_visivle .form {
	top: 0;
}

.modal_box .form_wrapper {
	display: block;
	width: 100%;
	max-height: 100vh;
	overflow-x: hidden;
	overflow-y: auto;
	box-sizing: border-box;
	padding: 20px;
}

.modal_box .form {
	display: block;
	position: relative;
	padding: 40px 50px;
	margin: 0 auto;
	border-radius: 5px;
	background-color: #ffffff;
	max-width: 360px;
	width: auto;
	overflow: hidden;
	top: -600px;
	transition: 0.5s;
}

.modal_box .title {
	display: block;
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 20px;
	margin-top: -5px;
}

.modal_box .text {
	display: block;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4;
	color: #484570;
	margin-bottom: 20px;
}

.modal_box .field, .modal_box .consent {
	display: block;
	position: relative;
	margin-bottom: 20px;
}

.modal_box .close {
	display: block;
	position: absolute;
	right: 20px;
	top: 20px;
	cursor: pointer;
	z-index: 2;
	background: url(../images/ico_close.png) 0 0 no-repeat;
	width: 15px;
	height: 15px;
}

.modal_box .error {
	display: block;
	position: relative;
	margin: 15px 20px -5px;
	color: #ff0000;
	font-size: 14px;
}

.modal_box .success {
	display: block;
	position: relative;
	margin: 20px 20px -15px;
	color: #009900;
	text-align: center;
	font-size: 16px;
	font-weight: 600;
}

.modal_box a {
	color: inherit;
	text-decoration: underline;
}

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

.modal_box input[type="text"], .modal_box input[type="tel"], .modal_box input[type="email"], .modal_box textarea {
	display: block;
	width: 100%;
	box-sizing: border-box;
	padding: 12px 20px;
	border: 1px solid #e9ebee;
	border-radius: 5px;
	font-size: 14px;
	font-weight: 400;
	color: #323458;
	font-family: "Montserrat", sans-serif;
}

.modal_box textarea {
	height: 130px;
}

.modal_box label {
	display: block;
	position: relative;
	padding-left: 30px;
	font-size: 12px;
	cursor: pointer;
}

.modal_box label:before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 16px;
	height: 16px;
	border: 2px solid #ffcc4a;
}

.modal_box input:checked + label:after {
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	background-color: #ffcc4a;
	position: absolute;
	left: 5px;
	top: 5px;
}

.modal_box input[type="checkbox"] {
	display: block;
	position: absolute;
	left: -1000px;
}

.modal_box input[type="submit"] {
	display: inline-block;
	color: #323458;
	font-family: "Montserrat", sans-serif;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	padding: 15px 30px;
	border-radius: 10px;
	background-color: #ffcc4a;
	cursor: pointer;
	transition: 0.2s;
	border: none;
}

.modal_box input[type="submit"]:hover {
	color: #ffffff;
	background-color: #13bee1;
}

@media (max-width: 1024px) {
	.modal_box .form {
		padding: 20px;
	}
	.modal_box .title {
		font-size: 20px;
	}
	.modal_box .success {
		margin-bottom: 0;
	}
}

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

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

.pagination span {
	background-color: #13bee1;
	color: #ffffff;
}

.pagination a:hover {
	color: #13bee1;
}

.pagination .extend {
	background: transparent;
}

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

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

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

.popular_box .items {
	border-radius: 10px;
	border: 1px solid #e2e2e2;
	padding: 30px 40px;
}

.popular_box .item {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	margin-bottom: 30px;
}

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

.popular_box .item .thumb {
	display: block;
	width: 90px;
	margin-right: 30px;
	flex-shrink: 0;
	flex-grow: 0;
}

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

.popular_box .item .title {
	display: block;
	color: #323458;
	font-size: 14px;
	font-weight: 700;
	margin-right: 30px;
	flex-grow: 1;
	text-decoration: none;
	transition: 0.2s;
}

.popular_box .item .title:hover {
	color: #ffcc4a;
}

.popular_box .item .likes {
	display: block;
	position: relative;
	flex-grow: 0;
	flex-shrink: 0;
	width: 60px;
	padding: 10px 0 10px 40px;
	border-left: 1px solid #edeff2;
	color: #14bee1;
	font-size: 24px;
	font-weight: 700;
	white-space: nowrap;
}

.popular_box .item .likes:before {
	content: '';
	display: inline-block;
	background: url(../images/ico_likes.png) 0 0 no-repeat;
	width: 19px;
	height: 20px;
	vertical-align: baseline;
	margin-right: 8px;
}

.popular_box .post {
	border-radius: 10px;
	border: 1px solid #ffcc4a;
	padding: 30px 40px;
	text-align: center;
}

.popular_box .post .thumb {
	display: inline-block;
	text-decoration: none;
	margin-bottom: 15px;
	width: 130px;
	height: auto;
}

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

.popular_box .post .title {
	display: block;
	text-decoration: none;
	color: #323458;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.3;
	flex-grow: 1;
	transition: 0.2s;
	margin-bottom: 15px;
}

.popular_box .post .title:hover {
	color: #ffcc4a;
}

.popular_box .post .text {
	display: block;
	color: #323458;
	font-size: 12px;
	font-weight: 400;
	margin-bottom: 20px;
}

.popular_box .post .link {
	display: inline-block;
	border-radius: 10px;
	background-color: #ecf3f7;
	text-decoration: none;
	padding: 8px 20px;
	color: #323458;
	font-size: 11px;
	font-weight: 400;
	transition: 0.2s;
}

.popular_box .post .link:hover {
	background-color: #ffcc4a;
	color: #ffffff;
}

@media (max-width: 1024px) {
	.popular_box .items, .popular_box .post {
		padding: 20px;
	}
	.popular_box .item {
		margin-bottom: 20px;
	}
	.popular_box .item .thumb {
		margin-right: 20px;
	}
	.popular_box .item .title {
		margin-right: 20px;
	}
	.popular_box .item .likes {
		padding-left: 20px;
		font-size: 20px;
		width: 50px;
	}
	.popular_box .item .likes:before {
		position: relative;
		bottom: -2px;
	}
	.popular_box .post .thumb {
		margin-bottom: 10px;
	}
	.popular_box .post .title {
		font-size: 18px;
		margin-bottom: 12px;
	}
	.popular_box .post .text {
		margin-bottom: 16px;
	}
}

@media (max-width: 768px) {
	.popular_box .post {
		max-width: 440px;
	}
}

@media (max-width: 480px) {
	.popular_box .item .title {
		margin-right: 0;
		font-size: 13px;
	}
	.popular_box .item .likes {
		display: none;
	}
}

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

.posts_box .posts {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	margin: 0 -10px;
}

.posts_box .post {
	display: inline-block;
	width: 25%;
	box-sizing: border-box;
	padding: 0 10px;
	margin-bottom: 30px;
}

.posts_box .post .title {
	display: block;
	color: #323458;
	font-size: 14px;
	font-weight: 700;
	transition: 0.2s;
	text-decoration: none;
}

.posts_box .post .title:hover {
	color: #ffcc4a;
}

.posts_box .post .thumb {
	display: block;
	margin-bottom: 10px;
	position: relative;
	overflow: hidden;
}

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

.posts_box .buttons {
	text-align: center;
	padding-top: 25px;
	border-top: 2px solid #e6f8fc;
}

.posts_box .button {
	display: block;
	color: #13bee1;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	transition: 0.2s;
	cursor: pointer;
}

.posts_box .button:hover {
	color: #3b82b4;
}

@media (max-width: 1024px) {
	.posts_box .posts {
		margin: 0 -10px;
	}
	.posts_box .post {
		width: 33.33%;
		padding: 0 10px;
		margin-bottom: 20px;
	}
	.posts_box .buttons {
		padding-top: 15px;
	}
}

@media (max-width: 640px) {
	.posts_box .post {
		width: 50%;
	}
	.posts_box .post .title {
		font-size: 13px;
	}
}

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

.main_box .promo_box .promo {
	padding: 20px;
}

@media (max-width: 1024px) {
	.main_box .promo_box .thumb {
		display: none;
	}
	.main_box .promo_box .promo {
		display: block;
		text-align: center;
	}
	.main_box .promo_box .title, .main_box .promo_box .text {
		display: block;
		margin: 0 0 15px;
		width: auto;
		max-width: none;
	}
	.main_box .promo_box .button {
		display: inline-block;
	}
}

.promo_box .promo {
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	padding: 20px 140px;
	background: linear-gradient(to right, #00bced 0%, #3ec1c6 100%);
	border-radius: 10px;
}

.promo_box .title {
	display: block;
	font-size: 16px;
	font-weight: 700;
	line-height: 20px;
	color: #ffffff;
	width: 170px;
	margin-right: 20px;
	flex-shrink: 0;
}

.promo_box .thumb {
	display: block;
	align-self: flex-end;
	flex-shrink: 0;
	margin-right: 20px;
	width: 102px;
	height: 40px;
	position: relative;
}

.promo_box .thumb:before {
	content: '';
	display: block;
	background: url(../images/bg_promo.png) 0 0 no-repeat;
	width: 102px;
	height: 97px;
	position: absolute;
	left: 0;
	bottom: -20px;
}

.promo_box .text {
	display: block;
	color: #ffffff;
	font-size: 11px;
	font-weight: 400;
	margin-right: 20px;
}

.promo_box .button {
	display: block;
	color: #323458;
	font-size: 14px;
	font-weight: 700;
	line-height: 24px;
	border-radius: 5px;
	background-color: #ffcc4a;
	padding: 10px 20px;
	white-space: nowrap;
	cursor: pointer;
	transition: 0.2s;
}

.promo_box .button:hover {
	background-color: #ffda7d;
}

@media (max-width: 1110px) {
	.promo_box .promo {
		padding: 20px 40px;
	}
}

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

@media (max-width: 768px) {
	.promo_box .thumb {
		display: none;
	}
}

@media (max-width: 640px) {
	.promo_box .promo {
		display: block;
		text-align: center;
	}
	.promo_box .title, .promo_box .text {
		display: block;
		margin: 0 0 15px;
		width: auto;
		max-width: none;
	}
	.promo_box .button {
		display: inline-block;
	}
}

.recommend_box {
	display: flex;
	flex-wrap: wrap;
	position: relative;
	margin: 0 -15px;
}

.recommend_box .item {
	display: inline-block;
	width: 33.33%;
	padding: 0 15px;
	margin-bottom: 30px;
	box-sizing: border-box;
}

.recommend_box .thumb {
	display: block;
	width: 100%;
	margin-bottom: 15px;
}

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

.recommend_box .category {
	display: block;
	color: #13bee1;
	font-size: 11px;
	font-weight: 400;
	text-decoration: none;
	transition: 0.2s;
	margin-bottom: 10px;
}

.recommend_box .category:hover {
	color: #ffcc4a;
}

.recommend_box .title {
	display: block;
	position: relative;
	color: #323458;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	transition: 0.2s;
}

.recommend_box .title:hover {
	color: #ffcc4a;
}

@media (max-width: 1024px) {
	.recommend_box {
		margin: 0 -10px;
	}
	.recommend_box .item {
		padding: 0 10px;
		margin-bottom: 20px;
	}
}

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

@media (max-width: 420px) {
	.recommend_box .item {
		width: 100%;
	}
}

.related_box {
	display: block;
	position: relative;
	margin-bottom: 25px;
	border-radius: 10px;
	background-color: #f2f7f9;
	padding: 30px 40px;
	max-width: 280px;
}

.related_box .item {
	display: flex;
	flex-wrap: nowrap;
	margin-bottom: 30px;
	align-items: center;
}

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

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

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

.related_box .title {
	display: block;
	color: #323458;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
}

.related_box .title:hover {
	color: #3b82b4;
}

@media (max-width: 1024px) {
	.related_box {
		padding: 20px;
	}
	.related_box .title_box, .related_box .comment-reply-title {
		margin-top: -5px;
	}
	.related_box .item {
		margin-bottom: 20px;
	}
}

.row_box {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px;
}

.row_box .col_1_3, .row_box .col_1_2, .row_box .col_2_3 {
	display: block;
	width: calc(33.33% - 30px);
	margin: 0 15px 30px;
	box-sizing: border-box;
}

.row_box .col_1_2 {
	width: calc(50% - 30px);
}

.row_box .col_2_3 {
	width: calc(66.66% - 30px);
}

@media (max-width: 1024px) {
	.row_box {
		margin: 0 -10px;
	}
	.row_box .col_1_3, .row_box .col_1_2, .row_box .col_2_3 {
		margin: 0 10px 20px;
	}
	.row_box .col_1_3 {
		width: calc(33.33% - 20px);
	}
	.row_box .col_1_2 {
		width: calc(50% - 20px);
	}
	.row_box .col_2_3 {
		width: calc(66.66% - 20px);
	}
}

@media (max-width: 768px) {
	.row_box {
		justify-content: center;
	}
	.row_box .col_1_3, .row_box .col_1_2, .row_box .col_2_3 {
		display: block;
		width: 100%;
		height: auto;
		margin-bottom: 20px;
	}
}

.social_box {
	display: flex;
	position: relative;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	margin-bottom: 40px;
}

.social_box .rate {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	position: relative;
	margin-right: 20px;
}

.social_box .label {
	display: block;
	font-size: 16px;
	font-weight: 700;
	color: #323458;
	margin-right: 10px;
}

.social_box .stars {
	display: block;
	white-space: nowrap;
	font-size: 0;
	line-height: 0;
	cursor: default;
}

.social_box .star {
	display: inline-block;
	width: 13px;
	height: 13px;
	cursor: pointer;
	background: url(../images/ico_star.png) 0 0 no-repeat;
	margin-right: 5px;
}

.social_box .star.active {
	background-image: url(../images/ico_star_active.png);
}

.footer__lizenzi {
	font-size: 12px;
}

@media (max-width: 1024px) {
	.social_box {
		display: block;
		margin-bottom: 20px;
	}
	.social_box .rate {
		margin: 0 0 20px;
	}
}

.title_box, .comment-reply-title {
	display: block;
	color: #323458;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 30px;
}

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

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

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

#toc_container .toc_title {
	display: block;
	font-size: 20px;
	position: relative;
	font-weight: 700;
	color: #323458;
	margin-bottom: 15px;
}

#toc_container li:before {
	background-color: #14bee1;
	border-color: transparent;
}

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

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

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

.widget .questions li {
	display: block;
	position: relative;
	margin-bottom: 15px;
	padding-left: 30px;
}

.widget .questions li:before {
	display: block;
	content: '';
	position: absolute;
	background: url(../images/ico_question.png) 0 0 no-repeat;
	width: 18px;
	height: 18px;
	left: 0;
	top: 0;
}

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

.widget .questions a {
	display: inline-block;
	color: #323458;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.4;
	text-decoration: none;
	transition: 0.2s;
}

.widget .questions a:hover {
	color: #3b82b4;
}

.widget .categories {
	display: block;
	position: relative;
}

.widget .category {
	display: block;
	border-radius: 10px;
	border: 1px solid #e2e2e2;
	box-sizing: border-box;
	padding: 20px;
	text-decoration: none;
	position: relative;
	transition: 0.2s;
	margin-bottom: 20px;
}

.widget .category:hover {
	border: 1px solid #ffcc4a;
	background-color: #ffffff;
}

.widget .category .title {
	display: block;
	font-size: 15px;
	font-weight: 700;
	margin: -8px 0 12px;
	flex-grow: 0;
	position: relative;
	z-index: 2;
}

.widget .category .text {
	display: block;
	color: #323458;
	font-size: 11px;
	font-weight: 400;
	flex-grow: 1;
	padding-right: 60px;
	position: relative;
	z-index: 2;
	margin-bottom: 15px;
}

.widget .category .info {
	display: flex;
	align-items: center;
	position: relative;
	flex-grow: 0;
	z-index: 2;
	font-size: 9px;
	font-weight: 400;
	max-width: 100px;
}

.widget .category .count {
	display: inline-block;
	vertical-align: middle;
	text-align: center;
	width: 25px;
	height: 25px;
	background-color: #66b100;
	border-radius: 50%;
	margin-right: 5px;
	color: #ffffff;
	font-size: 10px;
	line-height: 25px;
	font-weight: 700;
	box-sizing: border-box;
	flex-shrink: 0;
}

.widget .category .thumb {
	display: block;
	position: absolute;
	width: auto;
	height: auto;
	right: 10px;
	bottom: 10px;
	z-index: 1;
	opacity: 1;
}

.widget .button {
	display: inline-block;
	border-radius: 5px;
	background-color: #ffcc4a;
	padding: 10px 25px;
	line-height: 20px;
	font-size: 14px;
	font-weight: 700;
	color: #323458;
	cursor: pointer;
	transition: 0.2s;
}

.widget .button:hover {
	background-color: #ffda7d;
}

.widget .posts {
	display: block;
	position: relative;
	border-radius: 10px;
	border: 1px solid #e2e2e2;
	padding: 20px;
}

.widget .post {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	margin-bottom: 30px;
}

.widget .post:last-child {
	margin-bottom: 0;
}

.widget .post .thumb {
	display: block;
	width: 90px;
	margin-right: 20px;
	flex-shrink: 0;
	flex-grow: 0;
}

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

.widget .post .title {
	display: block;
	color: #323458;
	font-size: 14px;
	font-weight: 700;
	flex-grow: 1;
	text-decoration: none;
	transition: 0.2s;
}

.widget .post .title:hover {
	color: #ffcc4a;
}

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

.footer_box {
	display: block;
	position: relative;
	padding: 50px 0 30px;
	background: url(../images/bg_wave.png) 0 0 repeat-x;
}

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

.footer_box .logo_wrapper {
	display: block;
	position: relative;
	margin-right: 50px;
	flex-grow: 0;
	flex-shrink: 0;
	text-align: left;
	max-width: 230px;
}

.footer_box .copy {
	display: block;
	margin-top: 5px;
	opacity: 0.5;
	color: #323458;
	font-size: 10px;
	font-weight: 400;
}

.footer_box .logo {
	display: inline-block;
	position: relative;
	background: url(../images/ico_logo_small.png) 0 0 no-repeat;
	width: 172px;
	height: 50px;
}

.footer_box .menu {
	display: block;
	position: relative;
	margin-right: 50px;
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 240px;
}

.footer_box .menu.active ul {
	visibility: visible;
	opacity: 1;
}

.footer_box .menu.active .label {
	border-radius: 0 0 10px 10px;
}

.footer_box .menu ul {
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 100%;
	background: linear-gradient(to right, #00bced 0%, #3ec1c6 100%);
	border-radius: 10px 10px 0 0;
	opacity: 0;
	visibility: hidden;
	transition: 0.2s;
}

.footer_box .menu li {
	display: block;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer_box .menu a {
	display: block;
	padding: 8px 30px;
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	color: #ffffff;
	transition: 0.2s;
}

.footer_box .menu a:hover {
	background: linear-gradient(to right, #3ec1c6 0%, #00bced 100%);
}

.footer_box .label {
	display: block;
	position: relative;
	background: linear-gradient(to right, #00bced 0%, #3ec1c6 100%);
	color: #ffffff;
	font-size: 16px;
	font-weight: 600;
	line-height: 20px;
	padding: 15px 60px 15px 30px;
	border-radius: 10px;
	cursor: pointer;
	transition: 0.2s;
	white-space: nowrap;
}

.footer_box .label:before, .footer_box .label:after {
	content: '';
	display: block;
	position: absolute;
	width: 16px;
	height: 4px;
	top: 50%;
	margin-top: -9px;
	right: 30px;
	border-top: 3px solid;
}

.footer_box .label:after {
	margin-top: -2px;
	border-bottom: 3px solid;
}

.footer_box .label:hover {
	background: linear-gradient(to right, #3ec1c6 0%, #00bced 100%);
}

.footer_box .info {
	display: block;
	position: relative;
	margin-right: 50px;
	flex-grow: 1;
	padding-bottom: 20px;
}

.footer_box .info li {
	display: block;
	margin-bottom: 3px;
}

.footer_box .info li:after {
	margin-bottom: 0;
}

.footer_box .info li a {
	display: inline-block;
	color: #13bee1;
	font-size: 11px;
	font-weight: 400;
	transition: 0.2s;
	text-decoration: none;
}

.footer_box .info li a:hover {
	color: #3b82b4;
}

.footer_box .social {
	display: block;
	white-space: nowrap;
	margin-right: 50px;
	position: relative;
	top: -3px;
}

.footer_box .social a {
	display: inline-block;
	vertical-align: middle;
	margin-right: 15px;
}

.footer_box .social a:last-child {
	margin-right: 0;
}

.footer_box .social .ico_1 {
	width: 18px;
	height: 11px;
	background: url(../images/ico_social_1.png) 0 0 no-repeat;
}

.footer_box .social .ico_2 {
	width: 14px;
	height: 14px;
	background: url(../images/ico_social_2.png) 0 0 no-repeat;
}

.footer_box .social .ico_3 {
	width: 14px;
	height: 14px;
	background: url(../images/ico_social_3.png) 0 0 no-repeat;
}

.footer_box .social .ico_4 {
	width: 23px;
	height: 14px;
	background: url(../images/ico_social_4.png) 0 0 no-repeat;
}

@media (max-width: 1024px) {
	.footer_box {
		padding: 30px 0 10px;
	}
	.footer_box .fixed {
		flex-wrap: wrap;
		align-items: center;
		width: auto;
		margin: 0 -10px;
		justify-content: center;
	}
	.footer_box .logo_wrapper, .footer_box .menu, .footer_box .info, .footer_box .social, .footer_box .counter {
		display: block;
		box-sizing: border-box;
		padding: 0 10px;
		order: 1;
		margin: 10px 0;
		flex-grow: 1;
		position: relative;
	}
	.footer_box .logo_wrapper, .footer_box .menu {
		width: 50%;
		max-width: none;
	}
	.footer_box .info {
		order: 2;
		width: 50%;
	}
	.footer_box .social, .footer_box .counter {
		width: 25%;
		order: 2;
	}
}

@media (max-width: 640px) {
	.footer_box .fixed {
		justify-content: center;
	}
	.footer_box .info, .footer_box .logo_wrapper, .footer_box .menu {
		width: 100%;
		text-align: center;
		max-width: 420px;
	}
	.footer_box .menu {
		text-align: left;
	}
	.footer_box .social, .footer_box .counter {
		width: 50%;
		text-align: left;
	}
	.footer_box .counter {
		text-align: right;
	}
}

.flat_pm_outgoing.show.bottom {
	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;
	}
}

.footer__lizen {
	position: absolute;
	font-size: 10px;
}

#menu-item-57153 a {
	color: #5F5E5F;
	padding-top: 15px;
	text-decoration: none;
	cursor: text;
}
/*# sourceMappingURL=style.css.map */
