@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: "Lora", serif;
	font-size: 18px;
	line-height: 1.4;
	color: #282945;
	min-width: 320px;
}

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

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

a:hover {
	color: #6f62c2;
	text-decoration: none;
}

a:hover img {
	opacity: 0.8;
}

input[type="text"], input[type="email"], input[type="password"], input[type="tel"], input[type="submit"], textarea {
	display: inline-block;
	box-sizing: border-box;
	padding: 10px 20px;
	font-size: 14px;
	font-family: "Lora", serif;
	line-height: 18px;
	border-radius: 3px;
	background: #ffffff;
	border: 1px solid #e9ebee;
	vertical-align: middle;
}

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

input[type="submit"] {
	display: inline-block;
	width: auto;
	border-radius: 25px;
	background-color: #ffbd2f;
	box-sizing: border-box;
	text-align: center;
	font-size: 16px;
	font-weight: 400;
	line-height: 21px;
	padding: 12px 40px 13px;
	color: #383c76;
	transition: 0.2s;
	cursor: pointer;
	border: none;
}

input[type="submit"]:hover {
	color: #ffffff;
	background-color: #6f62c2;
}

#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%;
		order: 1;
	}
}

.main_box {
	display: block;
	position: relative;
	overflow: hidden;
	order: 1;
	flex-grow: 1;
}

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

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

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

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

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

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

.header_box .fixed {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
	padding: 30px 20px;
}

.header_box .logo {
	display: block;
	flex-grow: 0;
	flex-shrink: 0;
	margin: 0 20px;
	cursor: pointer;
	background: url("../images/sprite.png") 0px 0px no-repeat;
	background-size: 282px 137px;
	width: 282px;
	height: 50px;
}

.header_box .contacts {
	display: flex;
	flex-grow: 1;
	flex-basis: 50%;
	align-items: center;
}

.header_box .social {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	margin-right: 20px;
}

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

.header_box .nav {
	display: flex;
	align-items: center;
	position: relative;
	top: -2px;
}

.header_box .nav li {
	display: inline-block;
	margin-right: 20px;
}

.header_box .nav li:last-child {
	margin-right: 0;
}

.header_box .nav a {
	display: inline-block;
	font-size: 12px;
	font-weight: 400;
	color: #6f62c2;
}

.header_box .nav a:hover {
	color: #383c76;
}

.header_box .search {
	flex-grow: 1;
	flex-basis: 50%;
	position: relative;
	text-align: right;
}

.header_box .search input[type="text"] {
	display: inline-block;
	width: 100%;
	max-width: 350px;
	box-sizing: border-box;
	background-color: rgba(56, 60, 118, 0.07);
	border-radius: 25px;
	padding-left: 25px;
	padding-right: 50px;
	text-overflow: ellipsis;
}

.header_box .search input[type="submit"] {
	display: inline-block;
	position: absolute;
	top: 50%;
	right: 20px;
	margin-top: -11px;
	padding: 0;
	transition: 0.2s;
	border-radius: 0;
	background: url("../images/sprite.png") -178px -50px no-repeat;
	background-size: 282px 137px;
	width: 22px;
	height: 22px;
}

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

.header_box .ico_facebook {
	background: url("../images/sprite.png") -73px -97px no-repeat;
	background-size: 282px 137px;
	width: 18px;
	height: 17px;
}

.header_box .ico_vk {
	background: url("../images/sprite.png") -78px -82px no-repeat;
	background-size: 282px 137px;
	width: 25px;
	height: 13px;
}

.header_box .ico_twitter {
	background: url("../images/sprite.png") -149px -97px no-repeat;
	background-size: 282px 137px;
	width: 18px;
	height: 15px;
}

.header_box .ico_google {
	background: url("../images/sprite.png") -55px -82px no-repeat;
	background-size: 282px 137px;
	width: 23px;
	height: 15px;
}

.header_box .ico_youtube {
	background: url("../images/sprite.png") -130px -97px no-repeat;
	background-size: 282px 137px;
	width: 19px;
	height: 15px;
}

@media (max-width: 1024px) {
	.header_box .contacts, .header_box .search {
		flex-basis: auto;
	}
	.header_box .social {
		margin-right: 0;
	}
	.header_box .social a {
		margin: 0 10px;
	}
	.header_box .nav {
		display: none;
	}
	.header_box .logo {
		margin-left: 0;
	}
}

@media (max-width: 768px) {
	.header_box .fixed {
		flex-direction: column;
		justify-content: center;
		padding: 20px 15px 25px;
	}
	.header_box .logo {
		order: 1;
		flex-grow: 1;
		margin: 0 0 20px;
	}
	.header_box .search {
		flex-basis: auto;
		width: 100%;
		max-width: 330px;
		box-sizing: border-box;
		padding: 0 5px;
		order: 2;
		margin-bottom: 25px;
	}
	.header_box .contacts {
		order: 3;
		justify-content: center;
	}
}

