@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;400;500;600;700;800;900&display=swap');
/* @font-face {
    font-family: 'Montserrat';
    src: url("../fonts/drukwidecyr-bold.eot");
    src: url("../fonts/drukwidecyr-bold.eot?#iefix")format("embedded-opentype"),
    url("../fonts/drukwidecyr-bold.woff2")format("woff2"),
    url("../fonts/drukwidecyr-bold.woff")format("woff"),
    url("../fonts/drukwidecyr-bold.ttf")format("truetype"),
} */
/* resset css */
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, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* end - resset css */

/* global css */
*{
  box-sizing: border-box;
}
*,*:hover,*:focus{
  outline: none;
}
input {
    -webkit-appearance: none;
}
img{
  max-width: 100%;
  height: auto;
}
.dflex{
  display: -webkit-flex;
  display: -ms-flex;
  display: flex!important;
  flex-wrap: wrap;
}
.dflex-justify{
  justify-content: space-between;
}
.dflex-center{
  align-items: center;
}
.dflex-center-center{
  justify-content: center;
}
html{
  font-family: "Montserrat";
  font-size: 14px;
	color: #212121;
	font-weight: 400;
	line-height: 1.2;
}
input,
textarea{
	font-family: "Montserrat";
	font-weight: 500;
}
a{
  color: #2A2C2E;
  text-decoration: none;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}
a:hover{
  color: #000;
}
.container{
  margin: auto;
  max-width: 1480px;
	width: 85%;
	padding: 0 15px;
}
.text-center{
	text-align: center;
}
.btn-theme{
	position: relative;
	line-height: 42px;
	height: 42px;
	color: #212121;
	background: #fff;
	padding: 0 35px;
	display: inline-block;
	font-weight: 700;
	overflow: hidden;
	transition: all 0.3s ease-out;
	letter-spacing: 0.1em;
}
.btn-theme:hover{
	line-height: 100px;
}
.btn-theme::after{
	content: attr(data-text);
	position: absolute;
	top: -42px;
	left: 0;
	width: 100%;
	text-align: center;
	transition: all 0.3s ease-out;
	line-height: 42px;
}
.btn-theme:hover::after{
	top: 0;
}

.btn-theme-red{
	position: relative;
	line-height: 52px;
	height: 52px;
	color: #fff;
	background: #7dba38;
	padding: 0 35px;
	display: inline-block;
	font-weight: 700;
	overflow: hidden;
	transition: all 0.3s ease-out;
	letter-spacing: 0.1em;
}
.btn-theme-red:hover{
	line-height: 120px;
	color: #fff;
}
.btn-theme-red::after{
	content: attr(data-text);
	position: absolute;
	top: -52px;
	left: 0;
	width: 100%;
	text-align: center;
	transition: all 0.3s ease-out;
	line-height: 52px;
}
.btn-theme-red:hover::after{
	top: 0;
}


.btn-theme-border{
	display: inline-block;
	position: relative;
	line-height: 48px;
	border: 1.5px solid #212121;
	padding: 0 30px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.2em;
	height: 50px;
	overflow: hidden;
	transition: all 0.3s ease-out;
}
.btn-theme-border:hover{
	line-height: 110px;
}
.btn-theme-border::after{
	content: attr(data-text);
	position: absolute;
	top: -50px;
	left: 0;
	width: 100%;
	text-align: center;
	transition: all 0.3s ease-out;
	line-height: 50px;
	color: #212121;
}
.btn-theme-border:hover::after{
	top: 0;
}
.show-tablet{
	display: none;
}
.show-mobile{
	display: none;
}
strong{
	font-weight: 700;
}
.overflow-hidden{
	overflow: hidden;
}
h1,
h2{
	font-weight: 700;
	color: #5c4332;
}
@media (max-width: 1200px){
	.btn-theme-red{
		padding: 0 10px;
		width: 100%;
		max-width: 300px;
		text-align: center;
	}
}
@media (max-width: 991px){
	.show-tablet{
		display: block;
	}
}
@media (max-width: 767px){
	.show-mobile{
		display: block;
	}
}
@media (max-width: 479px){
	.container{
		max-width: 100%;
		width: 100%;
	}
}
/* header */
header{
  position: absolute;
  z-index: 99;
  width: 100%;
  padding: 27px 80px 0;
}
header .header-col-1,
header .header-col-2{
  width: 20%;
}
header .header-col-2 a{
  display: block;
  text-align: right;
}
header .logo{
  width: 160px;
}
header .menu, #menu .menu{
	cursor: pointer;
	transition: all 0.3s ease-out;
	width: 30px;
	height: 18px;
	position: relative;
}
header .menu span,
#menu .menu span{
	width: 30px;
	height: 2px;
	background: #fff;
	display: block;
	transition: all 0.3s ease-out;
	position: absolute;
	top: 0;
	left: 0;
}
header.inside-page .menu span{
	background: #212121;
}
header.inside-page .menu{
	color: #212121;
}
#menu .menu span{
	background: #212121;
}
header .menu span:nth-child(2), #menu .menu span:nth-child(2){
	width: 25px;
	top: 8px;
}
header .menu span:nth-child(3), #menu .menu span:nth-child(3){
	width: 20px;
	margin-bottom: 0;
	top: 16px;
}
header .menu.open, #menu .menu.open{
	transform: rotate(360deg);
}
header .menu.open span, #menu .menu.open span{
	top: 10px;
	background: #000;
}
header .menu.open span:first-child, #menu .menu.open span:first-child{
	transform: rotate(45deg);
}
header .menu.open span:nth-child(3), #menu .menu.open span:nth-child(3){
	width: 30px;
	transform: rotate(-45deg);
}
header .menu.open span:nth-child(2), #menu .menu.open span:nth-child(2){
	opacity: 0;
}
header .phone,
#menu .phone{
	color: #fff;
	font-size: 14px;
	font-family: 'Montserrat';
	font-weight: 700;
	line-height: 22px;
}
header.inside-page .phone{
	color: #575757;
}
header .callback, #menu .callback{
	color: #fff;
	font-size: 10px;
	font-family: 'Montserrat';
	font-weight: 700;
	text-decoration: underline;
	line-height: 22px;
}
header.inside-page .callback{
	color: #7dba38;
}
header .messengers{
	text-align: right;
	margin-top: 7px;
}
header .messengers li{
	display: inline-block;
	margin-left: 7px;
}
header .messengers li a{
	display: inline-block;
}
.bottom-menu .messengers{
	margin-bottom: 20px;
}
.bottom-menu .messengers li{
	display: inline-block;
	margin: 0 12px;
}
.footer-bottom .footer-social .messengers li{
	display: inline-block;
	margin-right: 15px;
}
.contact-gardd .messengers{
	margin-bottom: 28px;
}
.contact-gardd .messengers li{
	display: inline-block;
	margin-right: 15px;
}
.messengers li a svg{
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.messengers li a:hover svg{
	-webkit-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
}
/* .bottom-menu .messengers li svg{
	width: 37px!important;
	height: 37px!important;
} */
#menu{
	position: fixed;
	top: 0;
	left: -730px;
	width: 730px;
	height: 100%;
	background: #fff;
	z-index: 99;
	text-align: center;
	padding: 40px 80px;
	transition: all 0.3s ease-out;
}
#menu.open{
	left: 0;
}
#menu .top-menu{
	margin: 90px auto 60px;
	max-width: 350px;

}
#menu .top-menu a{
	line-height: 40px;
	font-weight: 700;
	font-size: 16px;
	text-transform: uppercase;
	display: block;
}
#menu .top-menu li ul{
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	justify-content: center;
}
#menu .top-menu li ul li{
	position: relative;
}
#menu .top-menu li ul li a{
	font-size: 14px;
	color: #575757;
	font-weight: 600;
	padding: 0 30px;
}
#menu .top-menu li.menu-item-has-children > a{
	position: relative;
}
#menu .top-menu li.menu-item-has-children > a::after{
	content: '';
	position: absolute;
	bottom: 0;
	height: 16px;
	left: 50%;
	background: #C4C4C4;
	width: 1px;
	z-index: 9;
}
#menu .top-menu li ul li::after{
	content: '';
	position: absolute;
	top: 0;
	height: 16px;
	left: 50%;
	background: #C4C4C4;
	width: 1px;
	z-index: 9;
}
#menu .top-menu li ul li::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 50%;
	height: 1px;
	background: #C4C4C4;
	z-index: 9;
}
#menu .top-menu li ul li:first-child::before{
	left: 50%;
	right: 0;
}
#menu .top-menu a:hover{
	color: #7dba38;
}
#menu .bottom-menu{
	position: absolute;
	bottom: 60px;
	left: 0;
	width: 100%;
	text-align: center;
	z-index: 9;
}
#menu .bottom-menu a{
	line-height: 22px;
	font-weight: 700;
	font-size: 14px;
	color: #212121;
}
#menu .bottom-menu a.callback{
	color: #7dba38;
	font-size: 10px;
	text-decoration: underline;
}
.header-col-1{
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
}
.header-col-1 .menu{
	margin-right: 30px;
	padding-top: 25px;
  color: #fff;
  font-weight: 600;
  font-size: 9px;
  text-transform: uppercase;
}
.wpml-ls-legacy-dropdown{
	width: 30px;
}
.wpml-ls-legacy-dropdown .wpml-ls-item{
	text-align: center;
}
.wpml-ls-legacy-dropdown a{
	font-size: 10px;
	font-weight: 700;
	background: none;
	padding: 0;
	color: #575757;
	border: 0;
}
.wpml-ls-legacy-dropdown a:hover{
	color: #000;
}
.wpml-ls-legacy-dropdown .wpml-ls-current-language:hover>a,
.wpml-ls-legacy-dropdown a:focus,
.wpml-ls-legacy-dropdown a:hover{
	background: none;
}
.wpml-ls-legacy-dropdown .wpml-ls-sub-menu{
	border: 0;
}
.wpml-ls-legacy-dropdown a.wpml-ls-item-toggle{
	padding-right: 0;
}
.wpml-ls-legacy-dropdown .wpml-ls-sub-menu .wpml-ls-item{
	margin-bottom: 20px;
}
.wpml-ls-legacy-dropdown .wpml-ls-sub-menu .wpml-ls-item a{
	transition: all 0.3s ease-out;
}
.wpml-ls-legacy-dropdown .wpml-ls-sub-menu .wpml-ls-item a:hover{
	opacity: 0.7;
}
.wpml-ls-legacy-dropdown .wpml-ls-sub-menu .wpml-ls-item:last-child{
	margin-bottom: 0;
}
.wpml-ls-legacy-dropdown .wpml-ls-sub-menu{
	top: 150%;
	opacity: 0;
	transition: all 0.3s ease-out;
}
.wpml-ls-legacy-dropdown:hover .wpml-ls-sub-menu{
	top: 100%;
	opacity: 1;
}
.header-frontpage .wpml-ls-legacy-dropdown a,
.header-frontpage .wpml-ls-legacy-dropdown a:hover,
.header-frontpage .wpml-ls-legacy-dropdown a:focus{
	color: #fff;
}
.header-frontpage .wpml-ls-legacy-dropdown .wpml-ls-current-language:hover>a,
.header-frontpage .wpml-ls-legacy-dropdown a:focus,
.header-frontpage .wpml-ls-legacy-dropdown a:hover{
	color: #fff;
}
.header-frontpage .wpml-ls-legacy-dropdown > ul > li > a,
.wpml-ls-legacy-dropdown a.wpml-ls-item-toggle{
	padding-bottom: 20px;
}
.wpml-ls-legacy-dropdown a.wpml-ls-item-toggle:after{
	content: '';
	display: block;
	background: url(../img/arrow-lang.svg) center / contain;
	background-repeat: no-repeat;
	height: 10px;
	width: 7px;
	border: 0;
	padding: 0;
	position: relative;
	right: auto;
	top: auto;
	margin: 2px auto 0;
}
.header-frontpage .wpml-ls-legacy-dropdown a.wpml-ls-item-toggle:after{
	background: url(../img/arrow-lang-white.svg) center / contain;
}

@media (max-width: 730px){
	#menu{
		width: 100%;
		padding: 25px 20px;
	}
	#menu .top-menu a{
		line-height: 30px;
		font-size: 14px;
	}
	#menu .top-menu{
		margin: 0px auto 30px;
    	max-width: 250px;
	}
	#menu .top-menu + .vertical-social{
		/* position: relative; */
		/* left: 0; */
		/* height: auto; */
	}
	#menu .top-menu + .vertical-social ul{
		/* writing-mode: inherit; */
	}
	#menu .top-menu + .vertical-social ul a{
		font-size: 13px;
		padding: 0 15px;
	}
	#menu .bottom-menu{
		bottom: 30px;
	}
}

@media (max-width: 767px){
	header .header-col-2 .language-mobile a,
	.language-mobile{
		text-align: center;
	}
	.language-mobile{
		width: 30px;
		margin: 0 0 0 auto;
	}
}
@media (max-height: 795px) and (min-width: 992px){
	#menu .top-menu{
		margin: 20px auto 60px;
	}
	#menu .bottom-menu{
		bottom: 30px;
	}
}
@media (max-height: 690px) and (min-width: 992px){
	#menu .top-menu{
		margin: 0px auto 60px;
	}
	#menu .top-menu a{
		line-height: 30px;
	}
	#menu .top-menu li.menu-item-has-children > a::after,
	#menu .top-menu li ul li::after{
		height: 8px;
	}
}
@media (max-height: 600px) and (min-width: 992px){
	#menu{
		padding: 20px 60px;
	}
	#menu .top-menu a {
		font-size: 14px;
    	line-height: 30px;
	}
	.messengers li a svg{
		max-width: 30px;
	}
	.bottom-menu .messengers{
		margin-bottom: 5px;
	}
}
@media (max-height: 500px) and (min-width: 992px){
	#menu .bottom-menu{
		bottom: 15px;
	}
	#menu .top-menu{
		position: relative;
		top: -20px;
	}
}

/* end - header */

