@import url(reset.css);
@import url(fontawesome.css);
@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700&subset=latin,cyrillic-ext);
/* |===============| global start |===============| */
html, body{
	height: 100%;
}
body{
	font: 16px/26px 'Open Sans', sans-serif;
	color: #2e2e2e;
	background: #fff;
}
#wrapper {
	position: relative;
	overflow: hidden;
	padding: 0 0 231px;
	min-width: 320px;
	min-height: 100%;
}
[class*="__center"]{
	position: relative;
	margin: auto;
	padding: 0 10px;
	width: 1001px;
}
[class*="__center"]:before,
[class*="__center"]:after{
	content: "";
	display: block;
	clear: both;
}
	/* |===============| Отмена сбросса стилей start |===============| */
	.text{
		line-height: 28px;
	}
	.text > *:first-child{
		margin-top: 0;
	}
	p,
	.text ul,
	.text ol,
	.text dl{
		margin: 26px 0 28px;
	}
	.text ul,
	.text ol,
	.text dd{
		padding-left:18px;
	}
	h1,
	h2,
	h3,
	h4,
	h5,
	h6,.block_header{
		margin: 28px 0;
		font-weight:bold;
	}
	h1{font: 300 34px/40px 'Open Sans';}
	.text h1{
		margin: 35px 0;
	}
	h2{font: 300 30px/40px 'Open Sans';}
	h3,.block_header{font: 300 28px/40px 'Open Sans';}
	h5{font-size:0.83em;}
	h6{font-size:0.67em;}
	.text ul{list-style-type: disc;}
	.text ol{list-style-type: decimal;}
	a{
		color: #eb9c8f;
		text-decoration: none;
	}
	/* |===============| Отмена сбросса стилей end |===============| */
	
	/* |===============| form start |===============| */
	form input[type="checkbox"],
	form input[type="radio"] {
		display: none;
	}
	form input[type="checkbox"] + label,
	form input[type="radio"] + label {
		display: inline-block;
		vertical-align: middle;
		background: url(../img/radio.png) no-repeat 0 40%;
		cursor: pointer;
		margin: 0 36px 5px 0;
		padding: 0 0 0 19px;
	}
	
	form input[type="radio"]:checked + label {
		background-image: url(../img/radio_checked.png);
	}
	form input[type="checkbox"] + label {
		background: url(../img/checkbox.png) no-repeat 0 40%;
	}
	form input[type="checkbox"]:checked + label {
		background-image: url(../img/checkbox_checked.png);
	}
	input,
	textarea{
		font: 14px/20px 'Open Sans', sans-serif;
	}
	input:not([type="submit"]):not([type="button"]):not([type="image"]),
	textarea{
		padding: 7px 9px 4px;
		border: 1px solid #ced4d5;
		width: 254px;
		max-width: 100%;
		color: #2e2e2e;
	}
	input:not([type="submit"]):not([type="button"]):not([type="image"]):hover,
	textarea:hover{
		border-color: #a8afb2;
	}
	input:not([type="submit"]):not([type="button"]):not([type="image"]):focus,
	textarea:focus{
		border-color: #ed8666;
	}
	textarea{
		height: 126px;
		resize: none;
	}
	.infofield{
		display: block;
		margin: 8px 0;
	}
	#wrapper .error_input{
		background: #ffeff3;
	}
	::-webkit-input-placeholder {color:#9ca4a7;}
	::-moz-placeholder          {color:#9ca4a7;}/* Firefox 19+ */
	:-moz-placeholder           {color:#9ca4a7;}/* Firefox 18- */
	:-ms-input-placeholder      {color:#9ca4a7;}
	
	.btn,
	a.btn,
	input[type="button"],
	input[type="submit"],
	input[type="reset"],
	button{
		display: inline-block;
		font: 16px 'Open Sans', sans-serif;
		border: 1px solid #eb9c8f;
                
		padding: 12px 29px 12px 31px;
		color: #2e2e2e;
		background-color: transparent;
		text-decoration: none;
	}
	.btn:after,
	a.btn:after,
	button:after{
		content: "\f105";
		position: relative;
		left: 0;
		margin: 0 0 0 29px;
		font-size: 16px;
		font-family: fontawesome;
	}
	.btn:hover:after,
	a.btn:hover:after,
	button:hover:after{;
		left: 10px;
	}
	.btn:active,
	input[type="button"]:active,
	input[type="submit"]:active,
	input[type="reset"]:active,
	button:active,
	.footer .search .submit_search:active{
		border-color: #eb9c8f;
		background: #eb9c8f;
		color: #fff;
	}
	
	/* |===============| selectbox start |===============| */
	.selectbox {
		position: relative;
		margin: 0 4px;
		vertical-align: top;
		cursor: pointer;
		color: #2e2e2e;
	}
	.selectbox .select{
		border: 1px solid #ced4d5;
		padding: 1px 25px 2px 8px;
		background: #fff;
	}
	.selectbox.focused .select {
		border: 1px solid #8ec63f;
	}
	.selectbox .select .text {
		display: block;
		width: 100%;
		white-space: nowrap;
		overflow: hidden;
	}
	.selectbox .trigger {
		position: absolute;
		top: 0;
		right: 0;
		width: 34px;
		height: 100%;
	}
	.selectbox .trigger .arrow {
		position: absolute;
		top: 50%;
		right: 9px;
		margin-top: -2px;
		border-left: 5px solid transparent;
		border-right: 5px solid transparent;
		border-top: 5px solid #2e2e2e;
		width: 0;
		height: 0;
		overflow: hidden;
	}
	.selectbox .dropdown {
		z-index: 9;
		margin: -1px 0;
		padding: 4px 6px;
		background: #FFF;
		border: 1px solid #ced4d5;
	}
	.selectbox .dropdown ul{
		list-style: none;
		padding: 0;
		margin: 0;
	}
	.selectbox li {
		border-top: 1px solid #ecf0f1;
		padding: 4px 0 3px;
	}
	.selectbox li:first-child{
		border-top: 0;
	}
	.selectbox li.sel,
	.selectbox li.sel:hover{
		cursor: default;
		color: #a8afb2;
	}
	.selectbox li:hover {
		color: #e31e25;
	}
	.selectbox li.disabled {
		color: #AAA;
	}
	.selectbox li.disabled:hover {
		background: none;
	}
	.selectbox + select {
		width: 0;
		height: 0;
		position: absolute;
		clip: rect(0,0,0,0);
		opacity: 0;
	}
	/* |===============| selectbox end |===============| */

	/* |===============| form end |===============| */
/* |===============| global end |===============| */

/* |===============| header start |===============| */
.header{
	background: #f9f8f6;
}
.header__center{
	display: table;
	min-height: 101px;
}
.logo-d,
.header__info,
.header__unit{
	padding-bottom: 2px;
	display: table-cell;
	vertical-align: middle;
        width: 240px;
}
.header__unit {
	text-align: right; 
	font: 21px/32px 'Open Sans';
}
.header__slogan {
	font: 300 24px / 32px 'Open Sans';
}
.logo-d{
	padding: 0 20px 2px 0;
	width: 248px;
}
.logo-d p {
	font-size: 30px;
}
.header__info{
	width: 400px;
}
.header__tel p {
    display: inline-block;
}

.fa_circle{
	margin: 0 8px 0 0;
	border: 1px solid #eb9c8f;
	width: 48px;
	height: 48px;
	font-size: 18px;
	line-height: 48px;
	text-align: center;
	color: #2e2e2e;
}
.header__unit a{
	color: #2e2e2e;
}
.header__unit a:hover .fa_circle{
	color: #fff;
	background: #eb9c8f;
}

 .header__unit .fa_circle{
 vertical-align: middle;
}
.header__unit .header__tel{
 display: inline-block;
 vertical-align: middle;
}
/* |===============| header end |===============| */

/* |===============| nav start |===============| */
.nav{
	position: relative;
	background: #eb9c8f;
}
.nav__list{
	position: relative;
	left: -10px;
	margin: auto;
	padding: 0 10px;
	width: 1021px;
}
.nav__list:after{
	content: "";
	display: block;
	clear: both;
}
.nav__item{
	position: relative;
	float: left;
}
.nav__item a{
	display: inline-block;
	padding: 2px 21px 2px 20px;
	height: 50px;
	font: 14px/48px 'Open sans';
	color: #fff;
	text-decoration: none;
	text-transform: uppercase;
}
.nav__item:hover > a{
	background: #d98678;
}
.nav__popup{
	display: none;
	z-index: 1;
	position: absolute;
	left: 0;
	top: 100%;
	padding: 12px 0 11px;
	min-width: 281px;
	background: #d98678;
}
.nav__popup a,
.aside-nav a{
	display: block;
	text-transform: none;
	margin: 0 0 4px;
	padding: 8px 20px 8px 10px;
	font-size: 16px;
	line-height: 18px;
	height: auto;
	white-space: nowrap;
}
.nav__popup a:hover,
.aside-nav a:hover{
	margin-left: 10px;
}
.nav__popup a:before,
.aside-nav a:before{
	content: "—";
	display: inline-block;
	margin: 0 4px 0 0;
}
/* |===============| nav end |===============| */

/* |===============| slider start |===============| */
.slider{
	position: relative;
	overflow: hidden;
}
.slider__list{
	overflow: hidden;
}
.slider__item{
	float: left;
	width: 100%;
	height: 570px;
	background-position: center top;
	-webkit-background-size: cover;
	background-size: cover;
}
.slider__info{
	float: right;
    margin: 236px 2px 0 0;
	border: 1px solid #eb9c8f;
    padding: 14px 24px 20px 27px;
	font: 300 34px/46px 'Open Sans';
	color: #2e2e2e;
}
[class*="__next"],
[class*="__prev"]{
	cursor: pointer;
	position: relative;
	position: absolute;
	left: 50%;
	top: 50%;
	margin: -25px 0 0 -591px;
	padding: 0 2px 0 0;
	width: 50px;
	height: 50px;
	font: 36px/48px Fontawesome;
	font-size: 36px;
	line-height: 48px;
	text-align: center;
}
[class*="__next"]{
	margin: -25px 0 0 538px;
	padding: 0 0 0 2px;
}
[class*="__next"]:after,
[class*="__prev"]:after{
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	border: 1px solid #eb9c8f;
}
[class*="__next"]:hover:after,
[class*="__prev"]:hover:after{
	border-width: 3px;
}
[class*="__prev"]:before,
[class*="__next"]:before{
	display: inline-block;
	
}
[class*="__prev"]:before{
	content: "\f104";
}
[class*="__next"]:before{
	content: "\f105";
}
.slider__slidenator{
	display: block;
	padding: 13px 0;
	text-align: center;
}
[class*="__slidenator__item"]{
	cursor: pointer;
	display: inline-block;
	margin: 0 2px;
	width: 11px;
	height: 11px;
	background: #eae7e2;
}
[class*="__slidenator__item"]:hover{
	background: #d1cdc7;
}
[class*="__slidenator__item_active"]{
	background: #eb9c8f;
}
/* |===============| slider end |===============| */

/* |===============| cols start |===============| */
.col-left{
	float: left;
	margin: 0 -321px 0 0;
	padding: 33px 321px 0 0;
	width: 100%;
}

.col-left.full {
     padding-right:0;
     margin-right: 0;
}

.col-left ~ .col-left{
	padding-top: 0;
}
.col-left > *:first-child,
.i-about > *:first-child,
.col-right > *:first-child,
.order > *:first-child{
	margin-top: 0;
}
.col-right{
	position: relative;
	float: right;
	padding: 16px 0 0;
	width: 281px;
}
.wrap_inside .col-left{
	padding-top: 28px;
	margin-bottom: 20px;
}
.wrap_inside .col-right{
	padding: 54px 0 31px;
}
/* |===============| cols end |===============| */

/* |===============| i-about start |===============| */
.i-about{
	margin: 0 0 34px;
	line-height: 28px;
}
.i-about h1,
.i-about h2{
	margin: 0 0 36px;
}
.i-about p{
	margin-top: 27px;
	margin-bottom: 22px;
}
/* |===============| i-about end |===============| */

/* |===============| gallery start |===============| */
.gallery{
	position: relative;
	margin: 0 0 52px;
	padding: 10px 0 0;
	text-align: center;
}
.gallery__crop{
	overflow: hidden;
}
.gallery__item{
	float: left;
	position: relative;
	margin: 0 20px 0 0;
	width: 150px;
	height: 150px;
}
.gallery__item:last-child{
	margin-right: 0;
}
.gallery__item img{
	vertical-align: top;
	width: 100%;
	height: 100%;
}
.gallery__popup{
	opacity: 0;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(0,0,0, 0.3);
	text-align: center;
	line-height: 154px;
	color: #fff;
}
.gallery__popup:after{
	content: "\f002";
	font: 30px fontawesome;
}
.gallery__item:hover .gallery__popup{
	opacity: 1;
}
.gallery h2{
	margin: 0 0 34px;
	text-align: left;
}
.gallery__next,
.gallery__prev{
	top: 50%;
	left: 0;
	margin: -17px 0 0;
	width: 34px;
	height: 34px;
	font-size: 16px;
	line-height: 34px;
}
.gallery__next{
	right: 0;
	left: auto;
}
.gallery__ui{
	display: inline-block;
	position: relative;
	text-align: center;
	padding: 34px 48px;
}
.gallery__slidenator{
	display: inline-block;
}

/* |===============| gallery end |===============| */

/* |===============| order start |===============| */
.order{
	margin: 0 0 49px;
	padding: 20px 20px 51px;
	background: #eb9c8f;
	color: #fff;
}
.order h3{
	margin: 0 0 22px;
}
#wrapper .field,
.order textarea,
.order .select,
#wrapper .footer .input_search{
	margin: 0 0 29px;
	padding: 4px 0;
	width: 100%;
	opacity: 0.6;
	border: 0;
	border-bottom: 1px solid #fff;
	color: #fff;
	background-color: transparent;
	font: 16px/22px 'Open Sans';
}
#wrapper .field:hover,
#wrapper .field:focus,
.order textarea:hover,
.order .select:hover,
.order textarea:focus{
	opacity: 1;
	border-color: #fff;
}
.order textarea,
.order .select{
	border: 1px solid #fff;
	padding-left: 7px;
	padding-right: 7px;
}
.order .selectbox,
.order .select{
	margin: 0;
	width: 100% !important;
	font-weight: normal;
}
.order .selectbox{
	margin: 0 0 29px;
}
.order .selectbox .trigger .arrow{
	border-top-color: #fff;
}
.order .error_message{
	display: block;
	margin: 0 0 14px;
	font: 12px/20px 'Open Sans';
        padding:0;
        position: static;
        box-shadow: none;
        background:none; 
        color:#fff;
        opacity: 1;
}
.order .error_message{
	margin: -25px 0 14px;
}

.order .error {
    margin-top:0;
}

.order ::-webkit-input-placeholder {color:#fff;}
.order ::-moz-placeholder          {color:#fff;}/* Firefox 19+ */
.order :-moz-placeholder           {color:#fff;}/* Firefox 18- */
.order :-ms-input-placeholder      {color:#fff;}
/* |===============| order end |===============| */

/* |===============| news start |===============| */
.news_block{
	margin: 0 0 20px;
}
.news_block .block_header{
	margin: 0 0 27px;
	font: 300 28px/40px 'Open Sans';
}
.news_block .block-row{
	display: block;
	position: relative;
	margin: 0 0 38px;
	padding: 15px 9px 1px;
	font: 12px/16px 'Open Sans';
	color: #989898;
}
.news_block .block-row:after{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	border: 1px solid #eb9c8f;
}
.news_block .block-row:hover{
	color: #2e2e2e;
}
.block-row:hover:after{
	border-width: 3px;
}
.block-row-img{
	float: left;
	margin: 0 10px 0 1px;
	width: 50px;
	height: 50px;
	background: #ccc;
}
img.block-row-img {
	width: 100%;
	height: auto;
}
.news_block.block .date{
	z-index: 1;
	position: absolute;
	top: -14px;
	left: 4px;
    padding: 0 4px;
	font-size: 16px;
	line-height: 28px;
	color: #eb9c8f;
	background: #fff;
	white-space: nowrap;
}
.block-text .black{
	display: block;
	font-size: 16px;
	line-height: 28px;
	margin: 0 0 12px 1px;
	font-weight: normal;
}
.block-text{
	display: block;
}

.block .anons,
.block .anons p,
.block .date,
.block .rate{
	display: block;
	margin: 0 0 12px 1px;
}
.news_block  .arch{
	display: block;
	margin: -8px 0 0;
}
/* |===============| news end |===============| */

/* |===============| footer start |===============| */
.footer{
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 30px 0;
	background: #f9f8f6;
}
.footer__nav{
	float: left;
}
.footer__nav a{
	display: inline-block;
	margin: 0 31px 0 0;
	font: 12px/18px 'Open Sans';
	color: #2e2e2e;
	text-transform: uppercase;
}
.footer__nav a:hover{
	color: #eb9c8f;
}
.footer__copy{
	float: left;
	margin: 21px 0 0;
	font-size: 12px;
	line-height: 16px;
        clear:left;
}
.footer__copy p{
	margin: 8px 0 19px;
}
.footer__copy .arch{
	margin: 12px 0 0;
}
.soc{
	float: right;
	clear: right;
}
.soc .fa{
	font-size: 1.66667rem;
    text-align: center;
    display: inline-block;
    margin-right: .83334rem;
    margin-bottom: .83334rem;
    line-height: 1;
    vertical-align: middle;
}

/* |===============| footer end |===============| */

/* |===============| search start |===============| */
.footer .search{
	position: relative;
	float: right;
	margin: 0 0 49px;
	width: 243px;
}
#wrapper .footer .input_search{
	margin: 0;
	border-color: #aeadac;
	padding-right: 24px;
	font-size: 14px;
	line-height: 20px;
	color: #2e2e2e;
}
.footer .submit_search{
	position: absolute;
    right: 4px;
    top: -4px;
	border: 0;
	padding: 0;
	width: 24px;
	text-align: right;
	line-height: 29px;
	position: absolute;
}
.footer .submit_search:after{
	content: "\f002";
	margin: 0;
	font: 12px/29px Fontawesome;
	color: #2e2e2e;
}
.footer .submit_search:hover:after{
	left: 0;
	color: #eb9c8f;
}
#wrapper .footer .input_search:focus{
	opacity: 1;
}
/* |===============| search end |===============| */


/* |===============| paginator start |===============| */
.paginator a{
	display: inline-block;
	padding: 0 5px;
	font: 1em/1.7857em 'Open Sans';
	color: #a8afb2;
}
.paginator a:hover{
	color: #eb9c8f;
}
.paginator .prev,
.paginator .next{
	width: 34px;
	height: 34px;
	text-align: center;
	line-height: 34px;
	font: 16px/28px fontawesome;
	vertical-align: 3px;
	border: 1px solid #eca195;
}
.paginator .prev:hover,
.paginator .next:hover{
	background: #eca195;
	color: #fff;
}
.paginator .prev{
	margin: 0 12px 0 -2px;
}
.paginator .next{
	margin: 0 0 0 12px;
}
.paginator .prev:after{
	content: "\f104";
}
.paginator .next:after{
	content: "\f105";
}
.paginator .active{
	text-align: center;
	display: inline-block;
	color: #2e2e2e;
}
.paginator .start,
.paginator .end{
	vertical-align: 2px;
}
/* |===============| paginator end |===============| */

/* |===============| aside-nav start |===============| */
.aside-nav{
    margin: 0 0 60px;
	border: 1px solid #eb9c8f;
    padding: 10px 0 11px;
}
.aside-nav a{
	display: block;
	font: 16px/20px 'Open Sans';
	color: #eb9c8f;
	margin-bottom: 2px;
        white-space: normal;
}
.aside-nav a:hover{
	color: #d64541;
}
/* |===============| aside-nav end |===============| */

/* |===============| other start |===============| */
.btn,
a,
input,
button,
textarea,
.fa_circle,
.nav__activate,
[class*="__prev"]:after,
[class*="__next"]:after,
[class*="__slidenator__item"],
.btn:after,
a.btn:after,
button:after,
.gallery__popup,
.news_block .block-row:after,
.soc .fa:after,
.arch .fa:after,
.arch .fa,
.order .select{
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
.fa_circle,
.nav__activate,
[class*="__prev"]:after,
[class*="__next"]:after,
[class*="__slidenator__item"],
.btn,
a.btn,
input[type="button"],
input[type="submit"],
input[type="reset"],
button,
.arch .fa:after,
.soc .fa:after,
.arch .fa,
.paginator .prev,
.paginator .next{
	-webkit-border-radius: 500px;
	-moz-border-radius: 500px;
	border-radius: 500px;
}
.nav__activate{
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.btn_white,
.btn_white:active{
	background: #fff;
	color: #2e2e2e;
}
.arch{
	display: inline-block;
	font: 14px/28px 'Open Sans';
	color: #eb9c8f;
}
.arch .fa{
	position: relative;
	display: inline-block;
    margin: 0 5px 0 0;
	width: 34px;
	height: 34px;
	text-align: center;
	line-height: 34px;
}
.arch .fa:after{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	border: 1px solid #eb9c8f;
}
.arch:hover{
	color: #d64541;
}
.arch:hover .fa:before{
	z-index: 1;
	position: relative;
	color: #fff;
}
.arch:hover .fa:after{
	border-width: 17px;
}
.breadcrumb{
	margin: 0 0 7px;
	color: #dddddd;
	font-size: 12px;
	line-height: 16px;
}
.breadcrumb a{
	color: #dddddd;
}
.breadcrumb a:hover{
	color: #eb9c8f;
}
[class*="__toggle"]{
	position: absolute;
	left: -1000px;
}
/* |===============| other end |===============| */

/* |===============| media start |===============| */
@media (min-width: 1012px) {
	.nav__list{
		display: block !important;
		overflow: visible !important;
	}
}
@media (max-width: 1181px) {
	.slider__next{
		margin-left: 0;
		left: auto;
		right: 19px;
	}
	.slider__prev{
		margin-left: 0;
		left: 19px;
	}
	.slider__center{
		padding: 0 109px;
	}
}
@media (max-width: 1011px) {
	[class*="__center"]{
		width: 100%;
	}
	.header__info{
		display: none;
	}
	.nav{
		background-color: transparent;
	}
	.nav__list{
		z-index: 2;
		position: absolute;
		left: -100%;
		width: 100%;
		padding: 39px 11px;
		background: rgba(255,255,255, 0.95);
	}
	.nav__item{
		float: none;
	}
	.nav__item > a,
	.nav__item:hover > a{
		display: block;
		margin: 0 0 6px;
		padding: 6px;
		height: auto;
		font-size: 18px;
		line-height: 24px;
		color: #eb9c8f;
		background-color: transparent;
	}
	.nav__popup{
		position: static;
		display: block !important;
		background-color: transparent;
		margin: -7px 0 23px 18px;
		padding: 0;
		width: auto;
	}
	.nav__popup a{
		font-size: 16px;
		color: #eb9c8f;
                white-space: normal;
	}
	.nav__activate{
		z-index: 3;
		position: absolute;
		left: 18px;
		top: -24px;
		cursor: pointer;
		width: 48px;
		height: 48px;
		background: #eb9c8f;
		color: #fff;
		font: 26px/48px Fontawesome;
		text-align: center;
	}
	.nav__activate:after{
		content: "\f0c9";
	}
	.nav__activate_active:after {
		content: "\f00d";
	}
	.gallery__crop{
		width: 490px;
		margin: auto;
	}
	.footer__nav{
		float: none;
	}
	.footer .search{
		margin: 47px 0 25px;
	}
	#wrapper{
		padding-bottom: 0 !important;
	}
	.footer{
		position: static;
	}
}
@media (max-width: 860px) {
	.col-left,
	.col-right{
		clear: both;
		float: none;
		margin: 16px 0 54px;
		padding: 0;
		width: auto;
	}
	.order{
		float: left;
		width: 281px;
	}
	.wrap_inside .order{
		float: none;
		width: auto;
	}
	.wrap_inside .col-right{
		margin: 0;
	}
	.news_block {
		float: right;
		width: 100%;
		margin: 0 0 0 -330px;
		padding: 0 0 0 330px;
	}
	.gallery__crop{
		width: 660px;
	}
}
@media (max-width: 728px) {
	.footer__nav{
		display: none;
	}
	.footer__copy{
		display: block;
		float: none;
		margin-top: 0;
		padding-right: 20px;
	}
	.soc{
		margin: -34px 0 0;
	}
	.arch__val{
		display: none;
	}
	.footer__center{
		padding: 0 10px 52px;
	}
	.footer .search{
		margin: 0;
		position: absolute;
		bottom: 0;
		left: 10px;
		right: 10px;
		width: auto;
	}
}
@media (max-width: 708px) {
	.order,
	.news_block{
		float: none;
		width: auto;
		margin: 0 0 50px;
	}
	.order{
		margin: 0 -10px 50px;
	}
	.news_block{
		padding: 0;
	}
	.gallery__crop{
		width: 490px;
	}
}
@media (max-width: 620px) {
	.header__unit .header__tel{
		display: none;
	}
        .header__unit {
            width: auto;
        }
	.fa_circle{
		margin-right: 0;
	}
	.slider__item{
		height: 426px;
	}
	.slider__prev,
	.slider__next{
		display: none;
	}
	.slider__center{
		padding: 0 10px;
	}
	.slider__info{
		margin-top: 202px;
		font-size: 17px;
		line-height: 23px;
	}
}
@media (max-width: 560px) {
	.gallery__crop{
		width: 294px;
	}
	.gallery__item{
		margin-right: 18px;
		width: 138px;
		height: 138px;
		line-height: 138px;
	}
}
/* |===============| media end |===============| */

/* |===============| default reset start |===============| */

.photo_name {
    display:none;
}

.captcha_update .button-refresh {
    text-decoration: none;
    
}

.captcha_update .button-refresh:after {
    content: '\f021';
    font: 12px/12px FontAwesome;
    
}

[class$="_form"] .error.error_message {
    position: static;
}

/* |===============| default reset end |===============| */

/* |===============| style |===============| */
.clauses_all_img > a, .news_all_img > a {
    display: inline-block;
    height: 120px;
    overflow: hidden;
    width: 180px;
    margin-right: 10px;
}

.clauses_all_img > a > img, .news_all_img > a > img {
    width: 100%;
    height: auto;
}





.captcha {
    margin-top: 15px;
}

.captcha .captcha-image {
    margin-right: 15px;
}

.captcha input[name="captcha"] {
    width: 150px;
}



.previous_next_links:before, .previous_next_links:after {
    display: table;
    content: " ";
}

.previous_next_links:after {
    clear: both;
}

.previous_next_links {
    height: auto;
}

[class$="_list"] .block:before, [class$="_list"] .block:after {
  display: table;
  content: " ";
}

[class$="_list"] .block:after {
  clear: both;
}

[class$="_list"] .block {
  margin-bottom: 20px;
}

[class$="_list"] .block-row-img {
  float: left;
  margin-right: 15px;
  width: 120px;
  height: auto;
  overflow: hidden;
}

[class$="_list"] .block-row-img img {
  width: 100%;
  height: auto;
}

[class$="_list"] .block-text {
  float: left;
  width: 79%;
}

[class$="_list"] .block h4 {
  margin:0 0 10px;
}

/*.date,[class$="_date"] {
    font: 14px/20px clear;
    color: #a8afb2;
}*/



.search_list .search_text {
    margin-bottom: 20px;
}

/* |===============| style end |===============| */
.privacy_field {
	font-size: 80%;
	line-height: 1.2em;
	margin-top: 1em;
}

.privacy_field a, .privacy_field a:hover {
	color:inherit;
	text-decoration: underline;
}
a:hover, a:focus, a:active {
	text-decoration: none;
}
.block-d_faq .button-d, .block-d_comments .button-d {
	color: #000;
	border-radius: 500px;
	border: 1px solid;
}
.detail-d_anons > a {
    font-size: 16px;
}
.fancybox-navigation button:after, .fancybox-toolbar button:after {
	display: none;
}
.feedback_form .btn_white:hover {
	color: #000;
}
.signboard-d__logo img {
	margin-top: 20px;
}