/*
Theme Name: ideivyrobiv
Text Domain: Тема для статейников
Author: Славка
*/

* {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	outline: none;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
	display: block;
}
@font-face {
	font-family: 'Rubik';
	src: url('/wp-content/themes/ideivyrobiv/rubik/Rubik-Regular.eot');
	src: local('☺'),
		url('/wp-content/themes/ideivyrobiv/rubik/Rubik-Regular.woff') format('woff'),
		url('/wp-content/themes/ideivyrobiv/rubik/Rubik-Regular.ttf') format('truetype'),
		url('/wp-content/themes/ideivyrobiv/rubik/Rubik-Regular.svg') format('svg');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Rubik';
	src: url('/wp-content/themes/ideivyrobiv/rubik/Rubik-Medium.eot');
	src: local('☺'),
		url('/wp-content/themes/ideivyrobiv/rubik/Rubik-Medium.woff') format('woff'),
		url('/wp-content/themes/ideivyrobiv/rubik/Rubik-Medium.ttf') format('truetype'),
		url('/wp-content/themes/ideivyrobiv/rubik/Rubik-Medium.svg') format('svg');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}
body {
	font-size: 15px;
	line-height: 1.6;
	font-weight: 400;
	font-family: 'Rubik';
	width: 100%;
	color: #151515;
}
a {
	color: #dfa974;
}
a:hover {
	text-decoration: none;
}
a,
input {
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.container {
	margin: 0 auto;
	padding: 0 15px;
}
input,
textarea,
select,
a {
	outline: none;
}
img {
	max-width: 100%;
	height: auto;
	vertical-align: top;
}
.btn,
input[type='submit'] {
	background: #dfa974;
	color: #fff;
	padding: 20px 55px;
	font-size: 18px;
	text-transform: uppercase;
	font-weight: 500;
	letter-spacing: 2px;
	text-decoration: none;
}
.btn:hover,
input[type='submit']:hover {
	color: #ffffff;
	background: #df7e20;
}
input[type='submit'] {
	border: none;
	cursor: pointer;
}
/* Header
-----------------------------------------------------------------------------*/
header {
	background: #fff;
	box-shadow: 4px 0 20px -5px rgb(0 0 0 / 20%);
	padding: 10px 0;
}
header .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
header .logo {
	position: relative;
	height: 100%;
	flex-shrink: 0;
}
header .logo a {
	position: relative;
	z-index: 2;
}
header .logo img {
    width: 230px;
    height: 59px;
}
header nav ul {
	display: flex;
	margin-bottom: 0;
}
header nav ul li {
	list-style: none;
	margin-right: 35px;
	position: relative;
}
header nav ul li:last-child {
	margin-right: 0;
}
header nav > ul > li > a {
	font-size: 18px;
	line-height: 1.34;
	text-transform: none;
	color: #151515;
	display: block;
	text-decoration: none;
	position: relative;
}
header nav ul li:hover ul {
	-webkit-transition-delay: 0s;
	-o-transition-delay: 0s;
	transition-delay: 0s;
	margin-top: 0px;
	visibility: visible;
	opacity: 1;
}
@media (min-width: 992px) {
	header nav ul li ul {
		visibility: hidden;
		opacity: 0;
		top: 100%;
		position: absolute;
		text-align: left;
		border-top: 2px solid #dfa974;
		-webkit-box-shadow: 0 2px 10px -2px rgb(0 0 0 / 10%);
		box-shadow: 0 2px 10px -2px rgb(0 0 0 / 10%);
		padding: 0px 0;
		margin-top: 20px;
		margin-left: 0px;
		background: #fff;
		-webkit-transition: 0.2s 0s;
		-o-transition: 0.2s 0s;
		transition: 0.2s 0s;
		display: flex;
		flex-wrap: wrap;
		z-index: 9;
	}
	header nav ul li ul li {
		list-style: none;
		padding: 0;
		margin: 0;
		white-space: nowrap;
		width: 100%;
	}
	header nav ul li ul li:last-child {
		margin-bottom: 0;
	}
	header nav ul li ul li a {
		padding: 9px 20px;
		display: flex;
		color: #151515;
		text-decoration: none;
	}
	header nav ul li ul li a:hover {
		background: #f8f9fa;
	}
}
.mobile_nav_btn {
	display: none;
}
header .search_btn {
	height: 28px;
	width: 28px;
	border-radius: 0;
	transition: 0.3s;
	background: transparent;
	position: relative;
	cursor: pointer;
	vertical-align: middle;
	-webkit-transform: rotate(-135deg);
	transform: rotate(-135deg);
}

header .search_btn:before,
header .search_btn:after {
	display: inline-block;
	border-radius: 0;
	transition: 0.3s;
	background: transparent;
	content: '';
	position: absolute;
	width: 45%;
	top: 0;
	bottom: 0;
	margin: auto;
}
header .search_btn:before {
	height: 2px;
	left: 0;
	background: #151515;
	border-radius: 2.85714px;
	width: 10px;
}
header .search_btn:after {
	right: 0;
	border-radius: 50%;
	width: 14px;
	height: 14px;
	border: 2px solid #151515;
	-webkit-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
}
header .search_btn:before:hover,
header .search_btn:after:hover {
	background: #dfa974;
}
/* Middle
-----------------------------------------------------------------------------*/
.breadcrumps {
	background: #f5f5f5;
	padding: 10px 0;
	margin-bottom: 40px;
}
.breadcrumps a {
	text-decoration: none;
	color: #777777;
}
.breadcrumps a:hover {
	color: #dfa974;
}
.breadcrumps span.arrow {
	background: url(images/arrow_bread.png) no-repeat scroll 0 0 transparent;
	display: inline-block;
	width: 8px;
	height: 6px;
	margin: 0 4px 0 5px;
	position: relative;
	top: -1px;
}
.breadcrumps span.arrow:last-child {
	-moz-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	-webkit-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	transform: rotate(90deg);
}
.top_article button {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	width: 80px;
	height: inherit;
}
.top_article .item {
	height: 560px;
	color: #fff;
}
.top_article .item .container {
	height: 560px;
	display: flex;
	flex-wrap: wrap;
	align-content: center;
}
.top_article .item.leaves {
	background: url(images/front/bg_leaves.jpg) no-repeat scroll center 0
		transparent;
}
.top_article .item .title {
	text-decoration: none;
	font-size: 6em;
	color: #ffff;
	line-height: 1;
}
.top_article .item .description {
	font-size: 20px;
	letter-spacing: 3px;
	margin: 30px 0 50px;
	width: 100%;
}
.top_article .arrow {
	background: url(images/arrow.png) no-repeat scroll 0 0 transparent;
	position: absolute;
	top: 50%;
	margin-top: -20px;
	width: 49px;
	height: 40px;
	z-index: 99;
	cursor: pointer;
}
.top_article .arrow.prev {
	left: 30px;
	-moz-transform: rotate(180deg); /* Для Firefox */
	-ms-transform: rotate(180deg); /* Для IE */
	-webkit-transform: rotate(180deg); /* Для Safari, Chrome, iOS */
	-o-transform: rotate(180deg); /* Для Opera */
	transform: rotate(180deg);
}
.top_article .arrow.next {
	right: 30px;
}

.site_menu {
	padding: 60px 0 40px;
}
.title_block {
	text-align: center;
	margin-bottom: 45px;
}
.title_block .title_block_small {
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #dfa974;
}
.title_block .title_block_big {
	font-size: 44px;
	color: #19191a;
	line-height: 58px;
}
.site_menu .content_meu {
	display: flex;
	justify-content: center;
}
.site_menu .content_meu .item {
	width: 200px;
	margin-bottom: 30px;
}
.site_menu .content_meu .item:not(:last-child) {
	margin-right: 30px;
}
.site_menu .content_meu .item a {
	display: block;
	color: #fff;
	text-decoration: none;
	text-align: center;
	padding: 148px 10px 20px;
	font-size: 24px;
}
.site_menu .content_meu .item a:hover {
	text-decoration: underline;
}
.site_menu .content_meu .item.crafts a {
	background: url(images/front/crafts.png) no-repeat scroll center 22px #dfa974;
}
.site_menu .content_meu .item.creation a {
	background: url(images/front/creation.png) no-repeat scroll center 22px
		#dfa974;
}
.site_menu .content_meu .item.hobbi a {
	background: url(images/front/hobbi.png) no-repeat scroll center 22px #dfa974;
}

.about_site {
	padding: 60px 0 60px;
	border-bottom: 1px solid #e5e5e5;
}
.about_site .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.about_site .about-text {
	max-width: 560px;
	margin-right: 30px;
	text-align: center;
}
.about_site .about-text a {
	text-transform: uppercase;
	position: relative;
	color: #000;
	text-decoration: none;
	padding-bottom: 5px;
}
.about_site .about-text a:after {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	background: #dfa974;
	content: '';
	transition: all 0.3s;
}
.about_site .about-text a:hover:after {
	opacity: 0;
}
.about_site .about-pic {
	display: flex;
}
.about_site .about-pic .about_row:first-child {
	margin-right: 30px;
}


.row-line {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px;
}
.row-line .row-item {
	padding: 0 15px;
	width: 33.33%;
	margin-bottom: 30px;
}
.feedback form {
	text-align: center;
	position: relative;
}
.wpcf7 .ajax-loader {
	position: absolute;
	left: 50%;
	bottom: 12px;
	margin: 0;
	margin-left: -12px;
}
form input[type='text'],
form textarea,
form input[type='email'] {
	display: block;
	width: 100%;
	min-height: 60px;
	padding: 16px 25px;
	font-size: 15px;
	font-weight: 400;
	line-height: 26px;
	letter-spacing: 0.075em;
	color: #777777;
	background-color: #ffffff;
	background-image: none;
	border-radius: 0;
	-webkit-appearance: none;
	transition: 0.3s ease-in-out;
	border: 1px solid #e1e1e1;
	font-family: Roboto;
}
form input[type='text']:focus,
form textarea:focus,
form input[type='email']:focus {
	border: 1px solid #cccccc;
}
form span[data-name='your-name'] {
	margin-right: 30px;
}
form span[data-name='your-name'],
form span[data-name='your-email'] {
	width: calc(50% - 18px);
	margin-bottom: 30px;
	display: inline-block;
}
form span[data-name='your-message'] {
	margin-bottom: 30px;
	display: block;
}
form textarea {
	height: 120px;
	resize: vertical;
}

.category {
	margin-top: 40px;
}

h1,
h2,
h3,
h4 {
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: 0.025em;
	margin-bottom: 24px;
}
strong {
	font-weight: 500;
}
ul,
ol {
	list-style: none;
	padding: 0;
	margin: 0;
	margin-bottom: 24px;
}
p {
	margin-bottom: 24px;
	line-height: 1.5;
}
h1 {
	margin-bottom: 40px;
}
.article_content {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.article_content main {
	width: calc(100% - 400px);
}
article {
	color: #151515;
	letter-spacing: 0;
	font-size: 18px;
}
article h1 {
	font-size: 40px;
}
article h2 {
	font-size: 30px;
}
article h3 {
	font-size: 26px;
}
article h4 {
	font-size: 22px;
}

article blockquote {
	background: url(images/icon_blockquote.png) no-repeat scroll 20px center
		rgba(223, 169, 116, 0.2);
	padding: 20px 25px 20px 90px;
	border-left: 5px solid #dfa974;
	border-right: 5px solid #dfa974;
	margin-bottom: 24px;
}
article blockquote p:last-child {
	margin-bottom: 0;
}
article ul,
article ol {
	padding-left: 24px;
}
article ul li {
	text-indent: -24px;
	padding-left: 24px;
}
article ol ul {
	padding-left: 0;
}
article ul li:before,
article ol ul li:before {
	position: relative;
	display: inline-block;
	left: 0;
	top: -1px;
	content: '';
	height: 9px;
	width: 9px;
	margin-right: 15px;
	border-radius: 50%;
	background: #dfa974;
}
.about_site article blockquote {
	background: rgba(255, 231, 69, 0.2);
	border-left: 5px solid #dfa974;
	border-right: 5px solid #dfa974;
}
.about_site article ul li:before {
	background: #dfa974;
}
article ol {
	counter-reset: point;
}
article ol li {
	position: relative;
	padding-left: 39px;
	margin-bottom: 10px;
}
article ol li:before {
	content: counter(point);
	counter-increment: point 1;
	position: absolute;
	width: 27px;
	height: 27px;
	text-align: center;
	background: #dfa974;
	color: #fff;
	margin-right: 10px;
	border-radius: 50%;
	left: 0;
}

.diplomas_certificates div {
	display: flex;
	flex-wrap: wrap;
}
.diplomas_certificates div img {
	max-height: 300px;
	margin-right: 20px;
}
.diplomas_certificates div img {
	margin-bottom: 20px;
}
.diplomas_certificates {
	margin-bottom: 20px;
}

.comments-area .title_h3_style {
	margin-bottom: 30px;
}
.title_h3_style {
	font-size: 26px;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: 0.025em;
	margin-bottom: 20px;
}
.comment-respond {
	margin-top: 40px;
}
.comment-respond label {
	display: block;
	margin-bottom: 6px;
}
.comment-respond .comment-form-author {
	margin: 20px 0 25px;
}
.comment_group .comment {
	border: 1px solid #e1e1e1;
	padding: 20px;
	margin-bottom: 30px;
	transition: all 0.25s;
}
.comment_group .comment:hover {
	box-shadow: 0 0 25px #e1e1e1;
	border-color: transparent;
}
.comment_group .comment_author {
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 7px;
	letter-spacing: 0.5px;
}
.comment_group .comment_author span {
	font-size: 12px;
	font-weight: 400;
	color: #5555;
	letter-spacing: 0;
	margin-left: 2px;
}
.comment_group .comment .comment_text {
	font-size: 16px;
}
.comment_group .comment p:last-child {
	margin-bottom: 0;
}
.comment_group .form-submit {
	margin-top: 20px;
}
.share_article_social {
	text-align: center;
	margin-top: 30px;
}
.share_article_social .title_social {
	font-size: 22px;
	margin-bottom: 10px;
	font-weight: 500;
}
article .share_article_social ul li {
	text-indent: 0;
}
article .share_article_social ul li:before {
	display: none;
}
.views_ideivyrobiv_post.front_post {
	border-top: 1px solid #e5e5e5;
	padding-top: 60px;
}
.views_ideivyrobiv_post .content_ideivyrobiv_views {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px;
}
.views_ideivyrobiv_post .views_ideivyrobiv_row {
	padding: 0 15px;
	margin-bottom: 30px;
	width: 33.33%;
}
.views_ideivyrobiv_post.sitebar_post .views_ideivyrobiv_row {
	padding: 0;
	width: 100%;
}
.views_ideivyrobiv_post .views_ideivyrobiv_row a {
	position: relative;
	display: block;
	text-decoration: none;
	border-radius: 12px;
	overflow: hidden;
	background: rgb(67 81 90 / 6%);
}
.views_ideivyrobiv_post .views_ideivyrobiv_row a:hover {
	background: #dfa974;
}
.views_ideivyrobiv_post .views_ideivyrobiv_row img {
	border-radius: 12px;
}
.views_ideivyrobiv_post .views_ideivyrobiv_row .title {
	font-size: 16px;
	line-height: 23px;
	padding: 20px 20px;
	display: block;
	color: #000;
	font-weight: 400;
}
.views_ideivyrobiv_post .views_ideivyrobiv_row a:hover .title {
	color: #fff;
}
/*Pager*/
.pager a,
.pager span {
	padding: 8px 15px;
	margin: 0 2px 5px 2px;
	display: inline-block;
}
.pager a {
	border: 1px solid #cccccc;
	color: #404040;
	text-decoration: none;
}
.pager span,
.pager a:hover {
	background: #dfa974;
	border: 1px solid #dfa974;
	color: #ffffff;
}

.author_content {
	margin-top: 40px;
}
.author_content .information {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 30px;
}
.author_content .information .author_avar {
	flex-shrink: 0;
	margin-right: 20px;
}
.author_content .information .author_avar img {
	border-radius: 50%;
}
.author_content .information .biography_author {
	width: calc(100% - 135px);
}

.article_navigation {
	background: #dfa974;
	padding: 20px;
	color: #fff;
	margin-bottom: 20px;
}
.article_navigation .title_navigation {
	font-size: 22px;
	margin-bottom: 15px;
}
.article_navigation nav ol {
	padding-left: 0;
	margin-bottom: 0;
}
.article_navigation nav ol li {
	padding-left: 0;
	list-style: decimal;
	list-style-position: inside;
	margin-bottom: 5px;
}
.article_navigation nav ol li:last-child {
	margin-bottom: 0;
}
.article_navigation nav ol li:before {
	display: none;
}
.article_navigation nav ol li a {
	color: #fff;
	text-decoration: none;
}
.article_navigation nav ol li a:hover {
	text-decoration: underline;
}
.a2a_kit {
	text-align: center;
}
.a2a_kit a {
	display: inline-block !important;
	float: none !important;
}
/*Верстка сайт бара*/
aside {
	width: 344px;
}
aside .title_releted_block {
	font-weight: 500;
	font-size: 23px;
	text-align: center;
	margin-bottom: 20px;
}
.bottom_post .title_releted_block {
	font-weight: 500;
	font-size: 26px;
	margin-bottom: 20px;
	margin-top: 30px;
}
/*Страница контакты*/
.team_project {
	display: flex;
	flex-wrap: wrap;
}
.team_project .team_item {
	width: 25%;
	padding: 0 15px;
	text-align: center;
	margin-bottom: 20px;
}
.team_project .team_item img {
	border-radius: 50%;
}
.team_project .team_item .team_item_author {
	margin: 15px 0;
}
/*Верстка формы*/

.tiled-gallery,
.dgwt-jg-gallery {
	margin-bottom: 18px;
	margin-top: -5px;
}

footer {
    background: #222736;
    color: #fff;
    padding: 20px 0 20px;
    margin-top: 40px;
}
footer .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
footer .copyrait {
	font-size: 13px;
	margin-top: 15px;
}
footer a:hover,
footer .navigation_footer ul li a:hover,
footer a.mail:hover {
	color: #dfa974;
	text-decoration: none;
}
footer .logo {
	background: url(images/logo_footer.png) no-repeat scroll 0 0 transparent;
	width: 230px;
	height: 59px;
}
footer a.mail {
	color: #fff;
	text-decoration: none;
	display: flex;
	align-items: center;
	flex-shrink: 0;
}
footer a.mail:before {
	content: '';
	background: url(images/icon_mail.png) no-repeat scroll center center
		rgba(255, 255, 255, 0.1);
	width: 35px;
	height: 35px;
	flex-shrink: 0;
	margin-right: 12px;
}


footer .navigation_footer div {
	font-weight: 500;
	font-size: 24px;
	margin-bottom: 16px;
}
footer .navigation_footer ul {
	margin-bottom: 0;
}
footer .navigation_footer ul li {
	margin-bottom: 5px;
}

footer .navigation_footer ul li a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
}

.search_box {
	position: fixed;
	width: 100%;
	background: #f5f5f5;
	top: 0;
	left: 0;
	z-index: 999;
	display: none;
	height: 100%;
}
.search_box .inside_search_box {
	height: 100%;
	align-items: center;
	display: flex;
}
.search_box .container {
	position: relative;
	width: 100%;
}
.search_box .container .close {
	cursor: pointer;
	width: 40px;
	height: 40px;
	margin-bottom: 40px;
	margin-left: auto;
	position: relative;
	cursor: pointer;
}
.search_box .container .close:after {
	content: '';
	height: 100%;
	width: 2px;
	position: absolute;
	background: #cccccc;
	top: 10px;
	left: 20px;
}
.search_box .container .close:before {
	content: '';
	height: 100%;
	width: 2px;
	position: absolute;
	background: #cccccc;
	top: -5px;
	left: 20px;
}
.search_box .container .close:before {
	transform: rotate(45deg) translate(4px, 4px);
}
.search_box .container .close:after {
	transform: rotate(-45deg) translate(7px, -7px);
}
.search_box .container form {
	display: flex;
}

.special_gallery {
	position: fixed;
	left: 0;
	bottom: 0;
	z-index: -1;
	opacity: 0;
	background: #59737d;
	width: 100%;
	height: 100%;
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	padding: 20px;
	text-align: center;
	-webkit-transition: opacity 0.3s ease-in-out;
	-moz-transition: opacity 0.3s ease-in-out;
	-ms-transition: opacity 0.3s ease-in-out;
	-o-transition: opacity 0.3s ease-in-out;
	transition: opacity 0.3s ease-in-out;
}
.special_gallery .container {
	width: 100%;
}
.special_gallery .close {
	background: transparent
		url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAYAAACM/rhtAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NTUwMDQ1RTQ2QkQ0MTFFQjlCMUZCNjQ5QjU0MzBFQzAiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NTUwMDQ1RTU2QkQ0MTFFQjlCMUZCNjQ5QjU0MzBFQzAiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo1NTAwNDVFMjZCRDQxMUVCOUIxRkI2NDlCNTQzMEVDMCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo1NTAwNDVFMzZCRDQxMUVCOUIxRkI2NDlCNTQzMEVDMCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pojk/tcAAAGuSURBVHjaxJjPSsQwEMbTInj0RXwCQfDgUS97FHwD38W7INgirMIigt2WZb14qgs+jgh6ME5wg7E00/yZSQa+Q5ts+tsvzUxSIaUUWx2Dbo3rXKpA5/pa39wHfcnf6DLC1fIvjjTgCehT/o8uM5yOM9XwKMejywynYqMad0GNpcNzAri55dmvoD2zY5PBSZtzPag0F0kOyApxrhiuYlOrBJA2uDcTzgbI7WSNOLcz7I8NZINsuafVFVDpiRASc876O5eBKZzEVquIBcScdMmTdyHO+QKGOlnHwPkC+q5ubFoLLkAsT7YheY4DEHPyGnQ5Vb5SAGKQXnmOE9AVsg+FowBUukLgFrHjlyI+3pG2j+jRmXYlVLVbcMNFQ1LDPSBtbSrAuUP5stXuNTegT/ki2U+ybjYpIF3hbiJq6yoGkvwMQb0zD3UupHwFQYa+c6HpyRvSF64nqN1ekKF5jgtyPQVYJYDzctJ1WgvJ8/FoMk+SnyGIzzil6nBPeYYgnu4XtWFdjmwTN6AD0LdIE6egZuT+Qv+Dw0TvnI+Ts+EimW075ILTUt/ML/T1jwADAJWDdk9pBEcEAAAAAElFTkSuQmCC)
		0 0 no-repeat;
	position: absolute;
	width: 40px;
	height: 40px;
	top: 40px;
	right: 40px;
	cursor: pointer;
}

