/* CSS Variables */
:root{
	--dark-blue:#131335;
	--camel:#C3996B;
	--light-camel:rgba(195, 153, 104, 0.2);
	--very-light-blue:#ededef;
}
html, body, div, main, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
main, article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* General styling */
*, :before, :after {
  -webkit-box-sizing: border-box;
	box-sizing: border-box;
}
:root {
  -webkit-tap-highlight-color: transparent; /* no more color over a link when tapped, usually iOS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; /* antialiasing, Mozilla only */
  -webkit-font-smooth: always; /* text has no sharp edges, Safari only */
}
html, body {
    overflow-x: hidden;
}
html {
	-ms-overflow-style: scrollbar; /* scrollbar in case of overflow for IE */
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}
body {
	min-height: 100vh;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-justify-content: space-between;
	justify-content: space-between;
  font: 20px/150% 'Open Sans', arial, sans-serif;
  font-weight:400;
  color: var(--dark-blue);
  background: #fff;
	transition: .4s;
}
h1, h2, h3, h4, h5, h6,
h1 > a, h2 > a, h3 > a, h4 > a, h5 > a, h6 > a,
article h1 a, article h2 a, article h3 a, article h4 a, article h5 a, article h6 a, .h1, .h2, .h3  {
	font-family: 'Canela Text LC Web';
	margin-bottom: 20px;
  text-rendering: optimizeLegibility;
	transition: .4s;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a{
	text-decoration:none;
}
p, li, span, bold, strong, em, i{
	transition: .4s;
}
article ul li,
article ol li,
article p {
	word-break: break-word;
}
article table tr:first-child{
	background:#d5d5d5!important;
}
article table tr:nth-child(odd){
	background:#f9f7f6;
}
article table tr:nth-child(even){
	background:#fff;
}
span {
  display: inline;
}
a {
	color: inherit;
  cursor: pointer;
	text-decoration: none;
	transition:.4s;
	outline: none;
}
a:focus{
	outline: none;
}
a:hover{
	color:var(--camel);
}
a:not([class]):focus {
  outline: none;
	box-shadow: none;
}
img, iframe {
	max-width: 100%;
	height: auto;
}
img.size-portrait-thumbnail {
	width:auto;
	max-width:unset;
}
i:not([class]), em, cite, dfn {
	font-style: italic;
}
ul, ol {
  margin: 0 0 25px 20px;
}
ol {
	list-style: decimal;
	list-style-position:inside;
}
ul {
	list-style: disc;
	list-style-position:inside;
}
nav ul, nav ol {
  margin: 0;
  list-style: none;
}
b, strong, th, legend {
	font-weight: bold;
}
small {
	font-size: 75%;
}
sub, sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
  vertical-align: baseline;
}
sub {
	bottom: -.25em;
}
sup {
	top: -.5em;
}
abbr[title] {
  text-decoration: underline dotted;
}
abbr[data-original-title], abbr[title] {
  cursor: help;
}
del {
  text-decoration: line-through;
}
table {
	margin-bottom: 20px;
  -webkit-overflow-scrolling: touch;
}
th, td {
	border: 1px solid #eceeef;
	padding: 10px;
}
caption {
	font-size: 15px;
  padding: 10px 0;
  caption-side: bottom;
}
figcaption {
  font-size:15px;
}
legend {
	margin-bottom: 5px;
}
label {
	display: block;
	cursor: pointer;
}
button, input, textarea {
	font-family: inherit;
	line-height: normal;
	margin: 0;
}
textarea {
	min-height: 80px;
	resize: vertical;
}
[type="submit"], [type="reset"], [type="button"],
[type="text"], [type="email"], [type="tel"], [type="search"],
button {
	border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
	appearance: none;
}
button, [type="submit"], [type="reset"], [type="button"] {
   cursor: pointer;
}
textarea:focus, button:focus,
div[contenteditable="true"]:focus, [class~="btn"]:focus,
[type="text"]:focus, [type="tel"]:focus, [type="email"]:focus, [type="password"]:focus, [type="submit"]:focus {
  outline: 0;
}
[hidden] {
	display: none;
}
[tabindex="-1"]:focus {
  outline: 0 !important;
}
p + h2, p + h3, p + h4,
ul + h2, ul + h3, ul + h4,
ol + h2, ol + h3, ol + h4,
code + h2, code + h3, code + h4,
table + h2, table + h3, table + h4,
blockquote + h1, blockquote + h2, blockquote + h3, blockquote + h4 {
    margin-top: 35px;
}
/* WordPress Core */
.alignnone {
  margin: 5px 20px 5px 0;
}
.aligncenter,
div.aligncenter  {
  display: block;
  margin: 30px auto 40px auto;
}
div.aligncenter{
	width: 90%!important;
	margin: 0 auto;
	padding:10px;
	border:1px solid #41ee6e;
}
div.aligncenter img{
	width: 100%;
}
.alignright {
  float:right;
  margin: 5px 0 20px 20px;
}
.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}
a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}
a img.alignnone {
  margin: 5px 20px 20px 0;
}
a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}
a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.wp-caption {
  background: #fff;
  max-width: 100%; /* Image does not overflow the content area */
  text-align: left;
}
.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}
.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}
.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}
.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  padding: 0;
  width: auto;
	margin-bottom: 10px;
}
.wp-caption p.wp-caption-text,
.wp-block-image figcaption{
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
	text-align: center;
	font-style: italic;
	margin:0px;
}
.full-width {
	width:100%;
	overflow:hidden;
}
.has__gallery .gallery{
	margin: auto -6px;
	padding: 6px 0;
	line-height: 1;
	overflow-x: hidden;
}
.has__gallery .gallery .gallery-item {
	float: left;
	margin: 0;
	text-align: center;
	padding: 6px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.has__gallery .gallery .gallery-caption,
.has__gallery .gallery .gallery-icon {
	margin: 0;
}
.has__gallery .gallery .gallery-caption {
	font-size: 13px;
	margin: 4px 0;
}
.has__gallery .gallery-columns-1 .gallery-item {
	width: 100%;
}
.has__gallery .gallery-columns-2 .gallery-item {
	width: 50%;
}
.has__gallery .gallery-columns-3 .gallery-item {
	width: 33.333%;
}
.ie8 .has__gallery .gallery-columns-3 .gallery-item,
.ie7 .has__gallery .gallery-columns-3 .gallery-item {
	width: 33%;
}
.has__gallery .gallery-columns-4 .gallery-item {
	width: 25%;
}
.has__gallery .gallery-columns-5 .gallery-item {
	width: 20%;
}
.has__gallery .gallery-columns-6 .gallery-item {
	width: 16.665%;
}
.has__gallery .gallery-columns-7 .gallery-item {
	width: 14.285%;
}
.has__gallery .gallery-columns-8 .gallery-item {
	width: 12.5%;
}
.has__gallery .gallery-columns-9 .gallery-item {
	width: 11.111%;
}
.has__gallery .gallery img {
	max-width: 100%;
	height: auto;
	border: none;
	padding: 0;
	border-radius:15px;
}
@media(max-width:1200px){
	.has__gallery .gallery-columns-4 .gallery-item,
	.has__gallery .gallery-columns-5 .gallery-item,
	.has__gallery .gallery-columns-6 .gallery-item,
	.has__gallery .gallery-columns-7 .gallery-item,
	.has__gallery .gallery-columns-8 .gallery-item,
	.has__gallery .gallery-columns-9 .gallery-item {
		width:33%;
	}
}
@media(max-width:767px){
	.has__gallery.gallery-columns-2 .gallery-item,
	.has__gallery .gallery-columns-3 .gallery-item,
	.ie8 .has__gallery .gallery-columns-3 .gallery-item,
	.ie7 .has__gallery .gallery-columns-3 .gallery-item,
	.has__gallery .gallery-columns-4 .gallery-item,
	.has__gallery .gallery-columns-5 .gallery-item,
	.has__gallery .gallery-columns-6 .gallery-item,
	.has__gallery .gallery-columns-7 .gallery-item,
	.has__gallery .gallery-columns-8 .gallery-item,
	.has__gallery .gallery-columns-9 .gallery-item {
		width: 100%;
	}
}
/* Text meant only for screen readers. */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
    white-space: nowrap;
	height: 1px;
	width: 1px;
	overflow: hidden;
}
.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar. */
}
#wpadminbar {
    /* display: none !important; */
}
html.js, html.no-js, html {
    margin-top: 0 !important;
}

