/*! HTML5 Boilerplate v4.3.0 | MIT License | http://h5bp.com/ */

/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

:root {}

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html,
button,
input,
select,
textarea {
    color: #000;
}

html {
    font-size: 1em;
    line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight: h5bp.com/i
 * These selection rule sets have to be separate.
 * Customize the background color to match your design.
 *
 * todo barva selekce
 */

::-moz-selection {
    background: #d8f8fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

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

/*
 * Remove the gap between images, videos, audio and canvas and the bottom of
 * their containers: h5bp.com/i/440
 */

audio,
canvas,
img,
video {
    vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
    resize: vertical;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */


:root {
	--font-family-inter: "Inter", serif;
	--font-family-noto: "Noto Serif Display", serif;

	--font-size-base: 16px;

	--font-size-xxs: 0.75rem; /* 12 */
	--font-size-xs: 0.875rem; /* 14 */
	--font-size-small: 0.9375rem; /* 15 */
	--font-size-large-1: 1.125rem; /* 18 */
	--font-size-large-2: 1.25rem; /* 20 */
	--font-size-large-3: 1.5625rem; /* 25 */
	--font-size-large-4: 1.875rem; /* 30 */
	--font-size-large-5: 2.1875rem; /* 35 */
	--font-size-xl: 2.5rem; /* 40 */
	--font-size-xl-1: 3.125rem; /* 50 */
	--font-size-xl-1-1: 2.81rem; /* 45 */
	--font-size-xl-2: 5rem; /* 80 */
	--font-size-xl-3: 6.25rem; /* 100 */

	--font-weight-regular: 400;
	--font-weight-medium: 600;

	--width-page: 2560px;
	--width-mid: 1920px;
	--width-sm: 1440px;
	--width-xs: 1024px;
	--width-min: 320px;

	--width-text-half-l: 61.5%;
	--width-text-half-r: calc(100% - var(--width-text-half-l));

	--height-header: 170px;

	--padding-page: 115px;

	--mbxs: 2rem; /* 32 */
	--mbs: 3.75rem; /* 60 */
	--mbm: 6.25rem; /* 100 */
	--mbl: 7.2rem; /* 115 */

	--color-light-brown: #e2c4a9;
	--color-light-brown-trans-03: rgb(226, 196, 169, 0.3);
	--color-light-brown-trans-03-full: #f6ede5;
	--color-light-brown-trans-75: rgb(226, 196, 169, 0.75);
	--color-medium-brown: #d3b79d;
	--color-dark-brown: #c19271;
	--color-dark-brown-2: #917b64;
	--color-dark-brown-3: #a17e61;
	--color-gray: #e1e1e1;
	--color-dark-gray: #808080;
}

@media screen and (max-width: 1700px) {
	:root {
		--padding-page: 60px;
	}
}

@media screen and (max-width: 1460px) {
	:root {
		--padding-page: 60px;
		--font-size-xl-2: 3.5em;
		--mbxs: 2rem;
		--mbs: 3rem;
		--mbm: 4rem;
		--mbl: 5rem;
	}
}

@media screen and (max-width: 1120px) {
	:root {
		--font-size-large-4: 1.7rem;
		--font-size-xl: 2.2rem;
		--font-size-xl-1: 2.7rem;
		--font-size-xl-1-1: 2.5rem;
		--font-size-xl-2: 3.8rem;
		--font-size-xl-3: 4.8rem;
	}
}

@media screen and (max-width: 820px) {
	:root {
		--padding-page: 40px;
	}
}

@media screen and (max-width: 580px) {
	:root {
		--font-size-xl: 2rem;
		--font-size-xl-1: 2.5rem;
		--font-size-xl-1-1: 2.4rem;
		--font-size-xl-2: 3rem;
		--font-size-xl-3: 4rem;
	}
}

@media screen and (max-width: 480px) {
	:root {
		--padding-page: 30px;

		--font-size-xl: 1.8rem;
		--font-size-xl-1: 2rem;
		--font-size-xl-1-1: 2rem;
		--font-size-xl-2: 2.5rem;
		--font-size-xl-3: 3rem;

		--mbxs: 2rem;
		--mbs: 2rem;
		--mbm: 3rem;
		--mbl: 4rem;
	}
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; }

body, html {
	font-family: var(--font-family-inter);
	font-optical-sizing: auto;
	font-weight: var(--font-weight-regular);
	font-style: normal;
	text-shadow: none;
	font-variation-settings: "wdth" 100;

	background-color: #ffffff;
	font-size: var(--font-size-base);
}

body {
	max-width: var(--width-page);
	margin: 0 auto;
}

body.menu-opened {
	overflow: hidden;
}

a {
	color: var(--color-light-brown);
	text-decoration: underline;
	transition: opacity 0.3s ease, color 0.3s ease, background-color 0.3s ease;
}

a:hover {
	color: #000000;
}

.content.content-black a:hover {
	color: #ffffff;
}

/* --- project --- */

.content {
	width: 100%;
	margin: 0 auto;
	max-width: var(--width-page);
	min-width: var(--width-min);
	box-sizing: border-box;
	background-color: #ffffff;
}

.content .content { min-width: 0; }

.content.content-transparent {
	background-color: transparent;
}

.content.content-black {
	background-color: #000000;
	color: #ffffff;
}

.content.content-mid {
	max-width: var(--width-mid);
}

.content.content-sm {
	max-width: var(--width-sm);
}

.content.content-padded {
	padding-left: var(--padding-page);
	padding-right: var(--padding-page);
}

.content.content-menu {
	padding-top: calc(var(--height-header) + 2em);
}

/* utils + misc */

.mt-1 {
	margin-top: 1em !important;
}

.mt-2 {
	margin-top: 2em !important;
}

.mb-1 {
	margin-bottom: 1em !important;
}

.mb-2 {
	margin-bottom: 2em !important;
}

.mb-3 {
	margin-bottom: 3em !important;
}

.scrollmagic-pin-spacer {
	opacity: 1;
	transition: opacity 0.3s ease;
}

.scrollmagic-pin-spacer.active {
	pointer-events: none;
	opacity: 0;
}

#slide-moving {
	padding-top: var(--padding-page);
	background-color: #ffffff;
	position: relative;
	z-index: 1;
}

.shifted-anchor {
	position: relative;
	top: calc((var(--height-header) + 3em) * -1);
}

.not-found {
	width: 100%;
	text-align: center;
	padding: 2em;
	font-size: var(--font-size-large-2);
	font-weight: var(--font-weight-medium);
}

.property-detail-price {
	font-family: var(--font-family-noto);
	color: var(--color-dark-brown-2);
	font-size: var(--font-size-large-3);
	font-weight: var(--font-weight-medium);
	white-space: nowrap;
}

.property-detail-priceinfo {
	font-size: var(--font-size-large-1);
}

#frm-demand-form {
	display: none;
}

#frm-demand-form.showed {
	display: block;
}

