:root {
	--color1: rgba(18, 120, 71, 1);
	--color1-1: rgba(18, 120, 71, 0.1);
	--color1-2: rgba(18, 120, 71, 0.2);
	--color1-3: rgba(18, 120, 71, 0.3);
	--color1-5: rgba(18, 120, 71, 0.5);
	--color1-7: rgba(18, 120, 71, 0.7);
	--color1-8: rgba(18, 120, 71, 0.8);

	--color2: rgba(13,101,59, 1);
	--color2-3: rgba(13,101,59, 0.3);
	--color2-5: rgba(13,101,59, 0.5);
	--color2-7: rgba(13,101,59, 0.7);

	--color3: rgba(13,101,59, 1); /* black */
	--color3-3: rgba(13,101,59, 0.3);
	
	--color4: rgba(212,241,213, 1); /* light */
	--color4-1: rgba(212,241,213, 0.1);
	--color4-8: rgba(212,241,213, 0.8);
	
	--color-gray1: rgba(232, 232, 232, 1);
	--color-gray1-0: rgba(232, 232, 232, 0);
	--color-gray1-5: rgba(232, 232, 232, 0.5);
	--color-gray1-7: rgba(232, 232, 232, 0.7);
	
	--color-gray2: rgba(136, 136, 136, 1.0);
	
	--color-gray3: rgba(250, 250, 250, 1);
}



@keyframes fade_out {
	0% {
		opacity: 1;
		left: 0px;
	}
	99% {
		opacity: 0;
		left: 0px;
	}
	100% {
		opacity: 0;
		left: -999px;
	}
}




a.admin {
	background-color: rgba(128,128,128,.3);
	border-radius: 2px;
	color: inherit;
	font-size: 80%;
	opacity: 0.5;
	padding: 2px;
	position: absolute;
	right: 5px;
	z-index: 1000;
	transition: 200ms;
	line-height: 1;
}

div a.admin {
	opacity: 0.2;
}

div:hover a.admin {
	opacity: 0.5;
}

a.admin:hover {
	opacity: 1 !important;
}


img.inline {
	height: 1em;
	vertical-align: middle;
}

img.inline2 {
	height: 2em;
	vertical-align: middle;
}


.admin_stat {
	opacity: 0;
	left: -999px;
	position: fixed;
	font-size: 70%;
	top: 20px;
	text-align: left;
	color: #000;
	z-index: 2000;
	padding: 10px;
	background-color: rgba(128,128,128,.2);


	animation-name: fade_out;
	animation-duration: 4s;
	animation-timing-function: ease-in;
	animation-delay: 0s;
	animation-iteration-count: 1;
	animation-direction: normal;
	animation-fill-mode: forwards;
}


.login {
	position: absolute;
	top: 0;
	right: 1em;
	z-index: 9999;
	
	text-align: right;
	color: #fff;
	font-size: 80%;
	padding: 0.5em 0em;
}


.gray {
	opacity: 0.5;
}

.color0 {
	color: #000;
}


.color1 {
	color: var(--color1);
}

.color2 {
	color: var(--color2);
}

.color4 {
	color: var(--color4);
}

.light {
	font-family: "font_light";
}

.medium {
	font-family: "font_medium";
}

.huge {
	font-size: 150%;
}

.sm {
	font-size: 80%;
}