/* footer */
footer{
	padding: 60px 0 50px;
	background: url(/wp-content/uploads/2026/03/mistosvoih-home-image.jpg) center / cover;
	position: relative;
	color: #fff;
}
footer:after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 20.6%, rgba(0, 0, 0, 0.8) 76.04%);
}
footer > *{
	position: relative;
	z-index: 2;
}
footer a{
	color: #fff;
}
footer h2{
	font-family: 'Montserrat';
	font-size: 65px;
	color: #fff;
	margin-bottom: 80px;
}
.list-contact{
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	margin-bottom: 20px;
	gap: 20px;
}
.list-contact li{
	width: 420px;
}
.list-contact li p{
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	line-height: 36px;
}
.list-contact li a{
	font-size: 25px;
	font-weight: 500;
	display: block;
}
.list-contact li a:hover{
	color: #fff;
	opacity: 0.7;
}
.list-contact li a.callback{
	font-size: 10px;
	font-weight: 700;
	color: #E25151;
	text-decoration: underline;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	line-height: 24px;
	margin-top: 2px;
}
.list-contact li a.callback:hover{
	/* color: #fff; */
	opacity: 0.7;
}
.address-contact li,
.list-contact.address-contact a{
	font-size: 12px;
	font-weight: 500;
	line-height: 25px;
	letter-spacing: 0.1em;
}
.footer-bottom{
	padding-top: 60px;
	padding-bottom: 20px;
}
.footer-bottom .title{
	font-size: 12px;
	text-transform: uppercase;
	line-height: 30px;
	letter-spacing: 0.2em;
	font-weight: 500;
}
.footer-bottom .container{
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	justify-content: space-between;
}
.footer-bottom .logo{
	max-width: 187px;
}
.footer-bottom .logo img{
	margin-bottom: 30px;
	max-height: 90px;
}
.footer-bottom .logo p{
	font-size: 9px;
	font-weight: 500;
	line-height: 16px;
}
.footer-bottom .menu-footer{
	max-width: 330px;
}
.footer-bottom .menu-footer ul{
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	flex-wrap: wrap;
}
.footer-bottom .menu-footer ul li{
	width: 50%;
	/* margin-bottom: 20px; */
}
.footer-bottom .menu-footer ul li a{
	color: #fff;
	font-size: 12px;
	line-height: 30px;
	display: inline-block;
}
.footer-bottom .menu-footer ul li a:hover{
	color: #7dba38;
}
.footer-bottom .footer-social li{
	display: block;
	margin-bottom: 20px;
}
.footer-bottom .footer-social li a{
	font-size: 12px;
	text-transform: uppercase;
	line-height: 30px;
	letter-spacing: 0.2em;
	font-weight: 500;
}
.footer-bottom .footer-social li a:hover{
	color: #7dba38;
}
.footer-bottom .show-house{
	max-width: 340px;
}
.footer-bottom .show-house p{
	font-size: 12px;
	color: #777777;
	line-height: 18px;
	margin: 12px 0 25px;
}
.footer-bottom .show-house p.title{
	color: #fff;
	line-height: 30px;
	margin: 0;
}
.copyright{
	padding-top: 40px;
}
.copyright .container{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}
.copyright a,
.copyright p{
	color: #777;
	font-size: 12px;
	line-height: 18px;
	font-weight: 500;
}
footer .wrapper-e-oselya{
	gap: 15px;
}
footer .wrapper-e-oselya img{
	margin: 0!important;
}
@media (max-width: 1600px){
	footer .container{
		width: 90%;
	}
	footer h2 {
    font-size: 65px;
		margin-bottom: 60px;
	}
	.footer-bottom .logo{
		margin-right: 100px;
	}
}
@media (max-width: 1400px){
	.list-contact li a{
		font-size: 20px;
	}
}
@media (max-width: 1300px){
	.footer-bottom .menu-footer {
    max-width: 300px;
	}
	.footer-bottom .logo,
	.footer-social {
    margin-right: 40px;
	}
}
@media (max-width: 1200px){
	footer h2{
		font-size: 42px;
	}
	.footer-bottom .show-house {
    max-width: 270px;
	}
}
@media (max-width: 1100px){
	.footer-bottom .logo, .footer-social {
	   margin-right: 20px;
	}
}
@media (max-width: 991px){
	.footer-bottom .menu-footer{
		display: none;
	}
}
@media (max-width: 767px){
	footer h2{
		text-align: center;
		margin-bottom: 60px;
	}
	.list-contact{
		flex-wrap: wrap;
		margin-bottom: 0;
	}
	.list-contact li{
		width: 100%;
		text-align: center;
		margin-bottom: 20px;
	}
	.list-contact li p:first-child,
	.footer-bottom .menu-footer{
		display: none;
	}
	.footer-bottom .container{
		flex-wrap: wrap;
		text-align: center;
	}
	.footer-bottom .container > *{
		width: 100%;
		max-width: 100%;
	}
	.footer-bottom .footer-social li{
		display: inline-block;
		margin-bottom: 0;
	}
	.footer-bottom .footer-social li a{
		padding: 0 15px;
	}
	.footer-bottom .logo{
		order: 3;
	}
	.footer-bottom .logo p{
		display: none;
	}
	.footer-bottom .logo img{
		max-width: 170px;
		margin-bottom: 0;
	}
	.footer-bottom .show-house{
		order: 1;
	}
	.footer-bottom .footer-social{
		padding: 25px 0 40px;
		order: 2;
	}
	.copyright p{
		text-align: center;
	}
	.footer-bottom .show-house p:not(.title){
		max-width: 330px;
		margin: 15px auto 15px;
		font-size: 8px;
	}
	.footer-bottom{
		padding-top: 20px;
	}
	.list-contact li a{
		font-size: 16px;
	}
	.address-contact li{
		font-size: 8px;
		line-height: 18px;
	}
	footer .wrapper-e-oselya img{
		max-width: max-content!important;
	}
	.footer-bottom .logo{
		margin-right: 0;
	}
}
@media (max-width: 479px){
	.footer-bottom .footer-social li a {
	    font-size: 10px;
			padding: 0 10px;
	}
	.btn-theme-red{
		padding: 0 9px;
		width: 100%;
		max-width: 280px;
	}
}
/* end - footer */

/* homepage */
#homepage{
	height: 100vh;
	background-size: cover;
	background-position: center;
	position: relative;
	z-index: 1;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;
}
#homepage::after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 5.12%, rgba(0, 0, 0, 0) 99.73%);
}
#homepage::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/* background: linear-gradient(90deg, rgba(0, 0, 0, 0.6) 5.12%, rgba(0, 0, 0, 0.4) 99.73%); */
	z-index: 2;
}
#homepage .container{
	position: relative;
	z-index: 10;
}
#homepage p.suptitle{
	color: #fff;
	font-size: 12px;
	font-family: 'Montserrat';
	font-weight: 600;
	text-transform: uppercase;
	display: inline-block;
	background: #7dba38;
	padding: 5px 10px;
}
#homepage h1{
	color: #fff;
	font-size: 60px;
	font-family: 'Montserrat';
	max-width: 710px;
	margin: 15px 0 40px;
}
#homepage p.subtitle{
	color: #fff;
	font-size: 14px;
	font-family: 'Montserrat';
	font-weight: 500;
	margin-bottom: 90px;
	line-height: 1.4;
}
#homepage .main-bottom{
	position: absolute;
	bottom: 30px;
	left: 0;
	z-index: 10;
	width: 100%;
}
#homepage .main-bottom .container{
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	justify-content: space-between;
}
#homepage .main-bottom .container .item{
	width: 23%;
	color: #fff;
	padding-left: 47px;
	position: relative;
}
#homepage .main-bottom .container .item span{
	position: absolute;
	left: 0;
	font-size: 12px;
	line-height: 1.5;
	font-weight: 600;
}
#homepage .main-bottom .container .item:after{
	content: '';
  transform: rotate(-70deg);
  width: 42px;
  height: 1px;
  background: #fff;
  opacity: 0.5;
  position: absolute;
  top: 18px;
  left: 5px;
}
#homepage .main-bottom .container .item .title,
#homepage .main-bottom .container .item .title + p,
#homepage .main-bottom .container .item p{
	color: #fff;
	font-size: 12px;
	line-height: 1.5;
	font-weight: 600;
	text-transform: uppercase;
}
#homepage .main-bottom .container .item .title + p{
	font-size: 13px;
	line-height: 15px;
	margin-top: 9px;
}
#homepage #play-video{
	width: 118px;
	height: 118px;
	position: absolute;
	z-index: 11;
	top: calc((100% - 59px) / 2);
	left: calc((100% - 59px) / 2);
	border: 2px solid #fff;
	display: inline-block;
	border-radius: 50%;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	transition: all 0.2s ease-out;
}
#homepage #play-video span{
	/* position: absolute; */
	transition: all 0.2s ease-out;
	max-width: 80px;
	text-align: center;
	position: relative;
	margin-top: -5px;
}
#homepage #play-video svg{
	margin-top: -5px;
}
/* #homepage #play-video span:first-child{
	width: 6px;
	height: 6px;
	background: #fff;
	top: calc((100% - 3px) / 2);
	left: calc((100% - 3px) / 2);
	border-radius: 50%;
	z-index: 2;
} */
/* #homepage #play-video:hover span:first-child{
	background: #212121;
} */
/* #homepage #play-video span:nth-child(2){
	width: 0px;
	height: 0px;
	background: #fff;
	top: 50%;
	left: 50%;
	border-radius: 50%;
	z-index: 1;
} */
/* #homepage #play-video:hover span:nth-child(2){
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
} */
#homepage #play-video span:nth-child(1),
#homepage #play-video span:nth-child(2){
	font-size: 10px;
	font-weight: 600;
	color: #fff;
	text-transform: uppercase;
	display: inline-block;
	/* top: calc((100% - 5px) / 2); */
	/* right: 10px; */
	z-index: 4;
}
/* #homepage #play-video:hover span:nth-child(1),
#homepage #play-video:hover span:nth-child(2){
	color: #fff;
} */
/* #homepage #play-video span:nth-child(2){
	right: 150px;
} */
/* #homepage #play-video:hover span:nth-child(2){
	right: 10px;
}
#homepage #play-video:hover span:nth-child(1){
	right: -100px;
} */
#homepage #play-video:hover{
	background: #fff;
}
#homepage #play-video:hover svg path{
	stroke: #212121;
}
#homepage #play-video:hover span{
	color: #212121;
}

.button-to-eco-village{
	position: absolute;
	right: 0;
	bottom: 0;
	background: #fff;
	z-index: 10;
	width: 217px;
	height: 76px;
	padding: 25px 24px;
	overflow: hidden;
}
.button-to-eco-village span{
	display: block;
	font-size: 10px;
	font-weight: 700;
	color: #4F4F4F;
	text-transform: uppercase;
	line-height: 16px;
	height: 16px;
	transition: all 0.3s ease-out;
}
.button-to-eco-village span:first-child{
	position: relative;
}
.button-to-eco-village span svg{
	transition: all 0.3s ease-out;
	position: absolute;
	top: 3px;
}
.button-to-eco-village span:last-child{
	font-weight: 800;
	color: #43532C;
	text-transform: uppercase;
	letter-spacing: 1.1;
}
.first-button-to-eco-village{
	margin-right: 5px;
	left: -100px;
}
.second-button-to-eco-village{
	margin-left: 5px;
	left: 96px;
}
.button-to-eco-village:hover span:first-child{
	padding-left: 65px;
}
.button-to-eco-village:hover span:first-child .first-button-to-eco-village{
	left: 0px;
}
.button-to-eco-village:hover span:first-child .second-button-to-eco-village{
	left: 190px;
}

.vertical-social{
	position: absolute;
	height: 100%;
  left: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0px;
	z-index: 10;
}
.vertical-social ul{
	transform: rotate(0deg);
	writing-mode: tb-rl;
}
.vertical-social ul li{
	display: inline-block;
	margin: 27px 0px;
	position: relative;
}
.vertical-social ul li::after{
	content: '';
	position: absolute;
	height: 0;
	width: 1px;
	background: #fff;
	opacity: 0;
	transition: all 0.3s ease-out;
	top: 0px;
	left: -7px;
}
.vertical-social ul li:hover::after{
	height: 100%;
	opacity: 1;
}
.vertical-social ul a,
.vertical-social ul a:hover{
	color: #fff;
}
#menu .vertical-social ul a{
	color: #9C9C9C;
}
#menu .vertical-social ul a:hover{
	color: #212121;
}
#menu .vertical-social ul li::after{
	background: #9C9C9C;
}
#menu .vertical-social ul li:hover::after{
	background: #212121;
}
.vertical-social-dark.vertical-social ul a{
	color: #575757
}
.vertical-social ul a:hover{
	color: #212121;
}
.vertical-social-dark.vertical-social ul li:hover::after{
	background: #212121;
}
.vertical-social.vertical-social-homepage ul a:hover{
	color: #fff!important;
}

@media (max-width: 1600px){
	#homepage .container{
		max-width: 1160px;
	}
	#homepage h1{
		font-size: 80px;
	}
}
@media (max-width: 1400px){
	#homepage .container {
    max-width: 960px;
	}
	#homepage h1 {
    font-size: 60px;
	}
	#homepage p.subtitle{
		margin-bottom: 50px;
	}
	#homepage .main-bottom .container .item{
		width: 25%;
	}
	.button-to-eco-village{
		width: 190px;
		padding: 25px 15px;
	}
}
@media (max-width: 1350px){
	#homepage .main-bottom .container .item .title{
		font-size: 8px;
	}
	#homepage .main-bottom .container .item .title + p{
		font-size: 10px;
	}
	#homepage p.subtitle{
		font-size: 14px;
	}
	.vertical-social{
		left: 40px;
	}
}
@media (max-width: 1250px){
	#homepage .container {
	    max-width: 800px;
	}
	.btn-theme{
		line-height: 35px;
    height: 35px;
		font-size: 12px;
	}
	.btn-theme::after{
		line-height: 35px;
	}
}
@media (max-width: 1150px){
	#homepage .main-bottom{
		bottom: 15px;
	}
	.second-button-to-eco-village {
	    margin-left: 5px;
	    left: 78px;
	    width: 39px;
	}
	.button-to-eco-village {
    width: 166px;
    padding: 15px;
		height: 60px;
	}
	.button-to-eco-village span{
		font-size: 8px;
	}
	#homepage .main-bottom .container .item span{
		font-size: 12px;
	}
	#homepage .main-bottom .container .item:after{
		left: -2px;
	}
	#homepage .main-bottom .container .item{
		padding-left: 30px;
	}
	#homepage p.subtitle,
	#homepage p.suptitle{
		font-size: 14px;
	}


}
@media (max-width: 992px){
	#homepage .container {
	    max-width: 690px;
	}
	#homepage .main-bottom .container .item .title + p {
    font-size: 8px;
		margin-top: 3px;
	}
	#homepage .main-bottom .container .item:after {
    left: 5px;
		top: 14px;
		width: 30px;
	}
	#homepage #play-video{
		width: 70px;
		height: 70px;
	}
	#homepage #play-video span:nth-child(3),
	#homepage #play-video span:nth-child(4){
		font-size: 6px;
		right: 5px;
	}
	/* .vertical-social ul a{
		font-size: 8px;
	} */

}
@media (max-width: 991px){
	#homepage .main-bottom{
		display: none;
	}
	.button-to-eco-village{
		width: 100%;
		text-align: center;
		padding: 0 15px;
		height: 45px;
		display: block;
	}
	.button-to-eco-village span{
		display: inline-block;
		line-height: 45px;
	}
	.first-button-to-eco-village,
	.second-button-to-eco-village{
		display: none;
	}
	#homepage h1{
		font-size: 40px;
		max-width: 380px;
		margin: 15px 0 20px;
	}
	.vertical-social.vertical-social-dark{
		display: none;
	}

}
@media (max-width: 920px){
	#homepage .container{
		max-width: 560px;
	}
	header .header-col-1, header .header-col-2{
		width: 25%;
	}
	header .logo{
		width: 110px;
	}
}
@media (max-width: 767px){
	#homepage .container{
		text-align: center;
	}
	#homepage h1{
		text-align: center;
		max-width: 100%;
	}
	#homepage .vertical-social{
		left: 0;
		width: 100%;
		height: auto;
		top: auto;
		bottom: 60px;
	}
	#homepage #play-video{
		top: auto;
		bottom: 125px;
	}
	#homepage .vertical-social ul{
		writing-mode: inherit;
	}
	#homepage .vertical-social ul li{
		margin: 0 20px;
	}
	header .header-col-2 .phone,
	header .header-col-2 .callback,
	header .header-col-1 .language{
		display: none;
	}
	header{
		padding: 20px 20px 0;
	}
}
@media (max-width: 479px){

}
/* end - homepage */

/* houses page */
/* end - houses page */

