:root {
	--background-color: #222226;
}

html {
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

body {
	background: var(--background-color);
	font-size: 100%;
	font-family: 'Inter', Arial, Tahoma, Verdana, sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	color: #2B2B2B;
    overflow-x: hidden;
}

a, a:active , a:focus {
	outline: 0;
	text-decoration: none;
}

a:hover {
	color: inherit;
	outline: 0;
	text-decoration: none;
}

.row {
	margin-left: -10px!important;
	margin-right: -10px!important;
}

.container,
.container-fluied,
[class*='col-'],
[class~=col] {
    padding-left: 10px!important;
    padding-right: 10px!important;
}

* {
	outline: none;
}

strong {
	font-weight: 600;
}

figure {
	margin: 0;
}

img {
	max-width: 100%;
	vertical-align: middle;
}

.noscroll {
	overflow: hidden;
}

.main_bg {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: -5;
	width: 100%;
	height: 100%;
	background: url(../images/bg/main_bg.png) no-repeat center;
	background-size: cover;
}

/* Header Begin */
#header {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 300;
	padding-top: 30px;
}

#header .inner {
	position: relative;
	display: flex;
	width: 100%;
	justify-content: space-between;
}

#header .inner:before,
#header .inner:after {
	content: "";
	display: block;
	width: calc((100% - 310px) / 2);
	height: 1px;
	position: absolute;
	top: 63px;
	z-index: 10;
	background-color: rgba(255, 255, 255, 0.2);
}

#header .inner:before {left: 0px;}
#header .inner:after {right: 0px;}

.social {
	display: flex;
	margin-top: 23px;
}

.social a {
	width: 24px;
	height: 24px;
	margin-right: 26px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100%;
	text-indent: -99999px;
	transition: opacity 500ms;
}

.social a:hover {
	opacity: 0.7;
}

.social a:last-child {
	margin-right: 0;
}

.social a.fb {background-image: url(../images/icon/icon-social-fb.svg);}
.social a.ins {background-image: url(../images/icon/icon-social-instagram.svg);}
.social a.yt {background-image: url(../images/icon/icon-social-youtube.svg);}

.menu_btn {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	width: 37px;
	height: 32px;
	margin-top: 15px;
	margin-right: 7px;
	padding: 8px;
	cursor: pointer;
}

.menu_btn span {
	width: 100%;
	height: 2px;
	background-color: #fff;
	border-radius: 1px;
}

.menu_btn span:nth-child(2) {
	width: calc((100% - 10px));
	transition: 300ms;
}

.menu_btn:hover span:nth-child(2) {
	width: 100%;
}

.logo {
	position: absolute;
	top: 0;
	left: 50%;
	margin-left: -108px;
}
/* Header End */

/* MainContent Begin */
.main_content {
	position:absolute;
	top: 50%;
	left: 0;
	right: 0;
	z-index: 300;
	transform: translateY(-50%);
}

.main_content .caption {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.main_content .caption h1 {
	margin: 0;
	font-size: 20px;
	font-weight: 700;
	line-height: 1;
	color: #fff;
	text-transform: uppercase;
	text-align: center;
}

.main_content .caption span {
	margin: 15px 0 0;
	font-size: 15px;
	font-weight: 500;
	line-height: 1;
	color: #fff;
	text-align: center;
}

.main_blocks {
	display: flex;
	height: 100px;
	margin-top: 60px;
}

.main_blocks .block {
	width: 33.3%;
}

.main_blocks .block:last-child {
	border: 0;
}

.main_blocks .block a {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
	height: 100%;
	padding: 0 20px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	background: rgba(35, 37, 41, 0.01);
	backdrop-filter: blur(2px);
	transition: 500ms ease;
}

.main_blocks .block a:hover {
	background: rgba(35, 37, 41, 0.6);
	border-color: #AE9577;
}

.main_blocks .block a span.first_txt {
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
	color: #AE9577;
	text-transform: uppercase;
}

.main_blocks .block a span.second_txt {
	display: flex;
	align-items: center;
	margin-top: 10px;
	font-size: 18px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	line-height: 1;
	color: #fff;
}

.main_blocks .block a span.second_txt i {
	width: 24px;
	height: 24px;
	margin-left: auto;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
}

.main_blocks .block a span.second_txt i.ico-call {background-image: url(../images/icon/icon-contact.svg);}
.main_blocks .block a span.second_txt i.ico-up {background-image: url(../images/icon/icon-up.svg);}
.main_blocks .block a span.second_txt i.ico-down {background-image: url(../images/icon/icon-down.svg);}
/* MainContent End */

/* MainFooter Begin */
#main_footer {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 300;
	padding-bottom: 30px;
}