@media screen and (max-width: 580px) {
	.property-detail-price {
		font-size: var(--font-size-large-2);
	}
}

/* header + menu */

.main-header {
	--margin-header-items: 80px;

	position: fixed;
	height: var(--height-header);
	top: 0;
	left: 0;
	width: 100%;
	z-index: 6;
	transition: transform 0.3s ease, background-color 0.3s ease, height 0.3s ease;
}

.header-closed .main-header {
	transform: translateY(-100%);
}

.header-closed .main-header.static-header {
	transform: translateY(0);
}

.body-header .main-header {
	height: 130px;
	background-color: var(--color-dark-brown-3);
}

.main-header .content {
	height: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	position: relative;
}

.main-logo {
	width: 250px;
}

.main-logo img {
	width: 100%;
	height: auto;
}

.main-logo-image-grad {
	display: block;
}

.body-header .main-logo-image-grad {
	display: none;
}

.main-logo-image-white {
	display: none;
}

.body-header .main-logo-image-white {
	display: block;
}

.main-nav {
	margin-left: auto;
}

.lang-switch {
	font-size: var(--font-size-large-1);
	margin: 0;
	padding: 0;
	position: relative;
}

.lang-switch li {
	display: block;
	height: 100%;
	list-style-type: none;
}

.lang-switch a {
	display: block;
	height: 100%;
	color: #ffffff;
	padding: 6px 23px 6px var(--margin-header-items);
	text-decoration: none;
}

.lang-switch a:hover {
	text-decoration: none;
	color: var(--color-light-brown);
}

@media screen and (max-width: 1880px) {
	.main-header {
		--margin-header-items: 60px;
	}

	.lang-switch {
		font-size: var(--font-size-base);
	}
}

@media screen and (max-width: 1580px) {
	.main-header {
		--margin-header-items: 30px;
	}

	.main-logo {
		width: 100%;
		max-width: 290px;
	}
}

@media screen and (max-width: 1420px) {
	.lang-switch {
		font-size: var(--font-size-small);
	}
}

/* social */

.social-icons {
	display: flex;
	justify-content: space-between;
	gap: 10px;
	margin-left: var(--margin-header-items);
}

.main-nav .social-icons {
	display: none;
}

.social-icons a {
	width: 21px;
	height: 21px;
}

.social-icons a:hover {
	opacity: 0.8;
}

.social-icons img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.social-icons-big {
	gap: 1rem;
}

.social-icons-big a {
	width: 25px;
	height: 25px;
}

.social-icons-big a.icon-small {
	width: 22px;
	height: 22px;
}

.social-icons-footer {
	justify-content: flex-start;
}

@media screen and (max-width: 1360px) {
	.social-icons-footer {
		justify-content: center;
	}
}

/* hamburger menu */

.menu-trigger {
	background-color: transparent;
	border: none;
	margin: 0 0 0 1em;
	padding: 0;
	width: 40px;
	height: 23px;
	opacity: 1;
	transition: opacity 0.3s ease;
	justify-content: center;
	align-items: center;
	position: relative;
	overflow: hidden;
	display: none;
	flex-shrink: 0;
}

.body-header .menu-trigger {
	margin-top: 0;
}

.menu-trigger:before, .menu-trigger:after {
	position: absolute;
	content: " ";
	display: block;
	width: 100%;
	height: 1px;
	background-color: var(--color-light-brown);
	top: 0;
	transition: top 0.3s ease, background-color 0.3s ease;
	transform-origin: center center;
	animation-fill-mode: forwards;
}

.menu-trigger:after {
	top: calc(100% - 1px);
}

.menu-trigger .line {
	height: 1px;
	background-color: var(--color-light-brown);
	width: 100%;
	display: block;
	opacity: 1;
	transition: opacity 0.3s ease, background-color 0.3s ease;
}

.menu-trigger:hover {
	opacity: 0.8;
}

.menu-opened .menu-trigger .line {
	opacity: 0;
}