/* blog page */
#blog-page{
	padding-top: 200px;
}
#blog-page .container{
	max-width: 1190px;
}
.blog-articles{
	padding-bottom: 70px;
}
.featured-item{
	position: relative;
	overflow: hidden;
	margin-bottom: 50px;
}
.featured-item a,
.featured-item a img{
	display: block;
}
.featured-item a img{
	transition: all 0.3s ease-out;
}
.featured-item a:hover img{
	-webkit-transform: scale(1.2);
	-ms-transform: scale(1.2);
	transform: scale(1.2);
}
.featured-item::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: .5;
	z-index: 1;
}
.meta-article{
	position: absolute;
	z-index: 10;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;
}
.meta-article > span{
	max-width: 555px;
	text-align: center;
}
.meta-article h2{
	font-family: 'Montserrat';
	color: #fff;
	font-size: 60px;
	line-height: 1.2;
}
.meta-article .date{
	font-size: 14px;
	color: #BDBDBD;
	font-weight: 600;
	line-height: 90px;
	display: block;
	letter-spacing: 0.2em;
}
.featured-item .meta-article .btn-blog{
	font-size: 10px;
	text-transform: uppercase;
	color: #fff;
	font-weight: 600;
	line-height: 22px;
	text-align: center;
}
.featured-item .meta-article .btn-blog svg{
	display: block;
	margin: auto;
}
.wrap-articles .item{
	width: calc((100% - 30px) / 2);
	margin-right: 30px;
	text-align: center;
	margin-bottom: 40px;
}
.wrap-articles .item:nth-child(2n+2){
	margin-right: 0;
}
.wrap-articles .item .image,
.wrap-articles .item .image img{
	display: block;
}
.wrap-articles .item .image{
	overflow: hidden;
}
.wrap-articles .item .image img{
	transition: all 0.3s ease-out;
}
.wrap-articles .item:hover .image img{
	-webkit-transform: scale(1.2);
	-ms-transform: scale(1.2);
	transform: scale(1.2);
}
.wrap-articles .item .date{
	font-size: 12px;
	line-height: 22px;
	color: #9C9C9C;
	font-weight: 600;
	margin: 20px 0 0;
	letter-spacing: 0.2em;
}
.wrap-articles .item h2{
	font-family: 'Montserrat';
	font-size: 35px;
	min-height: 80px;
	line-height: 40px;
	margin-bottom: 12px;
	transition: all 0.3s ease-out;
}
.wrap-articles .item a:hover h2{
	color: #7dba38;
}
.wrap-articles .item a.btn-read-more{
	color: #7dba38;
	font-size: 10px;
	line-height: 22px;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;
}
.wrap-articles .item a.btn-read-more svg{
	margin-left: 5px;
}
@media (max-width: 1600px){
	.meta-article h2{
		font-size: 40px;
	}
	.wrap-articles .item h2{
		font-size: 30px;
	}
	.meta-article .date{
		font-size: 12px;
	}
}
@media (max-width: 1400px){
	.wrap-articles .item h2{
		font-size: 25px;
		min-height: 0;
	}
}
@media (max-width: 1200px){
	.wrap-articles .item h2{
		font-size: 23px;
	}
	.meta-article .date{
		font-size: 10px;
		line-height: 50px;
	}
	.wrap-articles .item .date{
		font-size: 10px;
	}
}
@media (max-width: 991px){
	.meta-article h2 {
	    font-size: 30px;
	}
	.wrap-articles .item h2 {
    font-size: 20px;
    line-height: 1.2;
	}
}
@media (max-width: 767px){
	.wrap-articles .item{
		width: 100%;
		margin-right: 0;
	}
}
@media (max-width: 479px){
	#blog-page {
    padding-top: 130px;
	}
	#blog-page .container{
		padding: 0;
	}
	.meta-article h2 {
	    font-size: 24px;
	}
}
/* end - blog page */

/* single page blog */
	#single-page-blog{
		padding-top: 200px;
		padding-bottom: 60px;
	}
	#single-page-blog .container{
		max-width: 1190px;
	}
	.content-single-page h1{
		text-align: center;
		font-family: 'Montserrat';
		font-size: 60px;
		line-height: 1.2;
		color: #212121;
	}
	.content-single-page .date{
		line-height: 90px;
		font-weight: 600;
		color: #575757;
		text-align: center;
		letter-spacing: 0.2em;
	}
	.content-single-page{
		font-size: 14px;
		font-weight: 500;
		line-height: 22px;
		color: #575757;
		margin: 0 auto 60px;
		max-width: 1000px;
	}
	.content-single-page:after{
		content: '';
		height: 5px;
		width: 150px;
		display: block;
		margin: auto;
		background: #7dba38;
		margin-top: 40px;
	}
	.content-single-page p{
		margin-bottom: 30px;
	}
	.content-single-page ul{
		padding-left: 20px;
		margin-bottom: 30px;
	}
	.content-single-page ul li{
		list-style: disc;
	}
	.content-single-page h2{
		color: #7dba38;
		font-size: 45px;
		font-family: 'Montserrat';
		line-height: 1.2;
		margin-bottom: 15px;
	}
	.content-single-page h3{
		color: #212121;
		font-size: 35px;
		font-family: 'Montserrat';
		line-height: 1.2;
		margin-bottom: 30px;
	}
	.w870{
		max-width: 870px;
		margin: auto;
	}
	@media (max-width: 1600px){
		.content-single-page h1{
			line-height: 70px;
		}
	}
	@media (max-width: 1400px){
		.content-single-page h1{
			font-size: 50px;
			line-height: 60px;
		}
		.content-single-page h2{
			font-size: 40px;
		}
		.content-single-page h3{
			font-size: 25px;
		}
	}
	@media (max-width: 1200px){

	}
	@media (max-width: 991px){

	}
	@media (max-width: 767px){
		.content-single-page h1{
			font-size: 35px;
			line-height: 40px;
		}
		.content-single-page .date{
			font-size: 10px;
			line-height: 50px;
		}
		.content-single-page h2{
			font-size: 30px;
		}
		.content-single-page h3{
			font-size: 20px;
		}
	}
	@media (max-width: 479px){
		#single-page-blog{
			padding-top: 130px;
		}

	}
/* end - single page blog */

/* construction page */
#construction{
	padding-top: 200px;
}
.wrap-title-construction{
	margin-bottom: 50px;
	align-items: center;
}
.wrap-title-construction > div{
	width: 50%;
}
.title-construction h1{
	font-family: 'Montserrat';
	line-height: 1.2;
	font-size: 65px;
}
.title-construction p{
	font-weight: 700;
	font-size: 16px;
	text-transform: uppercase;
	line-height: 40px;
	letter-spacing: 0.2em;
}
.menu-years ul li{
	display: inline-block;
	margin-right: 80px;
}
.menu-years ul{
	padding-left: 30px;
}
.menu-years ul li a{
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
}
.menu-years ul li.active::after,
.menu-years ul li.current-menu-item::after{
	content: '';
	height: 2px;
	background: #7dba38;
	display: block;
	width: 100%;
	margin-top: 6px;
}
.wrap-construction{
	padding-bottom: 50px;
}
.wrap-construction .item{
	width: calc((100% - 30px) / 2);
	box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.15);
	margin-bottom: 40px;
	margin-right: 30px;
}
.wrap-construction .item:nth-child(2n+2){
	margin-right: 0;
}
.wrap-construction .item .meta-construction{
	padding: 40px 38px 38px 60px;
	position: relative;
}
.wrap-construction .item .meta-construction .read-more{
	position: absolute;
	bottom: 30px;
	right: 30px;
	font-size: 10px;
	font-weight: 600;
	color: #7dba38;
	letter-spacing: 0.1em;
}
.wrap-construction .item .meta-construction .read-more svg{
	fill: #7dba38;
	display: block;
	margin-bottom: 2px;
	position: relative;
	left: -1px;
	transition: all 0.3s ease-out;
}
.wrap-construction .item .meta-construction .read-more:hover{
	color: #212121;
}
.wrap-construction .item .meta-construction .read-more:hover svg{
	fill: #212121;
}
.wrap-construction .item .date{
	position: relative;
	top: -30px;
}
.wrap-construction .item .date p:first-child{
	font-size: 100px;
	color: #7dba38;
	font-family: 'Montserrat';
}
.wrap-construction .item .date p:last-child{
	font-weight: 700;
	color: #7dba38;
	text-align: center;
	margin-top: 20px;
	font-size: 16px;
	letter-spacing: 0.2em;
}
.wrap-construction .item .meta-construction .informations{
	width: calc(100% - 170px);
}
.wrap-construction h2{
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 700;
	line-height: 25px;
	letter-spacing: 0.2em;
}
.wrap-construction h2 + p{
	color: #575757;
	font-size: 14px;
	line-height: 30px;

}
.media-count{
	margin-top: 25px;
}
.media-count li{
	display: inline-flex;
	align-items: center;
	font-size: 12px;
	font-weight: 500;
	line-height: 30px;
	margin-right: 35px;
	color: #7dba38;
}
.media-count li:last-child{
	margin-right: 0;
}
.media-count li svg{
	margin-right: 10px;
}
.modal-construction{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 999;
	display: none;
	background: rgba(0,0,0,.6);
}
.modal-construction.show{
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	justify-content: center;
	align-items: center;
}
.modal-construction .content{
	background: #fff;
	width: 1457px;
	max-width: 90%;
	padding: 10px 70px 30px;
	position: relative;
}
.modal-construction .close{
	position: absolute;
	top: 30px;
	right: 30px;
	z-index: 99;
	cursor: pointer
}
.modal-construction .head-title{
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	align-items: center;
}
.modal-construction .head-title .date{
	width: 55px;
	text-align: center;
	margin-right: 25px;
}
.modal-construction .head-title .date p:first-child{
	color: #7dba38;
	font-size: 50px;
	font-family: 'Montserrat';
}
.modal-construction .head-title .date p:last-child{
	color: #7dba38;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 10px;
	letter-spacing: 0.2em;
	margin-top: 10px;
}
.modal-construction .head-title .block-title .title{
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	font-weight: 700;
	margin-top: 8px;
}
.modal-construction .head-title .block-title .description{
	font-size: 12px;
	color: #575757;
	margin-top: 10px;
	font-weight: 500;
}
.construction-gallery{
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	justify-content: space-between;
	margin-top: 12px;
}
.construction-gallery > div:first-child{
	width: calc(100% - 265px);
	position: relative;
}
.construction-gallery > div:last-child{
	width: 250px;
}
.slider-construction-gallery{
	padding: 8px 0;
}
.nav-slider-construction-gallery.slick-vertical .slick-slide{
	border: 0;
	cursor: pointer;
}
.nav-slider-construction-gallery.slick-vertical .slick-slide img{
	margin: 8px 0;
	opacity: 0.5;
	transition: all 0.3s ease-out;
}
.nav-slider-construction-gallery.slick-vertical .slick-slide.slick-current img{
	opacity: 1;
}
.count-slider-construction-gallery{
	text-align: center;
	font-size: 10px;
	color: #9C9C9C;
	font-weight: 500;
	margin-top: 20px;
}
.count-slider-construction-gallery .active_slide{
	font-size: 18px;
	color: #212121;
}
.wrap-slider-construction-gallery{
	position: relative;
}
.arrows-construction-gallery{
	position: absolute;
	z-index: 9;
	bottom: 8px;
	left: 0;
	width: 100%;
	height: 60px;
	background: rgba(0,0,0,0.6);
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 15px;
}
.arrows-construction-gallery > span{
	transition: all 0.3s ease-out;
	cursor: pointer;
	opacity: 0.7;
}
.arrows-construction-gallery > span:hover{
	opacity: 1;
}
.slider-construction-gallery .slick-dots {
  bottom: 8px;
  padding: 20px 0;
	z-index: 10;
	left: 100px;
	right: 100px;
	width: auto;
}
.slider-construction-gallery .slick-dots li {
  border: 1px solid transparent;
  border-radius: 50%;
  width: 19px;
  height: 19px;
  margin: 0;
  text-align: center;
}
.slider-construction-gallery .slick-dots li.slick-active {
  border: 1px solid #fff;
}
.slider-construction-gallery .slick-dots li button {
  padding: 0;
  width: 6px;
  height: 6px;
  display: inline-block;
}
.slider-construction-gallery .slick-dots li button:before {
  color: #fff;
  width: 6px;
  height: 6px;
  position: relative;
  line-height: 19px;
}
.wrap-back-to-all{
	text-align: center;
}
.wrap-back-to-all span{
	cursor: pointer;
	color: #9C9C9C;
	font-size: 11px;
	font-weight: 700;
	margin-top: 0px;
	text-transform: uppercase;
	transition: all 0.3s ease-out;
}
.wrap-back-to-all span:hover{
	color: #212121;
}
.link-video{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	justify-content: center;
	align-items: center;
	background: rgba(0,0,0,.4);
}
.slider-construction-gallery .slick-slide{
	position: relative;
}
@media (max-width: 1600px){
	.title-construction h1{
		font-size: 60px;
	}
	.title-construction p{
		font-size: 16px;
	}
	.wrap-construction h2{
		font-size: 14px;
	}
	.wrap-construction h2 + p{
		font-size: 12px;
	}
	.wrap-construction .item .meta-construction {
    padding: 30px 28px 28px 40px;
	}
	/* .modal-construction .content{
		max-height: 90%;
	} */
	.modal-construction .content{
		max-width: 1220px;
	}
}
@media (max-width: 1400px){
	.title-construction h1{
		font-size: 55px;
	}
	.title-construction p{
		font-size: 12px;
	}
	.wrap-construction h2 + p{
		font-size: 10px;
	}
	.wrap-construction .item .date p:first-child{
		font-size: 85px;
	}
	.media-count {
    margin-top: 10px;
	}
	.modal-construction .content{
		max-width: 1000px;
		padding: 10px 50px 30px;
	}
	.construction-gallery > div:last-child{
		width: 165px;
	}
	.construction-gallery > div:first-child {
    width: calc(100% - 180px);
    position: relative;
	}
	.modal-construction .head-title .date p:first-child{
		font-size: 45px;
	}
	.modal-construction .head-title .date p:last-child{
		font-size: 8px;
	}
	.construction-gallery{
		margin-top: 8px;
	}
	.count-slider-construction-gallery{
		margin-top: 10px;
	}
	.slider-construction-gallery.slick-dotted.slick-slider{
		margin-bottom: 14px;
	}
}
@media (max-width: 1200px){
	.wrap-title-construction > div{
		width: 100%;
	}
	.menu-years ul{
		padding-left: 0;
		margin-top: 30px;
	}
	.title-construction h1{
		font-size: 40px;
	}
	.wrap-construction .item{
		width: 100%;
		margin-right: 0;
	}
	.wrap-construction .item img{
		width: 100%;
	}
}
@media (max-width: 1000px){
	.modal-construction .content{
		max-width: calc(100% - 30px);
		padding: 10px 50px 30px;
	}
}
@media (max-width: 991px){
	.construction-gallery > div:last-child{
		display: none;
	}
	.construction-gallery > div:first-child{
		width: 100%;
	}
}
@media (max-width: 767px){
	.title-construction h1,
	.title-construction p{
		text-align: center;
	}
	.wrap-slider-construction-gallery .slick-slide{
		height: 350px!important;
	}
}
@media (max-width: 479px){
	#construction {
    padding-top: 130px;
	}
	.title-construction h1{
		font-size: 30px;
	}
	.title-construction p {
    font-size: 10px;
	}
	.wrap-construction h2{
		font-size: 10px;
	}
	.wrap-construction h2 + p{
		font-size: 8px;
		line-height: 20px;
	}
	.wrap-construction .item .meta-construction .informations {
    width: calc(100% - 70px);
	}
	.wrap-construction .item .date p:first-child {
    font-size: 58px;
	}
	.wrap-construction .item .date p:last-child{
		font-size: 10px;
	}
	.wrap-construction .item .date {
    top: -17px;
	}
	.wrap-construction .item .meta-construction {
    padding: 20px 15px 20px 15px;
	}
	.wrap-construction .item .meta-construction .read-more{
		bottom: 15px;
		font-size: 7px;
		right: 10px;
	}
	.modal-construction .head-title .block-title .title{
		line-height: 1.2;
	}
	.wrap-construction .item .meta-construction .read-more svg{
		max-width: 50px;
	}
	.media-count li svg {
    max-height: 11px;
		margin-right: 3px;
	}
	.media-count li{
		line-height: 14px;
		font-size: 7px;
	}
	.wrap-construction .item .date p:last-child{
		margin-top: 18px;
	}
	.wrap-slider-construction-gallery .slick-slide{
		height: 300px!important;
	}
	.modal-construction .content{
		width: 100%;
		padding: 40px 0px 30px;
		max-width: 100%;
	}
	.modal-construction .head-title{
		padding: 0 15px;
	}
	.modal-construction{
		background: #fff;
	}
	.modal-construction.show{
		align-items: flex-start;
	}
	.modal-construction .close{
		top: 10px;
		right: 10px;
	}
}

