/*
	HTML5 Reset :: style.css
	----------------------------------------------------------
	We have learned much from/been inspired by/taken code where offered from:

	Eric Meyer					:: https://meyerweb.com
	HTML5 Doctor				:: https://html5doctor.com
	and the HTML5 Boilerplate	:: https://html5boilerplate.com

-------------------------------------------------------------------------------*/

/* Let's default this puppy out
-------------------------------------------------------------------------------*/

html, body, body div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, figure, footer, header, menu, nav, section, time, mark, audio, video, details, summary {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font-weight: normal;
	vertical-align: baseline;
	background: transparent;
}

article, aside, figure, footer, header, nav, section, details, summary {display: block;}

/* Handle box-sizing while better addressing child elements:
   https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
html {
	box-sizing: border-box;
}

*,
*:before,
*:after {
	box-sizing: inherit;
}

/* consider resetting the default cursor: https://gist.github.com/murtaugh/5247154 */

/* Responsive images and other embedded objects
*/
img,
object,
embed {max-width: 100%;}

/*
   Note: keeping IMG here will cause problems if you're using foreground images as sprites.
	 In fact, it *will* cause problems with Google Maps' controls at small size.
	If this is the case for you, try uncommenting the following:

#map img {
		max-width: none;
}
*/

/* force a vertical scrollbar to prevent a jumpy page */
html {overflow-y: scroll;}

/* we use a lot of ULs that aren't bulleted.
	don't forget to restore the bullets within content. */
ul {list-style: none;}

blockquote, q {quotes: none;}

blockquote:before,
blockquote:after,
q:before,
q:after {content: ''; content: none;}

a {margin: 0; padding: 0; font-size: 100%; vertical-align: baseline; background: transparent;}

del {text-decoration: line-through;}