.menu-opened .menu-trigger:before {
	top: 49%;
	animation-name: rotate-line-1;
	animation-duration: 0.3s;
	animation-delay: 0.3s;
	animation-direction: normal;
}

.menu-opened .menu-trigger:after {
	top: 48%;
	animation-name: rotate-line-2;
	animation-duration: 0.3s;
	animation-delay: 0.3s;
	animation-direction: normal;
}

@keyframes rotate-line-1 {
	from { transform: rotate(0); }
	to { transform: rotate(45deg); }
}

@keyframes rotate-line-2 {
	from { transform: rotate(0); }
	to { transform: rotate(-45deg); }
}

@media screen and (max-width: 1360px) {
	:root {
		--height-header: 120px;
		--width-nav: 320px;
	}

	.main-nav {
		position: fixed;
		top: 0;
		right: 0;
		width: var(--width-nav);
		height: 100vh;
		overflow: auto;
		opacity: 0;
		pointer-events: none;
		transition: opacity 0.5s ease;
	}

	.main-nav:before {
		display: block;
		position: fixed;
		content: "";
		top: 0;
		right: 0;
		width: var(--width-nav);
		height: 100vh;
		background-color: var(--color-dark-brown-3);
	}

	.body-header .main-nav:before {
		top: var(--height-header);
		height: calc(100vh - var(--height-header));
	}

	.menu-opened .main-nav {
		pointer-events: auto;
		opacity: 1;
	}

	.lang-switch {
		margin-left: auto;
	}

	.main-header .social-icons {
		display: none;
	}

	.main-header .main-nav .social-icons {
		display: flex;
		justify-content: flex-start;
		margin-left: 30px;
		margin-top: 2rem;
		position: relative;
		z-index: 2;
	}

	.main-header .content {
		justify-content: space-between;
	}

	.menu-trigger {
		display: flex;
	}
}

@media screen and (max-width: 580px) {
	.lang-switch a {
		padding-left: 10px;
		padding-right: 10px;
	}

	.main-logo {
		width: calc(100% - 140px);
	}
}

/* changer */

.changer-title {
	position: absolute;
	top: 55%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-family: var(--font-family-noto);
	font-size: var(--font-size-xl-2);
	text-align: center;
	z-index: 5;
	color: #ffffff;
	text-shadow: 0 0 10px #000000;
}

.changer-title p, .changer-bottom-title p {
	margin: 0;
}

.changer-corner {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 30%;
	min-width: 220px;
	max-width: 480px;
	z-index: 5;
	aspect-ratio: 1 / 1;
	box-sizing: border-box;
	display: flex;
	justify-content: flex-start;
	align-items: flex-end;
	opacity: 1;
	transition: opacity 0.3s ease;
}

.changer-corner img {
	width: 40%;
	min-width: 100px;
	max-width: 130px;
	margin: 0 0 20% 20%;
}

.changer-corner:before {
	--height-left: 23%;
	--border-width: 40px;
	--color-light: rgb(228, 180, 140, 0.7);
	--color-dark: rgb(133, 112, 91, 0.7);
	display: block;
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	background: linear-gradient(-45deg, var(--color-light) 0%, var(--color-dark) 50%, var(--color-light) 50%, var(--color-dark) 100%);
	clip-path: polygon(0% var(--height-left), var(--border-width) calc(var(--height-left) + var(--border-width)), var(--border-width) calc(100% - var(--border-width)), calc(100% - var(--border-width)) calc(100% - var(--border-width)), 100% 100%, 0% 100%);
	transition: clip-path 0.3s ease;
	z-index: -1;
}

.changer-bottom-title {
	position: absolute;
	top: var(--padding-page);
	left: 50%;
	width: 100%;
	max-width: var(--width-mid);
	padding-left: var(--padding-page);
	padding-right: var(--padding-page);
	box-sizing: border-box;
	transform: translateX(-50%);
	z-index: 3;
	text-align: left;
	transition: color 0.3s ease;
}

.changer-bottom-title.changer-bottom-title-b {
	top: auto;
	bottom: var(--padding-page);
	color: #ffffff;
}

.changer-bottom-title.changer-bottom-title-white {
	color: #ffffff;
}

.changer-presale {
	position: absolute;
	top: calc(var(--height-header));
	right: 0;
	border-width: 1px;
	z-index: 5;
}

.changer-presale-link {
	color: #FFFFFF;
	text-decoration: none;
	display: block;
	background-color: rgba(203, 160, 123, 0.8);
	padding: 1em 1.3em;
	text-align: center;
	font-family: var(--font-family-noto);
	font-size: var(--font-size-large-3);
	transition: background-color 0.3s ease;
}

.changer-presale-link:hover {
	color: #ffffff;
	background-color: rgba(203, 160, 123, 0.95);
}

.changer-presale .button.button-small {
	border-color: #000000;
	color: #FFFFFF;
	font-size: var(--font-size-large-2);
	min-width: 265px;
	border-width: 1px;
}

.changer-presale-text {
	padding-bottom: 1em;
}

@media screen and (max-width: 1580px) {
	.changer-corner img {
		margin: 0 0 25% 25%;
	}
}

@media screen and (max-width: 1360px) {
	.changer-presale {
		top: calc(var(--height-header) + var(--padding-page));
	}
}

@media screen and (max-width: 1080px) {
	.changer-corner:before {
		--border-width: 30px;
	}
}

@media screen and (max-width: 780px) {
	.changer-presale-link {
		font-size: var(--font-size-large-2);
	}

	.changer-presale .button.button-small {
		font-size: inherit;
	}
}