/* end - construction page */

/* developer */
#developer {
    padding-top: 200px;
}
#developer .vertical-social{
	height: 60%;
}
.wrap-title-developer{
	align-items: center;
	margin-bottom: 100px;
}
.title-developer h1{
	font-size: 65px;
	font-family: 'Montserrat';
}
.title-developer p{
	color: #7dba38;
	font-size: 16px;
	font-weight: 600;
	line-height: 65px;
	letter-spacing: 0.2em;
}
.counters .item{
	text-align: center;
	margin: 0 30px;
	background: url(../img/bg_round.png) center / contain;
	background-repeat: no-repeat;
	background-size: 80%;
	padding: 60px 0;
}
.counters .item .count{
	font-size: 55px;
	font-weight: 700;
	color: #7dba38;
	font-family: 'Montserrat';
	margin-bottom: 6px;
}
.counters .item .count + p{
	font-size: 12px;
	text-transform: uppercase;
	line-height: 20px;
	font-weight: 700;
	max-width: 205px;
	margin: auto;
}
.slider-gallery{
	margin-bottom: 60px;
	position: relative;
}
.developer-slider.slick-dotted.slick-slider{
	margin-bottom: 0;
}
.developer-slider .item{
	position: relative;
}
.developer-slider .item:after{
	opacity: 0;
	transition: all 0.3s ease-out;
}
.developer-slider .item.slick-center:after{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background: #000;
	opacity: 0.6;
	height: 60px;
}
.developer-slider .item .image{
	opacity: 0.6;
	transition: all 300ms ease;
}
.developer-slider .item.slick-center .image{
	opacity: 1;
	padding: 0;
}
.developer-slider .item .image img{
	-webkit-transform: scale(0.9);
	-ms-transform: scale(0.9);
	transform: scale(0.9);
	transition: all 300ms ease;
}
.developer-slider .item.slick-center .image img{
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	width: 100%;
}
.developer-slider .slick-dots{
	bottom: 0;
	padding: 20px 0;
}
.developer-slider .slick-dots li{
	border: 1px solid transparent;
	border-radius: 50%;
	width: 19px;
	height: 19px;
	margin: 0;
	text-align: center;
}
.developer-slider .slick-dots li.slick-active{
	border: 1px solid #fff;
}
.developer-slider .slick-dots li button{
	padding: 0;
	width: 6px;
	height: 6px;
	/* margin: 6px 0 0 6px; */
	display: inline-block;
}
.developer-slider .slick-dots li button:before{
	color: #fff;
	width: 6px;
	height: 6px;
	position: relative;
	line-height: 19px;
}
.arrows-developer-slider{
	position: absolute;
	bottom: -61px;
	left: 0;
	width: 100%;
	height: 61px;
}
.arrows-developer-slider .next-slide{
	position: absolute;
	right: 345px;
	top: -35px;
	z-index: 99;
	cursor: pointer;
	transition: all 0.3s ease-out;
}
.arrows-developer-slider .prev-slide{
	position: absolute;
	left: 345px;
	top: -35px;
	z-index: 99;
	cursor: pointer;
	transition: all 0.3s ease-out;
}
.arrows-developer-slider .next-slide:hover,
.arrows-developer-slider .prev-slide:hover{
	opacity: 0.7;
}
.information-developer{
	padding: 50px 0 75px;
	background-repeat: no-repeat;
	background-size: 50%;
	background-position: right center;
}
.information-developer h2{
	font-family: 'Montserrat';
	font-size: 55px;
	color: #5c4332;
	line-height: 70px;
}
.information-developer h2 span{
	color: #7dba38;
	display: block;
}
.information-developer .title{
	/* width: 630px; */
	margin-bottom: 30px;
	width: 100%;
}
.information-developer .title h2{
	text-align: center;
}
.information-developer .col-information-developer{
	max-width: 50%;
}
.col-information-developer-text{
	padding-right: 30px;
}
.col-information-developer-image img{
	position: sticky;
	top: 60px;
}
/* .information-developer .col-information-developer{
	width: 380px;
	margin-right: 40px;
} */
.information-developer .col-information-developer:last-child{
	margin-right: 0;
}
.information-developer .col-information-developer p,
.information-developer .col-information-developer li{
	font-size: 14px;
	font-weight: 500;
	color: #575757;
	line-height: 22px;
	margin-bottom: 25px;
}
.information-developer .col-information-developer ul{
	padding-left: 20px;
	margin-bottom: 30px;
}
.information-developer .col-information-developer li{
	margin-bottom: 7px;
	position: relative;
}
.information-developer .col-information-developer li::after{
	content: '';
	position: absolute;
	left: -20px;
	top: 8px;
	width: 6px;
	height: 6px;
	background: #7dba38;
	border-radius: 50%;
}
.information-developer .col-information-developer p:last-child{
	margin-bottom: 0;
}
.team{
	padding: 60px 0;
	background: #F4F4F4;
}
.team .title{
	text-align: center;
	margin-bottom: 50px;
}
.team .title h2{
	font-family: 'Montserrat';
	font-size: 65px;
	margin-bottom: 15px;
}
.team .title h2 + p{
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.2em;
}
.team .wrap-items-team{
	justify-content: center;
	gap: 60px;
}
.team .wrap-items-team .item{
	width: 300px;
	text-align: center;
}
.team .wrap-items-team .item:nth-child(4n+4){
	margin-right: 0;
}
.team .wrap-items-team .item img{
	border-radius: 50%;
	max-width: 360px;
	width: 100%;
}
.team .wrap-items-team .item .name{
	font-size: 22px;
	font-family: 'Montserrat';
	line-height: 1.3;
	margin-top: 10px;
}
.team .wrap-items-team .item .position{
	color: #575757;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.6;
	margin-top: 5px;
}
.image-cover{
	position: relative;
}
.image-cover svg{
	position: absolute;
	top: calc(50% - 25px);
	left: calc(50% - 25px);
	transition: all 0.3s ease-out;
}
.team .wrap-items-team .item:hover .image-cover svg{
	-webkit-transform: scale(1.2);
	-ms-transform: scale(1.2);
	transform: scale(1.2);
}
.team .btn-theme-red{
	font-size: 12px;
	line-height: 50px;
	padding: 0 15px;
	line-height: 50px;
	margin-top: 10px;
}
.team .btn-theme-red:hover{
	line-height: 120px;
	color: #fff;
}
.team .btn-theme-red::after{
	content: attr(data-text);
	position: absolute;
	top: -52px;
	left: 0;
	width: 100%;
	text-align: center;
	transition: all 0.3s ease-out;
	line-height: 50px;
}
.team .btn-theme-red:hover::after{
	top: 0;
}
.partners{
	padding: 60px 0;
}
.partners .title{
	text-align: center;
	margin-bottom: 50px;
}
.partners .title h2{
	font-family: 'Montserrat';
	font-size: 65px;
	margin-bottom: 15px;
}
.partners .title h2 + p{
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	line-height: 22px;
}
.wrap-slider-partners{
	position: relative;
}
.slider-partners{
	max-width: 1160px;
	margin: auto;
}
.slider-partners .slick-slide img{
	text-align: center;
	margin: auto;
}
.arrows-partners-slider{
	width: 100%;
}
.arrows-partners-slider svg{
	fill: #626262;
	transition: all 0.3s ease-out;
}
.arrows-partners-slider > span:hover svg{
	fill: #7dba38;
}
.arrows-partners-slider .prev-slide{
	position: absolute;
	top: 54px;
	left: 0;
	cursor: pointer;
}
.arrows-partners-slider .next-slide{
	position: absolute;
	top: 54px;
	right: 0;
	cursor: pointer;
}
.slider-partners .slick-dots{
	bottom: -35px;
}
.slider-partners .slick-dots li{
	width: 19px;
	height: 19px;
	border-radius: 50%;
	border: 1px solid transparent;
	text-align: center;
	margin: 0;
}
.slider-partners .slick-dots li.slick-active{
	border: 1px solid #7dba38;
}
.slider-partners .slick-dots li.slick-active button:before{
	color: #7dba38;
}
.slider-partners .slick-dots li button:before{
	color: #777;
	opacity: 1;
	position: relative;
	line-height: 19px;
}
.slider-partners .slick-dots li button{
	padding: 0;
	width: 6px;
	height: 6px;
	display: inline-block;
}
.introduction{
	padding-bottom: 60px;
}
.introduction .item{
	background: #FDFDFD;
}
.introduction .item > div{
	width: 50%;
}
.introduction .item > div.image img{
	display: block;
}
.introduction .item > div .name{
	font-family: 'Montserrat';
	font-size: 55px;
	color: #7dba38;
}
.introduction .item > div.information{
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	align-items: center;
	padding: 0 120px;
}
.introduction .item > div .position{
	font-size: 12px;
	font-weight: 700;
	color: #575757;
	margin: 15px 0 30px;
}
.introduction .item > div.information .description{
	font-size: 14px;
	font-weight: 500;
	color: #575757;
	line-height: 22px;
}
.introduction .btn-theme-red{
	font-size: 12px;
	margin-top: 50px;
}




@media screen and (max-width: 1600px){
	.counters .item{
		margin: 0 10px;
	}
	.title-developer h1{
		font-size: 80px;
	}
	#developer .counters{
		width: 50%;
	}
	.team .title h2,
	.partners .title h2{
		font-size: 40px;
	}
	.arrows-developer-slider .prev-slide{
		left: 245px;
	}
	.arrows-developer-slider .next-slide{
		right: 245px;
	}
}
@media screen and (max-width: 1500px){
	.title-developer h1{
		font-size: 80px;
	}
	.title-developer p{
		font-size: 13px;
	}
}
@media (max-width: 1200px){
	.counters .item .count{
		font-size: 45px;
	}
	.arrows-developer-slider .prev-slide{
		left: 195px;
	}
	.arrows-developer-slider .next-slide{
		right: 195px;
	}
}
@media (max-width: 1100px){
	.title-developer h1{
		font-size: 60px;
	}
	#developer .counters {
    width: 55%;
	}
}
@media (max-width: 991px){
	.title-developer{
		width: 100%;
	}
	.title-developer h1{
		text-align: center;
		width: 100%;
	}
	#developer .counters {
    width: 100%;
		padding: 0 10%;
	}
	.counters .item .count{
		font-size: 57px;
	}
	.wrap-title-developer{
		margin-bottom: 0;
	}
	.information-developer h2{
		font-size: 35px;
		line-height: 1.2;
		text-align: center;
	}
	.information-developer .col-information-developer{
		width: 100%;
		max-width: 600px;
		margin: auto!important;
	}
	.information-developer .title{
		max-width: 100%;
		width: 100%;
	}
	.gotowebsite{
		text-align: center;
	}
	.information-developer{
		background-image: none!important;
	}
	.team .wrap-items-team .item .name{
		font-size: 20px;
		line-height: 1.2;
	}
	.team .wrap-items-team .item .position{
		font-size: 10px;
		line-height: 1.2;
	}
	.team .title h2 + p,
	.partners .title h2 + p{
		font-size: 10px;
	}
	.introduction .item > div .name{
		font-size: 41px;
	}
	.introduction .item > div.information{
		padding: 0 40px;
	}
	.slider-partners .slick-slide img{
		max-width: 80%;
	}
	.slider-partners{
		max-width: 660px;
	}
	.arrows-partners-slider .prev-slide,
	.arrows-partners-slider .next-slide{
		top: 50%;
	}
}
@media (max-width: 767px){
	.arrows-developer-slider .prev-slide{
		left: 15px;
	}
	.arrows-developer-slider .next-slide{
		right: 15px;
	}
	.introduction .item > div{
		width: 100%;
	}
	.team .wrap-items-team .item{
		width: calc((100% - 30px)/2);
		max-width: 100%;
	}
	.team .wrap-items-team .item:nth-child(2n+2){
		margin-right: 0;
	}
	.team .wrap-items-team .item img{
		max-width: 200px;
	}
	#developer .counters{
		padding: 0;
		max-width: 300px;
		margin: 30px auto 0;
	}
	#developer .counters .item{
		width: 100%;
		margin-bottom: 30px;
		/* max-width: 200px; */
		padding: 10px;
	}
	.introduction .item > div .name {
    font-size: 35px;
	}
	.introduction .item > div .position{
		font-size: 8px;
	}
	.team .btn-theme-red{
		font-size: 10px;
	}
	.team .wrap-items-team{
		gap: 24px;
	}
}
@media (max-width: 479px){
	#developer {
    padding-top: 130px;
	}
	.title-developer h1 {
		font-size: 40px;
	}
	.slider-partners{
		max-width: 300px;
	}
	.introduction .item > div.information{
		margin-top: 20px;
	}
	.counters .item .count{
		position: relative;
		top: -10px;
	}
	.introduction .item > div.information{
		padding: 0 15px;
	}
}
/* end - developer */

/* contact-page */
#contacts {
    padding-top: 200px;
}
.contact-gardd{
	padding: 70px 0;
}
.contact-gardd .container > div{
	width: 40%;
}
.contact-gardd .container > div:last-child{
	width: 60%;
}
.contact-gardd h1{
	font-family: 'Montserrat';
	font-size: 65px;
	line-height: 100px;
	margin-bottom: 50px;
}
.contact-gardd .phone a,
.contact-gardd .email a{
	font-size: 18px;
	font-weight: 600;
	line-height: 22px;
	text-transform: uppercase;
}
.contact-gardd .callback{
	margin-bottom: 45px;
}
.contact-gardd .callback a{
	font-size: 10px;
	font-weight: 700;
	color: #7dba38;
	text-decoration: underline;
	letter-spacing: 0.2em;
}
.contact-gardd .address{
	text-transform: uppercase;
	font-size: 18px;
	font-weight: 600;
	line-height: 22px;
	margin-bottom: 45px;
}
.show-map{
	font-size: 10px;
	font-weight: 700;
	color: #7dba38;
	text-decoration: underline;
	letter-spacing: 0.2em;
	margin-top: 3px;
	display: inline-block;
}
.contact-gardd .phone,
.contact-gardd .email{
	margin-bottom: 8px;
}
.contact-gardd .social{
	max-width: 300px;
	margin-bottom: 30px;
}
.contact-gardd .social li a{
	font-size: 10px;
	font-weight: 700;
	color: #7dba38;
	text-decoration: underline;
	letter-spacing: 0.2em;
}
.image-map .information{
	width: 40%;
	align-items: center;
	justify-content: center;
}
.image-map .information div{
	width: 400px;
	text-align: center;
	background: url(../img/bg_round.png) center / contain;
	background-repeat: no-repeat;
	background-size: 80%;
	padding-bottom: 40px;
}
.image-map .information .num{
	font-family: 'Montserrat';
	font-size: 200px;
	color: #7dba38;
	font-weight: 600;
}
.image-map .information .minutes{
	color: #7dba38;
	line-height: 33px;
	font-size: 21px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-weight: 600;
}
.image-map .information .title{
	line-height: 33px;
	font-size: 21px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}