.img_bg {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.bg_color1 {
	background-color: var(--color1);
}

.bg_color2 {
	background-color: var(--color2);
}

.bg_color3 {
	background-color: var(--color3);
}

.bg_color4 {
	background-color: var(--color4);
}

.bg_tint {
	background-color: rgba(0, 0, 0, 0.5);
	background-blend-mode: multiply;
}

.bg_light {
	background-color: var(--color1-2);
}

.bg_gray1 {
	background-color: var(--color-gray1);
}

.bg_gray2 {
	background-color: var(--color-gray2);
}

.bg_gray3 {
	background-color: var(--color-gray3);
}

.black {
	background-color: var(--color3);
	color: #fff;
}

.black a {
	color: var(--color4);
}

a.auth {
	display: inline-block;
	padding: 0.5em 1em;
	border-bottom: 1px solid var(--color-gray2);
	color: var(--color-gray2);
	font-weight: bold;
	text-decoration: none;
}
a.auth_active, a.auth:hover {
	color: var(--color1);
	border-bottom: 4px solid var(--color1);
}

.login_1 {
	border-bottom-left-radius: 0 !important;
	border-bottom-right-radius: 0 !important;
}
.login_2 {
	border-top-left-radius: 0 !important;
	border-top-right-radius: 0 !important;
}


/* table */
table {
	font-size: inherit;
	font-family: inherit;
	color: inherit;
	border: 0px;
	border-spacing: 0px;
}
table.list {
	padding: 2px 4px;
	margin: auto;
}

table.border td {
	border: 1px solid #888;
}

table.rows td {
	border-bottom: 1px solid #bbb;
}

tr {
	font-size: inherit;
	font-family: inherit;
	color: inherit;
	border: 0px;
}

td {
	font-size: inherit;
	font-family: inherit;
	color: inherit;
	border: 0px;
	padding: 0px;
}

.list0 td {
	padding: 0px 0px;
}

.list td, .list th {
	padding: 4px 4px;
}

form td {
	padding: 4px 4px;
}

.list th {
	font-size: smaller;
	font-family: inherit;
	color: inherit;
	border: 0px;
	background-color: var(--color-gray1);
	/*padding: 4px 2px;*/
	border-right: 1px solid #fff;
}

table.highlight tr:hover,
tr.highlight:hover {
	background-color:  var(--color-gray1);
}



/* modal */

.modal {
	display: none;
	position: fixed;
	top: 0px;
	bottom: 0px;
	right: 0px;
	left: 0px;
	z-index: 9999;
	padding-top: 100px;
}

.modal_bg {
	position: fixed;
	top: 0px;
	bottom: 0px;
	right: 0px;
	left: 0px;
	background-color: rgba(0,0,0,0.7);
	overflow: auto;
}

.modal_card {
    position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	width: 100%;
	height: 100%;
}

.modal_container {
    position: relative;
}

.close_modal {
	position: absolute;
	top: 0.5em;
	right: 0.5em;
	cursor: pointer;
	opacity: 0.5;
	transition: 200ms;
}
.close_modal:hover {
	opacity: 1;
}
.close_modal svg {
	width: 1.5rem;
	height: 1.5rem;
	display: block;
	fill: var(--color1);
}



/* form */


input[type="submit"], button#accept-cookies, button#decline-cookies, a.button {
	font-size: inherit;
	cursor: pointer;	
	color: #fff !important;
	text-align: center;
	background-color: var(--color1);
	padding: 0.5em 1em;
	display: inline-block;
	border: 0;
}
input[type="submit"]:hover, a.button:hover {
	color: #fff !important;
	/*background-color: var(--color1-7);*/
}

input[type="submit"]:disabled {
	background-color: #ccc;
}



input[type="number"] {
	width: 200px;
}


input[type="checkbox"] {
	display: none;
}

input[type="checkbox"] + label {
	width: auto;
	display: inline-block;
	cursor: pointer;
	position: relative;
    line-height: 1.1em;
	padding: 0em 0em 0em 2em;
}

input[type="checkbox"] + label::before {
	content: "";
	display: block;
	
	position: absolute;
	left: 0;
	top: 0;

	width: 18px;
	height: 18px;
	color: #fff;
	text-align: center;
    line-height: 1em;

	margin-right: 8px;
	border: 1px solid var(--color-gray2);
	border-radius: 2px;
	background-color: #fff;
	vertical-align: middle;
	transition: 200ms;
}

input[type="checkbox"]:checked + label::before {
	content: url(/files/site/check.svg?1);
	background-color: var(--color1);
	border-color: var(--color1);
}

input[type="checkbox"]:hover + label::before {
	background-color: var(--color1-1);
	border-color: var(--color1);
}
input[type="checkbox"]:checked:hover + label::before {
	background-color: var(--color1-7);
	border-color: var(--color1);
}

input[type="text"],
input[type="number"],
select,
select:not([type]) {
	height: 42px;
}

.cke_notifications_area {
	display: none;
}

.service_main {
	width: 100%;
	border-radius: 28px 28px 0 28px;
}


.head_bg {
	width: 100%;
	border-radius: 28px 28px 0 28px;
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 175px 45px 48px 45px;
	background-blend-mode: multiply;
	background-color: rgba(0, 0, 0, 0.3);
	margin-bottom: 32px;
}

.head_bg h2 {
	text-transform: none;
	color: #fff;
	font-weight: 600;
}

