@font-face {
    font-family: 'Caveat';
    src: url('../fonts/Caveat-Regular.eot');
    src: url('../fonts/Caveat-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Caveat-Regular.woff2') format('woff2'),
        url('../fonts/Caveat-Regular.woff') format('woff'),
        url('../fonts/Caveat-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Source Sans Pro';
    src: url('../fonts/SourceSansPro-Regular.eot');
    src: url('../fonts/SourceSansPro-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/SourceSansPro-Regular.woff2') format('woff2'),
        url('../fonts/SourceSansPro-Regular.woff') format('woff'),
        url('../fonts/SourceSansPro-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Source Sans Pro';
    src: url('../fonts/SourceSansPro-SemiBold.eot');
    src: url('../fonts/SourceSansPro-SemiBold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/SourceSansPro-SemiBold.woff2') format('woff2'),
        url('../fonts/SourceSansPro-SemiBold.woff') format('woff'),
        url('../fonts/SourceSansPro-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Source Sans Pro';
    src: url('../fonts/SourceSansPro-Black.eot');
    src: url('../fonts/SourceSansPro-Black.eot?#iefix') format('embedded-opentype'),
        url('../fonts/SourceSansPro-Black.woff2') format('woff2'),
        url('../fonts/SourceSansPro-Black.woff') format('woff'),
        url('../fonts/SourceSansPro-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}
/************************* reset *************************/
html{
	height: 100%;
	margin: 0;
	padding: 0;width: 100%;
	background: #fff;
}
body{
	height: 100%;
	width: 100%;
	position: relative;
	margin: 0;
	padding: 0;
	color: #525F60;
	font-size: 14px;
	font-weight: 400;
	font-family: 'Source Sans Pro', Arial, Helvetica, sans-serif;
	line-height: 18px;
	min-width: 320px;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}
h1, h2, h3, h4, p, ul, li, a, span, div, input, textarea, select, form, fieldset, button, dl, dd, dt, figure, figcaption, blockquote, caption, aside, section {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	box-sizing: border-box;
}
img {
	margin: 0;
	padding: 0;
	border-style: none;
	vertical-align: bottom;
}
input, textarea, select, button {
	font-weight: 400;
	font-family: 'Inter', Arial, Helvetica, sans-serif;
	vertical-align:middle;
	border: 0;
	outline: 0;
	background: none;
}
a:hover {text-decoration: none;}
ul li {list-style: none;}
/************************* common styles *************************/
.holder {
	padding: 0 20px;
}
@media (min-width: 375px){
	.holder {
		padding: 0 20px;
	}
}
@media (min-width: 576px){
	.holder {
		max-width: 540px;
		margin: auto;
		padding: 0;
	}
}
@media (min-width: 768px){
	.holder {
		max-width: 720px;	
	}
}
@media (min-width: 1024px) {
	.holder {
		max-width: 960px;
	}
}
@media (min-width: 1300px){
	.holder {
		max-width: 1200px;
	}
}
@media (min-width: 1400px){
	.holder {
		max-width: 1280px;
	}
}
.holder:after {
	display: block;
	content: '';
	clear: both;
}
.title {
	display: block;
	margin: 0 0 40px;
	font-weight: 600;
	font-size: 40px;
	line-height: 50px;
	color: #081B1D;
}
a {transition: all .3s linear;}
p {margin: 0 0 18px;}
.center {text-align: center;}
.upper {text-transform: uppercase;}
.button-holder {text-align: center;}
.button {
	position: relative;
	display: inline-block;
	padding: 12px 24px;
	color: #081B1D;
	font-weight: 400;
	font-size: 14px;
	line-height: 14px;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	background: #DEC899;
	box-shadow: 0px 8px 16px rgba(8, 27, 29, 0.24);
	border-radius: 4px;
	transition: all .3s linear;
}
.button:hover {
	background: #c9b78d;
}
.button:active {
	background: #9e9474;
}
.button-blue {
	padding: 8px 16px;
	color: #fff;
	background: #004850;
}
.button-blue:hover {
	background: #042d31;
}
.button-blue:active {
	background: #081B1D;
}
/************************* form-block *************************/
.label {
	display: block;
	margin: 0 0 4px;
}
.input {
	display: block;
	width: 100%;
	height: 40px;
	padding: 0 8px;
	margin: 0 0 16px;
	font-size: 16px;
	color: #081B1D;
	background: rgba(230, 232, 232, 0.24);
	border: 1px solid rgba(181, 187, 187, 0.4);
}
.input:hover {
	background: rgba(230, 232, 232, 0.48);
	border: 1px solid rgba(181, 187, 187, 0.72);
}
.input:focus {
	background: #E6E8E8;
	border: 1px solid rgba(0, 72, 80, 0.56);
}
::-webkit-input-placeholder {color: #081B1D;}
:-moz-placeholder {color: #081B1D; opacity: 1;}
::-moz-placeholder {color: #081B1D; opacity: 1;}
:-ms-input-placeholder {color: #081B1D;}
.form-button {
	padding: 16px 0 0;
}
.form-button .button {
	padding: 12px 24px;
}
/************************* wrapper *************************/
#wrapper {
	position: relative;
	overflow: hidden;
}
body.lock {overflow: hidden;}
.preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
	background: url(../images/loader.jpg) 50% 50% no-repeat;
	background-size: cover;
}
.preloader::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	content: '';
	background: linear-gradient(109.6deg, rgba(0, 72, 80, 0.9) 0%, rgba(0, 72, 80, 0.2) 22.52%, rgba(0, 72, 80, 0.9) 81.47%);
}
.preloader-logo {
	position: relative;
	z-index: 10;
}
/************************* header *************************/
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 500;
	height: 91px;
	padding: 8px 0 0;
	box-sizing: border-box;
	background: rgba(0, 72, 80, 0.7);
	transition: all 0.3s linear;
}
.header-block {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	position: relative;
}
.header-logo {
	position: relative;
}
.header-logo img {
	display: block;
	transition: all 0.3s linear;
}
.scroll-logo {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}
.header-nav {
	display: flex;
	align-items: center;
	padding: 11px 0 0;
}
.header-nav-list {
	display: flex;
	position: relative;
	margin: 0 90px 0 0;
}
.header-nav-list li {
	margin: 0 24px 0 0;
}
.header-nav-list li:last-child {margin: 0;}
.header-nav-list a {
	color: #E6E8E8;
	text-decoration: none;
}
.header-nav-list a:hover {
	color: #fff;
	text-decoration: underline;
}
.header-right {
	display: flex;
	align-items: center;
}
.header-phone {
	margin: 0 33px 0 0;
	font-size: 16px;
	line-height: 20px;
	color: #DEC899;
	text-decoration: none;
}
.header-button {
	display: block;
	padding: 7px 15px;
	font-size: 14px;
	line-height: 14px;
	color: #DEC899;
	text-decoration: none;
	border: 1px solid #DEC899;
	border-radius: 4px;
}
.header-button:hover {
	color: #525F60;
	background: #DEC899;
}
.header-mob-call {display: none;}
.header.fixed {
	height: 81px;
	padding: 8px 0 0;
	background: rgba(255, 255, 255, 0.9);
}
.header.fixed .usual-logo {
	opacity: 0;
}
.header.fixed .scroll-logo {
	opacity: 1;
}
.header.fixed .header-nav-list a {
	color: #525F60;
}
.header.fixed .header-nav-list a:hover {
	color: #081B1D;
}
.header.fixed .header-phone {
	color: #004850;
}
.header.fixed .header-button {
	color: #fff;
	background: #004850;
	border: 1px solid #004850;
}
.header.fixed .header-button:hover {
	color: #fff;
	background: #042d31;
}
.header.fixed .header-button:active {
	color: #fff;
	background: #081B1D;
}
.mob-nav-icon {
	position: absolute;
	top: 19px;
	right: 0px;
	z-index: 250;
	padding: 0 0 10px;
	display: none;
}
.mob-nav-block {
    position: relative;
	display: block;
    width: 24px;
    height: 2px;
    margin: 8px 0 0;
	background: #DEC899;
	transition: all .3s linear;
}
.mob-nav-block:after {
    content: "";
    position: absolute;
    top: -8px;
    left: 0;
    width: 24px;
    height: 2px;
    background: #DEC899;
	transition: all .3s linear;
}
.mob-nav-block:before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 24px;
    height: 2px;
    background: #DEC899;
	transition: all .3s linear;
}
.mob-nav-icon.active .mob-nav-block {
    background: none;
}
.mob-nav-icon.active .mob-nav-block:before {
    top: 0;
    transform: rotate(45deg);
}
.mob-nav-icon.active .mob-nav-block:after {
    top: 0;
    transform: rotate(-45deg);
}
/************************* top *************************/
.top {
	position: relative;
	padding: 90px 0 85px;
	background: url(../images/top.jpg) 50% 50% no-repeat;
	background-size: cover;
}
.top::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	content: '';
	background: linear-gradient(114.01deg, rgba(0, 72, 80, 0.4) 6.77%, rgba(0, 72, 80, 0.9) 87.65%);
}
.top-block {
	position: relative;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding: 64px 0 0;
	color: #fff;
}
.top-side {
	width: 100%;
	max-width: 700px;
	margin: 10% 0 0;
	/*margin: auto 0 0;*/
}
.top-title {
	margin: 0 0 24px;
	font-weight: 400;
	font-size: 56px;
	line-height: 58px;
	color: #DEC899;
	max-width: 400px;
}
.top-text {
	margin: 0 0 48px;
	font-size: 16px;
	max-width: 400px;
}
.bottom-text {
	color: #FFF;
    font-family: Caveat;
    font-size: 64px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    max-width: 100%;
    margin: -50px 0 40px;
}
.top-side .button {
	font-weight: 600;
}
.top-num-item {
	position: relative;
	margin: 0 0 72px;
	padding: 13px 0 0;
}
.top-num-item::before {
	position: absolute;
	width: 40px;
	height: 40px;
	left: 16px;
	top: 0px;
	content: '';
	background: linear-gradient(135deg, rgba(230, 232, 232, 0.4) 0%, rgba(230, 232, 232, 0) 100%);
}
.top-num-value {
	position: relative;
	margin: 0 0 13px;
	font-size: 24px;
	line-height: 30px;
	color: #DEC899;
}
.top-num-value span {
	font-size: 44px;
	font-weight: 600;
}
.top-num-text {
	position: relative;
}
/************************* soc buttons *******************/
.f-soc-but-icons {
	position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
	transition: 0.33s ease;
}
.plus-button {
  position: absolute;
  bottom: 30px;
  right: 30px;
  z-index: 100;
  height: 75px;
  width: 75px;
  border-radius: 100%;
  background-color: #d43939;
  box-shadow: 2px 2px 10px 1px rgba(0,0,0,0.58);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transform: scale(0.92);
}
.plus-button img {
	position: relative;
    bottom: -10px;
    right: -14px;
    height: 52px;
    width: 50px;
}
/*.plus-button::before {
  content: "+";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 28px;
  font-weight: 600;
}*/
.plus-button:hover {
  transform: scale(1);
  box-shadow: 3px 3px 12px 2px rgba(0,0,0,0.5);
}
.plus-button:active {
  transform: scale(0.96);
  box-shadow: 2px 3px 11px 1px rgba(0,0,0,0.53);
}
.plus-button.open {
  /*transform: rotate(45deg) scale(0.92);*/
  background-color: #333;
  box-shadow: 2px 2px 10px 1px rgba(0,0,0,0.58);
}
.plus-button.open:hover {
  /*transform: scale(1) rotate(45deg);*/
  box-shadow: 3px 3px 12px 2px rgba(0,0,0,0.5);
}
.plus-button.open:active {
  /*transform: scale(0.96) rotate(45deg);*/
  box-shadow: 2px 3px 11px 1px rgba(0,0,0,0.53);
}
.social-button {
  position: absolute;
  bottom: 43px;
  right: 41px;
  height: 50px;
  width: 50px;
  padding: 3px;
  transform: scale(0.8);
  background-size: 153% !important;
  border-radius: 100%;
  box-shadow: 2px 2px 7px 0px rgba(0,0,0,0.4);
  cursor: pointer;
  z-index: 99;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.social-button:hover {
  transform: scale(1);
  transition: 0.35s cubic-bezier(0.3, 0.2, 0, 2.5);
}
.social-button.twitter-button {
  background: url("https://cdn4.iconfinder.com/data/icons/social-icon-4/842/twitter-256.png") no-repeat center;
}
.social-button.phone.active {
	display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
	color: #fff;
    background-color: #25D366;
	bottom: 110px;
	right: 21px;
}
.social-button.facebook-button {
  background: url("https://cdn4.iconfinder.com/data/icons/social-icon-4/842/facebook-256.png") no-repeat center;
}
.social-button.vk.active {
	display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
	bottom: 105px;
	right: 73px;
}
.social-button.pinterest-button {
  background: url("https://cdn4.iconfinder.com/data/icons/social-icon-4/842/pinterest-256.png") no-repeat center;
}
.social-button.wa.active {
	display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
	bottom: 67px;
	right: 109px;
}
.social-button.insta-button {
  background: url("https://cdn4.iconfinder.com/data/icons/social-icon-4/842/instagram-256.png") no-repeat center;
}
.social-button.tg.active {
	display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
	bottom: 15px;
	right: 105px;
}
.ok {
	background-color: #ed812b;
	color: #fff!important;
	border: 1px solid #ed812b!important;
}
.vk {
	background-color: #577ca5;
	color: #fff!important;
	border: 1px solid #577ca5!important;
}
.yb {
	background-color: #ff0000;
	color: #fff!important;
	border: 1px solid #ff0000!important;
}
.pt {
	background-color: #B22222;
	color: #fff!important;
	border: 1px solid #B22222!important;
}
.wa {
	background-color: #25D366;
	color: #fff!important;
	border: 1px solid #25D366!important;
}
.tg {
	background-color: #2aabee;
	color: #fff!important;
	border: 1px solid #2aabee!important;
}

.bx-no-touch .yb:hover, .yb:active {
	background-color: #ff0000;
}
.bx-no-touch .pt:hover, .pt:active {
    background-color: #B22222;
}
.bx-no-touch .wa:hover, .wa:active {
    background-color: #25D366;
}
.bx-no-touch .tg:hover, .tg:active {
    background-color: #2aabee;
}

/************************* privacy ***********************/
.privacy {
	padding: 80px 0 80px;
	background: rgba(230, 232, 232, 0.4);
}
.privacy-block {
	display: flex;
	align-items: center;
}
.privacy-title {
	margin: 0 0 20px;
}
.privacy-text p:last-child {margin: 0;}
.privacy-text {
	padding: 0 0 40px;
}
.privacy-text h2 {
	padding: 20px 0;
}

/************************* about *************************/
.about {
	padding: 80px 0 80px;
	background: rgba(230, 232, 232, 0.4);
}
.about-block {
	display: flex;
	align-items: center;
}
.about-side {
	width: 290px;
	min-width: 290px;
	margin: 0 40px 0 0;
}
.about-side .subtitle {
	margin: 0 0 8px;
}
.about-img {
	flex: 1;
}
.about-img img {
	width: 100%;
	min-height: 100%;
	object-fit: cover;
}
.about-text p:last-child {margin: 0;}
.about-text {
	padding: 0 0 40px;
}
.about-img-mob {display: none;}
.about-img-mob img {
	display: block;
	width: 100%;
}
/************************* new-village *************************/
.new-village {
	padding: 80px 0 80px;
	background: rgba(230, 232, 232, 0.4);
}
.new-village-block {
	display: flex;
	align-items: center;
}
.new-village-block .title {
    margin: 0 0 39px;
    color: #000;
    font-family: Source Sans Pro;
    font-size: 42px;
    font-style: normal;
    font-weight: 600;
    line-height: 115%;
}
.new-village-side {
	width: 40%;
    min-width: 290px;
    margin: 0 34px 0 0;
}
.new-village-side .subtitle {
	margin: 0 0 50px;
	color: #004850;
    font-family: Caveat;
    font-size: 21.5px;
    font-style: normal;
    font-weight: 400;
    line-height: 115%;
}
.new-village-side .button {
    padding: 12px 54px;
    color: #000;
    text-align: center;
    font-family: Source Sans Pro;
    font-size: 14.5px;
    font-style: normal;
    font-weight: 400;
    line-height: 115%;
}
.new-village-img {
    position: relative;
	flex: 1;
}
.new-village-img img {
	width: 100%;
	min-height: 100%;
	object-fit: contain;
}
.new-village-img .new-village-logo {
    position: absolute;
    left: 56px;
    z-index: 1;
    width: 225.85px;
    height: 179px;
    flex-shrink: 0;
}
.new-village-img:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 0;
    background: linear-gradient(90deg, #004850 0%, rgba(0, 72, 80, 0.00) 66.95%);
}
.anew-village-text p:last-child {margin: 0;}
.new-village-text {
	padding: 0 0 21px;
}
.new-village-img-mob {display: none;}
.new-village-img-mob img {
	display: block;
	width: 100%;
}
/************************* plan *************************/
.plan {
	padding: 120px 0 0;
}
.plan-block {
	position: relative;
}
.plan-img {
	display: block;
	width: 100%;
}
.plan-block svg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.plan-popup {
	right: 35px;
    top: 50px;
	display: none;
	position: absolute;
	width: 290px;
	padding: 24px 24px 32px;
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0px 36px 34px rgba(82, 95, 96, 0.4);
	backdrop-filter: blur(24px);
	border-radius: 4px;
}
.pop-active {
	display: block;
}
.close-btn {
	display: none;
}
/*@media (max-width: 768px) {
	.close-btn {
		display: block;
		position: absolute;
		top: 8px;
		right: 10px;
		font-size: 32px;
		font-weight: 600;
		transform: rotate(45deg);
		cursor: pointer;
	}
}*/
.plan-status {
	position: relative;
	padding: 2px 0 2px 40px;
	margin: 0 0 24px;
	font-weight: 600;
	font-size: 22px;
	line-height: 28px;
	color: #004850;
}
.plan-status::before {
	position: absolute;
	top: 0;
	left: 0;
	content: '';
	width: 32px;
	height: 32px;
}
.free::before {background: linear-gradient(90deg, #DEC899 0%, rgba(222, 200, 153, 0) 100%);}
.reserved::before {background: linear-gradient(90deg, #B5BBBB 0%, rgba(181, 187, 187, 0) 100%);}
.sold::before {background: linear-gradient(90deg, #081B1D 0%, rgba(8, 27, 29, 0) 100%);}
.plan-stat {
	padding: 0 0 9px;
}
.plan-stat-item {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding: 0 0 9px;
}
.plan-stat-text {
	width: 60%;
}
.plan-stat-value {
	width: 37%;
	font-weight: 600;
	font-size: 16px;
	color: #081B1D;
}
.genplan__legend {
	margin-top: 25px;
}
.genplan__legend h3 {
    font-size: 18px;
    line-height: 16px;
    margin: 0;
    margin-bottom: 24px;
    font-family: "Oswald", "Arial", sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    color: #004850;
}
.genplan__legend-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.genplan__legend-item {
	font-size: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 8px;
}
.genplan__legend-item::before {
	content: "";
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	margin-right: 16px;
}
.genplan__legend-item--sold::before {
	background-color: #912626;
}
.genplan__legend-item--booked::before {
	background-color: #5D3C51;
}
.price_before-14:before{
	background-color:#999933;
}
.price_before-15:before{
	background-color:#CEAB79;
}
.price_before-16:before{
	background-color:#B5834B;
}
.price_before-19:before{
	background-color:#186634; 
}
/************************* pros *************************/
.pros {
	padding: 120px 0 80px;
}
.pros-block {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -20px;
}
.pros-col {
	width: 25%;
	padding: 0 20px;
	margin: 0 0 40px;
}
.pros-item {
	position: relative;
	overflow: hidden;
}
.pros-item::after {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	content: '';
	background: linear-gradient(180deg, rgba(8, 27, 29, 0.3) 0%, rgba(8, 27, 29, 0.3) 100%);
}
.pros-img {
	display: block;
	width: 100%;
	transition: all 0.5s linear;
	object-fit: cover;
    height: 300px;
}
.pros-content {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 10;
	color: #fff;
	padding: 20px 16px 40px;
}
.pros-title {
	font-weight: 600;
	font-size: 24px;
	line-height: 30px;
}
.pros-text {
	padding: 24px 0 0;
	display: none;
}
.pros-item:hover::after {
	background: linear-gradient(180deg, rgba(8, 27, 29, 0.3) 0%, rgba(8, 27, 29, 0.8) 100%);
}
.pros-item:hover img {
	transform: scale(1.05);
}
.pros-item:hover .pros-title {
	animation: anitext 1.7s forwards;
}
.pros-item:hover .pros-text {
	display: block;
	opacity: 0;
    animation: anitext 1.7s forwards;
}
@keyframes anitext {
  0% {opacity: 0;}
  100% {opacity: 1;}
}
/************************* info *************************/
.info {
	padding: 80px 0 80px;
	background: rgba(230, 232, 232, 0.4);
}
.info-block {
	display: flex;
}
.info-side {
	width: 300px;
	min-width: 300px;
	margin: 0 30px 0 0;
}
.info-side .title {
	width: 105%;
	margin: 0 0 8px;
}
.subtitle {
	margin: 0 0 32px;
	font-family: 'Caveat';
	font-weight: 400;
	font-size: 20px;
	line-height: 25px;
	color: #004850;	
}
.info-list {
	counter-reset: list;
	list-style-type: none;
	margin: 0;
	padding: 0 0 24px;
}
.info-list li {
	position: relative;
	margin: 0 0 16px;
}
.info-list li::before {
	position: relative;
	z-index: 10;
	display: block;
	margin: 0 0 4px;
	counter-increment: list;
	content: "0" counter(list) ".";
	font-weight: 900;
	font-size: 14px;
	line-height: 18px;
	color: #004850;
}
.info-list li::after {
	position: absolute;
	width: 16px;
	height: 16px;
	left: 6px;
	top: -4px;
	content: '';
	background: #DEC899;
}
.info-img {
	flex: 1;
}
.info-img img {
	width: 100%;
	min-height: 100%;
	object-fit: cover;
}
.info-img video {
	width: 100%;
    min-height: 100%;
    object-fit: cover;
}
.info-img-mob {display: none;}
.info-img-mob img {
	display: block;
	width: 100%;
}
.info-img-mob video {
	display: block;
	width: 100%;
}
/************************* gallery *************************/
.gallery {
	padding: 120px 0 80px;
}
.gallery-slide img {
	width: 100%;
}
.gallery-top {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	padding: 0 0 40px;
}
.gallery-top .title {
    margin: 0 40px 0 0;
}
.gallery-hide {
	display: block;
	padding: 7px 15px;
	font-size: 14px;
	line-height: 14px;
	color: #DEC899;
	text-decoration: none;
	border: 1px solid #DEC899;
	border-radius: 4px;
}
.gallery-hide:hover {
	color: #525F60;
	background: #DEC899;
}
.slick-arrow {
	position: absolute;
	top: 50%;
	margin-top: -20px;
	z-index: 10;
	display: block;
	width: 40px;
	height: 40px;
	font-size: 0;
	cursor: pointer;
	background: #004850 url(../images/arrow.svg) 50% 50% no-repeat;
	transition: all 0.3s linear;
}
.slick-arrow:hover {background-color: #042d31;}
.slick-arrow:active {background-color: #081B1D;}
.slick-prev {
	left: -20px;
	transform: scale(-1, 1);
}
.slick-next {
	right: -20px;
}
/************************* order *************************/
.order {
	padding: 170px 0 135px;
	background: url(../images/order-bg.jpg) 50% 50% no-repeat;
	background-size: cover;
}
.order-block {
	position: relative;
	float: right;
	width: 440px;
	padding: 56px 20px 80px 40px;
	background: #FFFFFF;
	box-shadow: 0px 20px 32px 3px rgba(8, 27, 29, 0.48);
}
.order-block .subtitle {margin: 0;}
.order-block .title {
	margin: 0 0 32px;
	font-size: 32px;
	line-height: 40px;
}
.order-block form {
	position: relative;
	z-index: 10;
	max-width: 290px;
}
.order-block::after {
	position: absolute;
	right: -4px;
	bottom: -5px;
	content: '';
	width: 143px;
	height: 143px;
	background: url(../images/sign.png) 50% 50% no-repeat;
}
/************************* company *************************/
.company {
	padding: 80px 0 80px;
	background: rgba(230, 232, 232, 0.4);
}
.company-block {
	display: flex;
	align-items: center;
}
.company-side {
	width: 290px;
	min-width: 290px;
	margin: 0 40px 0 0;
}
.company-side .subtitle {
	margin: 0 0 8px;
}
.company-img {
	flex: 1;
}
.company-img img {
	width: 100%;
	min-height: 100%;
	object-fit: cover;
}
.company-text p:last-child {margin: 0;}
.company-img-mob {display: none;}
.company-img-mob img {
	display: block;
	width: 100%;
}
/************************* contacts *************************/
.contacts {
	position: relative;
}
.map {
	height: 770px;
}
.contacts .holder {
	position: absolute;
	top: 30px;
	left: 0;
	right: 0;
	z-index: 50;
}
.contacts-block {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	padding: 40px;
	background: rgba(255, 255, 255, 0.6);
	backdrop-filter: blur(14px);
}
.contacts-block .title {margin: 0;}
.contacts-item {
	display: flex;
	align-items: center;
}
.contacts-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	min-width: 40px;
	height: 40px;
	margin: 0 16px 0 0;
	background: #DEC899;
}
.contacts-text {
	font-weight: 600;
	font-size: 18px;
	line-height: 23px;
	color: #525F60;
}
/************************* footer *************************/
.footer {
	padding: 32px 0 24px;
	background: linear-gradient(89.76deg, #0A605D 0.42%, #004850 83.8%);
}
.footer-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 0 28px;
}
.footer-logo-zemli {
	display: flex;
    font-size: 16px;
    color: #fff;
    align-items: center;
}
.footer-logo-zemli span {
	margin-right: 10px;
}
.footer-info {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}
.footer-phone {
	margin: 0 0 11px;
	font-size: 16px;
	line-height: 20px;
	text-align: center;
	color: #DEC899;
	text-decoration: none;
}
.footer-button {
	display: block;
	padding: 7px 15px;
	font-size: 14px;
	line-height: 14px;
	color: #DEC899;
	text-decoration: none;
	border: 1px solid #DEC899;
	border-radius: 4px;
}
.footer-button:hover {
	color: #525F60;
	background: #DEC899;
}
.footer-bottom {
	display: flex;
	justify-content: space-between;
}
.footer-bottom p {
	color: #E6E8E8;
	padding: 30px 0 0 0;
}
.footer-nav {
	display: flex;
	flex-wrap: wrap;
}
.footer-nav li {
	margin: 0 24px 0 0;
}
.footer-nav li:last-child {margin: 0;}
.footer-nav a {
	color: #E6E8E8;
	text-decoration: none;
}
.footer-links a {
	color: #B5BBBB;
}
.footer-nav a:hover {
	text-decoration: underline;
}
@media (max-width: 768px) {
	.footer-top {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 0 0 28px;
		flex-direction: column;
	}
	.footer-logo {
		text-align: center;
		padding-bottom: 10px;
	}
	.footer-logo-zemli {
		display: flex;
		font-size: 12px;
		color: #fff;
		align-items: center;
		padding-bottom: 10px;
		text-align: center;
	}
	.footer-logo-zemli span {
		display: none;
	}
	.footer-logo-zemli img {
		width: 70%;
	}
}
/************************* popups *************************/
.popup {
	display: none;
	width: 370px;
}
#popup-thanks {
	text-align: center;
}
.popup.fancybox-content {
	padding: 40px 40px 48px;
	background: #fff url(../images/popup-bg.png) 0 100% no-repeat;
	background-size: cover;
}
.popup-title {
	margin: 0 0 32px;
	font-weight: 600;
	font-size: 32px;
	line-height: 40px;
	color: #081B1D;
}
.popup-text {
	margin: 0 0 20px;
    font-weight: 300;
    font-size: 24px;
    line-height: 20px;
    color: #081B1D;
}
.popup .button {
	width: 100%;
}

/***** popup actions **********/
.popup-actions {
	display: none;
	/*width: 370px;*/
}
.popup-alerts {
	display: none;
	/*width: 370px;*/
}

.popup-actions.fancybox-content {
	padding: 40px 40px 48px;
	background: #fff url(../images/popup-bg.png) 0 100% no-repeat;
	background-size: cover;
	background: transparent;
    display: inline-block;
    margin: 0;
    max-width: 100%;
    /* overflow: auto; */
    -webkit-overflow-scrolling: touch;
    padding: 5px;
    position: relative;
    text-align: left;
    vertical-align: middle;
}
.popup-actions .fancybox-close-small {
    color: currentColor;
    padding: 10px;
    right: 10px!important;
    top: 10px!important;
}
.popup-actions-title {
	margin: 0 0 32px;
	font-weight: 600;
	font-size: 32px;
	line-height: 40px;
	color: #081B1D;
}
.popup-actions-text {
	margin: 0 0 20px;
    font-weight: 300;
    font-size: 24px;
    line-height: 20px;
    color: #081B1D;
}
.popup-actions .button {
	width: 100%;
}
.popup-order-block {
    position: relative;
    float: right;
    max-width: 750px;
    padding: 30px 10px 0px 30px;
    background: #FFFFFF;
}
.popup-order-block .form-button {
    padding: 0 16px;
}
.popup-order-block .title {
    margin: 0 0 24px;
    font-size: 24px;
    line-height: 30px;
    text-align: center;
    text-transform: uppercase;
}
.popup-order-block .after-title {
    margin: 0 0 25px;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    text-transform: uppercase;
}
.popup-order-block .action-data {
    margin: 0 0 15px;
    font-size: 24px;
    line-height: 15px;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
}
.popup-order-block .action-dop {
    margin: 0 0 15px;
    font-size: 18px;
    line-height: 15px;
    text-align: center;
    font-weight: 300;
    text-transform: uppercase;
}
.popup-order-block form {
    position: relative;
    max-width: 60%;
    display: flex;
    flex-direction: row;
    margin: 0 auto;
    padding-top: 15px;
}
.popup-order-block .subtitle {
    margin: 30px 0 50px;
    text-align: center;
	font-size: 28px;
}
.popup-order-block::after {
    position: absolute;
    right: -4px;
    bottom: -5px;
    content: '';
    width: 143px;
    height: 143px;
    background: url(../images/sign.png) 50% 50% no-repeat;
}
#popup-minino {
    position: relative;
    /* padding: 80px 0 98px; */
    /* color: #fff; */
    background: url(../images/place-bg.jpg) 50% 50% no-repeat;
    background-size: cover;
}
#popup-minino::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    background: rgba(255, 255, 255, 0.65);
}
#popup-minino .popup-order-block .after-title {
    margin: 0 0 10px;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    text-transform: uppercase;
}
#popup-minino .popup-order-block {
    position: relative;
    float: right;
    max-width: 750px;
    padding: 30px 10px 20px 30px;
    background: transparent;
}
#popup-minino .popup-order-block::after {
    display: none;
    position: absolute;
    right: -4px;
    bottom: -5px;
    content: '';
    width: 143px;
    height: 143px;
    background: url(../images/sign.png) 50% 50% no-repeat;
}
#popup-minino .popup-order-block form {
    position: relative;
    max-width: 100%;
    display: flex;
    flex-direction: row;
    margin: 0 auto;
    padding-top: 15px;
}
#popup-minino .popup-order-block form .input {
    height: 50px;
    background: rgba(230, 232, 232, 0.8);
}
#popup-minino.popup-actions .fancybox-close-small {
    color: currentColor;
    padding: 10px;
    right: 0px !important;
    top: 0px !important;
}
.ul-promo-wrap {
    display: flex;
}
.ul-promo_list {
    padding: 0;
    /* width: 48%; */
    column-count: 2;
}
.ul-promo_list li {
    display: flex;
    height: 90px;
    align-items: center;
}
.ul-promo_list-img {
    width: 30%;
    height: 60px;
}
.ul-promo_list-text {
    width: 80%;
    text-align: left;
    font-size: 15px;
}
@media(max-width: 768px) {
	.popup-actions.fancybox-content {
		padding: 40px 40px 48px;
		background: #fff url(../images/popup-bg.png) 0 100% no-repeat;
		background-size: cover;
		background: transparent;
		display: inline-block;
		margin: 0;
		max-width: 100%;
		/* overflow: auto; */
		-webkit-overflow-scrolling: touch;
		padding: 10px;
		position: relative;
		text-align: left;
		vertical-align: middle;
	}
	.popup-actions .fancybox-close-small {
		color: currentColor;
		padding: 5px!important;
		right: 5px!important;
		top: 5px!important;
		z-index: 15;
	}
	.popup-order-block {
		position: relative;
		float: right;
		max-width: 800px;
		padding: 35px 20px 25px 20px;
		background: #FFFFFF;
		/* box-shadow: 0px 20px 32px 3px rgb(8 27 29 / 48%); */
	}
	.popup-order-block .title {
		margin: 0 0 10px;
		font-size: 20px;
		line-height: 30px;
	}
	.popup-order-block .after-title {
		margin: 0 0 10px;
		font-size: 16px;
		line-height: 30px;
	}
	.popup-order-block .action-data {
		margin: 0 0 25px;
		font-size: 18px;
		line-height: 15px;
		text-align: center;
	}
	.popup-order-block .action-dop {
		font-size: 14px;
	}
	.popup-order-block .subtitle {
		margin: 25px 0 60px;
		text-align: center;
		font-size: 21px;
	}
	.ul-promo-wrap {
		flex-direction: column;
	}
	.ul-promo_list {
		width: 100%;
		margin: 0;
		column-count: 1;
	}
	.ul-promo_list li {
		height: auto;
		padding-bottom: 10px;
	}
	.ul-promo_list-text {
		width: 90%;
		text-align: left;
		font-size: 14px;
	}
	.popup-order-block form {
		position: relative;
		display: flex;
		flex-direction: column;
		z-index: 10;
		max-width: 100%;
		padding-top: 0px;
	}
	.popup-order-block .form-button {
		padding: 0;
	}
	.popup-order-block::after {
		position: absolute;
		right: -4px;
		bottom: -5px;
		content: '';
		width: 95px;
		height: 95px;
		background-image: url(../images/sign.png);
		background-size: 100%;
		background-repeat: no-repeat;
		z-index: 10;
	}
}
/************************* media *************************/
@media screen and (max-width: 1300px) {
	.header {height: 81px;}
	.header-logo .usual-logo {display: none;}
	.scroll-logo {
		position: relative;
		top: auto;
		left: auto;
		opacity: 1;
	}
	.header-nav-list {
		margin: 0 50px 0 0;
	}
	.header-nav-list li {
		margin: 0 20px 0 0;
	}
	.contacts-block .title {
		width: 100%;
		margin: 0 0 30px;
	}
	.pros-col {
		width: 33.33%;
	}

}
@media screen and (max-width: 1024px) {
	.header, .header.fixed {
		height: 65px;
		padding: 4px 0 0;
	}
	.header-logo {
		margin: 0 auto;
		z-index: 600;
	}
	.scroll-logo {
		width: 40px;
	}
	.header-mob-call {
		display: block;
		position: absolute;
		left: 0;
		top: 13px;
		z-index: 600;
	}
	.header-mob-call svg {
		display: block;
		width: 32px;
		height: 32px;
	}
	.header-mob-call path {
		stroke: #DEC899;
		transition: all 0.3s linear;
	}
	.header.fixed .header-mob-call path {
		stroke: #004850;
	}
	.mob-nav-icon {
		display: block;
		z-index: 600;
	}
	.header.fixed .mob-nav-block,
	.header.fixed .mob-nav-block:after,
	.header.fixed .mob-nav-block:before {
		background: #004850 ;
	}
	.header.fixed .mob-nav-icon.active .mob-nav-block {
		background: none;
	}
	.header.nav-vis .header-mob-call path {
		stroke: #004850;
	}
	.header.nav-vis .mob-nav-block,
	.header.nav-vis .mob-nav-block:after,
	.header.nav-vis .mob-nav-block:before {
		background: #004850 ;
	}
	.header.nav-vis .mob-nav-icon.active .mob-nav-block {
		background: none;
	}
	.header-nav {
		position: fixed;
		top: 0px;
		left: -100%;
		bottom: 0;
		width: 100%;
		z-index: 540;
		overflow-y: auto;
		box-sizing: border-box;
		display: block;
		padding: 140px 0 50px;
		text-align: center;
		background: #fff;
		transition: all 0.5s ease;
	}
	.header-nav.vis {
		left: 0;
	}
	.header-nav-list {
		display: block;
		margin: 0;
		padding: 0 0 50px;
	}
	.header-nav-list li {
		margin: 0 0 20px;
	}
	.header-nav-list a {
		color: #525F60;
	}
	.header-nav-list a:hover {
		color: #081B1D;
	}
	.header-phone {
		display: none;
	}
	.header-right {
		justify-content: center;
	}
	.header-button {
		color: #fff;
		background: #004850;
		border: 1px solid #004850;
	}
	.header-button:hover {
		color: #fff;
		background: #042d31;
	}
	.header-button:active {
		color: #fff;
		background: #081B1D;
	}
	.top {
		padding: 65px 0 30px;
	}
	.top-block {
		display: block;
		padding: 64px 0 0;
	}
	.top-side {
		max-width: none;
		padding: 0 0 60px;
	}
	.top-title {
		font-size: 36px;
		line-height: 44px;
	}
	.top-num {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.top-num-item {
		width: 48%;
		margin: 0 0 40px;
	}
	.title {
		margin: 0 0 30px;
		font-size: 36px;
		line-height: 44px;
	}
	.about {
		padding: 70px 0;
	}
	.about-block {
		display: block;
	}
	.about-side {
		width: auto;
		min-width: 1px;
		margin: 0;
	}
	.about-img-mob {
		display: block;
		margin: 0 0 40px;
	}
	.about-img {display: none;}
	.new-village {
		padding: 70px 0;
	}
	.new-village-block {
		display: block;
	}
	.new-village-side {
		width: auto;
		min-width: 1px;
		margin: 0;
	}
	.new-village-block .title {
        margin: 0 0 30px;
        color: #000;
        font-family: Source Sans Pro;
        font-size: 36px;
        font-style: normal;
        font-weight: 600;
        line-height: 115%;
    }
	.new-village-img-mob {
		display: block;
		position: relative;
		margin: 0 0 40px;
	}
	.new-village-img-mob .new-village-logo {
	    position: absolute;
        margin: 50px 0;
        left: 20px;
        z-index: 1;
        width: 155.85px;
        flex-shrink: 0;
	}
	.new-village-img-mob:after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        z-index: 0;
        background: linear-gradient(90deg, #004850 0%, rgba(0, 72, 80, 0.00) 66.95%);
    }
	.new-village-img {display: none;}
	.plan {
		padding: 70px 0 0;
	}
	.pros {
		padding: 70px 0 40px;
	}
	.pros-block {
		margin: 0 -15px;
	}
	.pros-col {
		width: 50%;
		padding: 0 15px;
		margin: 0 0 30px;
	}
	.pros-content {
		padding: 25px 16px;
	}
	.info {
		padding: 70px 0;
	}
	.info-block {
		display: block;
	}
	.info-side {
		width: auto;
		min-width: 1px;
		margin: 0;
	}
	.info-side .title {
		width: auto;
	}
	.info-img {
		display: none;
	}
	.info-img-mob {
		display: block;
		margin: 0 0 40px;
	}
	.gallery {
		padding: 70px 0;
	}
	.gallery-top {
		padding: 0 0 30px;
	}
	.order {
		padding: 70px 0;
	}
	.company {
		padding: 70px 0;
	}
	.company-block {
		display: block;
	}
	.company-side {
		width: auto;
		min-width: 1px;
		margin: 0;
	}
	.company-img {
		display: none;
	}
	.company-img-mob {
		display: block;
		margin: 0 0 40px;
	}
	.contacts {padding: 70px 0 0;}
	.contacts .holder {
		position: relative;
		top: auto;
		left: auto;
		right: auto;
	}
	.contacts-block {
		padding: 0 0 20px;
	}
	.contacts-item {
		width: 100%;
		margin: 0 0 30px;
	}
	.map {
		height: 480px;
	}
	.footer {
		padding: 32px 0 14px;
	}
	.footer-bottom {flex-wrap: wrap;}
	.footer-nav {
		width: 100%;
		padding: 0;
	}
	.footer-nav li {
		margin: 0 24px 10px 0;
	}
	.footer-nav li:last-child {margin: 0 0 10px;}
	
}
@media screen and (max-width: 960px) {
    .plan-block-map {
        position: relative;
    }
    .plan-popup {
        position: relative;
        right: 0px;
        top: 0px;
        transition: 0.3s linear;
        width: 100%;
    }
    .genplan__legend-list {
        margin: 0;
        padding: 0;
        list-style: none;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: row;
        flex-wrap: wrap;
    }
    .genplan__legend-item {
        font-size: 16px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-bottom: 8px;
        width: 45%;
    }
    .plan-stat-item {
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 0 0 9px;
    }
    .plan-stat-text {
        width: 20%;
    }
}
@media screen and (max-width: 576px) {
	.plan {
		padding: 70px 0 150px;
	}
	.plan-popup {
		position: relative;
		right: 0px;
		top: 0px;
		transition: 0.3s linear;
		width: 100%;
	}
	.top-block {
		padding: 30px 0 0;
	}
	.top-text {
		margin: 0 0 40px;
		font-size: 14px;
	}
	.bottom-text {
        font-size: 32px;
        margin: -40px 0 40px;
    }
	.top-num-value {
		margin: 0 0 8px;
		font-size: 21px;
	}
	.top-num-value span {
		font-size: 36px;
	}
	.about-img-mob {
		margin: 0 -20px 40px;
	}
	.plan-block {
		margin: 0 -20px;
		margin-bottom: -100px;
	}
	.plan-block svg {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}
	.plan-block-map {
		position: relative;
	}
	.pros {
		padding: 0 0 50px;
	}
	.pros-col {
		width: 100%;
		margin: 0 0 20px;
	}
	.info-img-mob,
	.company-img-mob {
		margin: 0 -20px 40px;
	}
	.order-block {
		float: none;
		width: auto;
		padding: 30px 20px 80px;
	}

}

/************************* ny card styles *************************/
.ny-wrap {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 5000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 50px;
	background: rgba(0, 0, 0, 0.10);
}
.ny-card {
	position: relative;
	max-width: 868px;
	width: 100%;
	padding: 81px 100px 71px;
	color: #4F5759;
	text-align: center;
	background: url(../images/ny-bg.jpg) 50% 0% no-repeat;
	background-size: cover;
}
.ny-card-close {
	position: absolute;
	top: 20px;
	right: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	cursor: pointer;
}
.ny-card-close img {display: block;}
.ny-card-block {
	max-width: 482px;
	margin: 0 auto;
}
.ny-card-title {
	margin: 0 0 23px;
	color: #000;
	font-family: 'Source Sans Pro';
	font-size: 50px;
	font-weight: 600;
	line-height: 63px;
}
.ny-card-text {
	margin: 0 0 48px;
	font-family: 'Source Sans Pro';
	font-size: 16px;
	font-weight: 400;
	line-height: 140%;
}
.ny-card-text p {
	margin: 0 0 19px;
}
.ny-card-text p:last-child {
	margin: 0;
}
.ny-card-bottom {
	color: #004850;
	font-family: 'Caveat';
	font-size: 30px;
	font-weight: 500;
	line-height: 38px;
}
.ny-card-forn {
	position: relative;
	margin: 0 0 38px;
	padding-right: 195px;
}
.ny-input {
	display: block;
	width: 100%;
	height: 43px;
	padding: 0 20px;
	color: #000;
	font-family: 'Source Sans Pro';
	font-size: 18px;
	font-weight: 600;
	text-align: center;
	border: 1px solid #EAEAEA;
	background: #FFF;
	border-radius: 0;
}
.ny-input::-webkit-input-placeholder {color: #4F5759;}
.ny-input:-moz-placeholder {color: #4F5759; opacity: 1;}
.ny-input::-moz-placeholder {color: #4F5759; opacity: 1;}
.ny-input:-ms-input-placeholder {color: #4F5759;}
.ny-button {
	position: absolute;
	top: 0;
	right: 0;
	width: 169px;
	height: 43px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #000;
	font-family: 'Source Sans Pro';
	font-size: 16px;
	font-weight: 400;
	line-height: 20px;
	border-radius: 4px;
	background: #DEC899;
	cursor: pointer;
	transition: 0.3s linear;
}
.ny-button:hover {
	background: #c7b07f;
}

@media screen and (max-width: 767px) {
	.ny-wrap {
		padding: 16px;
	}
	.ny-card {
		padding: 60px 16px 40px;
	}
	.ny-card-close {
		top: 10px;
		right: 10px;
	}
	.ny-card-title {
		margin: 0 0 23px;
		font-size: 30px;
		line-height: 40px;
	}
	.ny-card-text {
		max-width: 300px;
		margin: 0 auto 30px;
		font-size: 14px;
	}
	.ny-card-text br {display: none;}
	.ny-card-text p {
		margin: 0 0 14px;
	}
	.ny-card-bottom {
		font-size: 26px;
		line-height: 35px;
	}
	.ny-card-forn {
		margin: 0 0 20px;
		padding-right: 0;
	}
	.ny-input {
		margin: 0 0 20px;
	}
	.ny-button {
		position: relative;
		top: auto;
		right: auto;
		width: 100%;
	}
}

/*.button-dec {
	cursor: not-allowed;
	cursor: no-drop;
}
.button-dec:hover {
	cursor: not-allowed;
	cursor: no-drop;
}*/