.image-map .image{
	/* width: 60%; */
}
#map{
	height: 720px;
}
.contact-form{
	padding: 60px 0;
	text-align: center;
	background: url('/wp-content/themes/garddhouse/img/bg_contact-form.jpg') center / cover;
}
.contact-form .container{
	max-width: 643px;
}
.contact-form .container h2{
	font-family: 'Montserrat';
	font-size: 65px;
	color: #fff;
	margin-bottom: 10px;
}
.contact-form .container h2 + p{
	font-size: 14px;
	font-weight: 500;
	color: #fff;
	margin-bottom: 40px;
}
.contact-form form{
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.contact-form .full-width{
	width: 100%;
	margin-bottom: 25px;
}
.contact-form .half-width{
	width: calc((100% - 42px) / 2);
	margin-bottom: 25px;
}
.contact-form label{
	width: 100%;
	color: #fff;
	font-weight: 700;
	font-size: 10px;
	text-align: center;
	display: block;
	margin-bottom: 4px;
	letter-spacing: 0.2em;
}
.contact-form input{
	width: 100%;
	background: none;
	border: 1px solid #858585;
	line-height: 46px;
	color: #fff;
	padding-left: 15px;
	padding-right: 15px;
}
.contact-form .error input, .contact-form .error2 input{
	border-color: #FF4242;
}
.contact-form .success-message p{
	color: #fff;
}
.contact-form textarea{
	width: 100%;
	background: none;
	border: 1px solid #858585;
	height: 108px;
	color: #fff;
	padding: 10px 15px;
	resize: none;
}
.contact-form form button{
	 background: #7dba38;
	 color: #fff;
	 font-weight: 700;
	 font-size: 12px;
	 border: 0;
	 box-shadow: 0;
	 display: inline-block;
	 line-height: 50px;
	 min-width: 170px;
	 cursor: pointer;
	 letter-spacing: 0.2em;
}
.c-block{
	padding: 60px 0;
}
.c-block .item{
	text-align: center;
	width: calc(100% / 3);
	padding: 30px;
}
.c-block .item:nth-child(2){
	border-left: 1px solid #B8B6B6;
	border-right: 1px solid #B8B6B6;
}
.c-block .item .title{
	font-family: 'Montserrat';
	font-size: 35px;
	margin-bottom: 20px;
}
.c-block .item .subtitle{
	color: #7dba38;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 30px;
}
.c-block .item a{
	display: block;
	line-height: 26px;
	color: #575757;
	font-size: 14px;
	font-weight: 500;
}
.c-block .item a:hover{
	color: #7dba38;
}
.image-animate{
	position: relative;
	display: inline-block;
	max-width: 60%;
}
.image-animate .car{
	position: absolute;
	top: 87%;
  left: 38%;
  transform: rotate(69deg);
	animation: cardrive 25s infinite linear;
}
@keyframes cardrive {
  0% {
		top: 87%;
	  left: 38%;
	  transform: rotate(69deg);
  }
  15%{
		top: 75%;
    left: 62%;
	  transform: rotate(69deg);
  }
	16%{
	  transform: rotate(-45deg);
  }
	21%{
		top: 73%;
    left: 61%;
  }
	/* 22%{
		transform: rotate(-22deg);
  } */
	29%{
		top: 65%;
    left: 57%;
  }
	30%{
		transform: rotate(-12deg);
  }
	37%{
		top: 65%;
    left: 57%;
		transform: rotate(7deg);
  }
	49%{
		top: 42%;
    left: 55%;
  }
	50%{
		transform: rotate(-37deg);
  }
	58%{
		top: 38%;
    left: 52%;
  }
	59%{
		transform: rotate(63deg);
  }
	67%{
		top: 35%;
    left: 57%;
  }
	68%{
		transform: rotate(17deg);
  }
	76%{
		top: 31%;
  }
	77%{
		transform: rotate(45deg);
  }
	80%{
		top: 27%;
    left: 61%;
  }
	81%{
		transform: rotate(-34deg);
  }
	84%{
		top: 18%;
    left: 57%;
  }
	85%{
		transform: rotate(32deg);
  }
	92%{
		top: 11%;
    left: 60%;
  }
	93%{
		transform: rotate(3deg);
  }
	100%{
		top: 0%;
		left: 60%;
		transform: rotate(3deg);
  }
  /* 100%{
		top: 87%;
	  left: 38%;
	  transform: rotate(69deg);
  } */
}
@media (max-width: 1600px){
	.contact-gardd h1{
		font-size: 80px;
	}
	.contact-form .container h2{
		font-size: 55px;
	}
	.c-block .item .title{
		font-size: 30px;
	}
	.c-block .item .subtitle{
		font-size: 12px;
	}
	.contact-gardd .address,
	.contact-gardd .phone a,
	.contact-gardd .email a{
		font-size: 16px;
	}
	#map{
		height: 609px;
	}
	.image-map .information .num{
		font-size: 168px;
	}
	.image-map .information .minutes,
	.image-map .information .title{
		font-size: 18px;
		line-height: 1.2;
	}
}
@media (max-width: 1400px){
	.contact-gardd h1{
		font-size: 67px;
	}
	.contact-gardd .address,
	.contact-gardd .phone a,
	.contact-gardd .email a{
		font-size: 14px;
	}
	#map{
		height: 514px;
	}
	.image-map .information .num{
		font-size: 142px;
	}
	.image-map .information .minutes,
	.image-map .information .title{
		font-size: 15px;
		line-height: 1.2;
	}
	.contact-gardd .callback,
	.contact-gardd .address,
	.contact-gardd .social,
	.contact-gardd h1{
		margin-bottom: 30px;
	}
	.c-block .item .title{
		font-size: 25px;
	}
	.c-block .item .subtitle{
		font-size: 10px;
		margin-bottom: 20px;
	}
	.c-block .item a{
		font-size: 10px;
		line-height: 18px;
	}
	.contact-form .container h2{
		font-size: 46px;
	}
	.contact-form .container h2 + p{
		font-size: 12px;
	}

}
@media (max-width: 1200px){
	.contact-gardd h1{
		font-size: 60px;
	}
	.c-block .container{
		max-width: 100%;
		width: 100%;
	}
}
@media (max-width: 991px){
	.contact-gardd .container > div:last-child{
		display: none;
	}
	.contact-gardd .container > div{
		width: 100%;
		text-align: center;
	}
	.contact-gardd .social{
		margin-left: auto;
		margin-right: auto;
	}
	.contact-gardd{
		padding-top: 0;
	}
}
@media (max-width: 767px){
	.c-block .item{
		width: 100%;
	}
	.c-block .item:nth-child(2) {
    border: 0;
		position: relative;
	}
	.c-block .item:nth-child(2):after{
		content: '';
		width: 134px;
		height: 1px;
		background: #B8B6B6;
		position: absolute;
		bottom: 0;
		left: calc(50% - 67px);
	}
	.c-block .item:nth-child(2):before{
		content: '';
		width: 134px;
		height: 1px;
		background: #B8B6B6;
		position: absolute;
		top: 0;
		left: calc(50% - 67px);
	}
	.c-block{
		padding: 20px 0;
	}
	.c-block .item{
		padding: 20px;
	}
	#map {
    height: 400px;
	}
	.image-animate{
		max-width: 100%;
	}
	.image-animate .car{
		width: 30px;
	}
	.footer-bottom .footer-social .messengers{
		margin-top: 20px;
	}
	.footer-bottom .footer-social .messengers li{
		margin-right: 5px;
		margin-left: 5px;
	}
	header .messengers{
		display: none;
	}
}
@media (max-width: 479px){
	#contacts {
    padding-top: 130px;
	}
	.contact-gardd{
		padding-bottom: 40px;
	}
	.contact-gardd h1{
		font-size: 55px;
		line-height: 70px;
	}
	#map {
		height: 360px;
	}
	.image-map .image,
	.image-map .information{
		width: 100%;
	}
	.image-map .information div{
		padding: 44px;
	}
	.image-map .information .num,
	.image-map .information .minutes,
	.image-map .information .title{
		position: relative;
		top: -30px;
	}
	.contact-form .container h2 {
    font-size: 30px;
	}
	.contact-form .half-width{
		width: 100%;
	}
}
/* end - contact-page */

/* building */
#building {
    padding-top: 200px;
}
#building .vertical-social {
    height: 70%;
}
.title-building{
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	justify-content: space-between;
	padding-bottom: 60px;
}
.title-building > div{
	width: 30%;
}
.title-building > div.building-description{
	width: 65%;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	justify-content: space-between;
}
.title-building > div.building-description > div{
	width: calc((100% - 30px)/2);
}
.title-building h1{
	font-family: 'Montserrat';
	font-size: 65px;
	font-weight: 700;
	margin-bottom: 40px;
}
.title-building h1 + p{
	font-size: 12px;
	font-weight: 600;
	color: #575757;
}
.title-building-description p{
	color: #575757;
	line-height: 22px;
	font-weight: 500;
	margin-bottom: 15px;
}
.title-single-building .information ul,
.title-building-description ul{
	margin-bottom: 10px;
}
.title-single-building .information ul li,
.title-building-description ul li{
	position: relative;
	padding-left: 20px;
	margin-bottom: 5px;
	line-height: 1.4;
}
.title-single-building .information ul li:after,
.title-building-description ul li:after{
	content: '';
	position: absolute;
	width: 10px;
	height: 10px;
	left: 0;
	top: 5px;
	background: #7dba38;
	border-radius: 50%;
}
.title-building-description p:last-child{
	margin-bottom: 0;
}
.buildings ul li{
	display: inline-block;
	margin-right: 30px;
}
.buildings ul li a{
	color: #9C9C9C;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	position: relative;
}
.buildings ul li a.active,
.buildings ul li a:hover{
	color: #212121;
}
.buildings ul li a:after{
	content: '';
	height: 2px;
	background: #7dba38;
	width: 0;
	margin-top: 4px;
	display: block;
	transition: all 0.3s ease-out;
}
.buildings ul li a.active:after,
.buildings ul li a:hover:after{
	width: calc(100% - 0.2em);
}
.wrap-items-building{
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-top: 50px;
	padding-bottom: 60px;
}
.wrap-items-building .item{
	text-align: center;
	width: calc((100% - 60px) / 4);
	background-size: 85%;
	background-position: center;
	background-repeat: no-repeat;
	padding: 15px 0 40px;
	position: relative;
}
.wrap-items-building.cat-building .item{
	width: calc((100% - 20px) / 2);
}
.wrap-items-building .item .small-items-building-circle{
	position: absolute;
	top: 10%;
	left: 10%;
	width: 80%;
	z-index: 0;
}
.wrap-items-building .item .big-items-building-circle{
	position: absolute;
	top: 0%;
	left: 0%;
	width: 100%;
	z-index: 0;
}
.wrap-items-building .item img{
	position: relative;
	z-index: 9;
	/* aspect-ratio: 4 / 3;
    object-fit: cover; */
}
.wrap-items-building .item:nth-child(3n+3){
	margin-right: 0;
}
.wrap-items-building .item .suptitle{
	font-size: 11px;
	color: #7dba38;
	letter-spacing: 0.2em;
	font-weight: 700;
	text-transform: uppercase;
	margin-top: 10px;
}
.wrap-items-building .item .title{
	font-family: 'Montserrat';
	font-weight: 600;
	font-size: 24px;
	line-height: 25px;
	margin: 10px 0 20px;
}
.wrap-items-building .item .price{
	color: #575757;
	font-size: 14px;
	line-height: 22px;
	font-weight: 500;
	position: relative;
	display: inline-block;
}
.wrap-items-building .item .price svg{
	position: absolute;
	top: 3px;
	right: -50px;
}
.price-usd{
	color: #9C9C9C;
	font-weight: 500;
	font-size: 12px;
	line-height: 22px;
	position: relative;
}
.price-usd:before{
	content: '';
	height: 1px;
	width: 83px;
	background: #E7E7E7;
	margin: auto;
	display: block;
}
.wrap-items-building .item a{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 11;
}
.wrap-items-building .item a .big-circle{
	width: 0px;
	height: 0px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.3);
	backdrop-filter: blur(4px);
	transform: matrix(1, 0, 0, -1, 0, 0);
	position: absolute;
	left: 50%;
	top: 50%;
	transition: all 0.3s ease-out;
}
.wrap-items-building .item:hover a .big-circle{
	width: 260px;
	height: 260px;
	left: calc(50% - 130px);
	top: calc(50% - 130px);
}
.wrap-items-building .item a .small-circle{
	width: 0px;
	height: 0px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.6);
	position: absolute;
	left: 50%;
	top: 50%;
	transition: all 0.3s ease-out;
	transition-delay: 0.2s;
	font-size: 60px;
	font-weight: 200;
	color: #fff;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0
}
.wrap-items-building .item a .small-circle{

}
.wrap-items-building .item:hover a .small-circle{
	width: 156px;
	height: 156px;
	left: calc(50% - 78px);
	top: calc(50% - 78px);
	opacity: 1;
}
.counters-block{
	background-size: cover;
	background-position: center;
	padding: 60px 0;
}
.counters-block .container{
	justify-content: center!important;
}
.counters-block .item{
	text-align: center;
	width: calc((100% - 60px)/4);
	position: relative;
}
.counters-block .item .count{
	font-size: 100px;
	font-weight: 200;
	color: #fff;
}
.counters-block .item .title{
	font-size: 14px;
	font-weight: 700;
	color: #fff;
	text-transform: uppercase;
	max-width: 190px;
	text-align: center;
	line-height: 20px;
	margin: auto;
}
.big-counter-circle{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}
.small-counter-circle{
	position: absolute;
	width: 70%;
	left: 15%;
	top: 15%;
}
.buildings-gallery{
	padding: 60px 0;
	align-items: center;
}
.buildings-gallery .information{
	width: 40%;
	padding-left: 60px;
}
.buildings-gallery .information h2{
	font-family: 'Montserrat';
	font-size: 65px;
	font-weight: 700;
}
.buildings-gallery .information p.subtitle{
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	color: #575757;
	margin-top: 15px;
	margin-bottom: 30px;
}
.buildings-gallery .information .text{
	max-width: 446px;
}
.buildings-gallery .information .text p{
	font-size: 14px;
	font-weight: 500;
	line-height: 22px;
	color: #575757;
}
.buildings-gallery .gallery{
	width: 60%;
	/* padding-top: 60px; */
	position: relative;
}
.buildings-gallery .information .btn-theme-border{
	margin: 30px 0 80px;
}
.buildings-gallery .information .gallery-slider-nav{
	width: 120%;
  z-index: 9;
}
.buildings-gallery .information .gallery-slider-nav .slick-slide{
	cursor: pointer;
}
.buildings-gallery .information .gallery-slider-nav img{
	padding-right: 24px;
}
.arrows-gallery-slider{
	background: rgba(0,0,0,.4);
	height: 55px;
	width: 210px;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 99;
}
.arrows-gallery-slider > div{
	cursor: pointer;
}
.arrows-gallery-slider .prev-slide{
	padding-left: 20px;
}
.arrows-gallery-slider .next-slide{
	padding-right: 20px;
}
.arrows-gallery-slider svg{
	fill: #969696;
	transition: all 0.3s ease-out;
}
.arrows-gallery-slider > div:hover svg{
	fill: #fff;
}
.gallery-slider img{
	width: 100%;
}
@media (max-width: 1600px){
	.title-building h1{
		font-size: 80px;
	}
	.wrap-items-building .item .suptitle{
		font-size: 10px;
	}
	.wrap-items-building .item .title{
		font-size: 27px;
	}
	.wrap-items-building .item .price{
		font-size: 13px;
	}
	.counters-block .item .count{
		font-size: 97px;
	}
}
@media (max-width: 1400px){
	.title-building h1{
		font-size: 60px;
	}
	.buildings-gallery .information h2{
		font-size: 40px;
	}
	.buildings-gallery .information p.subtitle{
		font-size: 10px;
	}
	.buildings-gallery .information .btn-theme-border {
	    margin: 30px 0 45px;
	}
	.title-building{
		padding: 0 30px 60px;
	}
	.menu-buildings{
		padding-left: 30px;
		padding-right: 30px;
	}
}
@media (max-width: 1200px){
	.wrap-items-building .item{
		width: calc((100% - 30px) / 2);
	}
	.wrap-items-building .item:nth-child(3n+3){
		margin-right: 30px;
	}
	.wrap-items-building .item:nth-child(2n+2){
		margin-right: 0;
	}
	.buildings-gallery .gallery{
		margin-top: 75px;
	}
	.buildings-gallery .information .text{
		padding-right: 20px;
	}
	.title-building > div.building-description{
		flex-wrap: wrap;
	}
	.title-building > div.building-description > div{
		width: 100%;
		margin-bottom: 30px;
	}
	.title-building > div.building-description > div:last-child{
		margin-bottom: 0;
	}
	.title-building > div.building-description > div p{
		margin-bottom: 20px;
	}
	.title-building > div.building-description > div p:last-child{
		margin-bottom: 0;
	}
	.counters-block .item .count {
    font-size: 63px;
	}
	.counters-block .item .title{
		font-size: 9px;
	}

}
@media (max-width: 1040px){
	.buildings-gallery .gallery {
	    margin-top: 110px;
	}
}
@media (max-width: 991px){
	.title-building{
		flex-wrap: wrap;
	}
	.title-building h1 {
    font-size: 50px;
	}
	.title-building > div{
		width: 100%;
	}
	.title-building-description,
	.title-building-description p{
		margin-bottom: 20px;
	}
	.title-building {
    padding: 0 0px 30px;
	}
	.menu-buildings {
    padding-left: 0px;
    padding-right: 0px;
	}
	.title-building h1{
		text-align: center;
		margin-bottom: 20px;
	}
	.title-building h1 + p{
		margin-bottom: 20px;
		text-align: center;
	}
	.title-building > div.building-description{
		width: 100%;
	}
	.buildings-gallery .information .gallery-slider-nav{
		display: none;
	}
	.buildings-gallery .information .btn-theme-border{
		margin-bottom: 0;
	}
	.buildings-gallery .gallery {
    margin-top: 25px;
	}
	.buildings-gallery .information{
		width: 100%;
		padding-left: 0;
		text-align: center;
	}
	.buildings-gallery .gallery{
		width: 100%;
	}
	.buildings-gallery .information .text{
		max-width: 100%;
		padding-left: 15px;
		padding-right: 15px;
		text-align: left;
	}
}
@media (max-width: 767px){
	.wrap-items-building .item{
		width: 100%;
		margin-right: 0;
	}
	.title-building h1 {
    font-size: 40px;
	}
	.buildings ul li a{
		line-height: 40px;
	}
	.buildings ul li a:after{
		position: absolute;
    bottom: -4px;
	}
}
@media (max-width: 479px){
	#building {
	    padding-top: 130px;
	}
	.counters-block .item {
    width: calc((100% - 30px)/2);
	}
}
/* end - building */