.breadcrumbs_box {
	display: block;
	position: relative;
	margin-top: -8px;
	margin-bottom: 38px;
	cursor: default;
}

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

.breadcrumbs_box .home:after {
	display: block;
	content: '';
	position: absolute;
	left: 0;
	top: 3px;
	background: url("../images/sprite.png") -178px -72px no-repeat;
	background-size: 282px 137px;
	width: 11px;
	height: 9px;
}

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

.breadcrumbs_box a:hover {
	color: #383c76;
}

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

.cards_box {
	display: block;
	position: relative;
	padding: 50px 0;
	background: linear-gradient(to right, #f1f0f9, #fdf4e2) 0 20px;
}

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

.cards_box .item {
	display: inline-flex;
	flex-direction: column;
	box-sizing: border-box;
	padding: 0 15px;
	margin-bottom: 30px;
	width: 25%;
}

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

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

.cards_box .info {
	display: block;
	flex-grow: 1;
	background-color: #ffffff;
	border-radius: 0 0 10px 10px;
	padding: 20px;
	position: relative;
	overflow: hidden;
}

.cards_box .rating_box {
	margin-bottom: 15px;
}

.cards_box .title {
	display: block;
	font-size: 20px;
	font-weight: 400;
	line-height: 1.3;
	margin-bottom: 15px;
}

.cards_box .more {
	display: inline-block;
	border-radius: 15px;
	font-size: 11px;
	font-weight: 400;
	line-height: 14px;
	padding: 5px 12px;
	color: #383c76;
	background-color: #e8e9f2;
}

.cards_box .more:hover {
	color: #ffffff;
	background-color: #6f62c2;
}

@media (max-width: 1024px) {
	.cards_box {
		padding: 30px 0 0;
	}
	.cards_box .items {
		margin: 0 -10px;
	}
	.cards_box .item {
		padding: 0 10px;
		margin-bottom: 20px;
	}
	.cards_box .title {
		font-size: 18px;
		margin-bottom: 12px;
	}
	.cards_box .rating_box {
		margin-bottom: 12px;
	}
}

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

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

.category_box {
	display: block;
	position: relative;
	padding: 50px 0 20px;
	background: linear-gradient(to right, #f0f6f9, #e7e9fb);
}

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

.category_box .item {
	display: inline-flex;
	width: 50%;
	padding: 0 15px;
	margin: 0 0 30px;
	box-sizing: border-box;
}

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

.category_box .thumb img {
	display: block;
	position: relative;
	width: auto;
	height: auto;
	min-width: 100%;
	min-height: 100%;
}

.category_box .info {
	display: flex;
	background-color: #ffffff;
	position: relative;
	overflow: hidden;
	border-radius: 0 10px 10px 0;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
	padding: 20px;
	flex-grow: 1;
}

.category_box .rating_box {
	margin-bottom: 12px;
}

.category_box .title {
	display: block;
	font-size: 20px;
	font-weight: 400;
	line-height: 1.3;
	margin-bottom: 15px;
}

.category_box .more {
	display: inline-block;
	border-radius: 15px;
	font-size: 11px;
	font-weight: 400;
	line-height: 14px;
	padding: 5px 12px;
	color: #383c76;
	background-color: #e8e9f2;
}

.category_box .more:hover {
	color: #ffffff;
	background-color: #6f62c2;
}

@media (max-width: 1024px) {
	.category_box {
		padding: 30px 0 0;
	}
	.category_box .items {
		margin: 0 -10px;
	}
	.category_box .item {
		padding: 0 10px;
		margin-bottom: 20px;
	}
	.category_box .title {
		font-size: 18px;
	}
	.category_box .thumb {
		width: 180px;
	}
}

@media (max-width: 768px) {
	.category_box .item {
		width: 100%;
	}
	.category_box .thumb {
		width: 230px;
	}
}

@media (max-width: 480px) {
	.category_box .thumb {
		width: 150px;
	}
	.category_box .title {
		font-size: 16px;
	}
}

@media (max-width: 420px) {
	.category_box .thumb {
		width: 120px;
	}
}

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

.comments_box {
	margin-bottom: 40px;
}

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

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

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

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

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

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

.comment .name {
	display: inline-block;
	vertical-align: middle;
	margin-right: 10px;
	color: #5a79bd;
	font-size: 14px;
	font-weight: 400;
}

.comment .comment-reply-link {
	display: inline-block;
	text-decoration: none;
	padding: 2px 10px;
	border-radius: 25px;
	background-color: #6585f0;
	color: #ffffff;
	font-size: 10px;
	position: relative;
	z-index: 3;
	cursor: pointer;
	transition: 0.2s;
}

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

.comment .text {
	color: #30354f;
	font-style: normal;
}

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

.comment .text :last-child {
	margin-bottom: 0;
}

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

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

/* Стили для оформления формы комментариев */
.comment-reply-title {
	display: block;
	color: #68697d;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 30px;
}

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

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

.comment-respond {
	z-index: 1;
	margin-bottom: 40px;
	font-size: 16px;
}

.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;
	width: 100%;
	margin-bottom: 10px;
}

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

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

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

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

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

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

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

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

h1 {
	display: block;
	margin-top: -10px;
	margin-bottom: 30px;
	font-size: 32px;
	font-weight: 700;
	line-height: 1.2;
}

@media (max-width: 1024px) {
	h1 {
		margin-top: -5px;
		font-size: 24px;
	}
}

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

.content_box {
	margin-bottom: 40px;
}

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

.content {
	font-size: 16px;
}

.content h2, .content h3, .content h4, .content h5, .content h6 {
	margin-bottom: 20px;
	font-weight: 400;
	line-height: 1.2;
	color: #383c76;
}

.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 a {
	color: #383c76;
	text-decoration: underline;
}

.content a:hover {
	color: #6f62c2;
	text-decoration: none;
}

.content .table_wrapper {
	overflow: auto;
}

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

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

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

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

.content ul li:before {
	content: '';
	display: block;
	position: absolute;
	top: 4px;
	left: 0;
	background: url("../images/sprite.png") -200px -50px no-repeat;
	background-size: 282px 137px;
	width: 23px;
	height: 18px;
}

.content ol {
	counter-reset: list;
}

.content ol li {
	counter-increment: list;
	min-height: 23px;
}

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

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

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

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

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

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

.content th {
	font-weight: 500;
	color: #383c76;
}

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

.content .title_box {
	margin-top: 0;
	margin-bottom: 20px;
}

@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;
	}
	.content th, .content td {
		font-size: 14px;
		padding: 10px 15px;
	}
}

