@font-face {
	font-family: 'icomoon';
	src:  url("../fonts/icomoon.62cfcd13e0fa.eot?y0t0j0");
	src:  url("../fonts/icomoon.62cfcd13e0fa.eot?y0t0j0#iefix") format('embedded-opentype'),
	  url("../fonts/icomoon.0a9268b32769.ttf?y0t0j0") format('truetype'),
	  url("../fonts/icomoon.81492c395db6.woff?y0t0j0") format('woff'),
	  url("../fonts/icomoon.b7fe4d022317.svg?y0t0j0#icomoon") format('svg');
	font-weight: normal;
	font-style: normal;
	font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
	/* use !important to prevent issues with browser extensions that change fonts */
	font-family: 'icomoon' !important;
	speak: never;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
  
	/* Better Font Rendering =========== */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
  }
  
  .icon-euro:before {
	content: "\e917";
  }
.icon-profile:before {
	content: "\e913";
  }
  .icon-fav:before {
	content: "\e914";
  }
  .icon-pref:before {
	content: "\e915";
  }
  .icon-out:before {
	content: "\e916";
  }
  .icon-size-2:before {
	content: "\e911";
  }
  .icon-instagram:before {
	content: "\e90c";
  }
  .icon-facebook:before {
	content: "\e910";
  }
  .icon-build:before {
	content: "\e907";
  }
  .icon-pin:before {
	content: "\e908";
  }
  .icon-build1:before {
	content: "\e909";
  }
  .icon-online:before {
	content: "\e90a";
  }
  .icon-chat:before {
	content: "\e90b";
  }
  .icon-angle-up:before {
	content: "\e90d";
  }
  .icon-floorplan:before {
	content: "\e903";
  }
  .icon-brochure:before {
	content: "\e906";
  }
.icon-calendar:before {
  content: "\e901";
}
  .icon-size:before {
	content: "\e93b";
  }
  .icon-star-h:before {
	content: "\e92a";
  }
  .icon-arrow-right:before {
	content: "\e90e";
  }
  .icon-arrow-down:before {
	content: "\e90f";
  }
  .icon-star:before {
	content: "\e919";
  }
.icon-arrow-up:before {
  content: "\e900";
}
  .icon-angle-down:before {
	content: "\e902";
  }
	.icon-search:before {
	content: "\e904";
	}
	.icon-check_circle:before {
	content: "\e912";
	}
	.icon-home:before {
	content: "\e918";
	}
	.icon-star1:before {
	content: "\f005";
	}
	.icon-star-o:before {
	content: "\f006";
	}
  .icon-bath:before {
	content: "\e93f";
  }
.icon-bathtub:before {
  content: "\e93f";
}
.icon-s15:before {
  content: "\e93f";
}
  .icon-bed:before {
	content: "\e940";
  }
.icon-hotel:before {
  content: "\e940";
}
  .icon-pricelist:before {
	content: "\e905";
  }

:root {
	--white: #fff;
	--black: #000;
	--bgColor: #ECEEE9;
	--textColor: #000;
	--primary: #6BC754;
}

* {
	box-sizing: border-box;
}

html,
body {
	height: 100%;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	min-width: 320px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	background-color: var(--bgColor);
	font-family: 'Poppins', sans-serif;
	color: var(--textColor);
}

#app {
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

img {
	max-width: 100%;
	height: auto;
}

img.lazy {
	opacity: 0;
	transition: opacity 0.3s ease;
}

img.lazy.loaded {
	opacity: 1;
}

a {
	text-decoration: none;
	transition: color .3s;
}

a:hover {
	text-decoration: none;
}

input,
textarea,
select {
	border: 1px solid #C1C1C1;
	border-radius: 6px;
	background-color: var(--white);
	padding: 12px 15px;
	height: 50px;
	font-weight: 500;
}

textarea {
	height: 100px;
	resize: none;
}

.container {
	max-width: 980px;
	margin: 0 auto;
	padding: 0 20px;
	width: 100%;
}

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

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	font-size: 12px;
	border-radius: 6px;
	padding: 8px 10px;
	border: 1px solid transparent;
	text-align: center;
}

.btn-light {
	border-color: #000;
	background-color: var(--white);
	color: #000;
}

.btn-primary {
	background-color: var(--primary);
	color: var(--white);
}

.btn-outline {
	border-color: #C1C1C1;
	color: #000;
	background-color: var(--white);
}

h1,
h2,
h3,
h4,
h5 {
	margin: 0 0 10px
}