#main_footer .inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#main_footer .inner .copyright {
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
	color: #fff;
}

#main_footer .inner .copyright a {
	color: #fff;
}

#main_footer .inner .address {
	font-size: 20px;
	font-weight: 500;
	line-height: 1;
	color: #fff;
	padding: 10px;
	background-color: #DE231C;
}
/* MainFooter End */

/* MenuPanel Begin */
.menu_panel {
	position: fixed;
	top: 0;
	right: -600px;
	bottom: 0;
	z-index: 999;
	background-color: #6F6F6F;
	background-position: center bottom 23%;
	background-repeat: no-repeat;
	background-image: url(../images/bg/menu_bg.svg);
	width: 526px;
	padding: 30px 0 30px 30px;
	box-shadow: -19px 4px 27px 31px rgba(0,0,0,0.4);
	transition: right 0.3s ease-in;
	overflow: hidden;
}

.menu_panel.is-open {
	right: 0;
}

.menu_panel .btn_close {
	display: block;
	width: 44px;
	height: 32px;
	background: url(../images/icon/icon-close.svg) no-repeat center;
	background-size: 100%;
	position: absolute;
	right: 140px;
	top: 45px;
	cursor: pointer;
	z-index: 10;
}

.menu_panel .social {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 50px;
	justify-content: center;
}

.lang {
	position: relative;
	display: flex;
	margin-top: 18px;
}

.lang span {
	display: flex;
	align-items: center;
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
	color: #fff;
	text-transform: uppercase;
	cursor: pointer;
}

.lang span i {
	width: 20px;
	height: 20px;
	margin-left: 2px;
	background: url(../images/arrow/arrow-down-white.svg) no-repeat center;
	background-size: 100%;
}

.lang_list {
	position: absolute;
	top: 25px;
	left: 0;
	z-index: 200;
	width: 46px;
	padding: 0;
	background: #fff;
	overflow: hidden;
	opacity: 0;
	border: 1px solid #fff;
	border-radius: 5px;
	transition: all 500ms ease;
	-webkit-transform: perspective(400) rotate3d(1, 0, 0, -90deg);
	-webkit-transform-origin: 50% 0%;
}

.lang.open .lang_list{
	opacity: 1;
	-webkit-transform: perspective(400) rotate3d(0, 0, 0, 0);
}

.lang_list a {
	display: block;
	font-size: 15px;
	font-weight: 500;
	line-height: 30px;
	color: #283847;
	text-align: center;
}

.lang_list a:last-child {margin-bottom: 0;}

.lang_list a:hover {
	color: #10352B;
}

.menu_panel .inner {
	position: relative;
	height: calc(100vh - 230px);
	overflow-y: auto;
	margin-top: 55px;
	padding-right: 30px;
}

.menu {
	display: flex;
	flex-direction: column;
	margin-top: 20px;
}

.menu a {
	margin-bottom: 25px;
	font-size: 22px;
	font-weight: 400;
	line-height: 1;
	color: #AE9577;
	transition: opacity 500ms ease;
}

.menu a:last-child {
	margin: 0;
}

.menu a:hover {
	opacity: 0.6;
}

.contact_block {
	display: flex;
	flex-direction: column;
	margin-top: 50px;
}

.contact_block .block {
	display: flex;
	flex-direction: column;
	margin-bottom: 30px;
}

.contact_block .block:last-child {
	margin: 0;
}

.contact_block .block span.title {
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
	color: rgba(255, 255, 255, 0.6);
	letter-spacing: 0.05em;
}

.contact_block .block .param {
	display: flex;
	align-items: center;
	margin-top: 15px;
	font-size: 18px;
	font-weight: 500;
	line-height: 1;
	color: #fff;
}

.contact_block .block .param i {
	width: 20px;
	height: 20px;
	margin-right: 12px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100%;
}

.contact_block .block .param i.ico-address {background-image: url(../images/icon/icon-location.svg);}
.contact_block .block .param i.ico-phone {background-image: url(../images/icon/icon-contact.svg);}
/* MenuPanel End */

/* BreadCrumbs Begin */
.breadcrumbs {
	position: relative;
	padding: 95px 0 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: url(../images/bg/breadcrumbs_bg.png) no-repeat center;
	background-size: cover;
}