@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;
	margin-bottom: 25px;
	padding: 25px 30px 25px 80px;
	border-top: 4px solid #bec9e9;
	border-bottom: 4px solid #bec9e9;
	color: #383c76;
}

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

.content blockquote:before {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	margin-top: -28px;
	left: 0;
	background: url("../images/sprite.png") 0px -82px no-repeat;
	background-size: 282px 137px;
	width: 55px;
	height: 55px;
}

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

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

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

.content .wp-caption .wp-caption-text {
	display: block;
	position: relative;
	margin: 0;
	padding: 10px;
	background-color: #f6f7fa;
	font-size: 14px;
	color: #383c76;
}

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

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

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

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

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

.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 .adsbygoogle {
	margin: 0 0 20px;
	overflow: hidden;
	position: relative;
}

.content .wpcmsdev-alert {
	overflow: hidden;
	border: 3px solid #383c76;
	margin: 0 0 25px;
	padding: 20px 30px 15px;
	border-radius: 5px;
	background: transparent;
}

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

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

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

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

.content .wpcmsdev-alert.color-green {
	border-color: #d2f3cb;
	background: transparent;
}

.content .wpcmsdev-alert.color-blue {
	border-color: #c7e8f7;
	background: transparent;
}

.content .wpcmsdev-alert.color-yellow {
	color: #875d00;
	border-color: #ffca54;
	background: transparent;
}

.content .wpcmsdev-alert.color-red {
	color: #f35f58;
	border-color: #ffa4a4;
	background: transparent;
}

@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;
	min-height: 490px;
	padding: 50px 0;
}

.menu_box + .featured_box {
	margin-top: -50px;
}

.featured_box:before {
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 766px;
	height: 588px;
	margin-left: -370px;
	background: url(../images/bg_featured.jpg) 0 0 no-repeat;
	z-index: 1;
}

.featured_box .fixed {
	display: flex;
	align-items: flex-start;
	z-index: 2;
}

.featured_box .title_box {
	margin-bottom: 25px;
}

.featured_box .featured, .featured_box .talks_box {
	display: block;
	position: relative;
	box-sizing: border-box;
	width: 50%;
}

.featured_box .featured {
	padding-right: 220px;
}

.featured_box .featured .title {
	display: block;
	color: #383c76;
	font-size: 34px;
	font-weight: 400;
	line-height: 1.2;
	margin-bottom: 40px;
	margin-right: -150px;
}

.featured_box .featured .items {
	display: block;
	position: relative;
}

.featured_box .featured .item {
	display: block;
	margin-bottom: 40px;
	font-size: 24px;
	font-weight: 400;
	line-height: 1.3;
}

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

.featured_box .talks_box {
	padding-left: 220px;
}

@media (max-width: 1140px) {
	.featured_box .featured .title {
		font-size: 28px;
		margin-bottom: 20px;
	}
	.featured_box .featured .item {
		margin-bottom: 20px;
		font-size: 20px;
	}
}