/* single-building */
#single-building{
	padding-top: 200px;
}
#single-building .vertical-social {
    height: 70%;
}
.title-single-building{
	padding: 0px 0 60px;
	gap: 30px;
}
.title-single-building > div:first-child{
	width: calc(100% - 380px);
}
.title-single-building > div:last-child{
	width: 350px;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	justify-content: space-between;
}
.title-single-building > div.title-commercial,
.title-single-building > div.desctiption-commercial{
	width: 50%;
}
.title-single-building > div:last-child > div{
	width: 350px;
}
.title-single-building > div:last-child > div.information-commercial{
	width: 100%;
}
.title-single-building h1{
	font-family: 'Montserrat';
	font-size: 65px;
}
.title-single-building h1 + p{
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 600;
	color: #7dba38;
	margin-top: 20px;
	letter-spacing: 0.2em;
}
.title-single-building h1 + p sup{
	vertical-align: super;
	font-size: 12px;
}
.title-single-building .information,
.title-single-building .specification{
	padding-top: 30px;
}
.title-single-building .information p{
	font-size: 14px;
	font-weight: 500;
	color: #575757;
	margin-bottom: 15px;
	line-height: 22px;
}
.title-single-building .information p:last-child{
	margin-bottom: 0;
}
.title-single-building .specification ul li {
	font-size: 12px;
	text-transform: uppercase;
	color: #7dba38;
	font-weight: 600;
	letter-spacing: 0.2em;
	line-height: 22px;
	margin-bottom: 20px;
}
.title-single-building .specification ul li span{
	color: #212121;
}
.building-plans{
	padding-bottom: 60px;
}
.building-plans h2{
	font-family: 'Montserrat';
	font-size: 65px;
	text-align: center;
	margin-bottom: 50px;
}
.building-plans .building-tabs{
	text-align: center;
	margin: 30px 0;
}
.building-plans .building-tabs li{
	display: inline-block;
	max-width: 130px;
	cursor: pointer;
}
.building-plans .building-tabs li .title{
	text-transform: uppercase;
	font-size: 11px;
	color: #9C9C9C;
	font-weight: 700;
	margin-bottom: 20px;
	letter-spacing: 0.2em;
	position: relative;
	display: inline-block;
	transition: all 0.3s ease-out;
}
.building-plans .building-tabs li img{
	opacity: 0.5;
	transition: all 0.3s ease-out;
}
.building-plans .building-tabs li img{
	max-height: 80px;
}
.building-plans .building-tabs li.active img,
.building-plans .building-tabs li:hover img{
	opacity: 1;
}
.building-plans .building-tabs li.active .title,
.building-plans .building-tabs li:hover .title{
	color: #212121;
}
.building-plans .building-tabs li .title:after{
	content: '';
	width: 0%;
	bottom: -5px;
	height: 2px;
	background: #7dba38;
	position: absolute;
	left: 0;
	transition: all 0.3s ease-out;
}
.building-plans .building-tabs li.active .title:after,
.building-plans .building-tabs li:hover .title:after{
	width: 100%;
}
.building-tabs-content{
	margin-top: 30px;
}
.building-tabs-content > div{
	justify-content: center;
	display: none!important;
}
.building-tabs-content > div.active{
	display: -webkit-flex!important;
	display: -ms-flex!important;
	display: flex!important;
	gap: 20px;
}
.plan-floor{
	width: 100%;
	justify-content: center;
	align-items: center;
	gap: 20px;
}
.plan-floor > div{
	width: auto;
}
.plan-floor > div.info-plan{
	width: 260px;
}
.plan-floor > div.image-plan{
	text-align: center;
}
.plan-floor > div.image-plan img{
	max-height: 400px;
}
.info-plan{
	padding: 0 30px;
}
.info-plan .title{
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 15px;
}
.info-plan ol li{
	list-style: decimal;
	font-size: 14px;
	font-weight: 500;
	color: #575757;
	line-height: 30px;
	list-style-position: inside;
}
.building-tabs-content .wrap-button{
	margin-top: 30px;
}
.building-tabs-content .wrap-button .btn-theme-border{
	padding-left: 65px;
	margin: 0 7px;
}
.building-tabs-content .wrap-button .btn-theme-border::after{
	padding-left: 17px;
}
.building-tabs-content .wrap-button .btn-theme-border img{
	position: absolute;
	top: 14px;
	left: 30px;
}
.building-details{
	background: #F4F4F4 url(../img/bg-details-building.png);
	padding: 60px 0;
}
.building-details h2{
	text-align: center;
	font-family: 'Montserrat';
	font-size: 40px;
	margin-bottom: 15px;
}
.building-details h2 + p{
	font-size: 12px;
	text-transform: uppercase;
	font-weight: 700;
	text-align: center;
}
.wrap-building-details{
	margin-top: 50px;
}
.wrap-building-details .item{
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	justify-content: space-between;
}
.wrap-building-details .item > div{
	line-height: 22px;
	font-size: 14px;
	color: #000;
	padding: 9px 25px;
}
.wrap-building-details .item > div:first-child{
	width: 247px;
	font-weight: 500;
}
.wrap-building-details .item > div:last-child{
	width: calc(100% - 254px);
	font-weight: 400;
}
.wrap-building-details .item:nth-child(odd) > div{
	background: #fff;
}
.additional-text{
	margin-top: 30px;
}
.additional-text p{
	font-size: 13px;
	line-height: 1.4;
	margin-bottom: 5px;
}
@media (max-width: 1600px){
	.title-single-building h1{
		font-size: 85px;
	}
}
@media (max-width: 1400px){
	.title-single-building h1{
		font-size: 60px;
		margin-bottom: 20px;
	}
	.building-plans h2,
	.building-details h2{
		font-size: 40px;
	}
	.title-single-building .specification ul li{
		margin-bottom: 16px;
	}
	.title-single-building .specification ul li:last-child{
		margin-bottom: 0;
	}
	.title-single-building .information, .title-single-building .specification {
    padding-top: 15px;
	}
}
@media (max-width: 1200px){
	.plan-floor{
		width: 100%;
		align-items: center;
	}
	.plan-floor > div.image-plan{
		width: 70%;
	}
	.plan-floor > div.info-plan{
		width: 30%;
		padding-left: 40px;
	}
	.building-plans h2,
	.building-details h2{
		font-size: 35px;
	}
	.title-single-building > div:last-child{
		flex-wrap: wrap;
	}
	.title-single-building > div:last-child > div{
		width: 100%;
	}
	.title-single-building > div:first-child {
    width: 40%;
	}
	.title-single-building > div:last-child{
		width: 55%;
	}
}
@media (max-width: 991px){
	.plan-floor > div.image-plan{
		width: 50%;
	}
	.plan-floor > div.info-plan{
		width: 50%;
		padding-left: 30px;
	}
	.building-tabs-content .wrap-button{
		text-align: center;
		max-width: 400px;
		margin: 40px auto 0;
	}
	.building-tabs-content .wrap-button .btn-theme-border{
		min-width: 350px;
		margin-bottom: 10px;
	}
}
@media (max-width: 767px){
	.plan-floor > div.image-plan{
		width: 100%;
	}
	.plan-floor > div.info-plan{
		width: 100%;
		padding-left: 30px;
		text-align: center;
	}
	.plan-floor > div.info-plan .info-plan-block{
		display: inline-block;
		text-align: left;
	}
	.title-single-building > div:first-child,
	.title-single-building > div:last-child {
    width: 100%;
	}
	.title-single-building .information p{
		margin-bottom: 20px;
	}
	.wrap-building-details .item{
		flex-wrap: wrap;
		text-align: center;
		margin-bottom: 10px;
	}
	.wrap-building-details .item > div:first-child,
	.wrap-building-details .item > div:last-child{
		width: 100%;
	}
	.wrap-building-details .item > div:first-child{
		font-weight: 700;
	}
	.wrap-building-details .item > div{
		background: #fff;
	}
	.building-plans h2, .building-details h2 {
    font-size: 30px;
	}
	.title-single-building h1 {
    font-size: 40px;
		text-align: center;
		margin-bottom: 20px;
	}
	.title-single-building h1 + p{
		font-size: 10px;
		text-align: center;
		margin-top: 10px;
	}
	.title-single-building .specification{
		margin-top: 20px;
	}
}
@media (max-width: 479px){
	#single-building {
	    padding-top: 130px;
	}
}
/* end-single-building */

/* modal */
.modal{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.5);
	z-index: 999;
	display: none;
	padding: 15px;
}
.modal.show{
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	justify-content: center;
	align-items: center;
}
.modal .content{
	background: #fff;
	width: 922px;
	height: 632px;
	text-align: center;
	padding: 55px 0;
	position: relative;
}
.modal .content h2{
	font-family: 'Montserrat';
	font-size: 45px;
	margin-bottom: 15px;
}
.modal .content h2 + p{
	font-size: 14px;
	font-weight: 500;
}
.modal .content form{
	display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
	max-width: 643px;
	margin: 30px auto 0;
}
.modal .content form .full-width {
  width: 100%;
  margin-bottom: 25px;
}
.modal .content form .half-width {
    width: calc((100% - 42px) / 2);
    margin-bottom: 25px;
}
.modal .content form label {
  width: 100%;
  color: #212121;
  font-weight: 700;
  font-size: 10px;
  text-align: center;
  display: block;
  margin-bottom: 4px;
  letter-spacing: 0.2em;
}
.modal .content form input {
  width: 100%;
  background: none;
  border: 1px solid #858585;
  line-height: 46px;
  color: #212121;
  padding-left: 15px;
  padding-right: 15px;
}
.modal .content form .error input,
.modal .content form .error2 input{
	border-color: #FF4242;
}
.modal .content form textarea {
  width: 100%;
  background: none;
  border: 1px solid #858585;
  height: 108px;
  color: #212121;
  padding: 10px 15px;
  resize: none;
}
.modal .content form button {
  background: #7dba38;
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  border: 0;
  box-shadow: none;
  display: inline-block;
  line-height: 50px;
  min-width: 170px;
  cursor: pointer;
  letter-spacing: 0.2em;
}
.modal .content .close{
	position: absolute;
	top: 15px;
	right: 15px;
	z-index: 9;
	cursor: pointer;
	transition: all 0.3s ease-out;
}
.modal .content .close:hover{
	opacity: 0.7;
}
.error-message{
	position: relative;
}
.text-message,
.text-message-code{
	font-size: 12px;
	color: #FF4242;
	position: absolute;
	top: 0;
	right: 0;
	padding-right: 15px;
	height: 100%;
	align-items: center;
	display: none;
}
.error .text-message, .error2 .text-message-code{
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
}
.success-message{
	text-align: center;
	display: none;
	padding: 60px 0;
}
.message-send .success-message{
	display: block;
}
.message-send form{
	display: none!important;
}
.success-message svg{
	margin-bottom: 20px;
}
.success-message p{
	text-transform: uppercase;
	color: #212121;
	font-weight: 600;
	max-width: 435px;
	margin: 0 auto 20px;
	line-height: 1.4;
}

@media (max-width: 767px){
	.modal{
		padding: 15px;
	}
	.modal .content{
		padding: 50px 15px 10px;
	}
	.modal .content h2{
		font-size: 35px;
	}
	.modal .content form .half-width{
		width: 100%;
	}
	.daterangepicker{
		width: 100%;
	}
	.daterangepicker .calendar-table th, .daterangepicker .calendar-table td{
		min-width: 27px;
		width: 27px;
	}
	.daterangepicker .drp-selected{
		display: none;
	}
}
@media (max-width: 479px){
	.daterangepicker{
		left: 15px!important;
		right: 15px!important;
	}
	.daterangepicker{
		width: calc(100% - 30px);
	}
	.modal .content form input{
		line-height: 40px;
	}
	#view-callback.modal button {
    margin-top: 0px;
	}
	.modal .content h2 + p{
		font-size: 12px;
		max-width: 70%;
		margin: auto;
	}
}
/* end - modal */