/* End of WordPress Core */
/* General Theme Style */
.h-align{
  text-align:center;
}
.clear:after,
.clear:before,
.row:after,
.row:before{
	clear:both;
	display:block;
	width:100%;
	content:'';
}
.container{
	width:100%;
	max-width:1370px;
	padding:0px 15px;
	margin:0 auto;
	display:block;
	position:relative;
}
.container:before,
.container:after{
	content:"";
	display:block;
	clear:both;
}
.img-abs{
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	top:0;
	left: 0;
}
section.screen{
	padding:80px 0;
}
main.blue-header{
	margin-top:100px;
}
@media(max-width:767px){
	section.screen{
		padding:60px 0;
	}
}
/* Row */
.row{
	display: block;
	width: 100%;
}
.row > .item{
	display: inline-block;
	padding: 6px;
	vertical-align: top;
}
.row > .item.item19{
	width: 19%;
}
.row > .item.item24{
	width: 24%;
}
.row > .item.item32{
	width: 32%;
}
.row > .item.item33{
	width: 33%;
	float:left;
}
.row > .item.item49{
	width: 49%;
}
.row > .item.item50{
	width: 50%;
	float: left;
}
.row > .item.item65{
	width: 65%;
	float: left;
}
.row > .item.item35{
	width: 35%;
	float: left;
}
.row > .item.full-item{
	width: 100%;
}
@media(max-width:767px){
	.row > .item.item33{
		width: 100%;
	}
}
/* Flex */
.flex-row, .flex-row.reverse, .flex-column, .flex-column.reverse{
	display: flex;
}
.flex-row{
	flex-direction: row;
}
.flex-column{
	flex-direction: column;
}
.flex-row.reverse{
	flex-direction: row-reverse;
}
.flex-column.reverse{
	flex-direction: column-reverse;
}
.flex-item{
	padding: 0 10px;
	position: relative;
}
.flex-item.item10{
	flex: 1 1 10%;
}
.flex-item.item20{
	flex: 1 1 20%;
}
.flex-item.item25{
	flex: 1 1 25%;
}
.flex-item.item30{
	flex: 1 1 30%;
}
.flex-item.item40{
	flex: 1 1 40%;
}
.flex-item.item50{
	flex: 1 1 50%;
}
.flex-item.item60{
	flex: 1 1 60%;
}
.flex-item.item70{
	flex: 1 1 70%;
}
.flex-item.item80{
	flex: 1 1 80%;
}
.flex-item.item90{
	flex: 1 1 90%;
}
/* Form Adds */
 span.wpcf7-list-item{
  margin: 0;
}
.wpcf7-not-valid-tip{
  font-size: 12px;
  color:#ff0000;
  line-height: 16px;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output,
.wpcf7 form.sent .wpcf7-response-output{
  border: none;
  font-size: 14px;
  padding: 0;
  margin:5px 0;
  line-height: 18px;
}
.wpcf7 form.invalid .wpcf7-response-output{
	color:#ff0000;
}
.wpcf7 form.sent .wpcf7-response-output {
	color:#41ee6e;
}
.wpcf7-form input[type=checkbox]{
  position: relative;
  visibility: hidden;
	width: auto;
	display: inline-block;
	padding: 0;
	line-height: 0;
}
.wpcf7-form input[type=checkbox]+span:before{
  display: block;
  position: absolute;
  content: '';
	width: 24px;
	height: 24px;
  top: 0px;
	border-radius: 4px;
	border: 1px solid rgba(19, 19, 53, 0.20);
  left: 0;
	border-radius:4px;
}
.wpcf7-form input[type=checkbox]+span:after{
	display: block;
  position: absolute;
	width: 24px;
	height: 24px;
  top: 0;
  left: 0;
  visibility: hidden;
  background-color: var(--camel);
  border-radius: 4px;
}
.wpcf7-form input[type=checkbox]:checked+span:before{
  background: transparent
}
.wpcf7-form input[type=checkbox]:checked+span:after{
  visibility: visible
}
.form input:not([type="submit"]):not([type="checkbox"]),
.form textarea{
  width: 100%;
	border-radius: 8px;
	border: 1px solid rgba(19, 19, 53, 0.20);
  padding: 12px 24px;
  font-size: 16px;
  line-height: 1;
  transition: 0.4s;
}
.form input::placeholder{
	color: rgba(19, 19, 53, 0.50);
	font-size: 14px;
	line-height:16px;
}
.form input:not([type="submit"]):not([type="checkbox"]):focus, form input:not([type="submit"]):not([type="checkbox"]):focus,
.form textarea:focus, form textarea:focus {
  border: 1px solid var(--camel);
}
.form label {
  text-align: left;
  font-size: 14px;
	line-height:16px;
  font-style: normal;
  font-weight: 400;
	position: relative;
	margin-bottom:4px;
	margin-top:20px;
}
.form br{
	display: none;
}
form input[type=checkbox]+span{
	font-size: 14px;
	vertical-align: sub;
	margin-left: 24px;
	line-height: 16px;
}
form abbr.required{
	text-decoration: none!important;
	color:var(--dark-blue);
	cursor: default!important;
	border-bottom: 0!important;
	margin-left: -3px;
}
.form a{
	color:var(--orange);
	text-decoration:underline;
}
.form a:hover {
  color: var(--caemel);
}
.form .btn {
  margin-top: 30px;
}
.wpcf7-spinner{
  position: absolute;
  margin-top: 40px;
}
textarea{
	height: 163px;
	resize: none;
}
/* Buttons */
.btn, .facetwp-load-more{
	display: inline-block;
	text-decoration: none;
	border:1px solid rgba(19, 19, 53, 0.2);
	text-transform: uppercase;
	line-height: 1;
	padding: 18px 24px;
	transition:.4s;
	border-radius:8px;
}
.btn.white{
	background-color: transparent;
	color:var(--dark-blue);
}
.btn.white:hover{
	background-color: var(--dark-blue);
	color:#fff;
}
.btn.blue, .facetwp-load-more{
	background-color: var(--dark-blue);
	color:#fff;
}
.btn.blue:hover, .facetwp-load-more:hover{
	background-color: transparent;
	color:var(--dark-blue);
}
.btn.white2{
	background-color:#fff;
	color:var(--dark-blue);
}
.btn.white2:hover{
	background-color:var(--dark-blue);
	color:#fff;
}
.btn.transparent{
	background-color: transparent;
	color:#fff;
	border:1px solid #fff;
}
.btn.transparent:hover{
	background-color:#fff;
	color:var(--dark-blue);
}
.btn.camel{
	background-color:var(--camel);
	color:#fff;
	border:1px solid var(--camel);
}
.btn.camel:hover{
	background-color:#fff;
	color:var(--camel);
}
.buttons{
	margin-left:-5px;
	margin-right:-5px;
}
.buttons .btn{
	margin: 5px;
}
.arrow{
	border:1px solid rgba(19, 19, 53, 0.2);
	display: inline-flex;
	width: 42px;
	height: 42px;
	justify-content: center;
	align-items: center;
	transition: .4s;
	margin:5px;
	background-color: #fff;
	border-radius:50%;
}
.arrow svg{
	--slider-arrow:var(--dark-blue);
}
.arrow:hover{
	background-color: var(--dark-blue);
}
.arrow:hover svg{
	--slider-arrow:#fff;
}
.arrow.slick-next svg{
	transform:rotate(-180deg);
}
.slick-dots{
	list-style: none;
	margin:0;
}
.slick-dots li{
	padding: 5px 10px;
	transition:.4s;
	opacity:.2;
}
.slick-dots li.slick-active{
	opacity:1;
}
.slick-dots .dot{
	font-family: 'Canela Text LC Web';
	font-size: 50px;
	line-height: 50px;
	cursor: pointer;
}
/**/
.apartments-gallery .slick-dots {
  display: flex;
  justify-content: center;
  margin: 0;
	position: absolute;
	bottom: 20px;
	background-color: #fff;
	border-radius: 333px;
	padding: 10px 12px;
	left:50%;
	transform:translateX(-50%);
  list-style-type: none;
	z-index: 0;
}
.apartments-gallery .slick-dots li{
	margin:4px;
	padding:2px;
}
.apartments-gallery .slick-dots button {
  display: block;
	width: 8px;
	height: 8px;
  padding: 0;
  border: none;
  border-radius: 100%;
  background-color: rgba(19, 19, 53, 0.4);
  text-indent: -9999px;
}
.apartments-gallery .slick-dots li.slick-active button {
  background-color: rgba(19, 19, 53, 1);
}
@media(max-width:850px){
	.slick-dots{
		text-align:center;
	}
	.slick-dots li{
		display: inline-block;
		padding: 5px 10px;
	}
}
@media(max-width:767px){
	.btn{
		font-size: 14px;
		padding: 14px 12px;
	}
	.slick-dots .dot{
		font-size: 35px;
		line-height: 35px;
	}
}
/* Typography */
.display-heading{
	font-size: 96px;
	line-height:  100%;
	letter-spacing: 0px;
}
h1, .h1{
	font-size: 80px;
	line-height:  110%;
	letter-spacing: 0px;
}
h2, .h2, .section-title{
	font-size: 64px;
	line-height: 112.5%;
	letter-spacing: -2px;
}
h3, .h3{
	font-size: 48px;
	line-height: 116.667% ;
	letter-spacing: 0px;
}
h4, .h4{
	font-size: 32px;
	line-height:125%;
	letter-spacing: 0px;
}
h5, .h5, .section-headline{
	font-family: "Open Sans";
	font-size:  24px;
	font-weight: 600;
	line-height: 133.333%;
	letter-spacing:-0.5px;
	text-transform: uppercase;
}
h6, .h6{
	font-family: "Open Sans";
	font-size:  16px;
	font-weight: 600;
	line-height: 125%;
	letter-spacing:-0.5px;
	text-transform: uppercase;
}
.text-main{
	font-size:  16px;
	line-height: 150%;
	letter-spacing: 0px;
}
.text-large{
	font-size:  20px;
	line-height:150%;
	letter-spacing: -0.5px;
}
.text-small{
	font-size:  14px;
	line-height:142.857%;
	letter-spacing: 0;
}
.section-title-container{
	margin-bottom: 40px;
}
.section-title{
	margin-top:0;
}
.section-headline{
	margin-bottom:0;
}
.section-headline.flex-row{
	align-items:center;
}
.section-headline.flex-row img{
	margin-right:7px;
}
.wysiwyg a{
	text-decoration: underline;
}
@media(max-width:1367px){
	.display-heading{
		font-size: 82px;
	}
	h1, .h1{
		font-size: 65px;
	}
	h2, .h2, .section-title{
		font-size: 55px;
	}
	h3, .h3{
		font-size: 45px;
	}
	h4, .h4{
		font-size: 35px;
	}
	h5, .h5, .section-headline{
		font-size: 22px;
	}
}
@media(max-width:1281px){
	.display-heading{
		font-size: 80px;
	}
	h1, .h1{
		font-size: 60px;
	}
	h2, .h2, .section-title{
		font-size: 48px;
	}
	h3, .h3{
		font-size: 40px;
	}
	h4, .h4{
		font-size: 30px;
	}
	body, p, li, .text-large{
		font-size:16px;
	}
}
@media(max-width:1100px){
	.display-heading{
		font-size: 70px;
	}
}
@media(max-width:767px){
	.display-heading{
		font-size: 60px;
	}
	h1, .h1{
		font-size: 40px;
	}
	h2, .h2, .section-title{
		font-size: 36px;
	}
	h3, .h3{
		font-size: 24px;
	}
	h4, .h4{
		font-size: 20px;
	}
  h5, .h5, .section-headline {
    font-size: 18px;
  }
	.section-title-container{
		margin-bottom: 30px;
	}
}
/* Default Page */
.default_template .container > h1{
	color: var(--camel);
	text-align: center;
	margin-bottom: 50px;
}
.default_template .container a{
	text-decoration: underline;
}
.default_template .container a:hover{
	color:var(--camel);
}
/* Page loader */
html{
	overflow-y:hidden;
}
.page-loader{
	position: fixed;
	top:0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999999;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color:transparent;
}
.page-loader .left-pannel,
.page-loader .right-pannel{
 	background: var(--dark-blue);
	height: 100%;
	position: absolute;
	top:0;
	width:50%;
	left: -48px;
}
.page-loader .right-pannel{
 left:unset;
 right:0;
	width: calc(50% + 48px);
}
.page-loader svg{
	position: relative;
	z-index: 2;
}
.page-loader .ho-group{
	position: relative;
}
.page-loader .line{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	height: 0%;
	width: 20px;
	background-color: #fff;
	display: block;
	content: '';
	z-index: 2;
	left: calc(50% - 68px);
}
@media(max-width:1280px){
	.page-loader svg{
		width: 90%;
	}
}
@media(max-width:850px){
	.page-loader svg{
		width: 85%;
	}
}
@media(max-width:767px){
	.page-loader svg{
		width: 300px;
	}
	.page-loader .line{
    width: 10px;
    left: calc(50% - 32px);
	}
}
/* Animate photo masks */
.from-up .mask,
.from-down .mask {
  display:block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 2; /* Ensure mask is above the photos */
}
.from-down .mask {
  bottom: 0;
  top:unset;
}
/* Animation change background */
.change-bg-screen{
	padding: 120px 0;
}
.change-bg-color{
	background: linear-gradient(270deg, rgba(0, 0, 0, 0.00) 1.97%, rgba(0, 0, 0, 0.30) 98.68%), #131335;
	color: #fff;
}
.change-bg-color .from-up .mask, .change-bg-color .from-down .mask{
	background: #0b0b26;
}
/* Other Animations */
@-webkit-keyframes fadeInLeft {
  0% {
      opacity: 0;
      transform: translateX(-50%)
  }
  to {
      opacity: 1;
      transform: translateX(0)
  }
}

@keyframes fadeInLeft {
  0% {
      opacity: 0;
      transform: translateX(-50%)
  }
  to {
      opacity: 1;
      transform: translateX(0)
  }
}
/* Tooltip settings */
span.tooltip-wrapper{
  margin-right: 10px;
  position: relative;
  cursor: pointer;
	display: inline-block;
}
span.tooltip-wrapper svg{
  --stroke:var(--dark-blue);
  transition: .4s;
}
span.tooltip-wrapper:hover svg{
  --stroke:var(--camel);
}
span.tooltip-wrapper:before,
span.tooltip-wrapper:after{
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.2s;
}
span.tooltip-wrapper:before{
  content: "";
  left: 50%;
  border-width: 5px;
  border-style: solid;
  border-color: var(--camel) transparent transparent transparent;
}
span.tooltip-wrapper:after{
  content: attr(data-tooltip);
  background-color: var(--camel);
  color: #fff;
  padding: 8px;
  border-radius: 3px;
  font-size: 12px;
  line-height: 18px;
  z-index: 6;
  bottom:100%;
  border: 1px solid var(--blue);
  min-width:145px;
	text-align: center;
  max-width: 180px;
  bottom: calc(100% + 10px);
}
span.tooltip-wrapper:hover:after,
span.tooltip-wrapper:hover:before{
  opacity: 1;
}
@media(max-width:1000px){
	span.tooltip-wrapper:before, span.tooltip-wrapper:after{
    left: 0;
    transform: unset;
  }
  span.tooltip-wrapper:before{
    left: 13px;
  }
}
/* General Apartments Settings */
.ap-camel{
	background-color:var(--camel);
}
.ap-dark-blue{
	background-color:var(--dark-blue);
}
.single_appartment article.article-container{
	max-width: 1025px;
	margin:0 auto;
	margin-bottom:100px;
}
.apartment_label{
	display: inline-block;
	margin:0 auto;
	margin-bottom: 20px;
	text-transform: uppercase;
	border-radius: 59px;
	padding: 12px 16px;
	color:#fff;
}
/* Ap building and number */
.ap-building-and-number{
	border-radius: 8px;
	border: 1px solid rgba(0, 0, 0, 0.30);
	padding: 36px 20px;
	justify-content: space-evenly;
	margin-bottom:16px;
}
/* Ap Price */
.apartment-info-container .price-container{
	padding: 25px;
	color:#fff;
	font-weight:600;
	text-transform: uppercase;
	border-radius: 4px;
	border: 1px solid rgba(19, 19, 53, 0.20);
	letter-spacing: -1.28px;
  line-height: 90%;
}
.apartment-info-container .price-container .h5{
	font-weight: 600;
	line-height: 100%; /* 24px */
	letter-spacing: -0.96px;
}
.apartment-info-container .price-container.ap-dark-blue{
	background-color:var(--dark-blue);
}
.apartment-info-container .price-container.ap-camel{
	background-color:var(--camel);
}
/* Post preview Apartment */
.post-preview > a{
	display: block;
	border-radius: 8px;
	border: 1px solid var(--section-mode-border-color-1, rgba(19, 19, 53, 0.20));
}
.post-preview .featured{
	width: 100%;
	aspect-ratio:1.7/1;
	position: relative;
	overflow: hidden;
	border-top-left-radius:8px;
	border-top-right-radius:8px;
}
.post-preview .inner-content{
	padding: 20px 28px;
	text-align: left;
}
.post-preview h3{
	display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 80px;
}
.post-preview .details{
	align-items: center;
	justify-content: space-between;
}
.post-preview .details .price-container{
	padding-left: 10px;
	text-align: right;
}
.post-preview span.tooltip-wrapper{
	margin-right: 4px;
}
@media(max-width:1100px){
	.post-preview .details{
		flex-direction: column;
		align-items: flex-start;
	}
	.post-preview .details .price-container{
		padding-left: 0;
		padding-top:10px;
	}
}
@media(max-width:850px){
	.post-preview .inner-content{
		padding: 14px 18px;
	}
}
@media(max-width:767px){
	.post-preview h3{
		min-height: auto;
	}
}
/* FacetWP Settings */
.facet-row{
	margin-bottom:40px;
	align-items: center;
}
.facet-row .flex-item .facetwp-facet{
	display: inline-block;
	margin-bottom: 0;
}
.facet-row .flex-item:last-of-type{
	text-align: right;
}
.facetwp-facet-results, .facetwp-reset{
	font-size: 16px;
	line-height: 125%;
	text-transform: uppercase;
	letter-spacing: -0.5px;
}
.facetwp-reset{
	display: inline-block;
	background:unset;
	border:none;
	color:var(--camel);
	transition:.4s;
	margin-left:20px;
}
.facetwp-reset svg{
	--stroke:var(--camel);
	transition: .4s;
	vertical-align: middle;
  width: 15px;
  height: 15px;
  margin-right: 5px;
  margin-bottom: 3px;
}
.facetwp-reset:hover{
	color:var(--dark-blue);
}
.facetwp-reset:hover svg{
	--stroke:var(--dark-blue);
}
.facet-row .flex-item .facetwp-facet select{
 border: 0!important;
 box-shadow: none!important;
 outline:none!important;
 color:var(--camel);
 text-transform: uppercase;
 padding: 8px 14px;
 min-width: 200px;
 cursor: pointer;
 font-size: 16px;
 line-height: 125%;
 text-transform: uppercase;
 letter-spacing: -0.5px;
}
.facet-row .flex-item.filters-item .facetwp-facet{
	 border-left: 1px solid #C3996B;
	 margin-left: 20px;
}
@media(max-width:850px){
	.facet-row .flex-item:first-of-type{
		flex:1;
		text-align: left;
	}
	.facetwp-reset{
		margin-left: 0;
		margin-top:10px;
		padding-left: 0;
	}
}
@media(max-width:767px){
	.facet-row{
		flex-direction: column-reverse;
		margin-bottom:20px;
	}
	.facet-row .flex-item{
		flex:1 1 100%;
		padding: 0;
		width: 100%;
	}
	.facet-row .flex-item.filters-item{
		margin-bottom:30px;
	}
	.facet-row .flex-item .facetwp-facet{
		width: 100%;
		text-align: center;
		margin-bottom:10px;
	}
	.facet-row .flex-item.filters-item .facetwp-facet:first-of-type{
		border-left:0;
	}
	.facet-row .flex-item.filters-item .facetwp-facet{
		width: 49%;
		padding:0 10px;
		margin:0;
	}
	.facet-row .flex-item .facetwp-facet select{
		min-width: unset;
		max-width: 100%;
	}
}
/** Breadcrumbs */
.breadcrumb svg{
	--stroke:var(--dark-blue);
}
.breadcrumb a:hover{
	color: var(--dark-blue);
}
@media(max-width:1281px){
	.breadcrumb a, .breadcrumb span{
		font-size: 18px;
	}
}
@media (max-width: 767px) {
    .breadcrumb a, .breadcrumb span {
        font-size: 14px;
    }
		.breadcrumb svg{
			width: 16px;
			height: 16px;
			vertical-align: middle;
		}
}