@media (max-width: 1024px) {
	.featured_box {
		padding: 30px 0;
	}
	.featured_box:before {
		display: none;
	}
	.featured_box .title_box {
		margin-bottom: 15px;
	}
	.menu_box + .featured_box {
		margin-top: -30px;
	}
	.featured_box .featured, .featured_box .talks_box {
		padding: 0;
	}
	.featured_box .featured {
		padding-right: 20px;
	}
	.featured_box .featured .title {
		margin-right: 0;
		font-size: 24px;
	}
	.featured_box .featured .item {
		font-size: 18px;
		margin-bottom: 15px;
	}
	.featured_box .talks_box {
		padding-left: 20px;
	}
}

@media (max-width: 768px) {
	.featured_box .fixed {
		display: block;
	}
	.featured_box .featured, .featured_box .talks_box {
		padding: 0;
		width: auto;
		margin-bottom: 30px;
	}
}

.latest_box {
	display: block;
	position: relative;
	padding: 50px 0;
}

.latest_box:before {
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	left: 50%;
	margin-left: -160px;
	background: url(../images/bg_latest.jpg) 0 0 no-repeat;
	width: 287px;
	height: 421px;
	z-index: 1;
}

.latest_box .fixed {
	z-index: 10;
}

.latest_box .items {
	display: flex;
	height: 321px;
	align-items: center;
}

.latest_box .item {
	display: block;
	box-sizing: border-box;
	width: 50%;
	padding: 20px 150px 20px 0;
}

.latest_box .item:nth-child(2n) {
	padding-right: 0;
	padding-left: 150px;
}

.latest_box .category {
	display: block;
	color: #ff608d;
	font-size: 16px;
	font-weight: 400;
	margin-bottom: 20px;
}

.latest_box .category:hover {
	color: #6f62c2;
}

.latest_box .title {
	display: block;
	font-size: 30px;
	font-weight: 400;
	line-height: 1.1;
	margin-bottom: 20px;
}

.latest_box .text {
	display: block;
	color: #383c76;
	font-size: 16px;
	font-weight: 400;
	margin-bottom: 20px;
}

.latest_box .more {
	display: inline-block;
	border-radius: 15px;
	font-size: 11px;
	font-weight: 400;
	line-height: 14px;
	padding: 5px 15px;
	color: #383c76;
	background-color: #e8e9f2;
}

.latest_box .more:hover {
	color: #ffffff;
	background-color: #6f62c2;
}

@media (max-width: 1024px) {
	.latest_box {
		padding: 30px 0 0;
	}
	.latest_box:before {
		display: none;
	}
	.latest_box .items {
		height: auto;
		flex-wrap: wrap;
		margin: 0 -15px;
	}
	.latest_box .item, .latest_box .item:nth-child(2n) {
		padding: 0 15px;
		margin-bottom: 30px;
	}
	.latest_box .title {
		font-size: 28px;
		margin-bottom: 15px;
	}
	.latest_box .category {
		margin-bottom: 15px;
	}
	.latest_box .text {
		margin-bottom: 18px;
	}
}

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

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