.service_icon {
	background-color: var(--color4);
	width: 168px;
	height: 168px;
	background-position: center center;
	background-size: 55%;
	background-repeat: no-repeat;
	border-radius: 50%;
}

ol li {
	font-size: 16px;
	margin-top: 15px;
}

.container2 {
	padding-left: 96px;
	padding-right: 96px;
}

.project_form {
	display: flex;
	flex-wrap: wrap;
	grid-gap: 40px;
	align-items: center;
}

.project_col1 {
	width: calc(45% - 20px);
}

.project_col2 {
	background-color: var(--color4);
	width: calc(55% - 20px);
	border-radius: 28px 28px 0 28px;
	padding: 32px;
	background-image: url(/files/site/project_form_bg1.png);
	background-position: bottom left;
	background-repeat: no-repeat;
}

.build_list {
	display: flex;
	flex-wrap: wrap;
	grid-gap: 40px;
	margin-top: 64px;
	margin-bottom: 64px;
}

.build {
	border-radius: 28px 28px 0 28px;
	overflow: hidden;
	position: relative;
	background-color: rgba(39, 45, 54, 0.7);
	background-blend-mode: multiply;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 2 / 1;
	width: calc(100% / 3 - 40px * 2 / 3);
}

.build_text {
	width: 100%;
	padding-left: 24px;
	padding-right: 24px;
	padding-top: 48px;
	padding-bottom: 12px;
	text-align: center;
}

.build_text h3 {
	font-size: 20px;
	font-weight: 600;
	color: rgba(250, 250, 250, 1);
	text-transform: uppercase;
}

.build_month {
	position: absolute;
	top: 0;
	right: 0;
	background-color: var(--color2);
	color: #fff;
	padding: 8px 16px;
	border-radius: 0 28px 0 28px;
	display: flex;
	grid-gap: 8px;
	align-items: center;
}

.build_links {
	display: flex;
	grid-gap: 40px;
	align-items: center;
	justify-content: center;
	margin-top: 24px;
}

.build_links a {
	color: var(--color4);
	text-decoration: underline;
}

.bread {
	margin-top: 16px;
	margin-bottom: 27px;
	font-weight: 500;
	color: var(--color-gray2);
}

.bread a {
	font-weight: 500;
}

.project_slider {
	aspect-ratio: 3 / 2;
	width: 100%;
}

.project_slider_img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	max-width: none;
	max-height: none;
}

.project_slider .slick-dots {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	padding: 16px 24px;
	margin: 0;
	background: rgba(0, 0, 0, 0.5);
	display: flex;
	grid-gap: 8px;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
}

.project_slider .slick-dots li {
	padding: 0;
	margin: 0;
	display: block;
}

.project_slider .slick-dots li button {
	display: none;
}

.project_slider .slick-dots li {
	padding: 0;
	margin: 0;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 1);
	background-color: transparent;
	transition: 200ms;
	cursor: pointer;
}

.project_slider .slick-dots li:hover {
	background-color: rgba(255, 255, 255, 0.5);
}

.project_slider .slick-dots li.slick-active {
	background-color: rgba(255, 255, 255, 1);
}

.project_slider .slick-list {
	height: 100%;
}

.project_slider .slick-track {
	height: 100%;
}

.project_info {
	font-weight: 500;
	line-height: 1.2;
}

.project_info_img {
	width: 44px;
	height: 44px;
}

.project_info_n {
	font-size: 20px;
	font-weight: 500;
}

.project_info_name {
	font-size: 12px;
	font-weight: 300;
}

.project_info2 {
	font-size: 14px;
}

.project_info_line {
	/*border-bottom: 1px dashed var(--color-gray2);*/
	margin-top: 35px;
	margin-bottom: 24px;
	width: 100%;
	display: block;
}

.project_price {
	text-align: start;
}

.project_price1 {
	font-size: 22px;
	font-weight: 400;
	color: rgba(190, 190, 190, 1);
	margin-right: 0.5rem;
}

.project_price2 {
	font-size: 33px;
	font-weight: 500;
	color: var(--color2);
}

.project_include {
	background-image: url(/files/site/project_include.svg);
	background-position: center right;
	background-repeat: repeat-x;
	background-size: auto 1px;
	display: flex;
}

.project_include > div {
	background-color: rgba(255,255,255,1.00);
	padding-right: 1rem;
	width: auto;
}

.project_include_text p {
	font-weight: 300;
	font-size: 14px;
	line-height: 1.5;
}