@media screen and (max-width: 580px) {
	.changer-title {
		top: 55%;
	}

	.changer-presale, .changer-presale[data-aos^="fade"][data-aos^="fade"].aos-animate {
		right: auto;
		left: 50%;
		transform: translateX(-50%) translateZ(0);
	}
}

/* titles texts */

.main-title, .sec-title, .ter-title {
	font-family: var(--font-family-noto);
	font-size: var(--font-size-xl-1);
	font-weight: var(--font-weight-medium);
	line-height: 1.2em;
	margin: 0 0 1em 0;
}

.main-title.main-title-sm {
	font-size: var(--font-size-xl-1-1);
}

.sec-title {
	font-size: var(--font-size-large-4);
}

.ter-title {
	font-size: var(--font-size-large-3);
	font-weight: var(--font-weight-regular);
	line-height: 1.6em;
}

.image-title {
	display: block;
	width: 100%;
	height: 60px;
	object-fit: contain;
	object-position: left center;
}

.image-title.image-title-center {
	object-position: center center;
}

.image-title.image-title-big {
	height: 90px;
}

.page-text {
	font-size: var(--font-size-base);
	line-height: 1.875em;
}

.page-text ul {
	margin: 0 0 1em 1.55em;
	padding: 0;
	line-height: 1.4em;
}

.page-text.page-text-em ul {
	font-size: var(--font-size-large-1);
	color: var(--color-dark-brown-3);
}

.page-text li {
	list-style-type: square;
	margin: 0;
	padding: 0;
}

.page-text li::marker {
	color: var(--color-dark-brown);
	font-size: 180%;
}

.page-text.page-text-em li::marker {
	color: #000000;
}

.page-text ul a, .contact-text a {
	color: #000000;
	text-decoration: none;
	font-weight: var(--font-weight-medium);
}

.page-text ul a:hover, .contact-text a:hover {
	color: var(--color-dark-brown);
}

.text-brown {
	color: var(--color-light-brown);
}

.text-center {
	text-align: center;
}

.text-small {
	font-size: var(--font-size-small);
}

/* buttons */

.button {
	display: inline-block;
	font-family: var(--font-family-noto);
	font-size: var(--font-size-large-2);
	border: 2px solid var(--color-light-brown);
	padding: 1em 1.5em;
	box-sizing: border-box;
	text-align: center;
	min-width: 300px;
	text-decoration: none;
	color: #000000;
	background-color: transparent;
	transition: background-color 0.3s ease;
}

.button:hover {
	color: #000000;
	text-decoration: none;
	background-color: var(--color-light-brown-trans-03);
}

.button.button-small {
	padding: 0.5em 0.7em;
	min-width: 150px;
}

.button.button-mid {
	min-width: 200px;
}

.button.button-white-text {
	color: #ffffff;
	background-color: rgba(0,0,0,0.3);
}

.button.button-white-text:hover {
	color: #ffffff;
	background-color: rgba(0,0,0,0.6);
}

.button.button-brown {
	background-color: var(--color-medium-brown);
	border: none;
}

.button.button-brown:hover {
	background-color: var(--color-light-brown);
}

.buttons {
	display: flex;
	gap: 1rem;
	justify-content: space-between;
	flex-wrap: wrap;
}

.buttons.buttons-vertical {
	flex-direction: column;
}

.buttons.buttons-center {
	justify-content: center;
}

.buttons.buttons-v-center {
	align-items: center;
}

.buttons.buttons-left {
	justify-content: flex-start;
}

.buttons.buttons-right {
	justify-content: flex-end;
}

.buttons .button {
	min-width: 0;
	white-space: nowrap;
	min-width: 220px;
}

.buttons.buttons-single .button {
	width: auto;
	min-width: 120px;
}

@media screen and (max-width: 1880px) {
	.buttons-3 {
		flex-wrap: wrap;
		justify-content: center;
	}

	.buttons-3 .button {
		width: auto;
		min-width: 0;
	}
}

@media screen and (max-width: 580px) {
	.button {
		font-size: var(--font-size-large-1);
	}
}

/* utils + misc */

.center-text {
	text-align: center;
	width: 100%;
	max-width: var(--width-xs);
	margin: 0 auto;
}

.mbl {
	margin-bottom: var(--mbl);
}

.mbm {
	margin-bottom: var(--mbm);
}

.mbs {
	margin-bottom: var(--mbs);
}

.mbxs {
	margin-bottom: var(--mbxs);
}

.pbl {
	padding-bottom: var(--mbl);
}

.watch-us {
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: var(--font-family-noto);
	font-size: var(--font-size-large-4);
	text-decoration: none;
	color: #000000;
}

.watch-us:hover {
	color: var(--color-light-brown);
}

.watch-us span {
	margin-right: 0.75em;
}

.watch-us img {
	height: 1.1em;
}

.instagram-placeholder {
	width: 100%;
	aspect-ratio: 1 / 1;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: var(--font-family-noto);
	font-size: var(--font-size-xl);
	background-color: var(--color-light-brown);
}

/* text-halves */

.text-halves {
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
	column-gap: 70px;
	flex-wrap: wrap;
}

.text-halves.text-halves-center {
	justify-content: center;
	text-align: center;
}

.text-half-l {
	width: var(--width-text-half-l);
}

.text-half-r {
	width: calc(var(--width-text-half-r) - 70px);
}

.gold-circle {
	width: 100%;
	max-width: 260px;
}