.menu_box {
	display: block;
	position: relative;
	margin-bottom: 50px;
	box-shadow: 0 0 30px rgba(52, 46, 107, 0.4);
	background: linear-gradient(to right, #6585f0 0%, #6585f0 13%, #b871c0 50%, #6f62c2 88%, #6f62c2 100%);
	z-index: 10;
}

.menu_box ul {
	display: flex;
	align-items: center;
	justify-content: center;
}

.menu_box li {
	display: inline-block;
	margin: 0 20px;
}

.menu_box a {
	display: flex;
	align-items: center;
	height: 70px;
	font-size: 18px;
	line-height: 1.2;
	color: #ffffff;
	text-align: center;
	overflow: hidden;
}

.menu_box a:hover {
	opacity: 0.8;
}

.menu_box .menu_btn {
	display: none;
	align-items: center;
	position: relative;
	width: 60px;
	height: 60px;
	transition: 0.2s;
	padding-left: 35px;
	color: #ffffff;
	font-size: 20px;
}

.menu_box .menu_btn:hover:before, .menu_box .menu_btn:hover:after {
	color: white;
}

.menu_box .menu_btn:before, .menu_box .menu_btn:after {
	content: '';
	display: block;
	position: absolute;
	top: 21px;
	right: 0;
	left: 0;
	height: 6px;
	border-top: 2px solid;
	color: #ffffff;
	transition: 0.2s;
	width: 24px;
}

.menu_box .menu_btn:after {
	top: 29px;
	border-bottom: 2px solid;
}

@media (max-width: 1024px) {
	.menu_box {
		margin-bottom: 30px;
	}
	.menu_box li {
		margin: 0 10px;
	}
	.menu_box a {
		height: 60px;
		font-size: 16px;
	}
}

@media (max-width: 768px) {
	.menu_box .menu_btn {
		display: flex;
	}
	.menu_box ul {
		display: none;
		position: absolute;
		left: 0;
		top: 100%;
		background: #6585f0;
		padding: 0 0 3px;
	}
	.menu_box li {
		display: block;
		margin: 0;
		border-top: 1px solid rgba(255, 255, 255, 0.1);
	}
	.menu_box li:hover > a, .menu_box li.active > a {
		background-color: #b871c0;
		opacity: 1;
	}
	.menu_box a {
		display: block;
		height: auto;
		padding: 10px 20px;
		text-align: left;
	}
}

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

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

.pagination span, .pagination a:hover {
	background: #383c76;
	color: #ffffff;
}

.pagination .extend {
	background: transparent;
}

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

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

.popular_box {
	display: block;
	position: relative;
	padding: 50px 0 20px;
}

.main_box .popular_box {
	padding: 0;
	margin: 0 0 10px;
}

.popular_box .title_box {
	justify-content: center;
	text-align: center;
}

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

.popular_box .item {
	display: inline-block;
	width: 50%;
	box-sizing: border-box;
	padding: 0 15px;
	margin-bottom: 30px;
	text-align: center;
}

.popular_box .item_small {
	width: 33.33%;
}

.popular_box .thumb {
	display: inline-block;
	margin-bottom: 15px;
	position: relative;
	width: 180px;
}

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

.popular_box .count {
	display: block;
	width: 32px;
	height: 32px;
	border-radius: 16px;
	background-color: #ff608d;
	top: 10px;
	right: 10px;
	position: absolute;
	color: #ffffff;
	font-size: 14px;
	font-weight: 700;
	line-height: 32px;
	text-align: center;
}

.popular_box .title {
	display: block;
	max-width: 250px;
	margin: 0 auto;
	font-size: 22px;
	font-weight: 400;
	line-height: 1.2;
}

@media (max-width: 1024px) {
	.popular_box {
		padding: 30px 0 0;
	}
	.popular_box .items {
		margin: 0 -10px;
	}
	.popular_box .item {
		padding: 0 10px;
		margin-bottom: 30px;
	}
	.popular_box .title {
		font-size: 20px;
	}
	.popular_box .thumb {
		margin-bottom: 10px;
	}
}

@media (max-width: 768px) {
	.popular_box .items {
		justify-content: center;
	}
	.popular_box .item {
		width: 50%;
	}
}

@media (max-width: 480px) {
	.popular_box .item {
		width: 100%;
	}
	.popular_box .title {
		font-size: 18px;
	}
}

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

.posts_box .post {
	display: flex;
	align-items: center;
	margin-bottom: 30px;
	padding: 0 15px;
	box-sizing: border-box;
	width: 100%;
}

.posts_box .thumb {
	display: block;
	position: relative;
	margin-right: 30px;
	flex-grow: 0;
	flex-shrink: 0;
	width: 230px;
}

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

.posts_box .title {
	display: block;
	font-size: 22px;
	font-weight: 400;
	line-height: 1.2;
	margin-bottom: 13px;
}

.posts_box .text {
	display: block;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.3;
	margin-bottom: 15px;
}

.posts_box .more {
	display: inline-block;
	border-radius: 15px;
	font-size: 11px;
	font-weight: 400;
	line-height: 14px;
	padding: 5px 12px;
	color: #383c76;
	background-color: #e8e9f2;
}

.posts_box .more:hover {
	color: #ffffff;
	background-color: #6f62c2;
}

.posts_box .item {
	display: inline-block;
	width: 50%;
	box-sizing: border-box;
	padding: 0 15px;
	margin-bottom: 30px;
	text-align: center;
}

.posts_box .item .title {
	max-width: 250px;
	margin: 0 auto;
}

.posts_box .item .thumb {
	display: inline-block;
	margin: 0 0 15px;
	position: relative;
	width: 180px;
}

.posts_box .item .thumb img {
	border-radius: 50%;
}

.posts_box .count {
	display: block;
	width: 32px;
	height: 32px;
	border-radius: 16px;
	background-color: #ff608d;
	top: 10px;
	right: 10px;
	position: absolute;
	color: #ffffff;
	font-size: 14px;
	font-weight: 700;
	line-height: 32px;
	text-align: center;
}

@media (max-width: 1024px) {
	.posts_box {
		margin: 0 -10px 30px;
	}
	.posts_box .post {
		padding: 0 10px;
		margin-bottom: 30px;
	}
	.posts_box .item {
		padding: 0 10px;
		margin-bottom: 20px;
	}
	.posts_box .thumb {
		margin-right: 20px;
	}
	.posts_box .title {
		font-size: 20px;
	}
	.posts_box .thumb {
		width: 180px;
	}
}

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

@media (max-width: 480px) {
	.posts_box .post {
		display: block;
	}
	.posts_box .item {
		width: 100%;
	}
	.posts_box .thumb {
		margin: 0 auto 15px;
		width: 230px;
	}
}

.rate_box {
	display: block;
	position: relative;
	text-align: center;
	border-radius: 10px;
	vertical-align: middle;
	background-color: #f4f4f9;
	margin-bottom: 40px;
	padding: 20px;
}

.rate_box .rating_box {
	display: inline-flex;
	vertical-align: middle;
}

.rate_box .label {
	display: inline-block;
	vertical-align: middle;
	margin-right: 5px;
}

@media (max-width: 1024px) {
	.rate_box {
		margin-bottom: 30px;
		font-size: 16px;
	}
}

.rating_box {
	display: flex;
	align-items: center;
}

.rating_box span {
	display: inline-block;
	vertical-align: middle;
	margin-right: 2px;
	cursor: pointer;
	background: url("../images/sprite.png") -183px -97px no-repeat;
	background-size: 282px 137px;
	width: 16px;
	height: 15px;
}

.rating_box span.active {
	background: url("../images/sprite.png") -167px -97px no-repeat;
	background-size: 282px 137px;
	width: 16px;
	height: 15px;
}

.social_box {
	display: block;
	text-align: center;
	margin-bottom: 40px;
}

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

.splash_box {
	display: block;
	border-radius: 10px;
	background-color: #f6f7fa;
	padding: 40px;
	box-sizing: border-box;
	text-align: center;
}

.splash_box .category {
	display: block;
	color: #ff608d;
	font-size: 16px;
	font-weight: 400;
	margin-bottom: 20px;
}

.splash_box .category:hover {
	color: #6f62c2;
}

.splash_box .thumb {
	display: inline-block;
	margin-bottom: 15px;
	position: relative;
	width: 180px;
}

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

.splash_box .count {
	display: block;
	width: 32px;
	height: 32px;
	border-radius: 16px;
	background-color: #ff608d;
	top: 10px;
	right: 10px;
	position: absolute;
	color: #ffffff;
	font-size: 14px;
	font-weight: 700;
	line-height: 32px;
	text-align: center;
}

.splash_box .title {
	display: block;
	max-width: 250px;
	margin: 0 auto 25px;
	font-size: 24px;
	font-weight: 400;
	line-height: 1.3;
}

.splash_box .more {
	display: inline-block;
	width: 100%;
	max-width: 250px;
	border-radius: 25px;
	background-color: #ffbd2f;
	box-sizing: border-box;
	padding: 15px;
	text-align: center;
	font-size: 16px;
	font-weight: 400;
	line-height: 20px;
}

.splash_box .more:hover {
	color: #ffffff;
	background-color: #6f62c2;
}

@media (max-width: 1024px) {
	.splash_box {
		padding: 20px;
	}
	.splash_box .title {
		font-size: 20px;
		margin-bottom: 15px;
	}
	.splash_box .category {
		margin-bottom: 20px;
	}
	.splash_box .thumb {
		margin-bottom: 5px;
	}
	.splash_box .more {
		padding: 10px;
	}
}

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

.talks_box .talk {
	display: flex;
	align-items: center;
	margin-bottom: 30px;
}

.talks_box .talk:last-child {
	margin-bottom: 0;
}

.talks_box .thumb {
	display: block;
	width: 70px;
	margin-right: 20px;
	position: relative;
	flex-grow: 0;
	flex-shrink: 0;
}

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

.talks_box .count {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	overflow: hidden;
	background-color: #ff608d;
	z-index: 2;
	color: #ffffff;
	font-size: 12px;
	font-weight: 700;
	line-height: 26px;
	text-align: center;
}

.talks_box .title {
	display: block;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.3;
}

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

.title_box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: #68697d;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 45px;
}