h1 {
	font-size: 36px;
	font-weight: 600;

	@media (min-width: 768px) {
		font-size: 42px;
	}
}

h2 {
	font-size: 26px;
	font-weight: 600;

	@media (min-width: 768px) {
		font-size: 30px;
	}
}

.logo {
	display: block;
	position: relative;
	z-index: 11;
}

.menu {
	display: flex;
	align-items: center;
	gap: 40px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.menu a:not(.btn) {
	color: #000;
}

.menu a:hover {
	color: var(--primary);
}

.header {
	padding: 10px 0;
	background-color: var(--white);
}

.header .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.main {
	padding: 20px 0;
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.footer {
	padding: 30px 0;
	text-align: center;
	background-color: var(--white);
}

.footer-menu {
	padding: 0;
	margin: 0;
	list-style: none;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.footer-menu a {
	color: var(--primary);
}

.filter-block .btn {
	width: 100%;
	background-color: var(--primary);
	color: var(--white);
	display: block;
	text-align: center;
	padding: 13px;
	font-weight: 500;
	border-radius: 6px;
}

.filter-content {
	background-color: #fff;
	border-radius: 5px;
	padding: 15px;

	@media (min-width: 768px) {
		padding: 40px;
	}
}

.filter-content form {
	gap: 30px 20px;
	max-width: 520px;
	margin: 0 auto;

	@media (min-width: 480px) {
		display: grid;
		grid-template-columns: 1fr 1fr;
	}
}

.filter-content fieldset {
	grid-column: 1 / -1;
	display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
	border: none;

	@media (min-width: 480px) {
    	grid-template-columns: repeat(3, 1fr);
	}
}

.filter-content fieldset legend {
	grid-column: 1 / -1;
}

.filter-content fieldset label {
	flex-direction: row;
	align-items: center;
}

label {
	display: flex;
	flex-direction: column;
	gap: 5px;
	margin-bottom: 10px;
}

.product-item {
	display: grid;
	grid-template-columns: 1fr;
	gap: 17px;
	margin-bottom: 40px;

	@media (min-width: 768px) {
		grid-template-columns: 380px 1fr;
	}
}

.product-item a {
	color: #000;
}

.product-item h2 {
	text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-item .img-holder {
	border-radius: 6px;
	overflow: hidden;
	background-color: #dbdbdb;
	height: 250px;
}

.product-item .img-holder img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.product-item .text-holder {
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.product-item .price {
	font-weight: 500;
	font-size: 20px;
	margin-bottom: 10px;
	display: block;
}

.contact-info {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 20px;
}

.contact-info .img-holder {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	overflow: hidden;
}

.product-detail .btn-holder {
	display: flex;
	align-items: center;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 30px;

	@media (min-width: 480px) {
		flex-direction: row;
	}
}

.product-detail .btn {
	min-width: 166px;
	font-size: 16px;
}

.product-detail .gallery .slide {
    transition: opacity 0.3s ease;
    aspect-ratio: 3 / 2;
    height: auto;
	border-radius: 6px;
	overflow: hidden;
}

.product-detail .gallery .slide img {
    left: 0;
    object-fit: cover;
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
}

.amenities-list {
	padding: 0;
	margin: 0;
	list-style: none;
	background: #F4F6F8;
	border-radius: 6px;
	padding: 15px 20px;
	display: inline-flex;
	align-items: center;
	gap: 25px;
}

.amenities-list li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	white-space: nowrap;
}

.amenities-list li.amenity {
	min-width: 80px;
}

.amenities-list i {
	font-size: 18px;
}

.amenities-list img {
	width: 18px;
}

.amenities-list .separator {
	width: 1.5px;
	height: 18px;
	background-color: #000;
	border-radius: 2px;
	padding: 0;
	min-width: 1.5px;
}

.amenities-holder {
	position: relative;
	overflow: hidden;
	width: 100%;

	@media (min-width: 1024px) {
		width: auto;
	}
}

.amenities-holder .nav-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background-color: rgba(169, 169, 169, 0.26);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	width: 40px;
	height: 40px;
	padding: 5px;
	font-size: 18px;
}

.amenities-holder .nav-btn.disabled {
	display: none !important;
}

.amenities-holder .nav-prev {
	left: 10px;
}

.amenities-holder .nav-prev i {
	display: block;
	transform: rotate(180deg);
}

.amenities-holder .nav-next {
	right: 10px;
}

.amenities-holder .scroll-box {
	overflow: hidden;
}

.about-section {
	background-color: #fff;
	border-radius: 5px;
	padding: 40px;
}

.about-section h1 {
	text-align: center;
}

.about-section a:not([class]) {
	color: var(--primary)
}

.search-result {
	background-color: #fff;
	border-radius: 6px;
	padding: 20px;
}

.search-result h1 {
	text-align: center;
	margin-bottom: 6px;
}

.location-desc {
	margin-bottom: 20px;
}

.location-desc img {
	border-radius: 6px;
	float: right;
	max-width: 441px;
	margin-left: 10px;
	margin-bottom: 20px;
	display: none;
}

.location-desc.full img {
	display: block;
}

.location-desc .text-holder {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.location-desc.full .text-holder {
	-webkit-line-clamp: unset;
	overflow: visible;
	display: inline-block;
}

.location-desc::after {
  content: "";
  display: block;
  clear: both;
}

.location-desc a {
	color: var(--primary);
}

.product-detail {
	background-color: #fff;
	border-radius: 5px;
	padding: 20px;
}

.product-detail h1 {
	text-align: center;
	margin-bottom: 20px;
	text-overflow: ellipsis;
    overflow: hidden;
}

.product-detail .price {
	text-align: center;
	font-weight: 500;
	font-size: 26px;
	display: block;
	margin-bottom: 20px;
	text-transform: capitalize;

	@media (min-width: 768px) {
		font-size: 30px;
	}
}

.product-detail .amenities-holder {
	margin-bottom: 30px;
}

.row {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
	grid-column: 1 / -1;

	@media (min-width: 480px) {
		grid-template-columns: repeat(2, 1fr);
	}
}

.copy-status {
	display: none;
	font-size: 14px;
	color: #6e6e6e;
}

.copy-status.active {
	display: block;
}

.gallery {
	margin-bottom: 20px;
}

.gallery img {
	width: 100%;
}

.lang-dropdown {
	position: relative;
}

.lang-dropdown.active .lang-menu {
	height: auto;
	opacity: 1;
	visibility: visible;
}

.lang-dropdown .dropdown-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	cursor: pointer;
	color: #000;
}

.lang-dropdown .dropdown-toggle i {
	font-size: 6px;
}

.lang-dropdown .lang-menu {
	margin: 0;
	list-style: none;
	opacity: 0;
	visibility: hidden;
	display: flex;
	flex-direction: column;
	gap: 15px;
	text-align: left;
	height: auto;
	position: absolute;
	top: calc(100% + 5px);
	right: 0;
	width: 160px;
	background-color: #fff;
	box-shadow: 0 0 3px 0 rgba(0, 0, 0, .2);
	border-radius: 7px;
	padding: 15px;
	max-height: 300px;
	overflow-y: auto;
	overflow-x: hidden;
	z-index: 2;
	transition: .3s opacity, .3s visibility;
}

.lang-dropdown .lang-menu a {
  color: #000;
}

.lang-dropdown .lang-menu a:hover {
  color: var(--primary);
}

.nav-holder {
	display: flex;
	align-items: center;
	gap: 20px;
}

.pagination {
	padding: 20px 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	flex-wrap: wrap;

	@media (min-width: 480px) {
		flex-wrap: nowrap;
	}
}

.pagination .btn {
	border-color: #C1C1C1;
	background-color: #F7F7F7;
	color: #000;
	transition: .3s background-color, .3s color;
}

.pagination .btn:hover {
	background-color: var(--primary);
	color: #fff;
}

.pagination .btn.disabled {
	pointer-events: none;
	opacity: .5;
}

.pagination span {
	width: 100%;
    text-align: center;

	@media (min-width: 480px) {
		width: auto;
	}
}

.product-item .img-holder .slide {
	aspect-ratio: 3 / 2;
	width: 100%;
	height: 100%;
}

.product-item .img-holder img {
	left: 0;
	object-fit: cover;
	position: absolute;
	top: 0;
	border-radius: 30px 30px 3px 3px;
	height: 100%;
	width: 100%;
}

.product-item .img-holder .carousel {
	height: 100%;
}

.reset-btn {
	color: #D45B43;
	margin-bottom: 20px;
	display: inline-block;
	vertical-align: middle;
}

.reset-btn-holder {
	text-align: center;
	min-height: 44px;
}

.splide__track {
  height: auto !important;
}

.splide__list {
	align-items: flex-start;
}