/* calculator */
#calculator{
	padding-top: 200px;
}
.calculator-block{
	background: #F9F8F8;
	padding: 60px 0;
}
.title-calculator{
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	justify-content: space-between;
	padding-bottom: 60px;
}
.title-calculator > div{
	width: 50%;
}
.wrapper-e-oselya{
	display: flex;
	flex-wrap: wrap;
	margin-top: 40px;
	align-items: center;
	gap: 40px;
}
.calculator-description p{
	margin-bottom: 25px;
	color: #575757;
	font-size: 14px;
	line-height: 22px;
	margin-bottom: 15px;
}
.calculator-description ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 15px;
}
.calculator-description ul li:after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    left: 0;
    top: 2px;
    background: #7dba38;
    border-radius: 50%;
}
.title-calculator h1{
	font-size: 70px;
	font-family: 'Montserrat';
	margin-bottom: 20px;
}
.title-calculator h1 + p{
	text-transform: uppercase;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.2em;
}
.info-calculator-block{
	background: #fff;
	box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
	padding: 70px 120px;
}
.info-calculator-block > div{
	width: 50%;
}
.info-calculator-block > div.text-center{
	width: 100%;
}
.info-calculator-block h2{
	font-size: 50px;
	font-family: 'Montserrat';
	margin-bottom: 15px;
}
.info-calculator-block h2 + p{
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 40px;
}
.parameters-info-calculator-block .item{
	min-height: 120px;
	/* border-left: 2px solid #C4C4C4; */
}
.parameters-info-calculator-block .item.item-military{
	min-height: 0px;
	margin-bottom: 30px;
}
.parameters-info-calculator-block .item.check{
	border-left: 2px solid #7dba38;
}
.parameters-info-calculator-block .item.check.no-border{
	border: 0;
}
.parameters-info-calculator-block .item:last-child,
.parameters-info-calculator-block .item.chek:last-child{
	border-left: 0;
}
.parameters-info-calculator-block .item .title{
	text-transform: uppercase;
	font-weight: 600;
	font-size: 18px;
	letter-spacing: 0.2em;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	align-items: center;
	margin-bottom: 25px;
	position: relative;
	padding-left: 30px;
}
.parameters-info-calculator-block .item .title span{
	width: 30px;
	height: 30px;
	border-radius: 50%;
	border: 2px solid #C4C4C4;
	font-size: 16px;
	margin-right: 13px;
	color: #7dba38;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	position: absolute;
	left: -16px;
	background: #fff;
	z-index: 9;
}
.parameters-info-calculator-block .item .title:after{
	content: '';
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #fff;
	position: absolute;
	left: -21px;
	z-index: 1;
}
.parameters-info-calculator-block .item.check .title span{
	background: #7dba38 url(../img/check-step.svg);
	background-position: center;
	background-repeat: no-repeat;
	border: #7dba38;
	font-size: 0;
}
.parameters-info-calculator-block .item > div{
	padding-left: 32px;
}
.parameters-info-calculator-block .item input{
	display: none;
}
.parameters-info-calculator-block .item label{
	font-size: 16px;
	color: #575757;
	position: relative;
	padding-left: 30px;
	margin-right:15px;
	line-height: 20px;
	display: inline-block;
	cursor: pointer;
	margin-bottom: 10px;
}
.parameters-info-calculator-block .item label sup{
	font-size: smaller;
	vertical-align: super;
	position: relative;
	top: 0px;
	line-height: 0;
}
.parameters-info-calculator-block .item label::after{
	content: '';
	position: absolute;
	width: 18px;
	height: 18px;
	border: 1px solid #B8B6B6;
	left: 0;
	top: 0;
}
.parameters-info-calculator-block .item input:checked + label::before{
	content: '';
	position: absolute;
	width: 20px;
	height: 20px;
	background: url(../img/check-label.svg);
	background-size: 16px;
	background-position: center;
	left: 0;
	top: 0;
	background-repeat: no-repeat;
}
.result-info-calculator-block .item{
	min-height: 100px;
	border-radius: 8px;
	border: 2px solid #E7E7E7;
	margin-bottom: 60px;
	padding: 20px 70px;
	position: relative;
}
.result-info-calculator-block .item .num{
	width: 30px;
	height: 30px;
	position: absolute;
	left: -16px;
	background: #4E8721;
	color: #fff;
	text-align: center;
	line-height: 30px;
	border-radius: 50%;
	font-size: 16px;
	top: 35px;
}
.result-info-calculator-block .item .title{
	font-size: 18px;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	margin-bottom: 10px;
}
.result-info-calculator-block .item .price{
	font-size: 14px;
	color: #4E8721;
}
.result-info-calculator-block .item .price > span{
	font-size: 30px;
	font-weight: 700;
	margin-right: 5px;
}
#calc-square .square{
	display: none;
}
#calc-square .square.show{
	display: block;
}
@media (max-width: 1600px){
	.title-calculator h1{
		font-size: 60px;
	}
}
@media (max-width: 1400px){
	.title-calculator h1{
		font-size: 40px;
	}
	.info-calculator-block h2{
		font-size: 42px;
	}
	.parameters-info-calculator-block .item .title,
	.result-info-calculator-block .item .title{
		font-size: 15px;
	}
	.parameters-info-calculator-block .item label{
		font-size: 14px;
	}
	.info-calculator-block{
		padding: 70px 80px;
	}
	.result-info-calculator-block .item .price > span{
		font-size: 25px;
	}
	.title-calculator h1 + p{
		font-size: 12px;
	}
}
@media (max-width: 1200px){
	.title-calculator h1{
		font-size: 35px;
	}
	.result-info-calculator-block .item{
		padding: 20px 20px 20px 40px;
	}
	.info-calculator-block > div.parameters-info-calculator-block{
		width: 55%;
	}
	.info-calculator-block > div.result-info-calculator-block{
		width: 45%;
	}
	.info-calculator-block {
    padding: 50px 40px;
	}
	.info-calculator-block h2 {
    font-size: 39px;
	}
	.info-calculator-block h2 + p{
		font-size: 11px;
	}
	.parameters-info-calculator-block .item .title{
		font-size: 14px;
		margin-bottom: 20px;
	}
	.parameters-info-calculator-block .item{
		min-height: 100px;
	}
	.result-info-calculator-block .item{
		margin-bottom: 40px;
	}
	.parameters-info-calculator-block .item label {
    font-size: 12px;
	}
	.result-info-calculator-block .item .title{
		font-size: 14px;
	}
}
@media (max-width: 991px){
	.title-calculator{
		flex-wrap: wrap;
	}
	.title-calculator > div{
		width: 100%;
	}
	.title-calculator > div:first-child{
		text-align: center;
		margin-bottom: 20px;
	}
	.result-info-calculator-block .item {
    padding: 20px 5px 20px 30px;
	}
	.parameters-info-calculator-block .item label{
		margin-bottom: 5px;
	}
}
@media (max-width: 767px){
	.title-calculator h1{
		font-size: 40px;
	}
	.info-calculator-block > div.parameters-info-calculator-block,
	.info-calculator-block > div.result-info-calculator-block{
		width: 100%;
	}
	.parameters-info-calculator-block .item label{
		display: block;
	}
	.parameters-info-calculator-block .item{
		padding-bottom: 20px;
	}
	.info-calculator-block h2 + p{
		line-height: 1.2;
		margin-bottom: 20px;
	}
	.parameters-info-calculator-block{
		margin-bottom: 20px;
	}
	.result-info-calculator-block .item {
    	margin-bottom: 20px;
	}
	.wrapper-e-oselya{
		gap: 15px;
	}
	.wrapper-e-oselya img{
		max-height: 30px!important;
		width: auto;
	}
	.copyright .container{
		justify-content: center;
	}
}
@media (max-width: 479px){
	#calculator {
	    padding-top: 130px;
	}
	.title-calculator{
		padding-bottom: 20px;
	}
	.wrapper-e-oselya{
		justify-content: center;
	}
}
/* end - calculator */

/* genplan */
#genplan-page{
	padding-top: 200px;
}
#genplan-page h1{
	text-align: center;
	font-size: 60px;
	font-family: 'Montserrat';
}
#genplan-page h1 + p{
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	text-align: center;
	margin: 30px 0 50px;
}
#genplan-page .genplan-block{
	position: relative;
	width: 1920px;
	width: 100%;
	overflow-x: auto;
}
#genplan-page .genplan-block img{
	width: 100%;
}
#genplan-page .genplan-block .point{
	position: absolute;
	z-index: 9;
	width: 1px;
	height: 1px;
	color: #fff;
}
#genplan-page .genplan-block .point.item > div{
	width: 30px;
	height: 30px;
	border-radius: 50%;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	cursor: pointer;
	position: relative;
	left: -15px;
  top: -15px;
}
#genplan-page .genplan-block .point > div{
	width: 30px;
	height: 30px;
	border-radius: 50%;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	position: relative;
	left: -15px;
  top: -15px;
}
#genplan-page .genplan-block .point .free_status{
	background: rgba(25,190,51,.8);
	transition: all 0.3s ease-out;
}
#genplan-page .genplan-block .point .free_status:hover{
	background: rgba(25,190,51,1);
}
#genplan-page .genplan-block .point .sell_status{
	background: rgba(191,60,31,.8);
	transition: all 0.3s ease-out;
}
#genplan-page .genplan-block .point .sell_status:hover{
	background: rgba(191,60,31,1);
}
#genplan-page .genplan-block .point .booked_status{
	background: #ff9737;
	color: #fff;
	transition: all 0.3s ease-out;
}
#genplan-page .genplan-block .point .booked_status:hover{
	background: #e28b3d;
}

#genplan-page .genplan-block .point .name{
	font-size: 10px;
	font-weight: 700;
	width: 100%;
	text-align: center;
	border-bottom: 1px solid #fff;
	margin-top: 1px;
}
#genplan-page .genplan-block .point .square{
	font-size: 10px;
	font-weight: 500;
	width: 100%;
	text-align: center;
}
#genplan-page .genplan-block .point .booked_status{
	color: #fff;
}
#genplan-page .genplan-block .point .name{
	border-color: #fff;
}
.infr_marker svg{
	margin-right: 2px;
}
#genplan-page .genplan-block .point.item > div.plan-floor-point{
	position: absolute;
	bottom: -34px;
  top: auto;
	left: -20px;
	background: rgba(51,170,78,.7);
	color: #fff;
	font-size: 10px;
	font-weight: 500;
	width: 40px;
	height: 13px;
	border-radius: 0;
}
#genplan-page .genplan-block .point > div.plan-floor-point{
	position: absolute;
	bottom: -34px;
  top: auto;
	left: -20px;
	background: rgba(191,60,31,.7);
	color: #fff;
	font-size: 10px;
	font-weight: 500;
	width: 40px;
	height: 13px;
	border-radius: 0;
}
.description-genplan{
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	max-width: 1000px;
	margin: auto;
	padding: 60px 0;
}
.description-genplan > div{
	width: 50%;
	width: 100%;
}
.description-genplan > div p{
	font-size: 14px;
	line-height: 22px;
	color: #575757;
	margin-bottom: 15px;
}
.description-genplan .description-genplan-text ul{
	margin-bottom: 10px;
}
.description-genplan .description-genplan-text ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 5px;
    line-height: 1.4;
		color: #575757;
}
.description-genplan .description-genplan-text ul li:after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    left: 0;
    top: 5px;
    background: #7dba38;
    border-radius: 50%;
}
.modal-project{

}
.modal-project .content{
	max-width: 610px;
	padding: 30px;
	height: auto;
}
.modal-project .content .information{
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	align-items: flex-start;
	padding-top: 20px;
	gap: 4%;
}
.modal-project .content .information .name{
	width: 48%;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	align-items: center;
}
.modal-project .content .information .name .point{
	width: 40px;
	height: 40px;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	justify-content: center;
	align-items: center;
	background: rgba(255,85,0,.9);
	border-radius: 50%;
}
.modal-project .content .information .name .point p{
	font-weight: 500;
	font-size: 13px;
	text-align: center;
	color: #fff;
}
.modal-project .content .information .name .point p span.building-number{
	font-weight: 700;
	display: block;
	border-bottom: 1px solid #fff;
}
.modal-project .content .information .name .name-project{
	font-size: 24px;
	font-weight: 700;
	margin-left: 13px;
	text-align: left;
}
.modal-project .content .information ul{
	margin-bottom: 10px;
}
.modal-project .content .information ul li{
	font-weight: 700;
	font-size: 14px;
	line-height: 25px;
	text-align: left;
}
.modal-project .content .information ul li span{
	font-weight: 500;
	min-width: 150px;
	display: inline-block;
}
.modal.modal-project .content .close{
	top: -1px;
	right: -1px;
}
.modal.modal-project .read-more{
	/* text-align: right; */
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
	margin-top: 20px;
}
.modal.modal-project .read-more a{
	text-transform: uppercase;
	font-size: 10px;
	font-weight: 600;
	color: #7dba38;
	letter-spacing: 0.1em;
	max-width: 100px;
	display: inline-block;
	max-width: 50%;
}
.modal.modal-project .read-more a svg{
	width: 100%;
}
.modal.modal-project .read-more a.btn-theme-red{
	color: #fff;
}
.wrap-genplan-block{
	width: 100%;
	overflow: auto;
	padding-bottom: 20px;
}
.wrap-genplan-block::-webkit-scrollbar {
  width: 12px;
	height: 12px;
  background: #EEEBEB;
  border-radius: 10px;
	/* border-left:60px solid #fff;
	border-right:60px solid #fff; */
}
.wrap-genplan-block::-webkit-scrollbar-thumb {
  background-color: #777777;
	width: 12px;
	height: 12px;
	border: 2px solid #EEEBEB;
	/* border-left: 60px solid transparent;
	border-right: 60px solid transparent; */
  /* outline: 4px solid slategrey; */
  border-radius: 10px;
}
.info-genplan{
	padding-left: 30px;
}
.info-genplan li{
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	font-size: 14px;
	line-height: 26px;
	margin-bottom: 12px;
}
.info-genplan li span{
	display: inline-block;
	width: 85px;
	text-align: right;
	margin-right: 15px;
}
.final-date{
	padding-left: 55px;
}
@media (max-width: 1600px){
	#genplan-page h1{
		font-size: 80px;
	}
	#genplan-page h1 + p{
		font-size: 12px;
	}
}
@media (max-width: 1400px){
	#genplan-page h1{
		font-size: 60px;
	}
}
@media (max-width: 1200px){
	#genplan-page h1{
		font-size: 55px;
	}
	.description-genplan{
		padding-left: 15px;
		padding-right: 15px;
	}
	#genplan-page .genplan-block{
		width: 1680px;
	}
	#genplan-page .genplan-block img{
		width: 1680px;
		max-width: none;
	}
}
@media (max-width: 991px){
	.description-genplan{
		flex-wrap: wrap;
	}
	.description-genplan > div{
		width: 100%;
	}
	.info-genplan{
		padding-left: 0;
		margin-top: 30px;
	}
}
@media (max-width: 767px){
	#genplan-page .genplan-block{
		overflow-y: hidden;
	}
	.modal.modal-project{
		padding: 15px;
	}
	.modal-project .content .information{
		padding-top: 10px;
	}
	.modal-project .content{
		padding: 30px 15px;
	}
	.final-date{
		padding-left: 0px;
		margin-top: 30px;
	}
}
@media (max-width: 479px){
	#genplan-page {
    padding-top: 130px;
	}
	.modal-project .content .information{
		flex-wrap: wrap;
	}
	.modal-project .content .information .name,
	.modal-project .content .information .specifications{
		width: 100%;
	}
	.modal-project .content .information .name{
		margin-bottom: 15px;
	}
	#genplan-page h1{
		font-size: 40px;
	}
}
/* end - genplan */

/* about */
#about{
	padding-top: 120px;
	background-image: url(../img/bg_top_about_.jpg);
	background-size: 100%;
	background-position: center top;
	background-repeat: no-repeat;
	position: relative;
}
#about .big-cloud,
#about .small-cloud{
	position: absolute;
	top: 0;
	z-index: 9;
}
#about .big-cloud{
	left: -100px;
	animation: movebigcloud 250s infinite ease-out;
	max-width: 33%;
}
#about .small-cloud{
	left: 0;
	animation: movesmallcloud 70s infinite ease-out;
	max-width: 20%;
}
@keyframes movesmallcloud {
  0% {
		left: 0;
  }
  50%{
		left: 100%;
  }
  100%{
		left: 0;
  }
}
@keyframes movebigcloud {
  0% {
		left: 0;
  }
  50%{
		left: 100%;
  }
  100%{
		left: 0;
  }
}

