/*! PhotoSwipe main CSS by Dmytro Semenov | photoswipe.com */

.pswp {
  --pswp-bg: #000;
  --pswp-placeholder-bg: #222;
  

  --pswp-root-z-index: 100000;
  
  --pswp-preloader-color: rgba(79, 79, 79, 0.4);
  --pswp-preloader-color-secondary: rgba(255, 255, 255, 0.9);
  
  /* defined via js:
  --pswp-transition-duration: 333ms; */
  
  --pswp-icon-color: #fff;
  --pswp-icon-color-secondary: #4f4f4f;
  --pswp-icon-stroke-color: #4f4f4f;
  --pswp-icon-stroke-width: 2px;

  --pswp-error-text-color: var(--pswp-icon-color);
}


/*
	Styles for basic PhotoSwipe (pswp) functionality (sliding area, open/close transitions)
*/

.pswp {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: var(--pswp-root-z-index);
	display: none;
	touch-action: none;
	outline: 0;
	opacity: 0.003;
	contain: layout style size;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* Prevents focus outline on the root element,
  (it may be focused initially) */
.pswp:focus {
  outline: 0;
}

.pswp * {
  box-sizing: border-box;
}

.pswp img {
  max-width: none;
}

.pswp--open {
	display: block;
}

.pswp,
.pswp__bg {
	transform: translateZ(0);
	will-change: opacity;
}

.pswp__bg {
  opacity: 0.005;
	background: var(--pswp-bg);
}

.pswp,
.pswp__scroll-wrap {
	overflow: hidden;
}

.pswp__scroll-wrap,
.pswp__bg,
.pswp__container,
.pswp__item,
.pswp__content,
.pswp__img,
.pswp__zoom-wrap {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.pswp__img,
.pswp__zoom-wrap {
	width: auto;
	height: auto;
}

.pswp--click-to-zoom.pswp--zoom-allowed .pswp__img {
	cursor: -webkit-zoom-in;
	cursor: -moz-zoom-in;
	cursor: zoom-in;
}

.pswp--click-to-zoom.pswp--zoomed-in .pswp__img {
	cursor: move;
	cursor: -webkit-grab;
	cursor: -moz-grab;
	cursor: grab;
}

.pswp--click-to-zoom.pswp--zoomed-in .pswp__img:active {
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing;
}

/* :active to override grabbing cursor */
.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img,
.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img:active,
.pswp__img {
	cursor: -webkit-zoom-out;
	cursor: -moz-zoom-out;
	cursor: zoom-out;
}


/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img,
.pswp__button,
.pswp__counter {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.pswp__item {
	/* z-index for fade transition */
	z-index: 1;
	overflow: hidden;
}

.pswp__hidden {
	display: none !important;
}

/* Allow to click through pswp__content element, but not its children */
.pswp__content {
  pointer-events: none;
}
.pswp__content > * {
  pointer-events: auto;
}


/*

  PhotoSwipe UI

*/

/*
	Error message appears when image is not loaded
	(JS option errorMsg controls markup)
*/
.pswp__error-msg-container {
  display: grid;
}
.pswp__error-msg {
	margin: auto;
	font-size: 1em;
	line-height: 1;
	color: var(--pswp-error-text-color);
}

/*
class pswp__hide-on-close is applied to elements that
should hide (for example fade out) when PhotoSwipe is closed
and show (for example fade in) when PhotoSwipe is opened
 */
.pswp .pswp__hide-on-close {
	opacity: 0.005;
	will-change: opacity;
	transition: opacity var(--pswp-transition-duration) cubic-bezier(0.4, 0, 0.22, 1);
	z-index: 10; /* always overlap slide content */
	pointer-events: none; /* hidden elements should not be clickable */
}

/* class pswp--ui-visible is added when opening or closing transition starts */
.pswp--ui-visible .pswp__hide-on-close {
	opacity: 1;
	pointer-events: auto;
}

/* <button> styles, including css reset */
.pswp__button {
	position: relative;
	display: block;
	width: 50px;
	height: 60px;
	padding: 0;
	margin: 0;
	overflow: hidden;
	cursor: pointer;
	background: none;
	border: 0;
	box-shadow: none;
	opacity: 0.85;
	-webkit-appearance: none;
	-webkit-touch-callout: none;
}

.pswp__button:hover,
.pswp__button:active,
.pswp__button:focus {
  transition: none;
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
  opacity: 1;
}

.pswp__button:disabled {
  opacity: 0.3;
  cursor: auto;
}

.pswp__icn {
  fill: var(--pswp-icon-color);
  color: var(--pswp-icon-color-secondary);
}

.pswp__icn {
  position: absolute;
  top: 14px;
  left: 9px;
  width: 32px;
  height: 32px;
  overflow: hidden;
  pointer-events: none;
}

.pswp__icn-shadow {
  stroke: var(--pswp-icon-stroke-color);
  stroke-width: var(--pswp-icon-stroke-width);
  fill: none;
}

.pswp__icn:focus {
	outline: 0;
}

/*
	div element that matches size of large image,
	large image loads on top of it,
	used when msrc is not provided
*/
div.pswp__img--placeholder,
.pswp__img--with-bg {
	background: var(--pswp-placeholder-bg);
}

.pswp__top-bar {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 60px;
	display: flex;
  flex-direction: row;
  justify-content: flex-end;
	z-index: 10;

	/* allow events to pass through top bar itself */
	pointer-events: none !important;
}
.pswp__top-bar > * {
  pointer-events: auto;
  /* this makes transition significantly more smooth,
     even though inner elements are not animated */
  will-change: opacity;
}


/*

  Close button

*/
.pswp__button--close {
  margin-right: 6px;
}


/*

  Arrow buttons

*/
.pswp__button--arrow {
  position: absolute;
  top: 0;
  width: 75px;
  height: 100px;
  top: 50%;
  margin-top: -50px;
}

.pswp__button--arrow:disabled {
  display: none;
  cursor: default;
}

.pswp__button--arrow .pswp__icn {
  top: 50%;
  margin-top: -30px;
  width: 60px;
  height: 60px;
  background: none;
  border-radius: 0;
}

.pswp--one-slide .pswp__button--arrow {
  display: none;
}

/* hide arrows on touch screens */
.pswp--touch .pswp__button--arrow {
  visibility: hidden;
}

/* show arrows only after mouse was used */
.pswp--has_mouse .pswp__button--arrow {
  visibility: visible;
}

.pswp__button--arrow--prev {
  right: auto;
  left: 0px;
}

.pswp__button--arrow--next {
  right: 0px;
}
.pswp__button--arrow--next .pswp__icn {
  left: auto;
  right: 14px;
  /* flip horizontally */
  transform: scale(-1, 1);
}

/*

  Zoom button

*/
.pswp__button--zoom {
  display: none;
}

.pswp--zoom-allowed .pswp__button--zoom {
  display: block;
}

/* "+" => "-" */
.pswp--zoomed-in .pswp__zoom-icn-bar-v {
  display: none;
}


/*

  Loading indicator

*/
.pswp__preloader {
  position: relative;
  overflow: hidden;
  width: 50px;
  height: 60px;
  margin-right: auto;
}

.pswp__preloader .pswp__icn {
  opacity: 0;
  transition: opacity 0.2s linear;
  animation: pswp-clockwise 600ms linear infinite;
}

.pswp__preloader--active .pswp__icn {
  opacity: 0.85;
}

@keyframes pswp-clockwise {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


/*

  "1 of 10" counter

*/
.pswp__counter {
  height: 30px;
  margin-top: 15px;
  margin-inline-start: 20px;
  font-size: 14px;
  line-height: 30px;
  color: var(--pswp-icon-color);
  text-shadow: 1px 1px 3px var(--pswp-icon-color-secondary);
  opacity: 0.85;
}

.pswp--one-slide .pswp__counter {
  display: none;
}

:root{--padding: 20px;--container: calc(1260px + (2 * var(--padding)));--containerHd: calc(1920px + (2 * var(--padding)))}@media(max-width: 350px){:root{--padding: 10px}}:root{--color1: #E0B437;--color2: #2A2A2A;--color3: #646464;--color4: #F1F1F1}:root{--white: #FFF;--black: #000;--text: #646464;--headings: #2A2A2A;--bg-header: #E0B437;--menu-items: #2A2A2A;--bg-site: #FFF;--bg-content: #FFF;--bg-footer: #2A2A2A;--shadow: rgba(0, 0, 0, 0.1607843137)}.single-mieszkania [role=tablist]{list-style:none;margin:0;padding:0;display:-webkit-box;display:-ms-flexbox;display:flex;gap:1rem;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}@media(max-width: 768px){.single-mieszkania [role=tablist]{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.single-mieszkania [role=tablist] a{background-color:rgba(0,0,0,0);color:#2a2a2a;border-bottom:2px solid #f1f1f1}.single-mieszkania [role=tablist] a:before{display:none}}@media(min-width: 30em){.single-mieszkania [role=tablist] li{display:inline-block}}.single-mieszkania [role=tab]{display:block;text-decoration:none}@media(min-width: 30em){.single-mieszkania [role=tab]{display:inline-block}}.single-mieszkania [role=tab][aria-selected=true]{background-color:#2a2a2a;color:#fff}@media(max-width: 768px){.single-mieszkania [role=tab][aria-selected=true]{background-color:rgba(0,0,0,0);color:#646464;border-bottom:2px solid #e0b437}}.single-mieszkania [hidden]{display:none}.single-mieszkania .section-apartment-data{margin-bottom:5.5rem}@media(max-width: 768px){.single-mieszkania .section-apartment-data{margin-bottom:1rem}}.single-mieszkania .section-apartment-data .wrapper .main-heading{text-align:center}.single-mieszkania .section-apartment-data .wrapper .data-wrap{display:grid;grid-template-columns:2fr 3fr;gap:2rem}@media(max-width: 768px){.single-mieszkania .section-apartment-data .wrapper .data-wrap{overflow-x:auto;-ms-scroll-snap-type:x mandatory;scroll-snap-type:x mandatory;grid-template-columns:1fr;padding-bottom:1rem}.single-mieszkania .section-apartment-data .wrapper .data-wrap::-webkit-scrollbar-track{border-radius:5px;background-color:#fff}.single-mieszkania .section-apartment-data .wrapper .data-wrap::-webkit-scrollbar{width:8px;height:12px;background-color:rgba(0,0,0,0);cursor:pointer}.single-mieszkania .section-apartment-data .wrapper .data-wrap::-webkit-scrollbar-thumb{border-radius:5px;background-color:#646464}.single-mieszkania .section-apartment-data .wrapper .data-wrap{scrollbar-face-color:#646464;scrollbar-track-color:#fff}.single-mieszkania .section-apartment-data .wrapper .data-wrap{scrollbar-color:#646464 #fff;scrollbar-width:thin}}@media(max-width: 768px){.single-mieszkania .section-apartment-data .wrapper .data-wrap .col-data{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}}.single-mieszkania .section-apartment-data .wrapper .data-wrap .col-data .heading{border-bottom:2px solid #e0b437;padding-bottom:.5rem}.single-mieszkania .section-apartment-data .wrapper .data-wrap .col-data table{width:100%;border-collapse:collapse;table-layout:fixed}.single-mieszkania .section-apartment-data .wrapper .data-wrap .col-data table .value{font-weight:500}.single-mieszkania .section-apartment-data .wrapper .data-wrap .col-data table thead{display:table-header-group;vertical-align:middle}.single-mieszkania .section-apartment-data .wrapper .data-wrap .col-data table thead tr{display:table-row;vertical-align:inherit}.single-mieszkania .section-apartment-data .wrapper .data-wrap .col-data table thead tr th{display:table-cell;vertical-align:inherit;padding:.5rem;text-align:left}.single-mieszkania .section-apartment-data .wrapper .data-wrap .col-data table thead tr th>div{display:-webkit-box;display:-ms-flexbox;display:flex;gap:10px}.single-mieszkania .section-apartment-data .wrapper .data-wrap .col-data table thead tr th>div img{cursor:pointer}.single-mieszkania .section-apartment-data .wrapper .data-wrap .col-data table tbody{display:table-row-group;vertical-align:middle}.single-mieszkania .section-apartment-data .wrapper .data-wrap .col-data table tbody tr{display:table-row;vertical-align:inherit}.single-mieszkania .section-apartment-data .wrapper .data-wrap .col-data table tbody tr td{display:table-cell;vertical-align:inherit;padding:.5rem}.single-mieszkania .section-apartment-data .wrapper .data-wrap .col-data table tbody tr:nth-child(odd){background-color:#f8f8f8}.single-mieszkania .section-apartment-data .wrapper .data-wrap .col-data table.building{margin-top:4rem}@media(max-width: 768px){.single-mieszkania .section-apartment-data .wrapper .data-wrap .col-img{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}}.single-mieszkania .section-apartment-data .wrapper .data-wrap .col-img .status{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.single-mieszkania .section-apartment-data .wrapper .data-wrap .col-img .status .value{font-weight:400}.single-mieszkania .section-apartment-data .wrapper .data-wrap .col-img .img-btn-wrap{border:1px solid #f1f1f1;position:relative}.single-mieszkania .section-apartment-data .wrapper .data-wrap .col-img .img-btn-wrap .icons-wrap{position:absolute;right:0;top:0;display:-webkit-box;display:-ms-flexbox;display:flex;gap:1px;z-index:2}.single-mieszkania .section-apartment-data .wrapper .data-wrap .col-img .img-btn-wrap .icons-wrap button{border:none;margin:0;padding:0;cursor:pointer;width:57px;height:57px;background-color:#e0b437;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}@media(max-width: 768px){.single-mieszkania .section-apartment-data .wrapper .data-wrap .col-img .img-btn-wrap .icons-wrap button{width:40px}}.single-mieszkania .section-apartment-data .wrapper .data-wrap .col-img .img-btn-wrap .icons-wrap button img{-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.single-mieszkania .section-apartment-data .wrapper .data-wrap .col-img .img-btn-wrap .icons-wrap button img.active{-webkit-transform:scale(1.5);transform:scale(1.5)}.single-mieszkania .section-apartment-data .wrapper .data-wrap .col-img .img-btn-wrap .img-wrap a{pointer-events:none}.single-mieszkania .section-apartment-data .wrapper .data-wrap .col-img .img-btn-wrap .img-wrap a img{max-height:750px;-o-object-fit:cover;object-fit:cover}.single-mieszkania .section-apartment-data .wrapper .data-wrap .col-img .buttons-wrap{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;gap:1rem;width:100%;margin-bottom:2rem;margin-top:2rem}.single-mieszkania .section-documents .documents-wrap{display:grid;grid-template-columns:repeat(4, 1fr);padding:4rem 0;border-top:1px solid #e6e6e6;border-bottom:1px solid #e6e6e6}@media(max-width: 768px){.single-mieszkania .section-documents .documents-wrap{grid-template-columns:1fr 1fr;padding:2rem 0}}.single-mieszkania .section-documents .documents-wrap .document{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;gap:1rem;padding:2rem;text-align:center;position:relative}@media(max-width: 768px){.single-mieszkania .section-documents .documents-wrap .document{padding:1rem}}.single-mieszkania .section-documents .documents-wrap .document a{text-decoration:none;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.single-mieszkania .section-documents .documents-wrap .document a span{display:block;margin-top:1rem;font-weight:400}.single-mieszkania .section-documents .documents-wrap .document a img{width:70%}.single-mieszkania .section-documents .documents-wrap .document:after{content:"";display:block;position:absolute;bottom:0;right:0;width:1px;height:100%;background-color:#e6e6e6}@media(max-width: 768px){.single-mieszkania .section-documents .documents-wrap .document:after{display:none}}.single-mieszkania .section-documents .documents-wrap .document:nth-child(4n):after,.single-mieszkania .section-documents .documents-wrap .document:last-child:after{display:none}.section-img-text{margin-bottom:5.5rem;overflow:hidden}@media(max-width: 768px){.section-img-text{margin-bottom:1rem}}.section-img-text.bg-gray{background:-webkit-gradient(linear, left top, left bottom, color-stop(10%, rgb(255, 255, 255)), color-stop(0%, #F9F9F9));background:linear-gradient(180deg, rgb(255, 255, 255) 10%, #F9F9F9 0%);padding-bottom:4rem}.section-img-text.bg-gray .col-text{margin-top:3rem}@media(max-width: 1280px){.section-img-text.bg-gray .col-text{margin-top:6rem}}@media(max-width: 768px){.section-img-text.bg-gray .col-text{margin-top:1rem}}.section-img-text.btn-custom .btn-lite{background-color:#e0b437;color:#fff}@media(max-width: 1400px){.section-img-text{padding-bottom:4rem}}@media(max-width: 768px){.section-img-text{padding-bottom:3rem}}.section-img-text .heading-mobile{display:none;margin-top:0}@media(max-width: 768px){.section-img-text .heading-mobile{display:block}}.section-img-text .heading{display:block;margin-bottom:1.5rem;margin-top:0}@media(max-width: 768px){.section-img-text .heading{display:none}}.section-img-text .wrapper{display:grid;grid-template-columns:repeat(12, 1fr);grid-column-gap:16px;grid-row-gap:5.5rem;-webkit-box-align:center;-ms-flex-align:center;align-items:center}@media(max-width: 1400px){.section-img-text .wrapper{grid-row-gap:3rem}}@media(max-width: 768px){.section-img-text .wrapper{grid-template-columns:1fr;grid-row-gap:1.5rem}}.section-img-text .wrapper .col-img{grid-column:2/6}@media(max-width: 992px){.section-img-text .wrapper .col-img{grid-column:1/6}}@media(max-width: 768px){.section-img-text .wrapper .col-img{grid-column:1/13}}.section-img-text .wrapper .col-img.reverse{grid-column:8/12}@media(max-width: 992px){.section-img-text .wrapper .col-img.reverse{grid-column:7/13}}@media(max-width: 768px){.section-img-text .wrapper .col-img.reverse{grid-column:1/13}}.section-img-text .wrapper .col-text{grid-column:8/12}@media(max-width: 992px){.section-img-text .wrapper .col-text{grid-column:7/13}}@media(max-width: 768px){.section-img-text .wrapper .col-text{grid-column:1/13}}.section-img-text .wrapper .col-text.reverse{grid-column:2/6;grid-row:1}@media(max-width: 992px){.section-img-text .wrapper .col-text.reverse{grid-column:1/6}}@media(max-width: 768px){.section-img-text .wrapper .col-text.reverse{grid-column:1/13;grid-row:2}}.section-img-text .wrapper .col-img{position:relative;height:100%}@media(max-width: 768px){.section-img-text .wrapper .col-img{-webkit-box-ordinal-group:1 !important;-ms-flex-order:0 !important;order:0 !important}}.section-img-text .wrapper .col-text .text{font-family:"Work Sans",sans-serif}.section-img-text .wrapper .col-text .city{text-transform:uppercase;margin-bottom:1rem}@media(max-width: 768px){.section-img-text .wrapper .col-text .city{margin-bottom:0}}.section-img-text .wrapper .col-text .status{margin:1rem 0}@media(max-width: 768px){.section-img-text .wrapper .col-text .status{margin-top:0}}.section-img-text .wrapper .col-text .status .status__value{font-weight:400;text-transform:lowercase}.section-img-text .wrapper .col-text .links-wrap{display:-webkit-box;display:-ms-flexbox;display:flex;gap:1rem;margin-top:2rem;-ms-flex-wrap:wrap;flex-wrap:wrap}.section-img-text .wrapper .col-text ul{margin-bottom:0}.section-img-text .wrapper .col-text .text-wrap{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.section-img-text .wrapper .col-text .text-wrap p{margin:0;color:#2a2a2a}.section-img-text .wrapper .col-text .text-wrap .top{font-size:28px;font-family:"Work Sans",sans-serif}.section-img-text .wrapper .col-text .text-wrap .top span{color:#e0b437}.section-img-text .wrapper .col-text .text-wrap .bottom{font-size:18px;color:#646464}.section-img-text .wrapper .cta-button{grid-column:1/-1;margin:0 auto;text-align:center}@media(max-width: 768px){.section-img-text .wrapper .cta-button{max-width:265px;gap:.5rem}}@media(max-width: 768px){.single-mieszkania .section-img-text .heading-mobile{margin-top:2rem;margin-bottom:2rem}}@media(max-width: 768px){.single-mieszkania .section-img-text.section-top{margin-top:3rem}}@media(max-width: 768px){.single-mieszkania .section-img-text.bg-gray{background:#f7f7f7}}.section-gallery{margin-bottom:5.5rem}@media(max-width: 768px){.section-gallery{margin-bottom:1rem}}@media(max-width: 768px){.section-gallery{margin-bottom:4rem}}.section-gallery .wrapper .heading{text-align:center;margin-bottom:4rem}@media(max-width: 768px){.section-gallery .wrapper .heading{margin-bottom:2rem;margin-top:3rem}}@media(max-width: 768px){.section-gallery .wrapper .glide{margin-right:-20px;width:auto}}.section-gallery .wrapper .glide .glide__track{margin:0 4rem}@media(max-width: 768px){.section-gallery .wrapper .glide .glide__track{margin:0}}.section-gallery .wrapper .glide .glide__track .glide__slide{height:auto}.section-gallery .wrapper .glide .glide__track .glide__slide .img-galery{height:100%;width:100%}.section-gallery .wrapper .glide .glide__arrows{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:100%}@media(max-width: 768px){.section-gallery .wrapper .glide .glide__arrows{display:none}}.section-gallery .wrapper .glide .glide__arrows .glide__arrow{background-color:#2a2a2a;border:none;height:40px;width:40px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;cursor:pointer;border-radius:0}.section-gallery .wrapper .glide .glide__arrows .glide__arrow--left{left:0}.section-gallery .wrapper .glide .glide__arrows .glide__arrow--left img{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.section-gallery .wrapper .glide .glide__arrows .glide__arrow--right{right:0}.section-features{margin-bottom:5.5rem}@media(max-width: 768px){.section-features{margin-bottom:1rem}}.section-features .wrapper .heading{margin-bottom:3rem;padding-bottom:1rem;border-bottom:1px solid #e6e6e6}.section-features .wrapper ul{display:grid;grid-template-columns:repeat(3, 1fr);gap:2rem}@media(max-width: 768px){.section-features .wrapper ul{grid-template-columns:1fr}}.section-features .wrapper ul li{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:1rem;text-align:center}.section-features .wrapper ul li img{width:2rem;height:2rem}.pagination{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding:1rem 0;gap:10px;-ms-flex-wrap:wrap;flex-wrap:wrap}.pagination a,.pagination span{background-color:#fff;color:#2a2a2a;width:3rem;height:3rem;border-radius:0;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;text-decoration:none;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-weight:400}@media(max-width: 768px){.pagination a,.pagination span{width:2.5rem;height:2.5rem}}.pagination .current{background-color:#f1f1f1}.pagination .prev,.pagination .next{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:1rem}.wpcf7{font-family:"Work Sans",sans-serif;max-width:832px;padding:2rem 0 .5rem 0}@media(max-width: 768px){.wpcf7{padding:1rem 0 .5rem 0}}.wpcf7 input,.wpcf7 select,.wpcf7 textarea{margin:0;display:inline-block;vertical-align:middle;white-space:normal;border:1px solid #d3d3d3;padding:.5rem}.wpcf7 input[type=text],.wpcf7 input[type=search],.wpcf7 input[type=url],.wpcf7 input[type=tel],.wpcf7 input[type=number],.wpcf7 input[type=range],.wpcf7 input[type=date],.wpcf7 input[type=month],.wpcf7 input[type=week],.wpcf7 input[type=time],.wpcf7 input[type=datetime],.wpcf7 input[type=datetime-local],.wpcf7 input[type=color],.wpcf7 input[type=email],.wpcf7 input[type=file],.wpcf7 select,.wpcf7 textarea{background-color:#f1f1f1;border:3px solid #f1f1f1;width:100%;padding:.5rem;cursor:pointer;font-family:"Work Sans",sans-serif;min-height:44px;color:#2a2a2a}.wpcf7 input[type=text]:hover,.wpcf7 input[type=search]:hover,.wpcf7 input[type=url]:hover,.wpcf7 input[type=tel]:hover,.wpcf7 input[type=number]:hover,.wpcf7 input[type=range]:hover,.wpcf7 input[type=date]:hover,.wpcf7 input[type=month]:hover,.wpcf7 input[type=week]:hover,.wpcf7 input[type=time]:hover,.wpcf7 input[type=datetime]:hover,.wpcf7 input[type=datetime-local]:hover,.wpcf7 input[type=color]:hover,.wpcf7 input[type=email]:hover,.wpcf7 input[type=file]:hover,.wpcf7 select:hover,.wpcf7 textarea:hover{border:3px solid #e0b437 !important}.wpcf7 input[type=text]:focus,.wpcf7 input[type=search]:focus,.wpcf7 input[type=url]:focus,.wpcf7 input[type=tel]:focus,.wpcf7 input[type=number]:focus,.wpcf7 input[type=range]:focus,.wpcf7 input[type=date]:focus,.wpcf7 input[type=month]:focus,.wpcf7 input[type=week]:focus,.wpcf7 input[type=time]:focus,.wpcf7 input[type=datetime]:focus,.wpcf7 input[type=datetime-local]:focus,.wpcf7 input[type=color]:focus,.wpcf7 input[type=email]:focus,.wpcf7 input[type=file]:focus,.wpcf7 select:focus,.wpcf7 textarea:focus{border:3px solid #e0b437 !important;background-color:#fff}.wpcf7 input[type=text]:focus-visible,.wpcf7 input[type=search]:focus-visible,.wpcf7 input[type=url]:focus-visible,.wpcf7 input[type=tel]:focus-visible,.wpcf7 input[type=number]:focus-visible,.wpcf7 input[type=range]:focus-visible,.wpcf7 input[type=date]:focus-visible,.wpcf7 input[type=month]:focus-visible,.wpcf7 input[type=week]:focus-visible,.wpcf7 input[type=time]:focus-visible,.wpcf7 input[type=datetime]:focus-visible,.wpcf7 input[type=datetime-local]:focus-visible,.wpcf7 input[type=color]:focus-visible,.wpcf7 input[type=email]:focus-visible,.wpcf7 input[type=file]:focus-visible,.wpcf7 select:focus-visible,.wpcf7 textarea:focus-visible{border:3px solid #e0b437;background-color:#fff}.wpcf7 input[type=submit],.wpcf7 .btn-cta-arrow{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-decoration:none;font-size:11px;padding:.8rem 1.5rem;background-color:#2a2a2a;font-weight:400;color:#fff;cursor:pointer;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;position:relative;z-index:1;text-align:center;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;overflow:hidden;text-transform:uppercase;letter-spacing:.13em;border:none;width:fit-content;text-transform:uppercase;min-width:initial !important;margin:0 auto;display:-webkit-box;display:-ms-flexbox;display:flex;align-items:center;gap:1rem;justify-content:center;padding:.9rem 2rem;line-height:1;font-weight:500;font-family:"Work Sans",sans-serif}.wpcf7 input[type=submit]:after,.wpcf7 .btn-cta-arrow:after{width:50px;height:180%;position:absolute;left:-100px;top:-25px;content:"";background-color:rgba(255,255,255,.2);-webkit-transform:rotate(20deg);transform:rotate(20deg);-webkit-transition:-webkit-transform .4s;transition:-webkit-transform .4s;transition:transform .4s;transition:transform .4s, -webkit-transform .4s}.wpcf7 input[type=submit]:hover:after,.wpcf7 .btn-cta-arrow:hover:after{-webkit-transform:translateX(500px) rotate(20deg);transform:translateX(500px) rotate(20deg)}@media(max-width: 768px){.wpcf7 input[type=submit],.wpcf7 .btn-cta-arrow{padding:1rem 2rem;width:100%;min-height:50px}.wpcf7 input[type=submit]:after,.wpcf7 .btn-cta-arrow:after{display:none}}.wpcf7 input[type=submit] svg,.wpcf7 .btn-cta-arrow svg{-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.wpcf7 input[type=submit]:hover svg,.wpcf7 .btn-cta-arrow:hover svg{-webkit-transform:translateX(5px);transform:translateX(5px)}.wpcf7 .your-message textarea{padding-top:.5rem;outline:none;height:138px}.wpcf7 .wpcf7-form{margin:0 auto;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;gap:1rem}.wpcf7 .wpcf7-form label{width:100%;color:#646464}.wpcf7 .wpcf7-form label span{display:block}.wpcf7 .wpcf7-list-item{margin:0;position:relative}.wpcf7 .wpcf7-list-item label{display:-webkit-box;display:-ms-flexbox;display:flex;gap:.5rem}@media(max-width: 768px){.wpcf7 .wpcf7-list-item label{gap:1rem}}.wpcf7 .wpcf7-list-item label span{margin-top:0}.wpcf7 .wpcf7-list-item-label{font-size:13px}.wpcf7 .wpcf7-spinner{margin:0 auto}.wpcf7 span.wpcf7-list-item-label:before{content:"";display:block;position:absolute;border-radius:2px;width:16px;height:16px;left:0;top:2px;background:rgba(0,0,0,0);border:2px solid #2a2a2a}.wpcf7 input[type=checkbox]{visibility:hidden}.wpcf7 input:checked+span.wpcf7-list-item-label:after{content:"✓";font-size:11px;color:#e0b437;font-weight:500;width:17px;height:2px;display:block;position:absolute;left:4px;top:2px}.wpcf7 .wpcf7-response-output{color:#2a2a2a;margin:0 !important}.wpcf7 select{font-weight:400 !important}.wpcf7 ::-webkit-input-placeholder{color:#2a2a2a !important;opacity:1 !important;font-family:"Work Sans",sans-serif !important;font-size:14px !important;font-weight:400 !important}.wpcf7 ::-moz-placeholder{color:#2a2a2a !important;opacity:1 !important;font-family:"Work Sans",sans-serif !important;font-size:14px !important;font-weight:400 !important}.wpcf7 :-ms-input-placeholder{color:#2a2a2a !important;opacity:1 !important;font-family:"Work Sans",sans-serif !important;font-size:14px !important;font-weight:400 !important}.wpcf7 ::-ms-input-placeholder{color:#2a2a2a !important;opacity:1 !important;font-family:"Work Sans",sans-serif !important;font-size:14px !important;font-weight:400 !important}.wpcf7 ::placeholder{color:#2a2a2a !important;opacity:1 !important;font-family:"Work Sans",sans-serif !important;font-size:14px !important;font-weight:400 !important}.wpcf7 ::-webkit-input-placeholder{color:#2a2a2a !important;opacity:1 !important;font-family:"Work Sans",sans-serif !important;font-size:14px !important;font-weight:400 !important}.wpcf7 :-moz-placeholder{color:#2a2a2a !important;opacity:1 !important;font-family:"Work Sans",sans-serif !important;font-size:14px !important;font-weight:400 !important}.wpcf7 ::-moz-placeholder{color:#2a2a2a !important;opacity:1 !important;font-family:"Work Sans",sans-serif !important;font-size:14px !important;font-weight:400 !important}.wpcf7 :-ms-input-placeholder{color:#2a2a2a !important;opacity:1 !important;font-family:"Work Sans",sans-serif !important;font-size:14px !important;font-weight:400 !important}.contact-form-label{position:fixed;top:0;left:0;width:100%;height:100%;-webkit-transform:translateX(100%);transform:translateX(100%);z-index:9999;-webkit-transition:none;transition:none;background:rgba(0,0,0,.25);-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px)}.contact-form-label.active{-webkit-transform:translateX(0);transform:translateX(0)}.contact-form-label .close-button{background:#fff;position:absolute;border-radius:50%;width:48px;height:48px;padding:2rem;right:1rem;top:1rem;z-index:10;min-width:auto;min-height:auto;cursor:pointer;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.contact-form-label .close-button:before,.contact-form-label .close-button:after{position:absolute;content:" ";height:25px;width:2px;background-color:#212934}.contact-form-label .close-button:before{-webkit-transform:rotate(45deg);transform:rotate(45deg)}.contact-form-label .close-button:after{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.contact-form-label .label-button{position:fixed;right:100%;top:30%;background-color:#fff;border:none;line-height:1.2;text-transform:uppercase;padding:1rem;-webkit-box-shadow:0 0 18px 0 rgba(0,0,0,.18);box-shadow:0 0 18px 0 rgba(0,0,0,.18);font-family:"Work Sans",sans-serif;font-weight:400;min-width:150px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;cursor:pointer;gap:1rem}@media(max-width: 768px){.contact-form-label .label-button{display:none}}.contact-form-label .label-button img{-webkit-filter:brightness(0) saturate(100%) invert(83%) sepia(34%) saturate(947%) hue-rotate(344deg) brightness(91%) contrast(91%);filter:brightness(0) saturate(100%) invert(83%) sepia(34%) saturate(947%) hue-rotate(344deg) brightness(91%) contrast(91%);margin:0 auto}.contact-form-label .wrapper{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin:0 auto;background-color:#fff;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;padding:3rem;top:50%;overflow-y:auto;-webkit-transform:translateY(-50%) translateX(100%);transform:translateY(-50%) translateX(100%)}@media(max-width: 768px){.contact-form-label .wrapper{padding:1rem;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin:1rem}}.contact-form-label .wrapper.active{-webkit-transform:translateY(-50%) translateX(0);transform:translateY(-50%) translateX(0);-webkit-transition:-webkit-transform .4s ease-in;transition:-webkit-transform .4s ease-in;transition:transform .4s ease-in;transition:transform .4s ease-in, -webkit-transform .4s ease-in}.contact-form-label .wrapper .heading,.contact-form-label .wrapper .text{text-align:center;max-width:832px}@media(max-width: 768px){.contact-form-label .wrapper .heading,.contact-form-label .wrapper .text{text-align:left}}.contact-form-label .wrapper .text{font-family:"Work Sans",sans-serif;margin:0;padding:1rem 0}@media(max-width: 768px){.contact-form-label .wrapper .text{padding-top:1rem}}.contact-form-label .wrapper .row-one,.contact-form-label .wrapper .row-two{display:-webkit-box;display:-ms-flexbox;display:flex;gap:1rem}@media(max-width: 768px){.contact-form-label .wrapper .row-one,.contact-form-label .wrapper .row-two{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}}.section-table-grid .heading-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;margin-bottom:1rem;padding-bottom:1rem;border-bottom:2px solid #e0b437}@media(max-width: 768px){.section-table-grid .heading-wrapper{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}}.section-table-grid .heading-wrapper h2{margin-bottom:0}@media(max-width: 768px){.section-table-grid .heading-wrapper h2{margin-bottom:.5rem}}.section-table-grid .heading-wrapper .layout-options{display:-webkit-box;display:-ms-flexbox;display:flex;gap:4.5rem}@media(max-width: 768px){.section-table-grid .heading-wrapper .layout-options{width:100%;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}}.section-table-grid .heading-wrapper .layout-options label{display:-webkit-box;display:-ms-flexbox;display:flex;cursor:pointer}.section-table-grid .heading-wrapper .layout-options input{accent-color:#e0b437;margin-right:10px}.section-table-grid .heading-wrapper .layout-options .layout{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:1rem}@media(max-width: 768px){.section-table-grid .heading-wrapper .layout-options .layout{display:none}}.section-table-grid .heading-wrapper .layout-options .layout button{border:none;background:rgba(0,0,0,0);cursor:pointer;padding:0}.section-table-grid .heading-wrapper .layout-options .layout .list-button img{-webkit-filter:brightness(0) saturate(100%) invert(89%) sepia(0%) saturate(26%) hue-rotate(149deg) brightness(89%) contrast(95%);filter:brightness(0) saturate(100%) invert(89%) sepia(0%) saturate(26%) hue-rotate(149deg) brightness(89%) contrast(95%)}.section-table-grid .heading-wrapper .layout-options .layout .list-button.is-active img{-webkit-filter:brightness(0) saturate(100%) invert(7%) sepia(0%) saturate(0%) hue-rotate(193deg) brightness(102%) contrast(79%);filter:brightness(0) saturate(100%) invert(7%) sepia(0%) saturate(0%) hue-rotate(193deg) brightness(102%) contrast(79%)}.section-table-grid .heading-wrapper .layout-options .layout .grid-button img{-webkit-filter:brightness(0) saturate(100%) invert(89%) sepia(0%) saturate(26%) hue-rotate(149deg) brightness(89%) contrast(95%);filter:brightness(0) saturate(100%) invert(89%) sepia(0%) saturate(26%) hue-rotate(149deg) brightness(89%) contrast(95%)}.section-table-grid .heading-wrapper .layout-options .layout .grid-button.is-active img{-webkit-filter:brightness(0) saturate(100%) invert(7%) sepia(0%) saturate(0%) hue-rotate(193deg) brightness(102%) contrast(79%);filter:brightness(0) saturate(100%) invert(7%) sepia(0%) saturate(0%) hue-rotate(193deg) brightness(102%) contrast(79%)}.section-table-grid .heading-wrapper .layout-options .layout img{cursor:pointer}.section-table-grid .table-wrap{overflow-x:auto;-ms-scroll-snap-type:x mandatory;scroll-snap-type:x mandatory}.section-table-grid .table-wrap::-webkit-scrollbar-track{border-radius:5px;background-color:#fff}.section-table-grid .table-wrap::-webkit-scrollbar{width:8px;height:12px;background-color:rgba(0,0,0,0);cursor:pointer}.section-table-grid .table-wrap::-webkit-scrollbar-thumb{border-radius:5px;background-color:#646464}.section-table-grid .table-wrap{scrollbar-face-color:#646464;scrollbar-track-color:#fff}.section-table-grid .table-wrap{scrollbar-color:#646464 #fff;scrollbar-width:thin}.section-table-grid table{width:100%;border-collapse:collapse;table-layout:auto;border-bottom:1px solid #e6e6e6;margin-bottom:1rem;letter-spacing:-0.6px}.section-table-grid table .label{cursor:pointer;font-weight:400;width:-webkit-max-content;width:-moz-max-content;width:max-content;text-align:center;max-width:90px;margin:0 auto}.section-table-grid table thead{display:table-header-group;vertical-align:middle;line-height:1}.section-table-grid table thead tr{display:table-row;vertical-align:inherit}.section-table-grid table thead tr th{display:table-cell;vertical-align:inherit;padding:.5rem .2rem;text-align:left}.section-table-grid table thead tr th>div{display:-webkit-box;display:-ms-flexbox;display:flex;gap:10px}.section-table-grid table thead tr th>div img{cursor:pointer}.section-table-grid table tbody{display:table-row-group;vertical-align:middle;line-height:1.2}.section-table-grid table tbody .compare{text-decoration:none;text-transform:uppercase;color:#e0b437;font-weight:400;font-size:12px;border:none;background:rgba(0,0,0,0);cursor:pointer}.section-table-grid table tbody .add-to-favorites{border:none;background:rgba(0,0,0,0);line-height:2;cursor:pointer;padding:0;max-width:30px}.section-table-grid table tbody .add-to-favorites img{padding:0;width:80px;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.section-table-grid table tbody .add-to-favorites img.active{-webkit-transform:scale(1.5);transform:scale(1.5)}.section-table-grid table tbody tr{display:table-row;vertical-align:inherit}.section-table-grid table tbody tr td{display:table-cell;vertical-align:inherit;padding:1rem .5rem;text-align:center;min-height:51px}.section-table-grid table tbody tr:nth-child(odd){background-color:#f8f8f8}.section-table-grid .l-list{display:none;-webkit-animation:fade-in .5s ease-in-out;animation:fade-in .5s ease-in-out}@media(max-width: 768px){.section-table-grid .l-list{display:none !important}}.section-table-grid .l-list.is-active{display:block}.section-table-grid .l-grid{display:none;-webkit-animation:fade-in .5s ease-in-out;animation:fade-in .5s ease-in-out}@media(max-width: 768px){.section-table-grid .l-grid{display:block !important}}.section-table-grid .l-grid.is-active{display:block}.section-table-grid .l-grid .grid-wrap{display:grid;grid-template-columns:1fr 1fr 1fr;grid-gap:4rem;overflow:hidden;padding-bottom:2rem}@media(max-width: 992px){.section-table-grid .l-grid .grid-wrap{grid-template-columns:1fr 1fr}}@media(max-width: 768px){.section-table-grid .l-grid .grid-wrap{grid-template-columns:1fr}}.section-table-grid .l-grid .grid-wrap .tile{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;position:relative}.section-table-grid .l-grid .grid-wrap .tile:after{content:"";display:block;height:100%;width:1px;background-color:#e6e6e6;position:absolute;top:0;right:-2rem}.section-table-grid .l-grid .grid-wrap .tile:nth-child(3n):after{display:none}@media(max-width: 992px){.section-table-grid .l-grid .grid-wrap .tile:nth-child(3n):after{display:block}}@media(max-width: 992px){.section-table-grid .l-grid .grid-wrap .tile:nth-child(2n):after{display:block}}@media(max-width: 768px){.section-table-grid .l-grid .grid-wrap .tile:after{display:none}}.section-table-grid .l-grid .grid-wrap .tile:before{content:"";display:block;height:1px;width:100vw;background-color:#e6e6e6;position:absolute;bottom:-2rem;left:0}.section-table-grid .l-grid .grid-wrap .tile .img-wrap{position:relative}.section-table-grid .l-grid .grid-wrap .tile .img-wrap img{aspect-ratio:411/282}.section-table-grid .l-grid .grid-wrap .tile .img-wrap .add-to-favorites{position:absolute;top:0;right:0;border:none;background:#e0b437;line-height:2;cursor:pointer;padding:1rem}.section-table-grid .l-grid .grid-wrap .tile .img-wrap .add-to-favorites img{-webkit-filter:brightness(0) invert(1);filter:brightness(0) invert(1);-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.section-table-grid .l-grid .grid-wrap .tile .img-wrap .add-to-favorites img.active{-webkit-transform:scale(1.5);transform:scale(1.5)}.section-table-grid .l-grid .grid-wrap .tile .title h3{font-weight:500;font-family:"Work Sans",sans-serif}.section-table-grid .l-grid .grid-wrap .tile .price,.section-table-grid .l-grid .grid-wrap .tile .rooms,.section-table-grid .l-grid .grid-wrap .tile .floor{display:grid;grid-template-columns:repeat(auto-fill, minmax(100px, 1fr));gap:1rem}.section-table-grid .l-grid .grid-wrap .tile .price .value,.section-table-grid .l-grid .grid-wrap .tile .rooms .value,.section-table-grid .l-grid .grid-wrap .tile .floor .value{font-weight:500;font-family:"Work Sans",sans-serif}.section-table-grid .l-grid .grid-wrap .tile .buttons-wrap{margin-top:1.5rem;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:1rem}.section-table-grid .l-grid .grid-wrap .tile .buttons-wrap button,.section-table-grid .l-grid .grid-wrap .tile .buttons-wrap a{width:100%;border:none}.section-table-grid .l-grid .pagination{margin-top:2rem}.section-table-grid .add-to-compare-label{position:fixed;-webkit-transform:translate(100%, -50%);transform:translate(100%, -50%);right:0;top:50%;background-color:#fff;border:none;line-height:1.2;padding:2rem;-webkit-box-shadow:0 0 18px 0 rgba(0,0,0,.18);box-shadow:0 0 18px 0 rgba(0,0,0,.18);max-width:260px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;gap:1rem;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:center;z-index:99999;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}@media(max-width: 768px){.section-table-grid .add-to-compare-label{display:none}}.section-table-grid .add-to-compare-label.active{-webkit-transform:translate(0, -50%);transform:translate(0, -50%)}.section-table-grid .add-to-compare-label span{font-size:14px}.section-table-grid .add-to-compare-label .close-label{background:#fff;position:absolute;border-radius:50%;border:1px solid #e6e6e6;width:20px;height:20px;padding:.5rem;right:.5rem;top:.5rem;z-index:10;min-width:auto;min-height:auto;cursor:pointer;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.section-table-grid .add-to-compare-label .close-label:before,.section-table-grid .add-to-compare-label .close-label:after{position:absolute;content:" ";height:12px;width:1px;background-color:#212934}.section-table-grid .add-to-compare-label .close-label:before{-webkit-transform:rotate(45deg);transform:rotate(45deg)}.section-table-grid .add-to-compare-label .close-label:after{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.section-table-grid .add-to-compare-label .btns-wrap{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;gap:1rem;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:100%}.section-table-grid .add-to-compare-label .btns-wrap button{width:100%}.section-table-grid .add-to-compare-label .btns-wrap .btn-wrap{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:100%;gap:1rem}.section-table-grid .add-to-compare-label .btns-wrap .btn-wrap .remove{background:#fff;border-radius:50%;border:1px solid #e6e6e6;width:20px;height:20px;padding:.5rem;cursor:pointer;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;position:relative}.section-table-grid .add-to-compare-label .btns-wrap .btn-wrap .remove:before,.section-table-grid .add-to-compare-label .btns-wrap .btn-wrap .remove:after{position:absolute;content:" ";height:12px;width:1px;background-color:#212934}.section-table-grid .add-to-compare-label .btns-wrap .btn-wrap .remove:before{-webkit-transform:rotate(45deg);transform:rotate(45deg)}.section-table-grid .add-to-compare-label .btns-wrap .btn-wrap .remove:after{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.section-table-grid .add-to-compare-label .btns-wrap .btn-wrap .apartment{background-color:rgba(0,0,0,0);color:#2a2a2a;border:2px solid #e0b437;width:100%}.section-table-grid .label-button{display:none !important}.section-table-grid .wrapper h2{display:-webkit-box;display:-ms-flexbox;display:flex;margin:2rem auto 4rem auto;max-width:675px;text-align:center}.section-table-grid .filter-btns{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;gap:1rem}@media(max-width: 768px){.section-table-grid .filter-btns{display:none}}.section-table-grid .filter-btns button{border:none}