.title_box .link {
	display: inline-block;
	color: #6f62c2;
	font-size: 12px;
	font-weight: 400;
	text-transform: none;
}

.title_box .link:hover {
	color: #383c76;
}

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

@media (max-width: 640px) {
	.title_box {
		display: block;
	}
	.title_box .link {
		display: block;
		margin-top: 10px;
	}
}

#toc_container {
	display: block;
	position: relative;
	margin-bottom: 25px;
	background: linear-gradient(to right, #f1f0f9, #fdf4e2);
	padding: 25px 30px;
	border-radius: 5px;
}

#toc_container .toc_title {
	display: block;
	position: relative;
	font-size: 28px;
	font-weight: 400;
	color: #383c76;
	margin: -5px 0 15px;
}

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

#toc_container li:before {
	top: 8px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #ff608d;
}

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

.updates_box {
	display: block;
	position: relative;
	overflow: hidden;
	padding: 50px 0;
	background: linear-gradient(to right, #f0f6f9, #e7e9fb);
}

.updates_box .updates {
	display: flex;
	align-items: flex-start;
}

.updates_box .posts_box {
	flex-grow: 1;
	margin-bottom: 0;
}

.updates_box .splash_box {
	width: 350px;
	flex-grow: 0;
	flex-shrink: 0;
	margin-left: 30px;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}

.updates_box .post .more {
	background-color: #ffffff;
}

.updates_box .post .more:hover {
	background-color: #6f62c2;
	color: #ffffff;
}

@media (max-width: 1024px) {
	.updates_box {
		padding: 30px 0;
	}
	.updates_box .splash_box {
		width: 260px;
	}
}

@media (max-width: 800px) {
	.updates_box .updates {
		display: block;
	}
	.updates_box .posts_box {
		margin-bottom: 30px;
	}
	.updates_box .splash_box {
		width: 100%;
		max-width: 350px;
		margin: 0 auto;
	}
}

.widget {
	display: block;
	margin-bottom: 50px;
}

.widget .title_box {
	margin-bottom: 15px;
}

.widget .talks_box .title_box {
	margin-bottom: 25px;
}

.widget .latest_box {
	padding: 0;
}

.widget .latest_box:before {
	display: none;
}

.widget .latest_box .item {
	width: 100%;
	padding: 0;
}

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

.footer_box {
	position: relative;
	overflow: hidden;
	background-color: #383c76;
	color: #ffffff;
	font-size: 16px;
	line-height: 1.3;
}

.footer_box a {
	color: #ffffff;
}

.footer_box a:hover {
	color: #ffbd2f;
}

.footer_box .widgets {
	display: flex;
	position: relative;
	padding: 50px 0 20px;
	margin: 0 -15px;
	flex-wrap: wrap;
}

.footer_box .widgets:before {
	content: '';
	display: block;
	position: absolute;
	left: 15px;
	right: 15px;
	bottom: 0;
	height: 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer_box .widget {
	display: inline-block;
	width: 25%;
	box-sizing: border-box;
	padding: 0 15px;
	margin-bottom: 22px;
}

.footer_box .widget ul {
	display: block;
}

.footer_box .widget li {
	display: block;
	margin-bottom: 8px;
}

.footer_box .footer {
	display: flex;
	align-items: center;
	padding: 20px 0;
}

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

.footer_box .logo {
	display: inline-block;
	margin-bottom: 15px;
	background: url("../images/sprite.png") 0px -50px no-repeat;
	background-size: 282px 137px;
	width: 178px;
	height: 32px;
}

.footer_box .nav {
	display: block;
}
.footer_box {
		z-index: 0;
	}
.footer_box .nav li {
	display: inline-block;
	vertical-align: middle;
	font-size: 12px;
	margin-right: 20px;
}

.footer_box .nav li:last-child {
	margin-right: 0;
}

.footer_box .copyright {
	display: block;
	flex-grow: 1;
	margin-right: 40px;
	opacity: 0.5;
	color: #ebf0ff;
	font-size: 12px;
	font-weight: 400;
}

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

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

.footer_box .counters {
	margin-right: 40px;
	flex-grow: 0;
	flex-shrink: 0;
}

.footer_box .agreement {
	font-size: 12px;
	margin-right: 40px;
}

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

.footer_box .social a {
	display: inline-block;
	margin-right: 10px;
}

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

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

.footer_box .ico_vk {
	background: url("../images/sprite.png") -223px -50px no-repeat;
	background-size: 282px 137px;
	width: 25px;
	height: 15px;
}

.footer_box .ico_facebook {
	background: url("../images/sprite.png") -55px -97px no-repeat;
	background-size: 282px 137px;
	width: 18px;
	height: 17px;
}

.footer_box .ico_twitter {
	background: url("../images/sprite.png") -111px -97px no-repeat;
	background-size: 282px 137px;
	width: 19px;
	height: 15px;
}

.footer_box .ico_google {
	background: url("../images/sprite.png") -248px -50px no-repeat;
	background-size: 282px 137px;
	width: 24px;
	height: 15px;
}

.footer_box .ico_youtube {
	background: url("../images/sprite.png") -91px -97px no-repeat;
	background-size: 282px 137px;
	width: 20px;
	height: 15px;
}


.link-block1{width:46%;margin:20px 5px;padding:5px;height:300px;float:left; border-radius:5px;background-image:linear-gradient(to top, rgba(171, 171, 171, 1) 30%, rgba(255, 255, 255, .25) 80%), url(https://1alopeciya.ru/wp-content/uploads/2018/03/1.-krasivye-lokony.jpg);background-size:contain; background-repeat:no-repeat;}
.link-block2{width:46%;margin:20px 5px;padding:5px;height:300px;float:left; border-radius:5px;background-image:linear-gradient(to top, rgba(171, 171, 171, 1) 30%, rgba(255, 255, 255, .25) 80%), url(https://1alopeciya.ru/wp-content/uploads/2018/01/zaglavnyj-ris.-vypadenie-volos-chasto-obuslovlena-nedostatkom-nuzhnyh-veshchestv.jpg);background-size:contain; background-repeat:no-repeat;}
.link-block3{width:46%;margin:20px 5px;padding:5px;height:300px;float:left; border-radius:5px;background-image:linear-gradient(to top, rgba(171, 171, 171, 1) 30%, rgba(255, 255, 255, .25) 80%), url(https://1alopeciya.ru/wp-content/uploads/2018/01/1-poterja-izbytochnogo-kolichestva-volos-vynuzhdaet-devushek-iskat-prichiny-javlenija.jpg);background-size:contain; background-repeat:no-repeat;}
.link-block4{width:46%;margin:20px 5px;padding:5px;height:300px;float:left; border-radius:5px;background-image:linear-gradient(to top, rgba(171, 171, 171, 1) 30%, rgba(255, 255, 255, .25) 80%), url(https://1alopeciya.ru/wp-content/uploads/2018/01/1-repchatyj.jpg);background-size:contain; background-repeat:no-repeat;}
.link-block5{width:46%;margin:20px 5px;padding:5px;height:300px;float:left; border-radius:5px;background-image:linear-gradient(to top, rgba(171, 171, 171, 1) 30%, rgba(255, 255, 255, .25) 80%), url(https://1alopeciya.ru/wp-content/uploads/2018/01/kartinka-1_tonkie-volosy-sovershenno-ne-povod-dlja-otchajanija.jpg);background-size:contain; background-repeat:no-repeat;}
.link-block6{width:46%;margin:20px 5px;padding:5px;height:300px;float:left; border-radius:5px;background-image:linear-gradient(to top, rgba(171, 171, 171, 1) 30%, rgba(255, 255, 255, .25) 80%), url(https://1alopeciya.ru/wp-content/uploads/2018/01/kartinka-1.-istonchenie-volos-vypadenie-volos.jpg);background-size:contain; background-repeat:no-repeat;}
.link-block7{width:46%;margin:20px 5px;padding:5px;height:300px;float:left; border-radius:5px;background-image:linear-gradient(to top, rgba(171, 171, 171, 1) 30%, rgba(255, 255, 255, .25) 80%), url(https://1alopeciya.ru/wp-content/uploads/2018/01/kartin4-1.jpg);background-size:contain; background-repeat:no-repeat;}
.link-block8{width:46%;margin:20px 5px;padding:5px;height:300px;float:left; border-radius:5px;background-image:linear-gradient(to top, rgba(171, 171, 171, 1) 30%, rgba(255, 255, 255, .25) 80%), url(https://1alopeciya.ru/wp-content/uploads/2018/01/ris.1-antiandrogennye-preparaty.jpg);background-size:contain; background-repeat:no-repeat;}
.link-block9{width:46%;margin:20px 5px;padding:5px;height:300px;float:left; border-radius:5px;background-image:linear-gradient(to top, rgba(171, 171, 171, 1) 30%, rgba(255, 255, 255, .25) 80%), url(https://1alopeciya.ru/wp-content/uploads/2018/01/1.-alopecija-u-muzhchin.jpg);background-size:contain; background-repeat:no-repeat;}
.link-heading{font-size:16px;line-height:20px;color:#000;font-family:bold-ysans,sans-serif;font-weight:bold;text-align:left;}
.link-description{opacity:0.7;font-size:14px;line-height:20px;font-family:bold-ysans,sans-serif;text-align:left;color:#333;}
.link-url{color:#333;text-transform:uppercase;font-size:14px;font-weight:bold;font-family:bold-ysans,sans-serif; margin:10px 0;text-align:center;}
.link-text {margin-top:160px;}

@media (max-width: 1024px) {
	.footer_box .widgets {
		padding: 20px 0 0;
		margin: 0;
	}
	.footer_box .widget {
		margin-bottom: 12px;
	}
	.footer_box .footer {
		flex-wrap: wrap;
		justify-content: center;
	}
	.footer_box .logo_wrapper, .footer_box .copyright {
		width: 50%;
		flex-grow: 1;
		box-sizing: border-box;
		margin: 0 0 20px;
	}
	.footer_box .counters, .footer_box .agreement {
		margin-right: 20px;
	}
	.footer_box .copyright {
		text-align: right;
	}
}

@media (max-width: 768px) {
	.footer_box .widgets {
		margin: 0 -10px;
	}
	.footer_box .widget {
		width: 50%;
		padding: 0 10px;
	}
}

@media (max-width: 480px) {
	.footer_box .logo_wrapper, .footer_box .copyright, .footer_box .counters, .footer_box .agreement {
		width: 100%;
		text-align: center;
		margin: 0 auto 20px;
	}
	.footer_box .counters {
		margin-bottom: 15px;
	}
}

@media (max-width: 420px) {
	.footer_box .widget li {
		margin-bottom: 4px;
		font-size: 12px;
	}
}

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;
	}
	}
	.flat_pm_outgoing {
    z-index: 999999;
}
	
	.footer_box {
		z-index: 0!important;
	}

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