.text-halves .company-logo-container {
	display: flex;
	justify-content: center;
	align-items: center;
}

.text-halves .company-logo {
	width: 100%;
	max-width: 340px;
}

.usp-text {
	position: relative;
}

.usp-title {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	box-sizing: border-box;
	padding: 0 var(--padding-page);
	transform: translateY(-50%);
	font-family: var(--font-family-noto);
	font-size: clamp(var(--font-size-xl-1), 5.2vw, var(--font-size-xl-3));
	text-align: center;
	color: #FFFFFF;
	font-style: italic;
	letter-spacing: 0.01em;
	text-shadow: 0 0 10px #000000;
}

.usp-title span {
	display: block;
}

.usp-image {
	width: 100%;
}

@media screen and (max-width: 1170px) {
	.text-half-blank {
		display: none;
	}

	.text-half-l {
		width: 100%;
	}

	.text-half-l .page-text {
		max-width: none;
	}

	.text-half-l .contact-text {
		margin-bottom: 2em;
	}

	.text-half-r {
		width: 100%;
	}

	.text-half-r .button {
		margin-top: 2rem;
	}

	.gold-circle {
		display: block;
		margin: 3em auto 0 auto;
	}

	.text-halves .company-logo-container {
		padding-top: 5em;
	}

	.text-half-l-2nd-row {
		padding-top: 2em;
	}
}

/* selector */

.floor-desc {
	position: absolute;
	top: 0;
	left: 0;
	width: 280px;
	height: 90px;
	padding: 10px 20px;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-wrap: wrap;
	background-color: var(--color-light-brown);
	z-index: 3;
	flex-direction: column;
	line-height: 1.875em;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.15s ease, background-color 0.15s ease;
}

.floor-desc.active {
	opacity: 1;
}

.floor-desc.floor-inactive {
	background-color: var(--color-gray);
}

.floor-name {
	font-weight: var(--font-weight-medium);
}

.floor-name, .floor-flats {
	width: 100%;
}

@media screen and (max-width: 540px) {
	.floor-desc {
		width: 200px;
		height: 80px;
		line-height: normal;
	}
}

/* currency switch */

.currency-switch {
	display: inline;
}

.currency-switch a {
	font-size: var(--font-size-large-1);
	text-align: center;
	text-transform: uppercase;
	color: var(--color-medium-brown);
	transition: color 0.3s ease;
	text-decoration: none;
}

.currency-switch a:hover {
	color: #000000;
}

.currency-switch a.active {
	color: #000000;
}

/* property list misc */

.property-list-tools {
	width: 100%;
	max-width: 1050px;
	text-align: right;
	margin: 0 auto 1em auto;
}

.property-list-remark {
	margin-top: var(--mbs);
	line-height: 1.875em;
}

/* favorites */

.favorite-mark path {
	fill: transparent;
	stroke: #000000;
	stroke-opacity: 0.2;
	stroke-width: 2px;
}

.in-fav path {
	fill: var(--color-dark-brown);
}

.title-buttons {
	text-align: center;
	position: relative;
}

.title-buttons .button-small {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}