.btn--project,
a.btn--project {
	font-size: 12px;
	padding: 13px 15px;
}

.project_pr {
	margin-top: 40px;
	margin-bottom: 58px;
}

.project_pr_item {
	background-color: var(--color4);
	border-radius: 24px 24px 0 24px;
	padding: 17px 32px;
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
	grid-gap: 24px;
}

.project_plan_img {
	width: 100%;
	display: block;
}


.project_item {
	background-color: rgba(250, 250, 250, 1);
	border-radius: 28px 28px 0 28px;
	overflow: hidden;
	transition: 200ms;
	height: 100%;
}

.project_cover {
	display: block;
	width: 100%;
	aspect-ratio: 18 / 10;
}

.project_item_info {
	padding: 16px 24px 24px 24px;
}

.project_item h3 {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 8px;
}

.project_item_price1 {
	font-size: 14px;
	font-weight: 400;
	color: rgba(190, 190, 190, 1);
	margin-right: 0.5rem;
}

.project_item_price2 {
	font-size: 14px;
	font-weight: 500;
}

.project_item_size {
	display: flex;
	grid-gap: 24px;
	margin-top: 16px;
}

.project_item_size > div {
	display: flex;
	grid-gap: 8px;
	align-items: center;
	flex-wrap: nowrap;
}


.accordion-button::after {
	background-image: url(/files/site/accordion-arrow.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 10px;
	transition: transform .2s ease-in-out;
}

.accordion-button:not(.collapsed)::after {
	background-image: url(/files/site/accordion-arrow.svg);
	transform: rotate(-180deg);
}

.accordion-item {
	border: 0px;
	margin-bottom: 32px;
}

.accordion-button {
	border: 0px solid transparent;
	color: #000;
	font-size: 14px;
	font-weight: 600;
	box-shadow: none;
	padding: 0;
}

.accordion-button:not(.collapsed) {
	background-color: transparent;
	color: #000;
	box-shadow: none;
}

.accordion-button:focus {
	box-shadow: none;
}

.accordion-body {
	padding: 8px 0 0 0;
}

.accordion-header {
	display: flex;
	flex-wrap: nowrap;
	grid-gap: 8px;
}

.accordion_mobile {
	background-color: var(--color4) !important;
	padding: 12px 8px 12px 24px;
	display: none;
	grid-gap: 8px;
}

.filter_close {
	background-color: rgba(209, 51, 51, 1);
	border-radius: 2px;
	display: flex;
	padding: 15px 16px;
	grid-gap: 10px;
	color: #fff;
	font-weight: 500;
}

.filter_close:hover {
	color: #fff;
}

.filter_close_mobile {
	background-color: rgba(209, 51, 51, 1);
	border-radius: 2px;
	display: none;
	padding: 15px 16px;
}

.filter_top {
	display: flex;
	column-gap: 24px;
	flex-wrap: nowrap;
	width: 100%;
	justify-content: flex-start;
}

input[type="text"].filter_title {
	width: auto;
	padding-left: 48px;
	background-image: url(/files/site/filter_title_icon.svg);
	background-position: 16px 50%;
	background-repeat: no-repeat;
	flex-grow: 1;
	display: block;
}

.button_search_mobile {
	border: 1px solid var(--color1);
	border-radius: 2px;
	padding: 8px 12px;
	display: none;
}

.filter_row {
	width: 100%;
	display: flex;
	grid-gap: 8px;
	flex-wrap: nowrap;
	align-items: center;
}

.filter_row input[type=number] {
	width: 150px;
}


.ui-slider {
	position: relative;
	width: calc(100% - 15px);
	margin: 8px 0;
	height: 3px;
	/*background-color: var(--color-gray1);*/
}

.ui-widget-header {
	background-color: var(--color1);
	height: 3px;
}

.ui-slider-range {
	position: absolute;
	z-index: 1;
}

.ui-state-default {
	width: 15px;
	height: 15px;
	background-color: #fff;
	border: 3px solid var(--color1);
	border-radius: 50%;
	position: absolute;
	top: calc(1px - 0.5rem);
	z-index: 2;
}

.ui-state-default:focus-visible {
	outline: none;
}


.slick-prev {
	position: absolute;
	left: 0;
	top: calc((100% - 50px) / 2);
	padding: 0em;
	cursor: pointer;
	z-index: 100;
}

.slick-next {
	position: absolute;
	right: 0;
	top: calc((100% - 50px) / 2);
	padding: 0em;
	cursor: pointer;
	z-index: 100;
}

.slick-prev svg,
.slick-next svg {
	height: 50px;
	opacity: 0.5;
	transition: 200ms;
	fill: var(--color1);
}

.slick-prev:hover svg,
.slick-next:hover svg {
	opacity: 1;
}

.news_slider_img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: 28px 28px 0 28px;
}