.about-first{
	background-repeat: no-repeat;
	background-size: auto 100%;
	background-position: right center;
	padding: 80px 0 60px;
}
.about-first .container{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0px;
}
.about-first .description,
.about-first .image{
	width: 50%;
}
.about-first .description.description-full{
	width: 100%;
}
.about-first .description{
	padding-right: 30px;
}
.about-first .description h1{
	font-size: 55px;
	font-family: 'Montserrat';
	margin-bottom: 20px;
}
.about-first .description .subtitle{
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	margin-bottom: 30px;
}
.about-first .description p{
	line-height: 22px;
	margin-bottom: 10px;
}
.about-first .description p:last-child{
	margin-bottom: 0;
}
.about-territory{
	padding: 60px 0;
}
.about-territory .item{
	margin-bottom: 70px;
}
.about-territory .meta{
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	justify-content: space-between;
	margin-bottom: 30px;
}
.about-territory .meta .title{
	width: 33%;
}
.about-territory .meta h2{
	font-size: 60px;
	font-family: 'Montserrat';
	margin-bottom: 20px;
}
.about-territory .meta h2 + p.subtitle{
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.2em;
}
.about-territory .meta .description{
	width: 50%;
}
.about-territory .meta .description p{
	margin-bottom: 30px;
	line-height: 22px;
}
.about-territory .meta .description p:last-child{
	margin-bottom: 0;
}
.about-territory .meta .link{
	width: 17%;
	text-align: right;
}
.about-territory .meta .link a{
	letter-spacing: 0.2em;
	font-size: 12px;
	text-transform: uppercase;
	color: #7dba38;
	font-weight: 600;
}
.about-territory .meta .link svg{
	position: relative;
	left: -4px;
	margin-bottom: 4px;
}
.about-short-territory h2{
	font-size: 45px;
	font-family: 'Montserrat';
	margin-bottom: 20px;
	/* max-width: 80%; */
}
.about-short-territory .item{
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	align-items: center;
	margin-bottom: 60px;
}
.about-short-territory .item > div{
	width: 50%;
}
.about-short-territory .item > div img{
	width: 100%;
}
.about-short-territory .item .description{
	padding-right: 145px;
	padding-left: 0;
}
.about-short-territory .item .description p{
	line-height: 22px;
	margin-bottom: 10px;
}
.about-short-territory .item.even .description{
	padding-left: 60px;
	padding-right: 0;
}
.about-first .description ul,
.about-short-territory .item .description ul {
	margin-bottom: 10px;
}
.about-first .description ul li,
.about-short-territory .item .description ul li{
	position: relative;
  padding-left: 20px;
  margin-bottom: 5px;
  line-height: 1.4;
}
.about-first .description ul li:after,
.about-short-territory .item .description ul li:after{
	content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  left: 0;
  top: 5px;
  background: #7dba38;
  border-radius: 50%;
}
.c-form-mini{
	max-width: 400px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.c-form-mini input{
	line-height: 45px;
	border: 1px solid #fafafa;
	padding: 0 15px;
	background: none;
	box-shadow: none;
	color: #fff;
	margin-bottom: 15px;
	width: 100%;
}
.c-form-mini .full-width{
	width: calc((100% - 15px)/2);
}
.c-form-mini input::-webkit-input-placeholder {color:#fafafa;}
.c-form-mini input::-moz-placeholder          {color:#fafafa;}/* Firefox 19+ */
.c-form-mini input:-moz-placeholder           {color:#fafafa;}/* Firefox 18- */
.c-form-mini input:-ms-input-placeholder      {color:#fafafa;}
.c-form-mini button{
	position: relative;
  line-height: 45px;
  height: 45px;
	width: 100%;
  color: #fff;
  background: #7dba38;
  padding: 0 35px;
  display: inline-block;
  font-weight: 700;
  overflow: hidden;
  transition: all 0.3s ease-out;
  letter-spacing: 0.1em;
	border: 0;
	box-shadow: none;
	cursor: pointer;
	text-transform: uppercase;
}
.c-form-mini button:hover{
	line-height: 120px;
	color: #fff;
}
.c-form-mini button::after{
	content: attr(data-text);
	position: absolute;
	top: -47px;
	left: 0;
	width: 100%;
	text-align: center;
	transition: all 0.3s ease-out;
	line-height: 47px;
}
.c-form-mini button:hover::after{
	top: 0;
}
.c-form-mini .text-message,
.c-form-mini .text-message-code{
	font-size: 11px;
  color: #fff;
  padding-right: 0;
  text-align: center;
  left: 0;
  top: auto;
  line-height: 1.3;
  height: auto;
  bottom: 0px;
}
.c-form-mini .success{
	margin-top: 15px;
	display: none;
	color: #fff;
	font-weight: 600;
	line-height: 1.1;
	background: green;
	padding: 10px;
	text-align: center;
}
.c-form-mini .success.ok{
	display: block;
}
.list-contact li p.show-mobile{
	display: block!important;
}

.page#single-page-blog h1{
	margin-bottom: 40px;
}
.page#single-page-blog h2{
	font-size: 30px;
}

@media (max-width: 1600px){
	.about-first{
		background-size: auto 82%;
	}
	.about-territory .meta h2{
		font-size: 50px;
	}
	.about-territory .meta .title {
    width: 25%;
	}
	.about-short-territory h2{
		/* font-size: 50px; */
	}
}
@media (max-width: 1450px){
	.about-first{
		background-size: auto 75%;
	}
	.about-first .description h1{
		font-size: 55px;
	}
}
@media (max-width: 1350px){
	.about-first{
		background-size: auto 65%;
	}
	.about-territory .meta h2{
		font-size: 42px;
	}
	.about-short-territory h2{
		font-size: 42px;
	}
}
@media (max-width: 1235px){
	.about-first{
		background-size: auto 55%;
	}
	.about-territory .meta .title {
    width: 30%;
	}
	.about-territory .meta .description {
    width: 45%;
	}
	.about-territory .meta .link {
    width: 25%;
	}
	.about-short-territory .item.even .description{
		padding-left: 80px;
	}
	.about-short-territory .item .description{
		padding-right: 80px;
	}
	.about-first .description h1{
		font-size: 55px;
	}
}
@media (max-width: 1170px){
	.about-first {
	    background-size: auto 45%;
	}
	.about-territory{
		padding-bottom: 0;
	}
}
@media (max-width: 991px){
	.about-first .description{
		width: 100%;
		padding-left: 0;
		padding-right: 0;
	}
	.about-first .description h1,
	.about-first .description .subtitle{
		text-align: center;
	}
	.about-first{
		background-image: none!important;
	}
	.about-territory .meta{
		flex-wrap: wrap;
	}
	.about-territory .meta .title,
	.about-territory .meta .description,
	.about-territory .meta .link
	{
		width: 100%;
	}
	.about-territory .meta .title{
		text-align: center;
		margin-bottom: 25px;
	}
	.about-territory .meta .link{
		text-align: center;
		margin-top: 20px;
	}
	.about-territory .meta .link a{
		max-width: 178px;
		display: inline-block;
	}
	.about-first .image{
		display: none;
	}
	.about-first .description img{
		margin-bottom: 30px;
	}
	.about-short-territory .item.even .description {
    padding-left: 40px;
  }
	.about-short-territory h2 {
    font-size: 30px;
  }
}
@media (max-width: 767px){
	.about-first{
		padding: 20px 0 60px;
	}

	.about-first .description h1{
		font-size: 40px;
	}
	.about-territory .meta h2,
	.about-short-territory .item .description h2{
		font-size: 35px;
		/* margin-bottom: 0; */
	}
	.about-first .description .subtitle{
		font-size: 10px;
	}
	.about-first .description img{
		position: relative;
	}
	.about-territory .item{
		margin-bottom: 40px;
	}
	.about-short-territory .item{
		flex-wrap: wrap;
	}
	.about-short-territory .item > div{
		width: 100%;
	}
	.about-short-territory .item .description{
		padding-right: 0;
		width: 100%;
		margin-bottom: 20px;
	}
	.about-short-territory .item .description h2{
		text-align: center;
		max-width: 100%;
	}
	.about-short-territory .item.even .description{
		order: 1;
		padding-left: 0;
	}
	.about-short-territory .item.even .image{
		order: 2;
	}
	#about .container{
		max-width: 100%;
		width: 100%;
		padding: 0;
	}
	.about-first .description,
	.about-territory .meta .description,
	.about-short-territory .item .description,
	.about-short-territory .item.even .description{
		padding: 0 15px;
	}
	.about-territory .meta h2 + p.subtitle{
		font-size: 10px;
	}
	/* .about-territory .item h2{
		margin-bottom: 0;
	} */
	.about-territory .meta .title{
		margin-bottom: 0;
	}
	.about-territory .meta h2 + p.subtitle{
		margin-bottom: 25px;
	}
	.c-form-mini .full-width {
    width: 100%;
	}
	.about-short-territory .item .description p{
		text-align: center;
	}
}
/* end - about */

/* modal view callback */
.daterangepicker{
	border-radius: 0;
}
.daterangepicker .calendar-table th,
.daterangepicker .calendar-table td{
	font-family: "Montserrat";
	font-size: 13px;
	height: 31px;
	min-width: 40px;
}
.daterangepicker .calendar-table th{
	font-weight: 600;
}
.daterangepicker .drp-calendar{
	max-width: 100%;
}
.daterangepicker td.in-range{
	color: #7dba38;
	background: #F8F7FA;
}
.daterangepicker td.active,
.daterangepicker td.active:hover,
.daterangepicker td.start-date,
.daterangepicker td.end-date{
	background: #7dba38;
	color: #fff;
}
.daterangepicker:after,
.daterangepicker:before{
	display: none;
}
.daterangepicker .drp-calendar.left {
    padding: 24px 12px 24px 24px;
}
.daterangepicker .drp-calendar.right {
    padding: 24px 24px 24px 12px;
		border-left: 1px solid #EEEDF0;
}
.daterangepicker .drp-buttons .btn{
	line-height: 40px;
	padding: 0 15px;
	font-size: 14px;
	font-family: "Montserrat";
	border: 0;
	cursor: pointer;
	border-radius: 4px;
}
.daterangepicker .drp-buttons .btn.applyBtn{
	background: #7dba38;
	color: #fff;
	font-weight: 600;
}
.daterangepicker .drp-buttons .btn.cancelBtn{
	background: #F8F7FA;
	color: #19181A;
	font-weight: 500;
}
.daterangepicker .drp-selected{
	float: left;
	line-height: 40px;
	padding: 0 15px;
	font-size: 14px;
	font-weight: 500;
}
.modal .content form input[name="daterange"]{
	color: #575757;
  letter-spacing: 0.1em;
	font-weight: 600;
	font-size: 12px;
}
.half-width .nice-select{
	width: 100%;
	border-radius: 0;
	border: 1px solid #858585;
	height: 50px;
	line-height: 48px;
	font-family: "Montserrat";
	font-weight: 600;
	font-size: 12px;
	color: #575757;
	letter-spacing: 0.1em;
}
.nice-select .list{
	width: 100%;
	border: 1px solid #858585;
	border-radius: 0;
}
.nice-select .option.selected{
	color: #7dba38;
	font-weight: 600;
}
.daterange{
	position: relative;
	background-image: url(../img/calendar.svg);
	background-size: 18px;
	background-repeat: no-repeat;
	background-position: 95% center;
	cursor: pointer;
}
#view-callback.modal .content{
	height: auto;
}
#view-callback.modal button{
	margin-top: 30px;
}
#callback-header.modal .content{
	height: 500px;
	max-width: 680px;
}
#callback-header.modal .content form{
	max-width: 400px;
}
#callback-header.modal .content form input{
	text-align: center;
}
.gallery-blog{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 15px;
}
.gallery-blog a{
	width: calc((100% - 45px) / 4);
	height: 200px;
	background-position: center;
	background-size: cover;
}
.error-message-form{
	text-align: center;
	font-weight: 600;
	color: #7dba38;
}
@media (max-width: 991px){
	.gallery-blog a{
		width: calc((100% - 15px) / 2);
	}
}
@media (max-width: 479px){
	.gallery-blog a{
		width: 100%;
		height: 300px;
	}
}
@media (max-width: 479px){
	#view-callback.modal button{
		margin-top: 0px;
	}
	.daterangepicker{
		top: 0!important;
		position: fixed!important;
		left: 0!important;
		right: 0!important;
		margin: 0!important;
		width: 100%;
    height: 100%;
	}
	#view-callback .nice-select .list{
		top: auto;
		bottom: calc(100% + 7px);
		left: -1px;
		width: calc(100% + 2px);
		transform: none;
	}
	#view-callback .nice-select.open .list{
		transform: none;
	}
}

/* end - modal view callback */

/* gallery */
.title-page-h1{
	text-align: center;
	font-family: 'Montserrat';
	font-size: 40px;
	margin-bottom: 40px;
}
.single-album{
	padding-top: 190px;
	padding-bottom: 60px;
}
.slider-wrapper{
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 30px;
}
.slider-wrapper button{
	width: 51px;
	border: 0;
	background: none;
	cursor: pointer;
	padding: 0;
}
.slider-wrapper button svg path{
	transition: all .3s;
}
.slider-wrapper button:hover svg path{
	fill: #7dba38!important;
}
.gallery-album{
	width: calc(100% - 112px);
}
.item-image-album{
	position: relative;
}
.item-image-album img{
	display: block;
	aspect-ratio: 4 / 2.5;
	object-fit: cover;
}
.wrapper-download{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 200px;
	background: #000000;
	background: linear-gradient(0deg,rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
	z-index: 9;
	text-align: center;
	padding-top: 140px;
}
.wrapper-download a{
	display: inline-block;
	line-height: 40px;
	border: 1px solid #fff;
	padding: 0 30px;
	color: #fff;
	opacity: 0;
	font-weight: 700;
	text-transform: uppercase;
}
.item-image-album:hover .wrapper-download a{
	opacity: 1;
}
.wrapper-download a:hover{
	background: #7dba38;
	border-color: #7dba38;
}
.wrapper-gallery-album .wrap-articles .item h2{
	min-height: 0;
}
.mt-40{
	margin-top: 40px;
}
@media screen and (max-width: 767px) {
	.slider-wrapper{
		justify-content: center;
		flex-wrap: wrap;
		gap: 30px;
	}
	.gallery-album{
		width: 100%;
		order: 1;
	}
	.slider-wrapper button{
		order: 2;
	}
	.wrapper-download{
		position: relative;
		height: 60px;
		background: none;
		padding-top: 10px;
	}
	.wrapper-download a{
		opacity: 1;
		border: 1px solid #7dba38;
		background: #7dba38;
		color: #fff;
	}
	.introduction .item > div.information{
		order: 2;
	}
	.introduction .item{
		margin-bottom: 30px;
	}
}
/* -- gallery */

/* documents-page */
#documents-page {
  padding-top: 200px;
	padding-bottom: 60px;
}
#documents-page .title{
	text-align: center;
}
#documents-page .title h1{
	font-size: 65px;
  font-family: 'Montserrat';
}
.documents{
	display: flex;
	justify-content: center;
	gap: 30px;
	margin-top: 50px;
}
.documents a{
	width: calc((100% - 90px) / 4);
	display: block;
}
.documents a img{
	aspect-ratio: 210 / 297;
	object-fit: cover;
	transition: all .3s;
}
.documents a:hover img{
	opacity: .7;
}
.documents a span{
	text-align: center;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 14px;
	text-align: center;
	display: block;
	margin-top: 10px;
	line-height: 1.4;
	transition: all .3s;
}
.documents a:hover span{
	color: #7dba38;
}
@media screen and (max-width: 1500px) {
    #documents-page .title h1 {
        font-size: 80px;
    }

}
@media (max-width: 1100px) {
    #documents-page .title h1 {
        font-size: 60px;
    }
		.documents a{
			width: calc((100% - 60px) / 3);
		}
}
@media (max-width: 991px){
	#documents-page{
		padding-top: 140px;
	}
}
@media (max-width: 767px){
	.documents a{
		width: calc((100% - 30px) / 2);
	}
}
/* -- documents-page */