@media screen and (max-width: 920px) {
	.title-buttons {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.title-buttons .main-title {
		margin-bottom: 0.4em;
	}

	.title-buttons .button-small {
		position: static;
		transform: none;
		margin-bottom: var(--mbs);
		width: 100%;
		max-width: 180px;
	}
}

/* cards */

.text-cards {
}

.text-submenu {
	margin: 0 0 inherit 0;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 1rem;
}

.text-submenu li {
	position: relative;
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.text-submenu a {
	display: block;
	position: relative;
	box-sizing: border-box;
	min-width: 250px;
	font-family: var(--font-family-noto);
	font-size: var(--font-size-large-2);
	color: #000000;
	padding: 0.8em 1.2em;
	border: 1px solid var(--color-medium-brown);
	text-align: center;
	text-decoration: none;
}

.text-submenu a:hover, .text-submenu a.active {
	background-color: var(--color-medium-brown);
}

.sub-cards-menu {
	margin: 0 0 inherit 0;
	padding: 0;
	width: 100%;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	position: relative;
}

.sub-cards-menu li { list-style-type: none; }

.sub-cards-menu a {
	display: block;
	font-weight: normal;
	text-decoration: none;
	text-transform: lowercase;
	color: #000000;
	font-size: 18px;
	padding: 0 15px;
	transition: color 0.3s ease;
}

.sub-cards-menu a.active, .sub-cards-menu a:hover { color: var(--color-dark-brown); }

.standard-submenu {
	position: relative;
	transform: translateY(calc(100% + 1em));
	z-index: 5;
	background-color: transparent;
}

.standard-submenu a {
	background-color: #ffffff;
	border-width: 2px;
}

@media screen and (max-width: 1120px) {
	.standard-submenu {
		transform: none;
		margin-top: var(--mbs);
		padding-bottom: 1em;
	}
}

/* financing */

.financing {
	aspect-ratio: auto;
	position: relative;
	overflow: hidden;
}

.financing .financing-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.financing .financing-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.financing .financing-text {
	position: relative;
	color: #ffffff;
	background-color: rgba(0,0,0,0.8);
	z-index: 2;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
	width: 100%;
	box-sizing: border-box;
	padding: var(--padding-page);
}

.financing ul {
	color: #ffffff;
	font-size: 1rem;
}

.financing .page-text li::marker {
	color: var(--color-dark-brown);
}

.financing-left {
	width: 50%;
}

.financing-right {
	width: 50%;
}

.financing-person {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	padding-left: 160px;
	margin-bottom: 3.75rem;
	white-space: nowrap;
}

.financing-person:last-of-type {
	margin-bottom: 0;
}

.financing-person-photo {
	width: 100%;
	max-width: 220px;
	border: 5px solid var(--color-dark-brown);
	box-sizing: border-box;
}

.financing-person-photo img {
	width: 100%;
}

.financing-person-text {
	width: 100%;
	padding-left: 3.75rem;
	box-sizing: border-box;
}

.financing-person-text .ter-title {
	border-bottom: 4px solid var(--color-dark-brown);
	padding-right: 30px;
	padding-bottom: 0.6em;
	margin-bottom: 0.8em;
	display: inline-block;
}

.financing-person-text a {
	color: #ffffff;
	text-decoration: none;
}

.financing-person-text a:hover {
	color: var(--color-light-brown);
}

.financing-person-single, .financing-person.financing-person-single:last-of-type {
	padding-left: 0;
	margin-bottom: var(--mbl);
}

.financing-person-single a {
	color: var(--color-dark-brown);
}

.financing-person-single a:hover {
	color: #000000;
}

.financing .company-logo {
	width: 100%;
	max-width: 200px;
}

@media screen and (min-width: 1920px) {
	.financing-left {
		width: 60%;
	}

	.financing-right {
		width: 40%;
	}
}

@media screen and (max-width: 1550px) {
	.financing-person {
		padding-left: 4em;
	}
}

@media screen and (max-width: 1400px) {
	.financing .tile-big-text-inner {
		flex-wrap: wrap;
	}

	.financing-left {
		width: 100%;
	}

	.financing-right {
		width: 100%;
		padding-top: 2em;
		display: flex;
		justify-content: space-between;
		gap: 3em;
	}

	.financing-person {
		padding-left: 0;
		width: 50%;
		box-sizing: border-box;
	}

	.financing-person.financing-person-single {
		width: 100%;
	}

	.financing-person-text {
		padding-left: 2em;
	}
}

@media screen and (max-width: 900px) {
	.financing-right {
		flex-wrap: wrap;
	}

	.financing-person {
		width: 100%;
	}

	.financing-person-photo {
		width: 100%;
		margin-bottom: 1em;
	}

	.financing-person-text {
		width: 100%;
		padding-left: 2em;
	}

	.financing-person-text .ter-title {
		padding-right: 0;
	}
}

@media screen and (max-width: 440px) {
	.financing-right {
		gap: 0;
		margin-bottom: 2em;
	}

	.financing-person {
		flex-wrap: wrap;
		text-align: center;
		justify-content: center;
	}

	.financing-person-photo {
		margin-bottom: 2em;
	}

	.financing-person-photo img {
		width: 100%;
	}

	.financing-person-text {
		width: 100%;
		padding-left: 0;
	}
}

/* contact */

.contact-map {
	width: 100%;
	height: 100vh;
	min-height: 480px;
}

/* sellers */

.sellers {
	margin: 0 0 inherit 0;
	padding: 0;
	font-size: var(--font-size-large-3);
	font-family: var(--font-family-noto);
	text-align: center;
	display: flex;
	justify-content: flex-start;
	gap: 80px
}

.seller {
	width: 100%;
	max-width: 220px;
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.seller-image {
	display: flex;
	width: 100%;
	border: 5px solid var(--color-dark-brown);
	box-sizing: border-box;
	margin-bottom: 1.2em;
}

@media screen and (max-width: 1800px) {
	.sellers {
		justify-content: flex-start;
		gap: 2em;
	}
}

@media screen and (max-width: 1320px) {
	.sellers {
		flex-wrap: wrap;
		max-width: 770px;
	}

	.seller {
		width: calc(33.333% - 1.3333em);
	}
}

@media screen and (max-width: 780px) {
	.sellers {
		font-size: var(--font-size-large-1);
	}
}

@media screen and (max-width: 580px) {
	.seller {
		width: calc(50% - 1em);
	}
}

/* single form */

.single-form {
	width: 100%;
	max-width: 835px;
	margin: 0 auto;
	text-align: center;
}

.single-form p {
	margin-top: 0;
}

.single-form .agree-container a {
	color: var(--color-dark-brown);
}

.single-form .form-elements {
	width: 100%;
	max-width: 320px;
	margin: 0 auto;
}

.single-form .form-elements-wide {
	max-width: 480px;
}

.single-form input[type=text], .single-form select, .single-form textarea {
	padding: 10px 0;
	width: 100%;
	margin-bottom: 20px;
	text-align: center;
	background-color: #FFFFFF;
	border: none;
	color: #000000;
	font-weight: normal;
	border: 1px solid var(--color-light-brown);
	box-sizing: border-box;
}

.single-form select {
	color: rgba(0,0,0,0.5);
}

.single-form select:has(:checked) {
	color: rgba(0,0,0,1);
}

.single-form select:has([value=""]:checked) {
	color: rgba(0,0,0,0.5);
}

.single-form option {
	color: #000000;
}

.single-form textarea { height: 5.6em; }

.single-form .agree-container {
	padding: 20px 0 20px 0;
}

.single-form input[type=checkbox], .single-form input[type=radio] {
	width: auto;
	margin-bottom: 0;
	line-height: normal;
	margin-right: 10px;
}

.single-form .radio { margin-bottom: 20px; }

.single-form .radio.radio-nb br { display: none; }

.single-form .radio label, .single-form .checkbox label {
	margin-right: 15px;
}

.single-form .radio label:last-of-type { margin-right: 0; }

.single-form strong { font-weight: 500; }

.single-form input[type=submit] {
	width: auto;
	display: inline-block;
}

.single-form .button {
	margin: 45px 0 80px 0;
}

.single-form ::-webkit-input-placeholder { opacity: 0.5; color: #000000; text-transform: uppercase; font-size: 15px; }
.single-form :-moz-placeholder { opacity: 0.5; color: #000000; text-transform: uppercase; font-size: 15px; }
.single-form ::-moz-placeholder { opacity: 0.5; color: #000000; text-transform: uppercase; font-size: 15px; }
.single-form :-ms-input-placeholder { opacity: 0.5; color: #000000; text-transform: uppercase; font-size: 15px; }
.single-form ::-ms-input-placeholder { opacity: 0.5; color: #000000; text-transform: uppercase; font-size: 15px; }
.single-form ::placeholder { opacity: 0.5; color: #000000; text-transform: uppercase; font-size: 15px; }

#preliminterest .recaptcha-container.absolute {
	bottom: 120px;
}

@media screen and (max-height: 5000px) and (min-width: 640px) {
	.single-form .form-elements {
		max-width: 640px;
	}

	.single-form .row {
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		justify-content: space-between;
	}

	.single-form .row.row-single {
		justify-content: center;
	}

	.single-form .row input, .single-form .row select {
		width: calc(50% - 10px);
	}
}

@media screen and (max-width: 720px) {
	.single-form form { width: 100%; }
}


/* dokumenty */

.downloads-files {
	text-align: center;
}

.files {
	margin: 0 0 0 0;
	padding: 0 0 1em 0;
}

.files li {
	margin: 0 0 1em 0;
	padding: 0;
	list-style-type: none;
}

.files-title {
	display: inline-block;
	margin-bottom: 0.5em;
}

.file-link {
	text-decoration: none;
	color: #000000;
	display: inline-block;
	padding-left: 20px;
	background-image: url("../img/sm-arrow-down.svg");
	background-position: center left;
	background-repeat: no-repeat;
	margin-bottom: 0.5em;
}

/* contact */

.contacts {
	margin-top: 1em;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 1em 42px;
	white-space: nowrap;
}

.contacts a {
	display: grid;
	align-items: center;
	position: relative;
	height: 42px;
	padding-left: 52px;
}

.contacts a:before {
	display: block;
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	aspect-ratio: 1 / 1;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
}

.contacts a.phone:before {
	background-image: url("../img/icon-phone.svg");
}

.contacts a.email:before {
	background-image: url("../img/icon-email.svg");
}

@media screen and (max-width: 400px) {
	.contacts a {
		font-size: var(--font-size-small);
		padding-left: 30px;
	}

	.contacts a:before {
		width: 22px;
	}
}

/* todo add here */

/* footer */

#main-footer {
	overflow: hidden;
}

#main-footer a {
	text-decoration: none;
}

.footer-row {
	display: flex;
}

.footer-row {
	padding-top: var(--mbm);
}

.footer-contact {
	line-height: 1.5625em;
	padding-right: var(--padding-page);
	max-width: 360px;
}

.footer-contact-opening {
	padding-top: 50px;
}

.footer-slogan {
	margin-left: auto;
	padding-top: 4.375em;
	padding-right: 7em;
}

.footer-slogan img {
	width: 100%;
	max-width: 150px;
}

.credit {
	color: #ffffff;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	font-size: var(--font-size-xs);
}

.credit img {
	height: 37px;
	margin-left: 20px;
}

.legal {
	margin-left: auto;
	color: var(--color-light-brown);
	font-size: var(--font-size-xs);
}

.footer-row-bottom {
	justify-content: space-between;
	border-top: 1px solid var(--color-light-brown);
	padding: 3.125rem 0;
}

.footer-bottom-part {
	width: calc(50% - 105px);
	font-size: var(--font-size-xs);
}

.footer-bottom-part .social-icons {
	margin-left: auto;
	justify-content: flex-end;
	align-items: center;
}

.footer-bottom-logo {
	width: 210px;
}

.footer-bottom-logo img {
	width: 100%;
	max-width: 150px;
}

@media screen and (max-width: 1080px) { /* 1360 */
	.footer-row {
		flex-wrap: wrap;
		justify-content: center;
	}

	.footer-contact {
		width: 50%;
		box-sizing: border-box;
		padding: 0;
		text-align: center;
	}

	.footer-contact:nth-of-type(1) {
		/*
		padding-right: var(--padding-page);
		*/
		width: 100%;
	}

	.footer-contact:nth-of-type(2) {
		padding-left: var(--padding-page);
	}

	.footer-slogan {
		width: 100%;
		padding: 0;
		display: flex;
		justify-content: center;
		padding-top: 5rem;
		padding-bottom: 5rem;
	}
}

@media screen and (max-width: 1080px) { /* 1150 */
	.credit {
		width: 100%;
		justify-content: center;
		order: 2;
		padding-top: 2rem;
	}

	.legal {
		width: 100%;
		text-align: center;
	}

	.footer-bottom-part {
		width: 100%;
		text-align: center;
	}

	.footer-bottom-logo {
		width: 100%;
		text-align: center;
		padding: 4rem 0;
	}

	.footer-bottom-part .social-icons {
		justify-content: center;
	}

	.footer-bottom-part-copy {
		order: 3;
	}

	.footer-bottom-part-social {
		order: 2;
		margin-bottom: 2em;
	}

	.footer-bottom-logo {
		order: 1;
		padding: 0rem 0 2.5rem 0;
	}
}

@media screen and (max-width: 800px) {
	.footer-contact:nth-of-type(2) {
		padding-left: 0px;
		padding-top: var(--padding-page);
	}
}

@media screen and (max-width: 700px) {
	.footer-slogan {
		padding-bottom: 2em;
	}

	.footer-contact {
		width: 100%;
		line-height: 1.6em;
	}

	.footer-contact:nth-of-type(1) {
		padding-right: 0;
		/* padding-bottom: 5em; */
	}

	.footer-contact:nth-of-type(2) {
		padding-left: 0;
	}

	.legal a {
		display: block;
		text-align: center;
	}

	.legal .sep {
		display: none;
	}
}

@media screen and (max-width: 480px) {
	.credit {
		flex-wrap: wrap;
	}

	.credit span, .credit img {
		width: 100%;
		text-align: center;
		white-space: nowrap;
	}

	.credit img {
		margin-top: 0.7em;
	}
}

/* preload */

.ajax-loading { position: relative; }

.ajax-loading:after {
	content: " ";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255,255,255,0.6);
	background-image: url("../img/loader.svg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 150px 150px;
	z-index: 5;
}

.filters.ajax-loading:after { display: none; }

/* flashes */

figure.flashes {
	position: fixed;
	width: 370px;
	padding: 15px;
	top: 333px;
	left: 50%;
	margin-left: -200px;
	background-color: #019C9E;
	color: #ffffff;
	font-weight: bold;
	z-index: 12;
	border: 1px solid #ffffff;
}

/* recaptcha */

.recaptcha-container {
	display: none;
	position: absolute;
	padding: 10px;
	border-radius: 4px;
	overflow: hidden;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	box-shadow: 0px 0px 40px 10px rgba(0,0,0,0.8);
	background-color: rgba(255,255,255,0.9);
}

.recaptcha-wait {
	display: block;
	text-align: center;
	margin-bottom: 10px;
}

.recaptcha-wait span {
	display: inline-block;
	padding-right: 25px;
	background-image: url("../img/loader-dots.svg");
	background-position: 100% 75%;
	background-repeat: no-repeat;
	background-size: 20px;
}

.recaptcha-container.absolute {
	display: block;
}

/* paginator */

.pagination {
	text-align: center;
}

.pagination ul {
	display: inline-block;
	margin: 0;
	padding: 0;
	border-radius: 3px;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.pagination li {
	display: inline;
}

.pagination a {
	float: left;
	padding: 0 14px;
	line-height: 34px;
	text-decoration: none;
	border: 1px solid #ddd;
	border-left-width: 0;
}

.pagination a:hover, .pagination .active a {
	background-color: #f5f5f5;
}

.pagination .active a {
	color: #999999;
	cursor: default;
}

.pagination .disabled span, .pagination .disabled a, .pagination .disabled a:hover {
	color: #999999;
	background-color: transparent;
	cursor: default;
}

.pagination li:first-child a {
	border-left-width: 1px;
	border-radius: 3px 0 0 3px;
}

.pagination li:last-child a {
	border-radius: 0 3px 3px 0;
}

.pagination-centered {
	text-align: center;
}

.pagination-right {
	text-align: right;
}

/* errors default */

ul.error, ul.flashes {
	display: block;
	background-color: #ee630f;
	color: #ffffff;
	padding: 0;
	margin: 1rem 0rem;
}

ul.flashes {
	background-color: #a7a7a7;
}

ul.error li, ul.flashes li {
	padding: 5px 10px;
	margin: 0px;
	list-style-type: none;
	list-style-image: none;
}

ul.flashes .error {
	background-color: #ee630f;
}

/* popups */

.fix-content {
	display: none;
	position: fixed;
	z-index: 10;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.8);
	overflow-y: auto;
}

.fix-content.showed { display: block; }

.over-content {
	width: calc(100% - 40px);
	max-width: 30rem;
	padding: 2rem;
	box-sizing: border-box;
	background-color: #ffffff;
	margin: 0 auto;
	margin-top: 6.25rem;
	position: relative;
}

.popup-wide .over-content {
	max-width: 704px;
}

.close {
	position: absolute;
	right: 0;
	top: 0;
	width: 2rem;
	height: 2rem;
	line-height: 1.8rem;
	text-align: center;
	border-radius: 1000px;
	color: #000000;
	text-decoration: none;
	margin: -0.75rem -0.75rem 0 0;
	background-color: #ffffff;
	box-shadow: -1px 1px 4px 0px rgba(0, 0, 0, 0.27);
	font-size: 1.5rem;
}

.popup-wide .single-form input[type="submit"] {
	margin: 1em 0;
}

/* chyby v poupuech */

.fix-content ul.flashes {
	background-color: transparent;
	color: #000000;
}

ul.flashes .error {
	background-color: #ee630f;
}

/* - - - */

a[href^="error:"] {
	background: red;
	color: white;
}

/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide from both screenreaders and browsers: h5bp.com/u
 */

.hidden {
    display: none !important;
    visibility: hidden;
}

div.center {
	text-align: center;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix:before,
.clearfix:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.clearfix:after {
    clear: both;
}

/*
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */

.clearfix {
    *zoom: 1;
}