video {
	max-width: 100%;
}

.video iframe {
	display: block;
	margin: 0 auto;
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
}


#form_file {
	display: none;
}

.house_img {
	border-radius: 28px 28px 0 28px;
	display: block;
	width: 100%;
	aspect-ratio: 18 / 10;
	object-fit: cover;
}







.mt_32 {
	margin-top: 32px;
}

.mb_32 {
	margin-bottom: 32px;
}

.fs_20 {
	font-size: 20px;
}

.fw_300 {
	font-weight: 300;
}

.fw_500 {
	font-weight: 500;
}

.fw_600 {
	font-weight: 600;
}

#cookie-consent {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: transparent;
	padding: 2rem 2rem 1rem 2rem;
	text-align: start;
	z-index: 9997;
	justify-content: center;
}

#decline-cookies {
	position: absolute;
	top: -0.5rem;
	right: -0.5rem;
	width: auto;
	padding: 0 0.5rem;
	border-radius: 0.5rem;
}

.cookie-card {
	background-color: rgba(0, 0, 0, 0.8);
	width: 500px;
	max-width: 100%;
	position: relative;
	padding: 1rem 0.5rem 1rem 0.5rem;
	border-radius: 1rem;
	font-size: 80%;
}

.white_text {
	color: #fff;
}


.ex1_bg {
	background-color: rgba(255,255,255, 0.8);
}

.ex2_bg {
	background-color: var(--color4-8);
}

.ex3_bg {
	background-color: var(--color1-8);
}

.ex_item {
	border-radius: 28px 28px 0 28px;
	padding: 24px;
	height: 100%;
}






/* xxl */
@media screen {
	.video iframe {
		width: 900px;
	}

}

@media screen and (max-width: 1800px) {
	
}

/* xl */
@media screen and (max-width: 1400px) {
	
}

/* lg */
@media screen and (max-width: 1200px) {
	.video iframe {
		width: 100vw;
		max-width: 100%;
	}
	
	.project_col1 {
		width: 100%;
	}
	.project_col2 {
		margin-left: -24px;
		margin-right: -24px;
		width: calc(100% + 48px);
		border-radius: 0;
		padding: 24px;
	}
	
	.no_container {
		margin-left: -24px;
		margin-right: -24px;
		/*width: calc(100% + 48px);*/
		width: 100vw;
		max-width: none;
	}

	.build_list {
		grid-gap: 24px;
		margin-top: 40px;
		margin-bottom: 40px;
	}

	.build {
		width: calc(100% / 2 - 40px / 2);
	}
	
	.accordion_mobile {
		display: flex;
	}
	
	.filter_close {
		display: none;
	}
	
	.filter_close_mobile {
		display: block;
	}
}

/* md */
@media screen and (max-width: 992px) {
	.container2 {
		padding-left: 0;
		padding-right: 0;
	}


	.project_pr_item {
		flex-wrap: wrap;
		align-items: center;
		justify-content: center;
		text-align: center;
		grid-gap: 8px;
	}
}

/* sm */
@media screen and (max-width: 768px) {
	.head_bg {
		margin-left: -24px;
		margin-right: -24px;
		width: calc(100% + 48px);
		background-position: center center;
		padding: 175px 24px 48px 24px;
		border-radius: 0;
	}
}

/* xs */
@media screen and (max-width: 576px) {
	.head_bg {
		margin-left: -24px;
		margin-right: -24px;
		width: calc(100% + 48px);
		background-position: center center;
		padding: 325px 24px 48px 24px;
		border-radius: 0;
	}

	.project_col2 {
		background-image: url(/files/site/project_form_bg2.png);
		background-position: top right;
	}
	
	.build {
		width: calc(100%);
	}
	
	.project_info2 {
		font-size: 12px;
	}
	
	.project_price {
		text-align: center;
	}
	
	input[type="text"].filter_title {
		display: none;
	}

	.button_search_mobile {
		display: block;
	}
	
	.filter_top {
		column-gap: 8px;
		justify-content: space-between;
	}
}