abbr[title], dfn[title] {border-bottom: 1px dotted #000; cursor: help;}

/* tables still need cellspacing="0" in the markup */
table {border-collapse: collapse; border-spacing: 0;}
th {font-weight: bold; vertical-align: bottom;}
td {font-weight: normal; vertical-align: top;}

hr {display: block; height: 1px; border: 0; border-top: 1px solid #ccc; margin: 1em 0; padding: 0;}

input, select {vertical-align: middle;}

pre {
    white-space: pre; /* CSS2 */
    white-space: pre-wrap; /* CSS 2.1 */
    white-space: pre-line; /* CSS 3 (and 2.1 as well, actually) */
    word-wrap: break-word; /* IE */
}

input[type="radio"] {vertical-align: text-bottom;}
input[type="checkbox"] {vertical-align: bottom;}
.ie7 input[type="checkbox"] {vertical-align: baseline;}
.ie6 input {vertical-align: text-bottom;}

select, input, textarea {font: 99% sans-serif; background-color: white; border: none; color: #000000}

table {font-size: inherit; font: 100%;}

small {font-size: 85%;}

strong {font-weight: bold;}

td, td img {vertical-align: top;}

/* Make sure sup and sub don't mess with your line-heights https://gist.github.com/413930 */
sub, sup {font-size: 75%; line-height: 0; position: relative;}
sup {top: -0.5em;}
sub {bottom: -0.25em;}

/* standardize any monospaced elements */
pre, code, kbd, samp {font-family: monospace, sans-serif;}

/* hand cursor on clickable elements */
.clickable,
label,
input[type=button],
input[type=submit],
input[type=file],
button {cursor: pointer;}

/* Webkit browsers add a 2px margin outside the chrome of form elements */
button, input, select, textarea {margin: 0;}

/* make buttons play nice in IE */
button,
input[type=button] {width: auto; overflow: visible;}

/* scale images in IE7 more attractively */
.ie7 img {-ms-interpolation-mode: bicubic;}

/* prevent BG image flicker upon hover
   (commented out as usage is rare, and the filter syntax messes with some pre-processors)
.ie6 html {filter: expression(document.execCommand("BackgroundImageCache", false, true));}
*/

/* let's clear some floats */
.clearfix:before, .clearfix:after { content: " "; display: block; height: 0; overflow: hidden; }
.clearfix:after { clear: both; }
.clearfix { zoom: 1; }
#zoomer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
  width: 100%;
  height: 100%;
  display: none;
}
#zoomer.zoomer__active {
  opacity: 1;
  visibility: visible;
}
.zoomer_img {
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -40%;
  width: 80%;
  height: 100%;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
#zoomer_img_wrapper img {
  /*max-width: 80%;
  max-height: 80%;*/
  max-height: 90vh;
  max-width: 90vw;
}
#zoomer_img_wrapper {

}
.zoomer_btn {
  position: absolute;
  top: 0;
  height: 100%;
  z-index: 300;
  display: flex;
  align-items: center;
  font-size: 3em;
  color: #ffffff;
  font-weight: 100;
  opacity: 0.5;
  cursor: pointer;
  padding: 0 25px;
  box-sizing: border-box;
  transition: opacity 100ms linear;
}
.zoomer_btn:hover {
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.1);
}
.zoomer_btn-close {
  position: absolute;
}
.zoomer_btn-prev {
  left: 0;
  justify-content: flex-start;
}
.zoomer_btn-next {
  right: 0;
  justify-content: flex-end;
}
#zoomer_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0.8;
  z-index: 100;
}
#zoomer_overlay::after {
  content: "\D7";
  display: block;
  font-size: 3em;
  top: 10px;
  right: 30px;
  color: #ffffff;
  position: absolute;
  font-weight: 100;
  opacity: 0.7;
  cursor: pointer;
}
#zoomer_overlay:hover {
  opacity: 0.81;
}
#zoomer_overlay:hover::after {
  opacity: 0.81;
}
body,
a,
input,
textarea {
  font-family: Segoe UI, Frutiger, Frutiger Linotype, Dejavu Sans, Helvetica Neue, Arial, sans-serif;
  /* font-family: Frutiger,Frutiger Linotype,Dejavu Sans,Helvetica Neue,Arial,sans-serif;  */
  /* font-family: Frutiger Linotype,Dejavu Sans,Helvetica Neue,Arial,sans-serif;  */
  /* font-family: Dejavu Sans,Helvetica Neue,Arial,sans-serif;  */
  /* font-family: Helvetica Neue,Arial,sans-serif;  */
  /* font-family: Arial,sans-serif;  */
  /* font-family: sans-serif;  */
  font-size: 18px;
  overflow: hidden;
  font-weight: 200;
  box-sizing: content-box;
}
a {
  font-size: inherit;
  text-decoration: none;
}
b {
  font-weight: 500;
}
.font-big {
  font-size: 1.333em;
}
.font-very-big {
  font-size: 1.667em;
}
.font-dark-green {
  color: #004b1c;
}
a.font-dark-green:hover {
  color: #44aa00;
}
a.font-dark-green:active {
  color: #a1a1a1;
}
.text-time {
  font-style: italic;
  color: #408933;
  margin-bottom: 9px;
}
.wide-block {
  width: 100%;
  min-width: 1353px;
  position: relative;
}
.center-content {
  width: 1353px;
  padding: 0 90px;
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
  z-index: 10;
}
.center-content__semipadding {
  padding: 0 70px;
}
.logo {
  width: 418px;
  height: 196px;
  background-image: url("../img/logo.png");
}
.center-menu {
  height: 90px;
  margin: 0 auto;
  box-sizing: border-box;
}
.main-menu {
  display: block;
  height: 90px;
  margin: 0 auto;
  text-align: center;
  transition: top 100ms linear;
  position: static;
  top: -90px;
}
.main-menu__fixed {
  width: 100%;
  background-color: #ffffff;
  position: fixed;
  z-index: 1999;
  top: 0;
  left: 0;
}
.main-menu__fixed::after {
  content: " ";
  position: absolute;
  background-image: url("../img/menu_shadow.png");
  width: 100%;
  height: 16px;
  background-position: 50% 100%;
  background-repeat: no-repeat;
  bottom: -16px;
  left: 0;
}
.main-menu a {
  text-decoration: none;
  color: #293d68;
}
.main-menu a:hover {
  color: #cd2e44;
}
.main-menu a:focus {
  color: #bbbbbb;
}
.main-menu__item {
  display: inline;
  padding-right: 22px;
  margin-right: 18px;
  line-height: 88px;
  vertical-align: bottom;
  border-right: 1px solid #d0f372;
  letter-spacing: 0.25px;
}
.main-menu__item:last-child {
  border-right: none;
  padding-right: 0;
  margin-right: 0;
}
.background-block {
  width: 100%;
  background-position: 50% 100%;
  background-repeat: no-repeat;
  overflow: hidden;
}
.square-icon {
  width: 49px;
  height: 49px;
  background-image: url("../img/icons.png");
}
/** Contacts **/
.contacts-block {
  background-image: url("../img/bg_header.jpg");
  height: 258px;
}
.contacts-block_phone {
  width: 376px;
  float: left;
}
.contacts-block_phone .phone-icon {
  display: inline-block;
}
.contacts-block_phone .whtsp-icon {
  display: inline-block;
  margin: 36px 0 13px 6px;
}
.phone-icon {
  width: 48px;
  height: 48px;
  background-position: -196px 0;
  margin: 36px 0 15px 0;
}
.whtsp-icon {
  background-image: url("../img/icon_whtsp.png");
  width: 51px;
  height: 52px;
}
.contacts-block_caption {
  font-weight: 200;
  line-height: 1.25;
}
.contacts-block_mail-link {
  line-height: 2em;
  font-weight: 400;
}
.contacts-block .logo {
  float: left;
  margin-top: 28px;
}
.contacts-block .social-networks {
  float: right;
  margin-top: 110px;
}
/** EOF Contacts **/
/** Social networks**/
.social-networks {
  float: left;
  text-align: center;
}
.social-networks .square-icon {
  display: inline-block;
  margin-right: 24px;
}
.social-networks .square-icon:last-child {
  margin-right: 0;
}
.square-icon__vk:hover {
  background-position: 0 -49px;
}
.square-icon__vk:active {
  background-position: 0 -98px;
}
.square-icon__insta {
  background-position: -49px 0;
}
.square-icon__insta:hover {
  background-position: -49px -49px;
}
.square-icon__insta:active {
  background-position: -49px -98px;
}
.square-icon__youtube {
  background-position: -98px 0;
}
.square-icon__youtube:hover {
  background-position: -98px -49px;
}
.square-icon__youtube:active {
  background-position: -98px -98px;
}
.square-icon__facebook {
  background-position: -147px 0;
}
.square-icon__facebook:hover {
  background-position: -147px -49px;
}
.square-icon__facebook:active {
  background-position: -147px -98px;
}
/** EOF Social networks **/
/** slider-block **/
.slider-block {
  background-image: url("../img/bg_subheader.jpg");
  height: 670px;
  overflow: visible;
}
.slider-block_offer-counter {
  top: -8px;
  width: 300px;
  height: 173px;
  background-image: url("../img/counter_offers.jpg");
  position: relative;
  margin: 0 auto;
  overflow: hidden;
  text-align: center;
}
.slider-block_offer-counter_cap {
  display: inline-block;
  color: #ffffff;
  margin-top: 26px;
  width: 100%;
}
.slider-block_offer-counter_counter {
  font-weight: 500;
  border-top: 1px solid #a6ce39;
  border-bottom: 1px solid #a6ce39;
  display: inline-block;
  font-size: 3.056em;
  color: #ffffff;
  margin: 18px 0 0 0;
  height: 68px;
}
.slider-block_offer-counter_counter span {
  line-height: 1.1em;
  vertical-align: top;
  font-weight: 500;
}
.slider-block_caption {
  font-style: italic;
  font-weight: 400;
  font-size: 2.5em;
  color: #ffffff;
  text-align: center;
  letter-spacing: -0.5px;
  margin: 35px;
  padding-left: 11px;
  line-height: 1.28;
}
/* Slider */
.slider {
  display: block;
  position: relative;
  margin-top: 38px;
}
.slider-wrapper {
  width: 900px;
  height: 440px;
  overflow: hidden;
  border: 20px solid #ffffff;
  box-sizing: content-box;
  margin: 0 auto;
}
#slider-line {
  width: 9999px;
  font-size: 0;
  transition: margin-left 1000ms cubic-bezier(0.075, 0.82, 0.165, 1);
}
.slider-item {
  width: 900px;
  height: 440px;
  display: inline-block;
  margin-right: 0;
  overflow: hidden;
  position: relative;
  font-size: 18px;
}
.slider-item_text {
  position: absolute;
  bottom: 0;
  color: #ffffff;
}
.slider-item_text_title {
  font-size: 2.444em;
  font-weight: 200;
  padding: 11px 45px;
  background-color: rgba(166, 206, 57, 0.4);
}
.slider-item_text_title span {
  line-height: 1.2;
  min-height: 108px;
  display: inline-block;
}
.slider-item_text_text {
  font-size: 1.333em;
  font-weight: 200;
  padding: 12px 45px;
  letter-spacing: 0.36px;
  background-color: rgba(0, 71, 37, 0.6);
}
.slider-item_text_text span {
  font-weight: 200;
  line-height: 1.2;
  display: inline-block;
  min-height: 68px;
}
.slider-item img {
  width: 100%;
  display: block;
}
.slider-button {
  display: block;
  position: absolute;
  top: 160px;
  width: 24px;
  height: 85px;
  overflow: hidden;
  background-image: url("../img/slide_btns.png");
  opacity: 0.8;
  cursor: pointer;
}
.slider-button__l {
  top: 424px;
  left: 95px;
  width: 0;
  height: 0;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-right: 20px solid #a6ce39;
}
.slider-button__l:hover {
  border-right: 20px solid #44aa00;
}
.slider-button__l:active {
  border-right: 20px solid #a1a1a1;
}
.slider-button__r {
  top: 424px;
  right: 98px;
  width: 0;
  height: 0;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-left: 20px solid #a6ce39;
}
.slider-button__r:hover {
  border-left: 20px solid #44aa00;
}
.slider-button__r:active {
  border-left: 20px solid #a1a1a1;
}
.slider-points {
  text-align: center;
  margin-top: -6px;
}
.slider-points_dot {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-color: #a6ce39;
  border-radius: 10px;
  margin-right: 7px;
  vertical-align: middle;
  transition: background-color 2000ms cubic-bezier(0.075, 0.82, 0.165, 1);
}
.slider-points_dot__active {
  background-color: #ffffff;
  border: 2px solid #a6ce39;
  margin-left: -2px;
  margin-right: 5px;
}
.slider-points_dot:not(.slider-points_dot__active):hover {
  background-color: #44aa00;
}
.slider-points_dot:not(.slider-points_dot__active):active {
  background-color: #a1a1a1;
}
.slider-points_dot:last-child {
  margin-right: 0;
}
/* EOF SLider */
.slider-block_slider {
  margin-top: 50px;
}
/** EOF slider-block **/
/** Grass-block **/
.grass-block {
  background-image: url("../img/bg_grass.jpg");
  height: 300px;
}
/** EOF Grass-block **/
/** infra-block **/
.infra-block {
  background-image: url("../img/bg_infra.jpg");
  height: 657px;
  padding-bottom: 1px;
  border-bottom: 1px solid #a6ce39;
  overflow: visible;
}
.infra-block_caption {
  position: relative;
  background: #ffffff;
  color: #de0e00;
  border: 4px solid #004b1c;
  font-size: 2.444em;
  top: -10px;
  left: -21px;
  display: inline-block;
  padding: 25px 36px 29px 30px;
  letter-spacing: -1.1px;
}
.infra-block_caption:after {
  content: " ";
  background: #ffffff;
  position: absolute;
  z-index: -1;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
}
.infra-block_strange-line {
  border-top: 1px solid #ffffff;
  width: 1021px;
  margin-top: -7px;
  position: relative;
}
.infra-block_strange-cap {
  font-weight: 700;
  display: inline-block;
}
.infra-block_strange-cap::first-letter {
  color: #de0e00;
}
.infra-block_strange-line_ico {
  width: 131px;
  height: 43px;
  background-image: url("../img/icons_infra.png");
  position: absolute;
  right: -151px;
  top: -25px;
}
.infra-block_strange-list {
  position: relative;
  width: 575px;
  height: 500px;
  background: rgba(244, 252, 236, 0.7);
  border-left: 1px solid #ffffff;
  float: left;
  margin: 22px 0 0 -20px;
  padding: 14px 20px 0 20px;
  line-height: 1.3;
}
.infra-block_strange-list li {
  padding: 0 0 4px 15px;
}
.infra-block_strange-item {
  font-size: 1.056em;
  margin-bottom: 9px;
}
.infra-block_strange-item__hight {
  margin-bottom: 28px;
}
.infra-block_strange-list__right {
  padding: 20px 15px 20px 20px;
  width: 511px;
  float: right;
  margin: 76px -20px 0 0;
  height: 446px;
}
/** EOF infra-block **/
/** Offer-block **/
.offers-block {
  height: 1172px;
}
.offers-block_caption {
  color: #44aa00;
  font-size: 2.444em;
  font-weight: 200;
  text-align: center;
  margin-top: 63px;
}
.offers-block_info {
  width: 487px;
  height: 738px;
  float: left;
  margin-left: -20px;
  z-index: 200;
  position: relative;
}
.offers-block_info_caption {
  font-size: 1.667em;
  color: #287e1a;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}
.offers-block_info_caption b {
  font-weight: 500;
  padding-right: 3px;
}
.offers-block_info_desc {
  line-height: 1.25;
}
.offers-block_info_desc b {
  font-weight: 700;
}
.offers-block_info_text {
  padding: 36px 0 0 17px;
}
.offers-block_info_legend {
  height: 246px;
  background-color: #eeeeee;
  margin-top: 29px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  padding: 24px 0px 0 16px;
}
.offers-block_info_legend-item {
  width: 58%;
  padding-left: 40px;
  position: relative;
  margin-bottom: 14px;
  line-height: 1.2;
}
.offers-block_info_legend-item::before {
  content: "";
  display: block;
  position: absolute;
  top: -4px;
  left: 0;
  width: 29px;
  height: 29px;
  background-image: url("../img/icons_legenda.png");
  overflow: hidden;
}
.offers-block_info_legend-item:nth-child(2)::before {
  background-position: -29px 0;
}
.offers-block_info_legend-item:nth-child(3)::before {
  background-position: -58px 0;
}
.offers-block_info_legend-item:nth-child(4)::before {
  width: 29px;
  background-position: -98px -29px;
}
.offers-block_info_legend-item:nth-child(5)::before {
  width: 29px;
  background-position: -70px -29px;
}
.offers-block_info_legend-item:nth-child(6)::before {
  background-position: -87px 0;
}
.offers-block_info_legend-item:nth-child(7)::before {
  background-position: -116px 0;
}
.offers-block_info_legend-item:nth-child(8)::before {
  background-position: -145px 0;
}
.offers-block_info_legend-item:nth-child(9)::before {
  margin-left: 3px;
  background-position: -127px -29px;
}
.offers-block_info_legend-item:nth-child(10) {
  padding: 36px 0 0 0;
}
.offers-block_info_legend-item:nth-child(10)::before {
  width: 70px;
  height: 34px;
  background-position: 0 -29px;
  background-color: #ffffff;
  border-left: 6px solid white;
  border-right: 6px solid white;
  border-bottom: 1px solid white;
  box-sizing: content-box;
}
.offers-block_plan {
  z-index: 100;
  float: left;
  width: 545px;
  height: 688px;
  background-image: url("../img/plan1.jpg");
  position: relative;
  top: 46px;
  left: -28px;
}
.offers-block_plan path.area {
  fill: #ffffff;
  fill-opacity: 0.01;
  stroke: #ffffff;
  stroke-width: 2.5;
  stroke-linecap: butt;
  stroke-linejoin: miter;
  stroke-miterlimit: 4;
  stroke-dasharray: 7.5, 7.5;
  stroke-dashoffset: 0;
  stroke-opacity: 0.94117647;
  z-index: 100;
  cursor: pointer;
}
.offers-block_plan path.area:hover {
  fill: #216914;
  fill-opacity: 1;
}
.offers-block_plan path.area:active {
  fill: #6ecf44;
  fill-opacity: 1;
}
.offers-block_plan path.o_r {
  fill: #ffcb00;
  fill-opacity: 1;
  cursor: pointer;
}
.offers-block_plan path.o_r:hover {
  fill: #dbaf00;
}
.offers-block_plan path.o_s {
  fill: #e3000f;
  fill-opacity: 1;
}
path.house{
  pointer-events: none;
  fill: #CD2E44;
  stroke: #293D68;
}
.offers-block_plan::after {
  content: "";
  display: block;
  width: 545px;
  height: 688px;
  background-image: url("../img/numbers1.png");
  position: absolute;
  top: 0;
  left: 0;
  z-index: 200;
  pointer-events: none;
}
#plot-info {
  position: absolute;
  z-index: 1000;
  width: 259px;
  height: auto;
  background-color: #ffffff;
  display: none;
  border: 1px solid #a6ce39;
  padding: 0 20px;
}
.plot-info_cap {
  font-size: 1.056em;
  border-bottom: 1px solid #a6ce39;
  text-align: center;
  font-weight: 500;
  line-height: 2.5;
  margin-bottom: 9px;
}
.plot-info_cap2 {
  font-size: 1.056em;
  border-top: 1px solid #a6ce39;
  text-align: center;
  font-weight: 500;
  line-height: 2.5;
  margin-top: 9px;
}
.plot-info_line {
  text-align: left;
  line-height: 1.7;
}
.plot-info_cap_v-n {
  font-weight: 500;
}
.plot-info_cap_v-p {
  font-weight: 500;
}
.offers-block_legend {
  width: 313px;
  height: 189px;
  position: absolute;
  background-color: #eeeeee;
  top: -1px;
  right: -187px;
  padding: 30px 0 25px 25px;
}
.offers-block_legend > div {
  position: relative;
  padding-left: 66px;
  line-height: 1.5;
  margin-bottom: 23px;
  letter-spacing: 0.5px;
}
.offers-block_legend > div:before {
  content: "";
  display: block;
  width: 50px;
  height: 30px;
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid #ffffff;
}
.offers-block_legend_free:before {
  background-image: url("../img/plot_free.jpg");
}
.offers-block_legend_reserved:before {
  background-color: #ffcc00;
}
.offers-block_legend_sold:before {
  background-color: #e3000f;
}
/** EOF Offer-block **/
/** news-block  **/
.news-block {
  height: 494px;
  background-image: url("../img/bg_news_w.jpg");
  overflow: visible;
}
.news-block .center-content {
  position: relative;
  padding: 0;
}
.news-block_news {
  position: relative;
  top: -86px;
  width: 100%;
  height: 674px;
  background-image: url("../img/bg_news_center.jpg");
  padding: 41px 0 0 67px;
}
.news-block_caption {
  position: relative;
  border: 4px solid #ffffff;
  color: #ffffff;
  font-weight: 200;
  font-size: 2.444em;
  display: inline-block;
  padding: 0px 17px 4px 15px;
  margin-right: 100%;
}
.news-block_items {
  padding: 39px 22px;
}
.news-block_item {
  float: left;
  width: 400px;
  height: 486px;
  margin-right: 107px;
}
.news-block_item_img-wrapper {
  position: relative;
  width: 400px;
  height: 260px;
  overflow: hidden;
}
.news-block_item_img-wrapper img {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
  max-width: initial;
}
.news-block_item_caption {
  height: 74px;
  position: relative;
  margin-bottom: 5px;
}
.news-block_item_caption > a {
  color: #000000;
  position: absolute;
  bottom: 0;
  font-weight: 700;
}
.news-block_item_caption > a:hover {
  text-decoration: underline;
}
.news-block_item_caption > a:active {
  color: #ffffff;
}
.news-block_item_time {
  color: #ffffff;
}
.news-block_item_text {
  line-height: 1.2;
}
.news-block_see-more {
  position: absolute;
  color: #000000;
  right: 90px;
  bottom: 44px;
  font-weight: 400;
  border-bottom: 1px solid #000000;
}
.news-block_see-more:hover {
  border-bottom: none;
  padding-bottom: 1px;
}
.news-block_see-more:active {
  color: #ffffff;
  border: none;
}
/** EOF news block **/
/** advantages-block **/
.advantages-block {
  position: relative;
  height: auto;
  background-image: url("../img/bg_advantages.jpg");
  line-height: 1.3;
}
.advantages-block p {
  line-height: 1.2;
  margin: 19px 0;
}
.advantages-block b {
  font-weight: 500;
}
.advantages-block ul {
  list-style-type: disc;
  margin: 21px 0px;
}
.advantages-block ul li {
  margin: 18px 0 0 37px;
}
.advantages-block td {
  vertical-align: middle;
}
.advantages-block_center-content {
  padding: 8px 0 18px 90px;
  z-index: 100;
}
.advantages-block_plant {
  height: 0;
  padding: 0;
  font-size: 0;
}
.advantages-block_plant::after {
  content: "";
  display: block;
  position: absolute;
  width: 892px;
  height: 401px;
  top: 101px;
  right: -530px;
  background-image: url(../img/bg_plant.jpg);
  background-repeat: no-repeat;
  z-index: 50;
}
/** EOF advantages-block **/
/** advantages-block **/
.gallery-block {
  height: 822px;
}
#gallery-line{
  transition: margin-left 1000ms cubic-bezier(0.075, 0.82, 0.165, 1);
}
.gallery-block .center-content {
  padding: 0 69px;
}
.gallery-block_cap {
  border: 1px solid #a6ce39;
  color: #a6ce39;
  font-weight: 200;
  font-size: 2.444em;
  text-align: center;
  margin-top: 38px;
  padding: 14px 0;
}
.gallery-block_slider {
  margin-top: 24px;
  border-bottom: 1px solid #a6ce39;
}
.gallery-block_slider .slider-wrapper {
  width: 1036px;
  height: 644px;
  border: 0;
}
.gallery-block_slider .slider-line {
  width: auto;
  height: 688px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: flex-start;
}
.gallery-block_slider .slider-button__l {
  top: 292px;
  left: 42px;
}
.gallery-block_slider .slider-button__r {
  top: 292px;
  right: 43px;
}
.gallery-item {
  position: relative;
  display: block;
  flex: 0 1 auto;
  width: 200px;
  height: 200px;
  margin: 0 9px 9px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  cursor: pointer;
}
.gallery-item img {
  width: initial;
  max-width: initial;
  max-height: initial;
}
.gallery-item:hover::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 200;
  width: 100%;
  height: 100%;
  background-color: rgba(166, 206, 57, 0.4);
}
.gallery-item:active::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 200;
  width: 100%;
  height: 100%;
  background-color: rgba(161, 161, 161, 0.5);
}
/** EOF advantages-block **/
/** map-block **/
.map-block {
  padding-top: 63px;
  min-height: 680px;
}
.map-block b {
  font-weight: 700;
}
.map-block_map {
  width: 48%;
  float: left;
}
.map-block_legend {
  width: 632px;
  min-height: 685px;
  float: left;
  padding: 0 0 0 42px;
}
.map-block_legend_cap {
  color: #de0e00;
  font-size: 2.444em;
  margin: -16px 0 20px 0;
  font-weight: 200;
}
.map-block_legend_text {
  margin-bottom: 18px;
}
.map-block_legend_ways li {
  padding-left: 32px;
  line-height: 1.25;
  margin-bottom: 19px;
  position: relative;
}
.map-block_legend_ways li::before {
  content: "";
  display: block;
  position: absolute;
  background-image: url(../img/icons_transport.png);
  overflow: hidden;
  top: 5px;
  left: -8px;
  width: 28px;
  height: 34px;
}
.map-block_legend_ways li:nth-child(1)::before {
  height: 22px;
}
.map-block_legend_ways li:nth-child(2)::before {
  width: 24px;
  background-position: -28px 0;
}
.map-block_legend_ways li:nth-child(3)::before {
  background-position: -52px 0;
}
.map-block_legend_ways li:nth-child(4)::before {
  content: none;
}
/** EOF map-block **/
/** opinions-block **/
.opinions-block {
  height: 738px;
  background-image: url(../img/bg_opinion.jpg);
  border-top: 3px solid #004b1c;
}
.opinions-block_cap {
  color: #ffffff;
  letter-spacing: 0.1px;
  background-image: url(../img/bg_opinion_pl.jpg);
  font-size: 2.444em;
  font-weight: 200;
  text-align: center;
  width: 532px;
  margin: 2px auto 0 auto;
  padding: 27px 0 25px 0;
}
.opinions-block_slider .slider-wrapper {
  border: none;
  width: 1030px;
  height: 520px;
  margin: 0 0 0 62px;
}
.opinions-block_slider .slider-item {
  position: relative;
  width: 1030px;
  height: 520px;
}
.opinions-block_slider .slider-item::before {
  content: "";
  display: block;
  position: absolute;
  width: 78px;
  height: 51px;
  background-image: url("../img/quote.png");
  overflow: hidden;
  top: 126px;
  left: 83px;
}
.opinions-block_slider .slider-item_name {
  font-size: 2em;
  margin-top: 10px;
  font-weight: 500;
}
.opinions-block_slider .slider-item_plot {
  font-size: 2em;
  margin-top: -5px;
}
.opinions-block_slider .slider-item_text {
  position: relative;
  font-size: 1em;
  background: none;
  width: 834px;
  height: 420px;
  color: #000000;
  margin: 19px 0 0 191px;
}
.opinions-block_slider .slider-item_text p {
  margin: 14px 0;
}
.opinions-block_slider .slider-item_text_time {
  margin-bottom: 5px;
}
.opinions-block_slider .slider-item_text_text {
  margin-left: 100px;
}
.opinions-block_slider .slider-button__l {
  border-right: 20px solid #44aa00;
  top: 16px;
  left: -1px;
}
.opinions-block_slider .slider-button__l:hover {
  border-right: 20px solid #004b1c;
}
.opinions-block_slider .slider-button__r {
  border-left: 20px solid #44aa00;
  top: 396px;
  right: 52px;
}
.opinions-block_slider .slider-button__r:hover {
  border-left: 20px solid #004b1c;
}
/** EOF opinions-block **/
.footer .main-menu {
  height: 85px;
  border-bottom: 1px solid #b0cc20;
  padding-left: 20px;
}
.footer .main-menu__item {
  padding-right: 13px;
  margin-right: 8px;
}
.footer .footer_contacts {
  height: 208px;
}
.footer .footer_logo {
  width: 228px;
  height: 140px;
  /*background-color: #eeeeee;*/
  margin-top: -12px;
  padding: 24px 22px 0px 22px;
  float: left;
}
.footer .contacts-block_phone {
  width: 662px;
  float: left;
}
.footer .phone-icon {
  float: left;
  margin: 14px 1px 0 68px;
}
.footer .contacts-block_phone_group {
  float: left;
  margin: 26px 0 0 19px;
}
.footer .contacts-block_mail-link {
  line-height: 2em;
  font-weight: 400;
  float: left;
  display: block;
  margin: 46px 0 0 34px;
}
.footer .social-networks {
  float: left;
  text-align: center;
  margin-top: 31px;
  font-size: 0;
}
.footer .social-networks .square-icon {
  font-size: 0;
}
.footer-copyrights {
  font-size: 0.889em;
  float: left;
  margin-top: 27px;
  width: 944px;
}
.footer-copyrights a {
  color: #000;
}
.footer-copyrights .iqsolutions {
  float: right;
  overflow: visible;
}
.footer-copyrights > div {
  float: left;
  margin-left: 68px;
}
.iqsolutions {
  position: relative;
  padding-right: 99px;
  font-weight: 400;
}
.iqsolutions::after {
  content: "";
  position: absolute;
  display: block;
  width: 92px;
  height: 35px;
  background-image: url(../img/iq.png);
  right: 0px;
  top: -6px;
}
.iqsolutions:hover::after {
  background-position: 0 -35px;
}
.iqsolutions:active::after {
  background-position: 0 0;
}
.anchor {
  display: block;
  position: relative;
  top: -150px;
  visibility: hidden;
  height: 0;
}
.separator-block {
  height: 3px;
  border-bottom: 3px solid #004b1c;
}
.breadcrumbs-block {
  margin: 23px 0 48px 0;
}
a.breadcrumbs-a {
  position: relative;
  text-decoration: none;
  border-bottom: 1px solid #747474;
  margin-right: 16px;
}
a.breadcrumbs-a:hover {
  border-bottom: none;
}
a.breadcrumbs-a:hover {
  color: #a1a1a1;
}
a.breadcrumbs-a::after {
  content: "-";
  position: absolute;
  right: -15px;
  top: 0;
  padding: 0 1px;
  text-decoration: none;
}
.breadcrumbs-a {
  font-size: 0.889em;
  color: #747474;
}
.black-link {
  color: #000000;
  border-bottom: 1px solid #000000;
  letter-spacing: 0.5px;
}
.black-link:hover {
  border-bottom: 0;
  padding-bottom: 1px;
}
.black-link:active {
  color: #a1a1a1;
}
/** news page **/
.news-news-list {
  overflow: hidden;
}
.news-news-list .news-block_item {
  position: relative;
  padding-bottom: 1.4em;
  box-sizing: content-box;
  margin-bottom: 59px;
}
.news-news-list .news-block_item .black-link {
  position: absolute;
  bottom: 0;
}
.news-news-list .news-block_item_time {
  color: #408933;
}
.news-news-list .news-block_item_caption > a:hover {
  color: #000000;
}
.news-news-list .news-block_item_caption > a:active {
  color: #a1a1a1;
}
.news-news-caption {
  position: relative;
  border: 4px solid #44aa00;
  color: #004b1c;
  font-weight: 200;
  font-size: 2.444em;
  display: inline-block;
  padding: 0px 17px 4px 15px;
  margin: 0 0 40px -23px;
}
.news-item{
  position: relative;
  display: block;
  flex: 0 1 auto;
  width: 400px;
  height: 400px;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: 50% 50%;
}
/** EOF news page **/
/** One news page **/
.onenews-header {
  margin: 60px 0 0 0;
}
.onenews-header .black-link {
  float: right;
  position: relative;
  top: -29px;
}
.onenews-caption {
  font-size: 1.667em;
  color: #44aa00;
  font-weight: 400;
  letter-spacing: -0.5px;
}
.onenews-separated {
  line-height: 1.2em;
  border-bottom: 1px solid #a6ce39;
  padding: 34px 20px 44px 20px;
}
.onenews-gallery {
  padding: 27px 86px 18px 86px;
  width: 1045px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: flex-start;
  box-sizing: content-box;
}
.onenews-desc {
  padding: 44px 20px 50px 20px;
}
.onenews-media {
  padding: 27px 86px 24px 86px;
}
.onenews-media iframe {
  display: block;
  margin: 0 auto;
}
.onenews-endline {
  padding: 53px 0 127px 0;
}
.onenews-endline .black-link {
  float: right;
}
/** EOF One news page **/
/** debug **/
.oc-layer {
  width: 1920px;
  max-width: 1920px !important;
  left: 50% !important;
  top: 8px !important;
  transform: translate(-50%, 0);
}
/** eof debug **/
#gallery_wrap{
  max-height: 260px;
  overflow-y: auto;
}
.house-gallery-element{
  display: inline-block;
  margin: 4px;
  cursor: pointer;
  border: 2px solid rgba(0, 0, 0, 0);
  background-position: center;
  background-repeat: none;
  background-size: cover;
  width: 75px;
  height: 75px;
}

.house-gallery-element.selected{
  border: 2px solid #28A745;
}