.breadcrumbs h4 {
	margin: 115px 0;
	font-size: 32px;
	font-weight: 700;
	line-height: 1;
	color: #fff;
	text-align: center;
	text-transform: uppercase;
}
/* BreadCrumbs End */

/* FAQ Begin */
.faq {
	position: relative;
	padding: 20px 0 100px;
}

.faq_section {
	padding-top: 60px;
}

.faq_section h4.title {
	margin: 0 0 60px;
	font-size: 32px;
	font-weight: 700;
	line-height: 1;
	color: #AE9577;
	text-align: center;
}

.faq_section .item {
	position: relative;
	border: 1px solid #AE9577;
	transition: 200ms;
}

.faq_section [class*='col-'] {
	margin-bottom: 16px;
}

.faq_section .item:last-child {
	margin-bottom: 0;
}

.faq_section .item .head {
	position: relative;
	padding: 13px 90px 13px 30px;
	cursor: pointer;
	display: flex;
    align-items: center;
    min-height: 77px;
}

.faq_section .item .head i {
	display: block;
	width: 14px;
	height: 14px;
	position: absolute;
	right: 30px;
	top: 50%;
	margin-top: -7px;
}

.faq_section .item .head i:after {
	content: "";
	display: block;
	width: 14px;
	height: 2px;
	background: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border-radius: 1px;
}

.faq_section .item .head i:before {
	content: "";
	display: block;
	width: 14px;
	height: 2px;
	background: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(90deg);
	transition: 0.3s;
	border-radius: 1px;
}

.faq_section .item.active .head i:before {
	transform: translate(-50%, -50%) rotate(0deg);
}

.faq_section .item .head h2 {
	margin: 0;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.4;
	color: #fff;
	transition: color 200ms;
}

.faq_section .item.active .head h2 {
	color: #1E3058;
}

.faq_section .item.active .head i:after,
.faq_section .item.active .head i:before {
	background-color: #1E3058;
}

.faq_section .item.active {
	background-color: #AE9577;
}

.faq_section .item .body {
	position: relative;
	display: none;
	padding: 0 45px 20px;
	color: #1E3058;
}

.faq_section .item .body .body_inner {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4;
	color: #10352B;
}
/* FAQ End */

/* Footer Begin */
#footer .inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 30px 0;
}

#footer .copyright {
	margin: 0;
	font-size: 16px;
	font-weight: 500;
	line-height: 1;
	color: #fff;
}

#footer .social {
	margin: 0;
}
/* Footer End */

/* Objects Begin */
.objects {
	position: relative;
	padding: 90px 0;
}

.objects .caption {
	display: flex;
	flex-direction: column;
	height: 100%;
    justify-content: center;
}

.objects .caption h3.title {
	margin: 0;
	font-size: 26px;
	font-weight: 700;
	line-height: 1.4;
	color: #AE9577;
}

.objects .caption .text {
	margin-top: 20px;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	color: #fff;
}
/* Objects End */

/* ProgressConstruction Begin */
.progress_construction {
	position: relative;
	padding: 30px 0 0;
}

.progress_construction_section {
	position: relative;
	margin-bottom: 15px;
}

.progress_construction_section figure {
	margin-bottom: 16px;
}

.progress_construction_section span.date {
	display: block;
	margin-bottom: 16px;
	font-size: 22px;
	font-weight: 700;
	line-height: 1;
	color: #AE9577;
}
/* ProgressConstruction End */

/* About Begin */
.about {
	position: relative;
	padding: 70px 0 0;
}

.about .caption {
	display: flex;
	flex-direction: column;
	height: 100%;
    justify-content: center;
}

.about .caption h3.title {
	margin: 0;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.4;
	color: #AE9577;
}

.about .caption .text {
	margin-top: 20px;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.6;
	color: #fff;
}

.advantages {
	position: relative;
	padding: 100px 0 0;
}

.advantages h4.title {
	margin: 0 0 70px;
	font-size: 22px;
	font-weight: 700;
	line-height: 1;
	color: #AE9577;
	text-align: center;
}

.advantages .box {
	margin-bottom: 25px;
}

.advantages .box .title {
	position: relative;
	display: flex;
	align-items: center;
	margin: 0;
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	color: #AE9577;
}

.advantages .box .title:before {
	content: "";
	width: 11px;
	height: 11px;
	margin-right: 12px;
	background: url(../images/icon/icon-star.svg) no-repeat center;
}

.advantages .box .text {
	margin: 15px 0 0;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4;
	color: #fff;
}

.bgwhite {
	background-color: #fff;
}