.special_gallery.show {
	z-index: 999;
	opacity: 1;
}
.special_gallery .special_gallery_title {
	color: #ffffff;
	font-size: 23px;
	margin-bottom: 0;
}
@media (max-width: 992px) {
	.special_gallery .special_gallery_title {
		font-size: 16px;
		font-weight: 500;
		line-height: 20px;
	}
	.special_gallery .special_gallery_description {
		font-size: 13px;
	}
	.special_gallery .special_gallery_content {
		padding: 0 30px;
	}
	.special_gallery .special_gallery_content a {
		padding: 0 !important;
	}
}

.special_gallery .special_gallery_description {
	color: #fff;
	margin-bottom: 15px;
}
.special_gallery .special_gallery_content {
	padding: 0 50px;
}
.special_gallery .special_gallery_content a {
	padding: 0 15px;
	text-align: center;
	/* height: 200px;*/
	overflow: hidden;
}
.special_gallery .special_gallery_content a img {
	display: inline-block;
}
.special_gallery .special_gallery_content button.slick-arrow {
	background: transparent no-repeat 0 0
		url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAmCAYAAADAzmuWAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAxBpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6ODcwMDkyRTQ2NTdEMTFFQjg3RDM4MjlENzQ5QTZFRUQiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6ODcwMDkyRTM2NTdEMTFFQjg3RDM4MjlENzQ5QTZFRUQiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiBXaW5kb3dzIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9IkIxNTBBMDQ5N0U5MDc1NkUwMjRGM0ZGQkY2QTk1MEY3IiBzdFJlZjpkb2N1bWVudElEPSJCMTUwQTA0OTdFOTA3NTZFMDI0RjNGRkJGNkE5NTBGNyIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PlO//CYAAAFgSURBVHjaYvj//z8PEG/9DwGPgNgciBkoxSBixX9MYEcNgx/8xw6cKDGYiYGB4RYDdrAXiJ0ZyAVA06WB+OV/3MCP3KAAYRkChgeQazAISwDxQzyGR5JrMAgLAfF9PIYHkmswCPMB8U1KXY5LgpDL48g1GIQFCbg8iVyDQZgTiC/jMTybXINBmAOIz+ExPJNcg2H4OCkuJ8VgViA+j8fwXHINBmFGAi6vJNdgmOFH8RheTa7BMLwbj+EllNYU83EYfJeJgTLwHYc4MwsFhq4F4iAccvPIDYIdeMK3k9zIwxdp7eQmt8N4DK0hN4PswmNoFblZ+iAeQ8vJLYSIysKkGAwqLs/iMbSQnIKeUAGfQ07VxEagYE8npzIl5NI4cqp/ULV/DY+haeQ0WEDV/T1quBTZYEKGxpDbKNxMzcYgMQ1vf0ob3hewlKc+QLyRoioAaLooUqn1GohdqNG5AQgwANabqfuWKw30AAAAAElFTkSuQmCC');
	border: none;
	text-indent: -9999px;
	overflow: hidden;
	width: 22px;
	height: 38px;
	position: absolute;
	top: 50%;
	margin-top: -19px;
	cursor: pointer;
}
.special_gallery .special_gallery_content button.slick-prev.slick-arrow {
	left: 0;
	-moz-transform: rotate(180deg); /* Для Firefox */
	-ms-transform: rotate(180deg); /* Для IE */
	-webkit-transform: rotate(180deg); /* Для Safari, Chrome, iOS */
	-o-transform: rotate(180deg); /* Для Opera */
	transform: rotate(180deg);
}
.special_gallery .special_gallery_content button.slick-next.slick-arrow {
	right: 0;
}

.site_block {
	margin-bottom: 30px;
}
.site_block.breadcrumps_style {
	min-height: 130px;
	max-height: 300px;
}
.sticky_block {
	height: calc(100% - 2500px);
}
.sticky_block .sticky {
	height: 100%;
}
.sticky_block .sticky .sticky_inside {
	top: 10px;
	position: sticky;
}