.location_area {
	position: relative;
	padding: 100px 0;
}

.location_area h4.title {
	margin: 0 0 50px;
	font-size: 22px;
	font-weight: 700;
	line-height: 1;
	color: #10352B;
	text-align: center;
}

.location_area .info_box {
	position: relative;
	margin-top: 50px;
	padding: 30px 30px 14px;
	background-color: #10352B;
}

.location_area .info_box h5 {
	margin: 0;
	font-size: 20px;
	font-weight: 600;
	line-height: 1;
	color: #fff;
}

.location_area .info_box .boxs {
	margin-top: 30px;
}

.location_area .info_box .boxs .box {
	display: flex;
	margin-bottom: 16px;
	padding: 16px;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.3;
	color: #fff;
	background-color: #AE9577;
}

.slider {
	position: relative;
}

.slider_caption h4.title {
	margin: 0;
	font-size: 26px;
	font-weight: 700;
	line-height: 1;
	color: #10352B;
}

.slider_caption .text {
	margin: 10px 0 0;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4;
	color: #000;
}

#slider {
	margin-top: 30px;
	padding-bottom: 70px;
}

.slider_arrow {
	position: absolute;
	bottom: 10px;
	right: 0;
	display: flex;
	justify-content: space-between;
	width: 144px;
}

.slider_arrow span {
	width: 56px;
	height: 56px;
	background-color: #AE9577;
	background-repeat: no-repeat;
	background-position: center;
	text-indent: -99999px;
	cursor: pointer;
}

.slider_arrow span.btn_prev { background-image: url(../images/arrow/arrow-slider-prev.svg);}
.slider_arrow span.btn_next { background-image: url(../images/arrow/arrow-slider-next.svg);}

.slider_arrow span:hover {
	opacity: 0.7;
}
/* About End */

/* ChooseFloor Begin */
.choose_floor {
	position: relative;
	height: 100vh;
	padding: 180px 0 0;
}

.choose_floor .floors {
	position: relative;
	z-index: 210;
}

.choose_floor .floors .inner {
	display: flex;
	justify-content: center;
}

.choose_floor .floors .inner span {
	display: flex;
	align-items: center;
	margin: 0 12px;
	padding: 16px;
	font-size: 16px;
	font-weight: 500;
	line-height: 1;
	color: #fff;
	cursor: pointer;
	background-color: #10352B;
	background-repeat: no-repeat;
	transition: 0.3s ease;
}

.choose_floor .floors .inner span:hover {
	opacity: 0.8;
}

.choose_floor .floors .inner span.prev {
	padding-left: 50px;
	background-image: url("../images/arrow/arrow-slider-prev.svg");
	background-position: left 16px center;
}

.choose_floor .floors .inner span.next {
	padding-right: 50px;
	background-image: url("../images/arrow/arrow-slider-next.svg");
	background-position: right 16px center;
}

.choose_floor .floors .inner span.disable {
	opacity: 0.3;
}

.view_building {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	perspective: 2000px;
}

.cube {
    position: relative;
    height: 100%;
    width: 100%;
    transform-style: preserve-3d;
}

.front_view, .side_view {
    position: absolute;
    height: 100%;
    width: 100%;
	top: 0;
	left: 0;
	transition: transform 600ms linear;
}

.cube .front_view {
	transform:  rotateY(-90deg) translateX(-50%) rotateY(0deg) translateX(50%) rotateY(90deg);
    transform-origin: center center;
}

.cube .side_view {
	transform:  rotateY(-90deg) translateX(-50%) rotateY(90deg) translateX(50%) rotateY(90deg); 
}

.cube.active .front_view {
	transform:  rotateY(-90deg) translateX(-50%) rotateY(-90deg) translateX(50%) rotateY(90deg); 
}

.cube.active .side_view{
	transform:  rotateY(-90deg) translateX(-50%) rotateY(0deg) translateX(50%) rotateY(90deg);
}

.choose_floor img.floor_img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.svg_wrapper {
	position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.choose_floor .svg {
	width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.choose_floor .svg path {
    /* fill: transparent; */
    fill-opacity: 1;
    pointer-events: all;
	cursor: pointer;
	mix-blend-mode: multiply;
}

.choose_floor .svg path:hover {
	fill: rgba(255, 184, 0, 0.5);
}

.tooltip2 {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99910;
}

.tooltip2:after {
	content: "";
	width: 48px;
	height: 48px;
	background: url("../images/icon/icon-polygon.svg") no-repeat center;
	position: absolute;
	left: 50%;
	bottom: -33px;
	z-index: -1;
	margin-left: -24px;
}

.tooltip2 .inner {
	display: flex;
	flex-direction: column;
	width: 250px;
	height: 110px;
	padding: 25px 30px;
	background-color: #10352B;
	border: 1px solid #AE9577;
	border-radius: 4px;
}

.tooltip2 span.txt {
	margin-bottom: 15px;
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	color: #fff;
}

.tooltip2 span.txt:last-child {
	margin: 0;
}

/* ChooseFlat Begin */
.choose_flat {
	position: relative;
	padding: 170px 0 0;
}

.choose_flat .img-bg {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	object-fit: cover;
	width: 100%;
	height: 100vh;
}

.img-bg-hover{
       position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(0,0,0,.3);
}

.choose_flat .btn_row {
	display: flex;
}

.choose_flat .close_btn {
	display: flex;
	align-items: center;
	height: 44px;
	padding: 0 16px 0 35px;
	margin-left: auto;
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
	color: #AE9577;
	background: url("../images/icon/icon-close-btn.svg") no-repeat center left 10px;
	background-size: 20px;
	border: 1px solid #AE9577;
	cursor: pointer;
}

.flat-info-left {
	position: relative;
	display: flex;
	align-items: center;
	padding: 35px 0;
}

.flat_nav {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-left: auto;
}

.flat_nav span.prev,
.flat_nav span.next {
	display: flex;
	width: 40px;
	height: 40px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
	cursor: pointer;
}

.flat_nav span.prev {background-image: url("../images/arrow/icon-arrow-up.svg");}
.flat_nav span.next {background-image: url("../images/arrow/icon-arrow-down.svg");}

.flat_nav .current {
	display: flex;
	flex-direction: column;
	margin: 24px 0 20px;
	text-align: center;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	color: #fff;
	text-transform: uppercase;
}

.flat_nav .current span {
	margin-top: 20px;
	font-size: 50px;
}

.block_name {
	position: relative;
	display: flex;
	flex-direction: column;
	text-align: center;
	color: #AE9577
}

.block_name span.txt {
	font-size: 20px;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
}

.block_name span.letter {
	margin-top: 25px;
	font-size: 75px;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
}

.flat_sketch {
	display: flex;
	margin-top: 26px;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.flat_sketch span.txt {
	font-size: 16px;
	font-weight: 500;
	line-height: 1;
	color: #fff;
}

.flat_sketch .img {
	margin: 20px 0;
}

.flat_sketch .img svg path {
    fill: transparent;
    fill-opacity: 1;
    pointer-events: all;
	cursor: pointer;
}

.flat_sketch .img svg path.active {
	fill: rgba(255, 184, 0, 0.5);
}

.flat-info-right {
	position: relative;
	display: flex;
	flex-direction: column;
	margin-top: 130px;
}

.flat-info-right .block {
	display: flex;
	flex-direction: column;
	color: #fff;
	align-items: center;
	margin-bottom: 60px;
}

.flat-info-right .block span.num {
	font-size: 52px;
	font-weight: 700;
	line-height: 1;
	color: #AE9577;
}

.flat-info-right .block span.line {
	margin: 10px 0 15px;
	width: 85px;
	height: 1px;
	background-color: rgba(174, 149, 119, 1);
}

.flat-info-right .block span.txt {
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	color: #fff;
}

.flat-svg {
	position: relative;
	display: flex;
	justify-content: center;
	margin: 30px 30px 0;
	height: 65vh;
}

.flat-svg .flat-img {
	width: auto;
	height: 100%;
}

.flat-svg .flat_img {
    filter: opacity(1) drop-shadow(0 0 0 white);
}

.flat-svg svg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
    height: 100%;
}

.flat-svg svg path {
    fill: transparent;
    fill-opacity: 1;
    pointer-events: all;
	cursor: pointer;
}

.flat-svg svg path:hover {
	fill: rgba(255, 184, 0, 0.5);
}

.flat-svg.rotate .flat_img,
.flat-svg.rotate svg {
	transform: rotate(180deg);
}

/* Error404 Begin */
.error404 {
	position: relative;
	padding: 230px 0 0;
}

.error404 .inner {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.error404 .inner h3 {
	margin: 0;
	font-size: 204px;
	font-weight: 700;
	line-height: 1;
	color: rgba(255, 255, 255, 0.6);
}

.error404 .inner p {
	margin: 25px 0 0;
	font-size: 32px;
	font-weight: 700;
	line-height: 1;
	color: #fff;
}

.error404 .inner a {
	margin: 55px auto 0;
	font-size: 16px;
	font-weight: 500;
	padding: 16px 16px 16px 50px;
	color: #fff;;
	text-align: center;
	background: #10352B url("../images/arrow/arrow-slider-prev.svg") no-repeat left 16px center;
	transition: opacity 600ms ease;
}

.error404 .inner a:hover {
	opacity: 0.8;
}
/* Error404 End */

.download_pdf {
	display: flex;
}

.download_pdf a {
	display: flex;
	height: 48px;
	padding: 0 50px 0 16px;
	align-items: center;
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
	color: #AE9577;
	background: url(../images/icon/icon-pdf.svg) no-repeat right 16px center;
	border: 1px solid #AE9577;
}

.sold-tooltip {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99910;
}

.sold-tooltip:after {
	content: "";
	width: 48px;
	height: 48px;
	background: url("../images/icon/icon-polygon.svg") no-repeat center;
	position: absolute;
	left: 50%;
	bottom: -33px;
	z-index: -1;
	margin-left: -24px;
}

.sold-tooltip .inner {
	display: flex;
	flex-direction: column;
	padding: 25px 30px;
	background-color: #10352B;
	border: 1px solid #AE9577;
	border-radius: 4px;
}

.sold-tooltip span {
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	color: #fff;
}

/* ContactPopup Begin */
.contact_popup {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	z-index: 99999;
	background: rgba(2,29,73,0.6);
	opacity: 0;
	visibility: hidden;
	transition: 0.3s ease;
}

.contact_popup.show {
	opacity: 1;
	visibility: visible;
}

.popup_inner {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 50;
	transform: translate(-50%,-50%) scale(0.8,0.8);
	width: 364px;
	padding: 50px;
	background: #6F6F6F;
	opacity: 0;
	visibility: hidden;
	transition: 0.5s ease;
}

.contact_popup.show .popup_inner {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, -50%) scale(1,1);
}

.popup_inner span.close_icon {
	display: block;
	width: 24px;
	height: 24px;
	background: url(../images/icon/icon-close-popup.svg) no-repeat center;
	background-size: 100%;
	position: absolute;
	top: 20px;
	right: 20px;
	z-index: 30;
	cursor: pointer;
}

.popup_inner h2.title {
	margin: 0 0 30px;
	font-size: 20px;
	font-weight: 600;
	line-height: 1;
	color: #fff;
	text-align: center;
}

.popup_inner .input_row {
	position: relative;
	display: flex;
	width: 100%;
	height: 58px;
	align-items: center;
	margin-bottom: 16px;
	border: 1px solid #AE9577;
}

.popup_inner .input_row.h114 {
	height: 114px;
}

.popup_inner .input_row .ipt_style {
	width: 100%;
	height: 100%;
	padding: 0 16px;
	font-size: 18px;
	font-weight: 500;
	line-height: 1;
	color: #fff;
	background-color: transparent;
	border: 0;
}

.popup_inner .input_row .ipt_style::-webkit-input-placeholder {color: #fff;}
.popup_inner .input_row .ipt_style::-moz-placeholder {color: #fff;}

.popup_inner .input_row span.prefix {
	padding-left: 16px;
	font-size: 18px;
	font-weight: 500;
	line-height: 1;
	color: #fff;
}

.popup_inner .input_row .ipt_style.phonenumber {
	padding-left: 5px;
}

.popup_inner .btn_submit {
	width: 100%;
	height: 58px;
	font-size: 18px;
	font-weight: 500;
	line-height: 1;
	color: #fff;
	background-color: #AE9577;
	border: 0;
}

.popup_inner .button_row {
	margin-top: 20px;
}

.success_view {
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 20;
	background: #10352B;
}

.success_view.show {
	display: flex;
}

.success_view h4 {
	margin: 20px 0 0;
	font-size: 20px;
	font-weight: 600;
	line-height: 1;
	color: #AE9577;
	text-align: center;
}

.success_view p {
	margin: 25px 0 0;
	padding: 0 20px;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4;
	color: #fff;
	text-align: center;
}

.success_view .close_text {
	display: flex;
	width: 264px;
	height: 58px;
	margin-top: 30px;
	justify-content: center;
	align-items: center;
	font-size: 18px;
	font-weight: 500;
	line-height: 1;
	color: #fff;
	cursor: pointer;
	background-color: #AE9577;
	border: 0;
	transition: 500ms linear;
}

.success_view .close_text:hover {
	
}
/* ContactPopup End */