@import url('https://fonts.googleapis.com/css2?family=Assistant:wght@200;300;400;500;600;700;800&display=swap');

:root {
	--white: white;
	--black: #000000;
	--dark-blue: #06162F;
	--rich-dark-blue: #0C2246;
	--Assistant: 'Assistant', sans-serif;
}

:is(h1, h2, h3, h4, h5, h6, p) {
	margin: 0px;
	height: fit-content;
	text-align: left;
	letter-spacing: 0em;
}

input[type="search"]::-webkit-search-cancel-button {
	display: none;
}

:is(img, video, iframe) {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

a {
	text-decoration: none;
	color: #000;
	display: block;
}

ul,
ol {
	padding: 0px;
	margin: 0px;
	list-style-type: none;
}

select,
textarea,
input,
button {
	border-radius: 0px !important;
	background-color: transparent;
	outline: none;
	border: none;
	padding: 0;
	box-shadow: none !important;
	text-align: left;
}

.video-slider,
.banner-sldier {
	opacity: 0;
	visibility: hidden;
}

.slick-initialized {
	opacity: 1 !important;
	visibility: visible !important;
	margin: 0 !important;
}

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

body {
	min-height: 100vh;
	text-align: left;
	scroll-behavior: smooth;
	display: flex;
	flex-direction: column;
	direction: ltr;
	font-family: var(--Assistant);
}

.header {
	width: 100%;
	z-index: 9999;
	padding: 0px 0px 15px 0px;
	box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.1);
	background-color: var(--rich-dark-blue);
	transition: 0.2s ease-in-out;
}

.header.header-sticky {
	position: sticky;
	top: 0;
}

.header.animated {
	animation: header 1s forwards 1;
}

@keyframes header {
	from {
		top: -50%;
	}

	to {
		top: 0%;
	}
}

.header .logo {
	width: 201px;
	height: 53px;
	margin-right: auto;
	position: relative;
	top: 1px;
}

.head-wraper {
	padding: 21px 22px 13px;
	position: relative;
}

.header:after {
	background-color: #BB9D50;
	content: '';
	position: absolute;
	bottom: 4px;
	width: calc(100% - 44px);
	margin: auto;
	right: 0px;
	left: 0px;
	height: 0.5px;
}

.header .head-wraper ul {
	position: absolute;
	bottom: 8px;
	margin: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	left: 0px;
	right: 0px;
	gap: 60px;
}

.header .head-wraper ul li {
	position: relative;
}

.header .head-wraper ul li:after {
	position: absolute;
	bottom: -20px;
	height: 20px;
	content: '';
	width: 100%;
	right: 0px;
}

.header .head-wraper ul ul li:after {
	display: none;
}

.header .head-wraper ul ul {
	flex-direction: column;
	position: absolute;
	top: 42px;
	right: 0px;
	background-color: var(--rich-dark-blue);
	width: 200px;
	padding: 14px;
	bottom: unset;
	left: unset;
	z-index: 9;
	align-items: start;
	opacity: 0;
	pointer-events: none;
	gap: 4px;
	transition: all 0.4s;
}

.header .head-wraper ul li:hover ul {
	opacity: 1;
	pointer-events: all;
}

.header .head-wraper ul ul a {
	font-weight: 400;
}

.header .head-wraper ul ul a:after {
	display: none;
}

.header .head-wraper ul li a {
	color: var(--white);
	font-size: 19px;
	font-weight: 700;
	line-height: normal;
	transition: all 0.5s ease-in-out;
	position: relative;
}

.header .head-wraper ul li.current-menu-item a:after,
.header .head-wraper ul li a:after {
	position: absolute;
	bottom: -20px;
	left: 0px;
	width: 100%;
	height: 4px;
	background-color: #BB9D50;
	content: '';
	transition: 0.5s ease-in-out;
	opacity: 0;
}

.header .head-wraper ul li.current-menu-item a:after,
.header .head-wraper ul li:hover a:after {
	opacity: 1;
}

.header .head-wraper ul li.current-menu-item a,
.header .head-wraper ul li a:hover {
	color: #BB9D50;
}

.header .topbar {
	background-color: var(--dark-blue);
	padding: 4px 22px 5px;
	display: flex;
	justify-content: space-between;
}

.header .topbar .lang {
	color: var(--white);
	text-align: justify;
	font-size: 18px;
	font-weight: 400;
	line-height: 26px;
	text-transform: uppercase;
}

.header .topbar .content-right {
	display: flex;
	gap: 30px;
	position: relative;
	bottom: -1px;
	order: 2;
}

.header .topbar .content-right ul {
	display: flex;
	align-items: center;
	gap: 26px;
}

.header .topbar .content-left ul {
	display: flex;
	align-items: center;
	gap: 12px;
}

.topbar ul li a {
	color: var(--white);
	font-size: 19px;
	font-weight: 700;
	line-height: normal;
}

.banner-wraper {
	height: 674px;
	position: relative;
	overflow: hidden;
}

.banner-wraper .content {
	position: absolute;
	top: 0px;
	padding-top: 40px;
	z-index: 1;
}

.banner-wraper .content .title h1 {
	color: var(--white);
	font-size: 55px;
	font-weight: 700;
	line-height: normal;
}

.banner-wraper .content .title {
	border-bottom: 1px solid #BB9D50;
	padding-bottom: 15px;
}

.banner-wraper .content .title p {
	color: var(--white);
	font-size: 37px;
	font-weight: 400;
	line-height: normal;
}

.banner-wraper .slide .description h3 {
	color: var(--white);
	text-shadow: 8px 1px 9px 0px rgba(0, 0, 0, 0.42);
	font-size: 41px;
	font-weight: 700;
	line-height: normal;
}

.banner-wraper .slide .description a {
	display: flex;
	align-items: center;
	gap: 12px;
}

.banner-wraper .slide .description a img {
	width: 125.65px;
	transform: rotatey(180deg);
}

.banner-wraper .slide {
	height: 100%;
}

.banner-wraper .slide .description p {
	color: var(--white);
	font-size: 30px;
	font-weight: 400;
	line-height: normal;
	margin-bottom: 15px;
}

.banner-wraper .banner-sldier {
	height: 100%;
}

.banner-wraper .banner-sldier .slide::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 300px;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0), black);
}

.banner-wraper .banner-sldier .draggable {
	height: 100%;
}

.banner-wraper .banner-sldier .slick-track {
	height: 100%;
}

.banner-wraper .slide .description {
	position: absolute;
	bottom: 195px;
	z-index: 1;
	z-index: 9999;
}

.banner-wraper .slide .description span {
	color: #D9D9D9;
	font-size: 22px;
	font-weight: 700;
	line-height: normal;
	letter-spacing: 1.2px;
}

.banner-wraper .slick-dots li button {
	width: 66px;
	height: 5px;
	border-radius: 3px !important;
	background: #D9D9D9;
	padding: 0;
}

.banner-wraper .slick-dots li {
	width: auto;
	height: auto;
	margin: 0px 3px;
}

.banner-wraper .slick-dots li button::before {
	display: none;
}

.map-search {
	border: 2px solid #BB9D50;
	width: 100%;
	height: 211px;
	position: relative;
}

.map-search .from-input {
	width: 598px;
	height: 65px;
	border-radius: 34px;
	border: 1px solid #BB9D50;
	background: rgba(6, 22, 47, 0.69);
	position: absolute;
	top: 79px;
	right: 70px;
	padding: 14px 26px 13px;
	display: flex;
	gap: 19px;
}

.map-search .from-input .search-btn {
	background-image: url("../imeges/fluent-search.svg");
	min-width: 38px;
	height: 38px;
}

.map-search .from-input .input {
	width: 100%;
	color: var(--white);
	padding-top: 0px;
}

.map-search .from-input .input::placeholder {
	color: var(--white);
	font-size: 23px;
	font-weight: 700;
	line-height: normal;
	padding-top: 10px;
}

.map-search .from-input select {
	color: var(--white);
	font-size: 23px;
	font-weight: 700;
	line-height: normal;
	background-image: url("../imeges/select-arrow.svg");
	background-position: right;
	background-repeat: no-repeat;
	background-size: 12.559px 6.28px;
	appearance: none;
	padding-right: 20px;
	cursor: pointer;
	font-family: var(--Assistant);
	background-size: auto;
}

.property-management {
	padding-top: 84px;
}

.number-img+.property-management {
	margin-bottom: 34px;
	padding: 0;
}

.number-img+.property-management .text-wraper {
	padding-top: 64px;
}

.property-management .custom-row {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 20px;
}

.number-img+.property-management .title {
	padding-bottom: 18px;
	margin-bottom: 12px;
}

.property-management .text-wraper {
	width: 100%;
	padding-top: 2px;
}

.property-management .title {
	display: flex;
	align-items: flex-start;
	padding-bottom: 23px;
	margin-bottom: 22px;
	gap: 10px;
	position: relative;
}

.property-management .title:after {
	background: #BB9D50;
	height: 1px;
	width: calc(100% + 87px);
	position: absolute;
	bottom: 0px;
	left: 88px;
	content: '';
}

.property-management .title h3 {
	color: var(--rich-dark-blue);
	font-size: 30px;
	font-style: normal;
	font-weight: 600;
	line-height: 125.1%;
}

.property-management .title h4 {
	color: #BB9D50;
	font-size: 30px;
	font-style: normal;
	font-weight: 400;
	line-height: 125.1%;
}

.property-management .img-wraper {
	min-width: 632px;
	height: 394px;
}

.property-management p a {
	display: initial;
	position: relative;
}

.property-management p a:after {
	content: '';
	position: absolute;
	bottom: 0px;
	right: 0px;
	height: 1px;
	background-color: var(--black);
	width: 100%;
}

.property-management p {
	color: var(--black);
	text-align: justify;
	font-size: 17px;
	font-weight: 400;
	line-height: 26px;
	max-width: 572px;
}

.property-management p:last-of-type {
	margin-bottom: 35px;
}

.cm-btn-brown {
	display: flex;
	border: 1px solid #BB9D50;
	align-items: center;
	padding: 13px 10px 9px 20px;
	width: 325px;
	height: 55px;
	justify-content: flex-start;
	transition: all 0.5s ease-in-out;
	gap: 15px;
}

.cm-btn-black {
	display: flex;
	border: 1px solid #0C2246;
	align-items: center;
	padding: 13px 10px 9px 20px;
	width: 325px;
	height: 55px;
	justify-content: flex-start;
	transition: all 0.5s ease-in-out;
	gap: 25px;
}

.cm-btn-black span {
	color: var(--rich-dark-blue);
	font-size: 20px;
	font-weight: 400;
	line-height: normal;
	letter-spacing: 1.2px;
	white-space: nowrap;
	transition: all 0.4s ease-out;
}

.cm-btn-brown:hover {
	background: #0C2246;
}

.cm-btn-black:hover {
	background-color: #BB9D50;
}

.cm-btn-black:hover span,
.cm-btn-brown:hover span {
	font-weight: 700;
}

.cm-btn-black img,
.cm-btn-brown img {
	height: 7px;
	object-fit: contain;
	margin-left: auto;
	width: 100%;
	object-position: right;
	transition: all 0.7s ease-out;
	transform: rotateY(180deg);
}

.cm-btn-black:hover img {
	max-width: 100%;
	object-position: left;
	transition: all 0.8s ease-out;
	content: url("../imeges/btn-hover-arrow-black.svg");
}

.cm-btn-brown:hover img {
	content: url("../imeges/btn-hover-arrow-brown.svg");
	max-width: 100%;
	object-position: left;
	transition: all 0.8s ease-out;
}

.cm-btn-brown span {
	color: #BB9D50;
	font-size: 20px;
	font-weight: 400;
	line-height: normal;
	letter-spacing: 1.2px;
	white-space: nowrap;
	transition: all 0.4s ease-out;
}

.number-img {
	padding-top: 60px;
	padding-bottom: 97px;
}

.number-img .custom-row {
	display: flex;
	align-items: center;
}

.number-img .img-wraper {
	width: 694px;
	height: 437px;
	background-color: var(--rich-dark-blue);
	display: flex;
	margin-bottom: 31px;
	position: relative;
	margin-top: 42px;
}

.number-img .img-wraper:after {
	content: '';
	position: absolute;
	bottom: -31px;
	left: 0px;
	width: calc(100% - 61px);
	background-color: #BB9D50;
	height: 1px;
}

.number-img .img-wraper img {
	max-width: calc(100% - 61px);
	margin-left: auto;
	border-left: 4px solid #BB9D50;
}

.number-img .content .box .counter {
	color: var(--rich-dark-blue);
	font-size: 100px;
	font-weight: 400;
	line-height: 125.1%;
	position: relative;
}

.number-img .content .box p {
	color: var(--rich-dark-blue);
	font-size: 25px;
	font-weight: 400;
	margin-top: 15px;
}

.number-img .content .box .counter:after {
	width: 119px;
	height: 1px;
	content: '';
	background-color: #BB9D50;
	left: -82px;
	bottom: -4px;
	position: absolute;
}

.number-img .content {
	width: 100%;
	max-width: 680px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 24px;
	padding-left: 46px;
	margin-top: 28px;
}

.number-img .content .box {
	width: 100%;
	max-width: 210px;
}

.map-section {
	background-color: var(--rich-dark-blue);
	padding-bottom: 90px;
}

.map-section iframe {
	height: 816px;
}

.map-section .head-wrap {
	padding-top: 33px;
	padding-bottom: 37px;
	border-bottom: 1px solid #BB9D50;
	margin-bottom: 54px;
}

.map-section .head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 32px;
}

.map-section .head .title {
	display: flex;
	gap: 10px;
}

.map-section .head .title h3 {
	color: var(--white);
	font-size: 30px;
	font-weight: 600;
	line-height: 125.1%;
}

.map-section .head .title h4 {
	color: #BB9D50;
	font-size: 30px;
	font-weight: 400;
	line-height: 125.1%;
}

.map-section .head .search-input {
	width: 447px;
	height: 42px;
	display: flex;
	border-radius: 28.5px;
	border: 1px solid #BB9D50;
	background: rgba(255, 253, 253, 0.00);
	justify-content: space-between;
	position: relative;
	padding: 11px 17px 11px 64px;
}

.map-section .head .search-input input {
	color: #fff;
}

.map-section .head .search-input .input::placeholder {
	color: var(--white);
	font-size: 17px;
	font-weight: 400;
	line-height: normal;
}

.map-section .head .search-input .search-btn {
	position: absolute;
	background-image: url("../imeges/fluent-search-brown.svg");
	background-repeat: no-repeat;
	width: 26.511px;
	height: 26.526px;
	top: 8px;
	left: 18px;
}

.map-section .head .search-input select {
	color: var(--white);
	font-size: 14px;
	font-weight: 400;
	line-height: normal;
	appearance: none;
	background-image: url("../imeges/select-arrow.svg");
	background-size: 12.559px 6.28px;
	background-repeat: no-repeat;
	background-position: right;
	padding-right: 5px;
	cursor: pointer;
	background-size: auto;
}

.map-section .map {
	position: relative;
	margin-bottom: 18px;
}

.map-section .map .box {
	width: 288px;
	min-height: 342.815px;
	border-radius: 49px;
	background: #FFF;
	box-shadow: 6px 9px 13px -1px rgba(0, 0, 0, 0.22);
	position: absolute;
	left: 13%;
	top: 14%;
}

.map-section .map .box .img-wraper img {
	transform: scale(1.1);
}

.map-section .map .box .img-wraper {
	width: 100%;
	height: 227.444px;
	border-radius: 52px 52px 0px 0px;
	overflow: hidden;
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.map-section .map .box .text h4 {
	color: var(--black);
	font-size: 22px;
	font-weight: 700;
	line-height: 125.1%;
}

.map-section .map .box .text {
	position: relative;
	padding: 10px 28px 10px;
}

.map-section .map .box .text p {
	color: var(--black);
	font-size: 21px;
	font-weight: 400;
	line-height: 141.1%;
}

.map-section .map .box .heart {
	position: absolute;
	right: 10px;
	top: 10px;
}

.map-section .custom-container {
	max-width: 1540px;
}

.map-section .custom-row {
	display: flex;
	flex-wrap: wrap;
	column-gap: 50px;
	margin-bottom: 90px;
}

.map-section .head-bottom {
	border-bottom: 1px solid #BB9D50;
	padding-bottom: 16px;
	margin-bottom: 100px;
}

.map-section .grid-box {
	width: calc(100% / 3 - 38px);
}

.map-section .grid-box p {
	color: var(--white);
	font-size: 19px;
	font-weight: 600;
	line-height: 157.1%;
}

.map-section .grid-box .img-wraper {
	width: 100%;
	height: 464px;
	border-bottom: 1px solid #BB9D50;
	margin-bottom: 16px;
}

.map-section .grid-title {
	display: flex;
	gap: 7px;
	padding-bottom: 30px;
}

.map-section .grid-title h3 {
	color: #FFF;
	font-size: 30px;
	font-weight: 600;
	line-height: 125.1%;
}

.map-section .grid-title h4 {
	color: #BB9D50;
	font-size: 30px;
	font-weight: 400;
	line-height: 125.1%;
}

.map-section .grid-box .text {
	position: relative;
}

.map-section .grid-box .heart {
	position: absolute;
	top: -10px;
	right: 0px;
}

.map-section .img-box .img {
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 523px;
	margin-bottom: 38px;
	box-shadow: 9px 7px 9px 0px rgba(0, 0, 0, 0.20);
}

.map-section .img-box .img img {
	transform: scale(1.1);
}

.map-section .img-box p {
	color: var(--white);
	text-align: justify;
	font-size: 17px;
	font-style: normal;
	font-weight: 400;
	line-height: 160.1%;
	max-width: 1095px;
}

.map-section .img-box .title {
	width: 271px;
	height: 172px;
	position: absolute;
	z-index: 1;
	left: 34px;
	margin: auto;
	top: 0px;
	bottom: 0px;
	background-color: var(--rich-dark-blue);
	padding: 57px 68px;
	transition: all 0.5s ease-in-out;
	transform: translateX(calc(-100% - 34px));
}

.map-section .img-box .title:after {
	content: '';
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 33px;
	transform: translateX(-100%);
	height: 1px;
	background-color: #BB9D50;
	width: 100%;
	margin: auto;
}

.map-section .img-box .img:hover .title {
	transform: translateX(0);
}

.map-section .img-box .title span {
	max-width: 118px;
	color: var(--white);
	font-size: 19px;
	font-style: normal;
	font-weight: 600;
	line-height: 157.1%;
}

.number-img .img-wraper .overlay {
	color: var(--white);
	background-color: var(--rich-dark-blue);
	text-align: center;
	font-size: 32px;
	font-weight: 600;
	line-height: 157.1%;
	position: absolute;
	top: 60px;
	bottom: 56px;
	height: 100%;
	left: 128px;
	max-height: calc(100% - 116px);
	display: flex;
	align-items: center;
	justify-content: center;
	transform: scale(0.9);
	transition: all 0.5s ease-in-out;
	opacity: 0;
	right: 75px;
}

.number-img .img-wraper:hover .overlay {
	transform: scale(1);
	opacity: 1;
}

.slick-dots {
	z-index: 1;
}

.footer-form .title h3 {
	color: var(--rich-dark-blue);
	text-align: center;
	font-size: 30px;
	font-weight: 600;
	line-height: 125.1%;
	margin-bottom: 1px;
}

.footer-form {
	padding-top: 23px;
	padding-bottom: 31px;
	position: relative;
	overflow: hidden;
}

.footer-form .title p {
	color: var(--rich-dark-blue);
	text-align: center;
	font-size: 30px;
	font-weight: 400;
	line-height: 125.1%;
	margin-bottom: 36px;
}

.footer-form .form .input::placeholder {
	color: var(--black);
	font-size: 15px;
	font-weight: 400;
	line-height: 125.1%;
}

.footer-form .form .input-row {
	display: flex;
	gap: 18px;
}

.footer-form .form .input-wraper {
	width: 100%;
	margin-bottom: 9px;
}

.footer-form .form .input {
	border: 1px solid #BB9D50;
	width: 100%;
	color: var(--black);
	font-size: 15px;
	font-weight: 400;
	height: 35px;
	direction: ltr;
	padding: 0px 12px;
}

.footer-form .form {
	max-width: 720px;
	margin: auto;
}

.footer-form .submit {
	margin: auto;
	color: var(--black);
	text-align: center;
	font-size: 14px;
	font-weight: 400;
	line-height: 157.1%;
	background-color: #BB9D50;
	width: 91px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 16px;
}

.footer {
	padding-top: 47px;
	padding-bottom: 20px;
	position: relative;
	background-color: var(--rich-dark-blue);
	margin-top: auto;
}

.footer:after {
	width: 100%;
	height: 1px;
	background-color: #BB9D50;
	content: '';
	position: absolute;
	top: 18px;
	left: 0;
}

.footer .custom-container {
	max-width: 1540px;
}

.footer .custom-container .custom-row {
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid #BB9D50;
	padding-bottom: 20px;
	gap: 10px;
}

.footer .custom-container .custom-row .footer-columns {
	max-width: 1030px;
	width: 100%;
	display: flex;
	margin-top: -2px;
}

.footer .custom-container .custom-row .footer-column {
	width: 100%;
}

.footer .custom-container .custom-row .footer-col-1 {
	max-width: 140px;
}

.footer .custom-container .custom-row .footer-col-2 {
	max-width: 178px;
}

.footer .custom-container .custom-row .footer-col-3 {
	max-width: 205px;
}

.footer .custom-container .custom-row .footer-col-4 {
	max-width: 232px;
}

.footer .custom-container .custom-row .footer-columns h4 {
	color: #BB9D50;
	font-size: 16px;
	font-weight: 700;
	line-height: 251.1%;
	border-bottom: 1px solid #BB9D50;
	margin-bottom: 12px;
	padding-bottom: 3px;
}

.footer .custom-container .custom-row .footer-columns ul li a {
	color: var(--white);
	font-size: 16px;
	font-weight: 400;
	display: flex;
	position: relative;
	padding-bottom: 16px;
}

.footer .custom-container .custom-row .footer-columns ul li:nth-child(1) a img {
	width: 24px;
	height: 24px;
}

.footer .custom-container .custom-row .footer-columns ul li:nth-child(2) a img {
	width: 19px;
	height: 19px;
}

.footer .custom-container .custom-row .footer-columns ul li:nth-child(3) a img {
	width: 24px;
	height: 24px;
}

.footer .custom-container .custom-row .footer-columns ul li a img {
	position: absolute;
	left: -11px;
	object-fit: contain;
	top: 0px;
	width: fit-content;
	transform: translatex(-100%);
}

.footer .custom-container .custom-row .footer-columns p {
	margin-top: 43px;
	color: var(--white);
	font-size: 15px;
	font-weight: 400;
	line-height: 157.1%;
	border-top: 1px solid #BB9D50;
	padding-top: 16px;
}

.footer-logo-wraper {
	max-width: 382px;
	width: 100%;
}

.footer-logo-wraper a {
	width: 200px;
	height: 49px;
	margin-left: auto;
	display: block;
}

.footer-logo-wraper a img {
	object-fit: contain;
}

.footer .form {
	display: flex;
	margin-top: 100px;
	flex-wrap: wrap;
	width: 80%;
	margin-right: auto;
}

.footer .form label {
	width: 100%;
	color: #BB9D50;
	font-size: 16px;
	font-weight: 600;
	line-height: 157.1%;
	margin-bottom: 9px;
}

.footer .form .input {
	background-color: #fff;
	padding: 0px 10px;
	color: var(--black);
	font-size: 15px;
	width: 100%;
	height: 41px;
}

.footer .input::placeholder {
	color: var(--black);
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: 157.1%;
}

.footer .input-wraper {
	width: 100%;
	max-width: calc(100% - 98px)
}

.footer .form .submit {
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--black);
	width: 98px;
	height: 41px;
	background-color: #BB9D50;
	font-weight: 600;
}

.search-toggle {
	border-radius: 27.5px;
	border: 1px solid #BB9D50;
	background: #0C2246;
	width: 396.131px;
	height: 44.646px;
	position: absolute;
	bottom: 185px;
	right: 0px;
	transform: translateX(154px);
	z-index: 9;
	padding: 12px 10px;
	display: flex;
	align-items: center;
	gap: 11px;
	transition: all 0.5s ease-in-out;
}

.search-toggle.show {
	transform: translateX(0);
}

.search-toggle .search-btnn {
	background-image: url("../imeges/fluent-search-brown.svg");
	background-repeat: no-repeat;
	min-width: 21.52px;
	height: 21.533px;
	background-position: center;
	background-size: contain;
}

.search-toggle .search-btn {
	background-image: url("../imeges/fluent-search-brown.svg");
	background-repeat: no-repeat;
	min-width: 21.52px;
	height: 21.533px;
	background-position: center;
	background-size: contain;
}

.search-toggle .input {
	width: 100%;
	color: #fff;
}

.footer-form .search-toggle {
	bottom: 198px;
}

.search-toggle select {
	color: var(--white);
	font-size: 17px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.search-toggle .input::placeholder {
	color: var(--white);
	font-size: 17px;
	font-weight: 700;
	line-height: normal;
}

.properties-section .filter-btn {
	color: var(--dark-blue);
	text-align: center;
	font-size: 17px;
	font-weight: 600;
	line-height: normal;
	min-width: 99px;
	height: 38px;
	border: 1px solid #0C2246;
	background: #FFF;
	transition: all 0.5s ease-in-out;
	padding: 0px 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.properties-section .sort-select .list input,
.filter-content li input {
	position: relative;
	height: 20px;
	width: 20px;
}

.properties-section .sort-select .list input:after,
.filter-content li input:after {
	content: '';
	position: absolute;
	top: 0px;
	border: 1px solid #06162F;
	left: 0px;
	width: 100%;
	height: 100%;
	background-color: #fff;
}

.properties-section .sort-select .list .selected label {
	color: #BB9D50;
}

.properties-section .sort-select .list .selected input:before,
.filter-content li input:checked:before {
	content: '';
	position: absolute;
	top: 3px;
	left: 3px;
	width: 14px;
	height: 14px;
	bottom: 0px;
	background-color: #06162F;
	z-index: 1;
}

.filter-btn:hover {
	color: var(--white);
	background-color: var(--dark-blue);
}

.properties-section .filters {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	gap: 15px;
	padding: 27px 0px 33px;
}

.properties-section .search-field form {
	display: flex;
	gap: 12px;
}

.properties-section .search-field {
	width: 355px;
	border-bottom: 1px solid #BB9D50;
	padding-bottom: 8px;
	position: absolute;
	top: 32px;
}

.properties-section .search-field .input::placeholder {
	color: #06162F;
	font-size: 17px;
	font-weight: 600;
	line-height: normal;
}

.properties-section .search-field .input {
	width: 100%;
}

.properties-section .search-field .search-btn {
	background-image: url("../imeges/fluent-search-brown.svg");
	background-repeat: no-repeat;
	width: 21.52px;
	height: 21.533px;
	background-size: contain;
}

.properties-section {
	position: relative;
	padding-left: 76px;
	margin-bottom: 31px;
}

.properties-section .content-right {
	max-width: 897px;
	width: 100%;
	padding-top: 18px;
}

.properties-section .content-right::-webkit-scrollbar {
	width: 0px;
}

.properties-section.open .content-right {
	max-width: 100%;
	max-height: 100%;
}

.properties-section .content-left {
	max-width: 888px;
	width: 100%;
	min-height: 400px;
	position: sticky;
	transition: 0.3s;
	top: 158px;
	height: calc(100vh - 147px);
}

.properties-section.open .content-left {
	transform: translateX(100%);
	position: absolute;
	height: 100%;
	right: 0px;
}

.properties-section.open .boxes-row .box {
	width: calc(100% / 4 - 21px);
}

.properties-section .btns {
	display: flex;
	gap: 10px;
	position: absolute;
	bottom: 21px;
	right: 16px;
}

.properties-section.open {
	padding-left: 76px;
	padding-bottom: 50px;
	overflow: hidden;
}

.search-list {
	position: absolute;
	width: 100%;
	background-color: #fff;
	z-index: 9;
	padding: 20px;
	visibility: hidden;
	box-shadow: 0px 4px 27px -11px #0f144f8c;
	top: 63px;
	height: 280px;
	border-radius: 0px 0px 20px 20px;
	transition: 0.3s ease-in-out;
	border-top: 1px solid #BB9D50;
}

.search-list .current-location {
	padding-right: 30px;
}

.search-list .current-location:after {
	position: absolute;
	top: 5px;
	right: 0px;
	width: 20px;
	height: 20px;
	background-image: url("../imeges/current-location.png");
	content: '';
	background-size: contain;
}

.search-list.show {
	opacity: 1;
	pointer-events: all;
	visibility: visible;
}

.search-list ul {
	display: none;
}

.search-list ul.show {
	display: block;
}

.search-list .scrool {
	overflow: auto;
	height: 100%;
	max-height: 235px;
	margin-top: 8px;
}

.search-field .tags {
	position: absolute;
	background: #fff;
	z-index: 9;
	right: 26px;
	overflow: auto;
	top: -36px;
	display: flex;
	gap: 4px;
	max-width: 100%;
	visibility: visible;
}

.search-field .tags.bottom {
	position: unset;
}

.search-field .tags::-webkit-scrollbar {
	height: 0px;
}

.search-field .tags .tag {
	background-color: #ddd;
	font-size: 16px;
	padding: 2px 8px;
	display: flex;
}

.search-field .tags .tag button {
	width: 18px;
	height: 23px;
	color: #000;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 10px;
}

.search-list .scrool::-webkit-scrollbar {
	width: 8px;
	border-radius: 50px;
	background-color: #ddd;
}

.search-list .scrool::-webkit-scrollbar-thumb {
	width: 8px;
	border-radius: 50px;
	background-color: #06162F;
}

.search-list .more {
	display: none;
}

.search-list a {
	font-size: 18px;
	color: #06162F;
	position: relative;
}

.properties-section.open .btns {
	bottom: -0px;
	right: 80px;
}

.properties-section .btns .button {
	min-width: 118.613px;
	height: 38px;
	display: flex;
	align-items: center;
	border: 1px solid #0C2246;
	background: var(--white);
	gap: 12px;
	color: var(--dark-blue);
	font-size: 17px;
	font-weight: 600;
	line-height: normal;
	transition: all 0.5s ease-in-out;
	padding: 0px 10px 0px 20px;
}

.properties-section .btns .button.text,
.properties-section .btns .button:hover {
	color: var(--white);
	background-color: var(--rich-dark-blue);
}

.properties-section .btns .button:nth-child(1) img {
	width: 13.718px;
	height: 15.582px;
	object-fit: contain;
	margin-right: 2px;
}


.properties-section .btns .button:nth-child(2) img {
	width: 15.634px;
	height: 13.943px;
	object-fit: contain;
}

.properties-section .custom-row {
	display: flex;
	gap: 20px;
	justify-content: space-between;
}

.properties-section .title h1,
.properties-section .title h3 {
	color: #06162F;
	font-size: 17px;
	font-weight: 600;
	line-height: normal;
	margin-bottom: 8px;
}

.properties-section .title p {
	color: #868686;
	font-size: 17px;
	font-weight: 300;
	line-height: normal;
	margin-bottom: 26px;
}

select option {
	color: #000;
}

.properties-section .sort-select {
	position: relative;
	width: fit-content;
	z-index: 1;
	margin-bottom: 12px;
}

.properties-section .sort-select.show .list {
	opacity: 1;
	pointer-events: all;
	bottom: -14px;
}

.properties-section .sort-select .list {
	background-color: var(--rich-dark-blue);
	width: 215px;
	height: fit-content;
	position: absolute;
	bottom: -20px;
	left: 11px;
	padding: 22px 27px 15px;
	transform: translateY(100%);
	transition: 0.4s ease-in-out;
	opacity: 0;
	pointer-events: none;
	z-index: 9;
}

.wpcf7-form {
	direction: ltr !important;
}

.properties-section .sort-select .list:after {
	position: absolute;
	top: -6px;
	left: 32px;
	background-color: var(--rich-dark-blue);
	width: 12px;
	height: 12px;
	transform: rotate(45deg);
	content: '';
}

.properties-section .sort-select .list li {
	color: var(--white);
	font-size: 16px;
	font-weight: 300;
	line-height: 36px;
	transition: 0.3s;
	cursor: pointer;
}

.properties-section .sort-select .list li:hover {
	color: #BB9D50;
}

.properties-section .sort-select .list li.active {
	color: #BB9D50;
	font-weight: 400;
}

.properties-section .sort-select .select {
	display: flex;
	color: var(--black);
	font-size: 17px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	cursor: pointer;
	gap: 4px;
}

.properties-section .sort-select .select input {
	appearance: none;
}

.properties-section .boxes-row {
	display: flex;
	align-items: flex-start;
	column-gap: 27px;
	row-gap: 47px;
	flex-wrap: wrap;
}

.properties-section .boxes-row .box {
	width: calc(100% / 2 - 14px);
	opacity: 0;
}

.properties-section .boxes-row .box.animated {
	animation: box 1s forwards 1;
}

@keyframes box {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.propertie-box .img-wraper {
	width: 100%;
	height: 271px;
	position: relative;
	overflow: hidden;
}

.propertie-box .tag {
	color: var(--black);
	font-size: 21px;
	font-style: normal;
	font-weight: 700;
	line-height: 125.1%;
	padding: 8px 14px 9px 7px;
	background-color: #BB9D50;
	position: absolute;
	right: 0px;
	top: 17px;
}

.propertie-box .text {
	border: 1px solid #D9D9D9;
	border-top: 0px;
	padding: 13px 11px 7px 25px;
	position: relative;
}

.propertie-box .text h3 {
	color: var(--black);
	font-size: 20px;
	font-weight: 400;
	line-height: 125.1%;
}

.propertie-box .text h4 {
	color: var(--black);
	font-size: 19px;
	font-weight: bold;
	line-height: 125.1%;
	margin-bottom: 26px;
}

.propertie-box .text p {
	color: #868686;
	font-size: 19px;
	font-weight: 400;
	line-height: 125.1%;
}

.propertie-box .view {
	display: flex;
	gap: 18px;
	align-items: center;
}

.propertie-box .view span {
	display: flex;
	gap: 8px;
	align-items: center;
	color: #BB9D50;
	font-weight: bold;
}

.propertie-box .view img {
	width: 18px;
	height: 11px;
	object-fit: contain;
}

.propertie-box .view a {
	color: var(--black);
	font-size: 13px;
	font-weight: 700;
	line-height: 125.1%;
	margin-left: auto;
}

.propertie-box .heart {
	position: absolute;
	right: 14px;
	top: 11px;
}

.propertie-box .label {
	position: absolute;
	width: 194.944px;
	height: 112.676px;
	transform: rotate(-38.02deg);
	top: -40px;
	left: -55px;
	align-items: center;
	display: flex;
	background-color: #C10000;
	justify-content: center;
	flex-direction: column;
}

.propertie-box .label img {
	width: auto;
	height: auto;
	transform: rotate(36deg);
	margin-top: 33px;
	margin-right: 35px;
}

.propertie-box .label span {
	color: var(--white);
	text-align: center;
	font-size: 25px;
	font-weight: 700;
	line-height: normal;
	transform: rotate(0deg) translate(-13px, -8px);
}

.filter-content {
	position: absolute;
	width: 600px;
	min-height: 200px;
	background-color: var(--rich-dark-blue);
	top: 60px;
	left: 0px;
	padding: 20px;
	transform: translateX(-19%);
	transition: all 0.5s ease-in-out;
	opacity: 0;
	pointer-events: none;
}

.show .filter-content {
	opacity: 1;
	pointer-events: all;
	top: 52px;
}

.filter-content:after {
	position: absolute;
	top: -6px;
	left: 140px;
	background-color: var(--rich-dark-blue);
	width: 12px;
	height: 12px;
	transform: rotate(45deg);
	content: '';
}

.filter-content h3 {
	color: var(--white);
	font-size: 22px;
	font-weight: 500;
	margin-bottom: 30px;
	text-transform: capitalize;
}

.filter {
	position: relative;
	z-index: 9;
}

.price-range {
	width: auto;
	height: 2px;
	border: none;
	margin: 0px 10px;
}

.price-range-wraper input::placeholder {
	color: var(--white);
	font-size: 18px;
	text-transform: capitalize;
}

.price-range-wraper .values {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 20px;
}

.price-range .ui-slider-handle {
	width: 24px;
	height: 24px;
	background-color: #BB9D50;
	cursor: pointer;
	border: none;
	top: -11px;
	outline: none;
	border-radius: 0px;
}

.price-range .ui-slider-range {
	background-color: #BB9D50;

}

.min-price,
.max-price {
	display: inline-block;
	width: 70px;
	text-align: center;
	color: #FFF;
}

.filter-content .btns {
	display: flex;
	align-items: center;
	margin-top: auto;
	gap: 12px;
	padding-top: 20px;
	position: unset;
}

.btns .apply {
	padding: 4px 22px;
	border: 1px solid #BB9D50;
	color: var(--white);
	font-size: 16px;
	font-weight: 400;
	height: 38px;
	display: flex;
	align-items: center;
	text-transform: capitalize;
	transition: all 0.5s ease-in-out;
}

.filter-content .btns .apply:hover {
	background-color: #BB9D50;
}

.filter-content .btns .clear {
	color: var(--white);
	font-size: 16px;
	font-weight: 500;
	padding: 4px 22px;
	text-transform: capitalize;
}

.propertie-in-banner {
	background-image: url("../imeges/properties-in-banner.svg");
	background-attachment: fixed;
	/*height: 382px;*/
	height: 0;
	position: relative;
}

.propertie-in-banner .content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: absolute;
	width: 100%;
	bottom: 11px;
}

.propertie-in-section {
	overflow: hidden;
}

.propertie-in-section .custom-container {
	max-width: 1540px;
	position: relative;
	height: 100%;
}

.propertie-in-banner .button {
	min-width: 118.613px;
	height: 38px;
	display: flex;
	align-items: center;
	gap: 12px;
	background-color: var(--white);
	padding: 0px 12px;
	border: 1px solid #0C2246;
	color: #06162F;
	text-align: center;
	font-size: 17px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	justify-content: space-evenly;
	transition: all 0.5s ease-in-out;
}

.propertie-in-banner .button:hover {
	background-color: var(--dark-blue);
	color: var(--white);
}

.propertie-in-banner p {
	color: var(--white);
	font-size: 21px;
	font-weight: 700;
	line-height: 37px;
}

.propertie-in-banner .button:nth-child(1) img {
	width: 16px;
	height: 16px;
	object-fit: contain;
}

.propertie-in-banner .button:nth-child(2) {
	padding-right: 24px;
}

.propertie-in-banner .button:nth-child(2) img {
	width: 14px;
	height: 13px;
	object-fit: contain;
}

.propertie-in-banner .btns {
	display: flex;
	align-items: center;
	gap: 10px;
}

.btns-list {
	display: flex;
	padding-top: 17px;
	padding-bottom: 16px;
	justify-content: space-between;
	border-bottom: 1px solid #BB9D50;
	margin-bottom: 29px;
}

.btns-list .btns {
	display: flex;
	align-items: center;
	gap: 8px;
}

.btns-list .btns .btn-wraper {
	position: relative;
}

.btns-list .btns .btn-wraper.show ul {
	opacity: 1;
	pointer-events: all;
}

.btns-list .btns .btn-wraper ul {
	position: absolute;
	top: 40px;
	left: 0px;
	background-color: var(--rich-dark-blue);
	width: 200px;
	padding: 20px;
	opacity: 0;
	pointer-events: none;
	transition: all 0.5s ease-in-out;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.btns-list .btns .btn-wraper ul a {
	color: #fff;
	font-size: 18px;
	text-transform: capitalize;
}

.btns-list .btns .btn-wraper ul li {
	width: 48%;
}

.btns-list .btns .button {
	height: 38px;
	display: flex;
	align-items: center;
	background-color: var(--white);
	border: 1px solid #0C2246;
	color: #06162F;
	text-align: center;
	font-size: 17px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	justify-content: space-evenly;
	transition: all 0.5s ease-in-out;
}

.btns-list .btns .button:hover {
	background-color: var(--dark-blue);
	color: var(--white);
}

.propertie-in-banner .button img,
.btns-list .btns .button img {
	transition: all 0.5s ease-in-out;
}

.properties-section.open .btns .button.text img {
	filter: invert(87%) sepia(57%) saturate(187%) hue-rotate(327deg) brightness(148%) contrast(134%);
	width: 19.718px;
	height: 20.582px;
}

.properties-section.open .btns .map-btn.text img {
	content: url("../imeges/footer-map.svg");
}

.properties-section .btns .button:hover img,
.propertie-in-banner .button:hover img,
.btns-list .btns .button:hover img {
	filter: invert(87%) sepia(20%) saturate(187%) hue-rotate(327deg) brightness(120%) contrast(134%);
}

.btns-list .btns .button.share {
	padding: 0px 33px 0px 16px;
	gap: 19px;
}

.btns-list .btns .button.heart {
	padding: 0px 20px 0px 10px;
	gap: 12px;
}

.btns-list .btns .button.print {
	padding: 0px 39px 0px 20px;
	gap: 17px;
}

.btns-list .btns .button.share img {
	width: 22px;
	height: 26px;
}

.btns-list .btns .button.heart img {
	width: 15.634px;
	height: 13.943px;
	object-fit: contain;
}

.btns-list .content-left {
	display: flex;
	gap: 0px;
	align-items: center;
}

.btns-list .btns .button.print img {
	width: 22px;
	height: 22px;
}

.btns-list .back {
	position: relative;
	color: var(--black);
	font-size: 17px;
	font-weight: 600;
	line-height: normal;
	margin-right: 60px;
}

.btns-list .back:after {
	position: absolute;
	top: 0px;
	bottom: 0px;
	right: -33px;
	background-image: url("../imeges/back-arrow.svg");
	width: 25px;
	height: 8px;
	content: '';
	margin: auto;
	transition: all 0.5s ease-in-out;
	transform: rotateY(180deg);
}

.btns-list .back:hover:after {
	right: -40px;
}

.btns-list .content-left p {
	color: #BB9D50;
	font-size: 18px;
	font-weight: 400;
	line-height: 37px;
	padding-left: 5px;
}

.btns-list .content-left p:last-of-type {
	padding-right: 50px;
}

.video-content {
	display: flex;
	justify-content: space-between;
}

.video-content .text {
	max-width: 619px;
	width: 100%;
	padding-top: 0px;
}

.video-content .text h1,
.video-content .text h3 {
	color: #0C2246;
	font-size: 30px;
	font-weight: 700;
	line-height: 39px;
	max-width: 570px;
	margin-bottom: 20px;
}

.video-content .text ul {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 25px 0px 25px;
	border-top: 1px solid #BB9D50;
}

.video-content .text ul li:nth-child(1) {
	margin-right: 15px;
}

.video-content .text ul li:nth-child(3) {
	margin-right: 20px;
}

.video-content .text ul:last-of-type {
	border-bottom: 1px solid #BB9D50;
	margin-bottom: 40px;
}

.video-content .text ul li {
	max-width: 140px;
	display: flex;
	flex-direction: column;
	width: 100%;
	color: var(--black);
	line-height: 125.1%;
	font-size: 20px;
}

.video-content .text ul li strong {
	font-weight: 700;
}

.video-content .text p {
	color: #06162F;
	font-size: 19px;
	font-style: normal;
	font-weight: 400;
	line-height: 34px;
	max-width: 559px;
	margin-bottom: 30px;
}

.video-content .img-wraper {
	width: 642px;
	height: 413px;
	position: relative;
	margin-bottom: 31px;
	margin-left: auto;
}

.video-content .img-wraper .play {
	position: absolute;
	top: 0px;
	left: 0px;
	margin: auto;
	right: 0px;
	bottom: 0px;
	width: 153px;
	height: 86px;
}

.video-content .content-left {
	max-width: 745px;
	width: 100%;
}

.video-content .content-left .slder-content:after {
	background-color: var(--rich-dark-blue);
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100vw;
	height: 100%;
	content: '';
	z-index: -1;
}

.slder-content {
	position: relative;
	padding: 38px 0px 22px 26px;
	background-color: var(--rich-dark-blue);
}

.slder-content .video-slider {
	width: fit-content;
	margin: auto !important;
	margin-bottom: 28px !important;
	right: -31px;
}

.slder-content .slick-arrow:before {
	display: none;
}

.slder-content .video-slider .slide {
	margin: 0px 8px;
	height: 72px;
}

.slder-content .video-slider .slide a {
	height: 100%;
}

.slder-content .slick-list {
	max-width: 434px;
	margin: 0px -8px;
}

.slder-content .slick-prev {
	transform: rotate(180deg);
	left: -38px;
}

.slder-content .slick-next {
	top: 27px;
	right: -44px;
}

.slder-content .slick-arrow:after {
	position: absolute;
	top: 0px;
	content: ">";
	color: #BB9D50;
	font-size: 30px;
	font-style: normal;
	font-weight: 300;
	line-height: 39px;
}

.slder-content hr {
	margin: 0px;
	opacity: 1;
	border-color: #BB9D50;
}

.slder-content .profile-btn .img {
	width: 135px;
	height: 101px;
}

.slder-content .profile-btn {
	display: flex;
	gap: 34px;
	padding-top: 28px;
	padding-left: 156px;
}

.slder-content .profile-btn h4 {
	color: var(--white);
	font-size: 30px;
	font-weight: 700;
	line-height: 39px;
	margin-bottom: 7px;
	align-items: center;
	gap: 6px;
}

.slder-content .profile-btn h4 sub {
	font-size: 22px;
	font-weight: 400;
	position: unset;
	padding-left: 10px;
}

.text-img {
	background-color: var(--rich-dark-blue);
	padding: 80px 0px 60px;
	margin-top: 64px;
}

.text-img h3 {
	color: var(--white);
	font-size: 22px;
	font-weight: 700;
	line-height: 125.1%;
	margin-bottom: 37px;
}

.text-img .custom-row {
	display: flex;
	justify-content: space-between;
	gap: 20px;
}

.text-img .text {
	max-width: 668px;
	padding-top: 11px;
}

.text-img p {
	color: var(--white);
	font-size: 18px;
	font-weight: 400;
	margin-bottom: 26px;
	line-height: 148.1%;
}

.text-img p a {
	display: initial;
	color: var(--white);
	text-decoration: underline;
}

.text-img .map {
	width: 639px;
	height: 362px;
}

.additional-properties {
	padding-top: 44px;
	padding-right: 33px;
	margin-bottom: 54px;
}

.additional-properties h2 {
	color: var(--black);
	text-align: center;
	font-size: 22px;
	font-weight: 700;
	line-height: 125.1%;
	margin-bottom: 40px;
}

.additional-properties .custom-row {
	display: flex;
	gap: 23px;
}

.additional-properties .propertie-box {
	width: calc(100% / 2 - 15px);
}

.additional-properties .map {
	max-width: 964px;
	width: 100%;
	min-height: 400px;
}

.additional-properties .boxes-row {
	max-width: 964px;
	width: 100%;
	column-gap: 29px;
	row-gap: 50px;
	display: flex;
	flex-wrap: wrap;
}

.contact-section .form {
	max-width: 716px;
	width: 100%;
	padding-top: 50px;
}

.contact-section {
	position: relative;
	margin-top: 52px;
	overflow: hidden;
}

.contact-section .custom-container {
	max-width: 1540px;
}

.contact-section .content-left {
	position: relative;
}

.contact-section .content-left:after {
	position: absolute;
	top: 74px;
	bottom: 44px;
	background-color: var(--rich-dark-blue);
	width: 100vw;
	content: '';
	z-index: -1;
}

.contact-section .form .title h1,
.contact-section .form .title h3 {
	color: var(--rich-dark-blue);
	font-size: 44px;
	font-weight: 600;
	line-height: 125.1%;
	margin-bottom: -3px;
}

.contact-section .content-left:after {
	right: auto;
	left: 100%;
}

.contact-section .form .title p {
	color: var(--rich-dark-blue);
	font-size: 26px;
	font-weight: 400;
	line-height: 125.1%;
	margin-bottom: 26px;
}

.contact-section .form .input-row {
	display: flex;
	gap: 18px;
}

.contact-section .form .input-wraper {
	width: 100%;
	margin-bottom: 9px;
}

.contact-section .form .input {
	border: 1px solid #BB9D50;
	width: 100%;
	color: var(--black);
	font-size: 15px;
	font-weight: 400;
	height: 35px;
	padding: 0px 12px;
}

.contact-section .form .input::placeholder {
	color: var(--black);
	font-size: 15px;
	font-weight: 400;
	line-height: 125.1%;
}

.contact-section .custom-row {
	display: flex;
	gap: 41px;
	margin-bottom: 110px;
}

.contact-section .form .submit {
	margin-left: auto;
	color: var(--black);
	text-align: center;
	font-size: 14px;
	font-weight: 400;
	line-height: 157.1%;
	background-color: #BB9D50;
	width: 91px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 16px;
}

.contact-section .content-left .img-wraper {
	max-width: 653px;
	width: 100%;
	height: 406px;
	transition: all 0.5s ease-in-out;
	position: relative;
	z-index: 1;
}

.contact-section .img-wraper .overlay {
	width: 325px;
	height: 234px;
	position: absolute;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	margin: auto;
	padding: 31px 80px;
}

.contact-section .img-wraper .img {
	position: relative;
	z-index: -1;
}

.contact-section .img-wraper .overlay:after {
	position: absolute;
	top: 0px;
	left: 0px;
	content: '';
	height: 100%;
	width: 100%;
	background: var(--rich-dark-blue);
	mix-blend-mode: multiply;
	z-index: -1;
}

.contact-section .img-wraper .overlay h4 {
	color: #BB9D50;
	font-size: 16px;
	font-weight: 700;
	line-height: 251.1%;
	margin-bottom: 12px;
	padding-bottom: 3px;
}

.contact-section .img-wraper .overlay ul li a {
	color: var(--white);
	font-size: 16px;
	font-weight: 400;
	display: flex;
	position: relative;
	padding-bottom: 16px;
}

.contact-section .img-wraper .overlay ul li:nth-child(1) a img {
	width: 24px;
	height: 24px;
}

.contact-section .img-wraper .overlay ul li a img {
	position: absolute;
	left: -15px;
	object-fit: contain;
	top: 0px;
	width: fit-content;
	transform: translatex(-100%);
}

.contact-section .img-wraper .overlay ul li:nth-child(2) a img {
	width: 19px;
	height: 19px;
}

.contact-section .img-wraper .overlay ul li:nth-child(3) a img {
	width: 24px;
	height: 24px;
}

.contact-section .map {
	height: 772px;
}

.agent-section .agent .img-wraper {
	width: 540px;
	height: 355px;
	padding-right: 63px;
	background-color: var(--rich-dark-blue);
}

.agent-section .custom-container {
	max-width: 1540px;
}

.agent-section .agent {
	padding-bottom: 74px;
	margin-bottom: 74px;
	padding-right: 84px;
	display: flex;
	justify-content: end;
	gap: 123px;
	border-bottom: 1px solid #BB9D50;
}

.agent-section .agent .text {
	display: flex;
	width: 529px;
	flex-direction: column;
}

.agent-section .agent .text h3 {
	display: block;
	color: var(--rich-dark-blue);
	font-size: 30px;
	align-items: center;
	font-weight: 700;
	gap: 12px;
	line-height: 39px;
	margin-bottom: 10px;
	/*flex-direction: row-reverse;*/
	/*display: flex;*/
}

.agent-section .agent .text h3 sub {
	position: unset;
	font-size: 22px;
	font-weight: 400;
	padding-left: 12px;
}

.agent-section .agent .text p {
	color: var(--black);
	font-size: 19px;
	font-weight: 600;
	line-height: 32px;
}

.agent-section .agent .text a {
	color: var(--black);
	font-size: 20px;
	font-weight: 600;
	line-height: 41px;
	margin-bottom: -2px;
	display: flex;
	gap: 5px;
	margin-top: 20px;
}

.agent-section .agent .text ul {
	display: flex;
	flex-wrap: wrap;
	margin-top: 15px;
	margin-bottom: 15px;
}

.agent-section .agent .text ul li:nth-child(odd) {
	max-width: 217px;
	width: 100%;
}

.agent-section .agent .text ul strong {
	color: #BB9D50;
	font-weight: 600;
}

.agent-section .title {
	display: flex;
	padding-bottom: 12px;
	gap: 6px;
	max-width: 575px;
	border-bottom: 1px solid #BB9D50;
	justify-content: end;
	margin-bottom: 78px;
}

.agent-section .title h1 {
	color: var(--rich-dark-blue);
	font-size: 30px;
	font-weight: 600;
	line-height: 125.1%;
}

.agent-section {
	padding-top: 35px;
	padding-bottom: 25px;
}

.agent-section .agent:last-of-type {
	margin: 0px;
}

.agent-section .title h2 {
	color: #BB9D50;
	font-size: 30px;
	font-weight: 400;
	line-height: 125.1%;
}

.agent-section .cm-btn-brown {
	margin-top: auto;
}

.qa-section .accordion {
	display: flex;
	flex-wrap: wrap;
	column-gap: 152px;
	row-gap: 29px;
	margin-bottom: 42px;
}

.qa-section {
	padding-top: 55px;
}

.qa-section .title {
	display: flex;
	gap: 6px;
	margin-bottom: 40px;
}

.qa-section .title h1 {
	color: var(--rich-dark-blue);
	font-size: 30px;
	font-weight: 600;
	line-height: 125.1%;
}

.qa-section .title h2 {
	color: #BB9D50;
	font-size: 30px;
	font-weight: 400;
	line-height: 125.1%;
}

.qa-section .accordion-item {
	box-shadow: none !important;
	background-color: transparent !important;
	width: calc(100% / 2 - 76px);
	border: none !important;
}

.qa-section .accordion .accordion-button {
	padding: 13px 10px 15px 26px;
	box-shadow: none !important;
	background-color: transparent !important;
	color: var(--black);
	font-size: 20px;
	font-weight: 600;
	line-height: 125.1%;
	border: 1px solid #000;
	text-align: left;
}

.qa-section .accordion .accordion-button:after {
	color: #0C2246;
	content: "+";
	font-size: 30px;
	font-weight: 400;
	display: flex;
	line-height: 125.1%;
	background-image: unset;
	align-items: center;
	transform: unset;
	margin-left: auto;
	margin-right: 0px;
}

.accordion-button[aria-expanded="true"] {
	border-bottom: 0px !important;
}

.accordion-button[aria-expanded="true"]::after {
	content: "-" !important;
}

.qa-section .qa.custom-container {
	max-width: 1394px;
}

.qa-section .accordion-body {
	border: 1px solid #000;
	border-top: none;
	padding: 10px 26px 28px;
}

.qa-section .accordion-body p {
	color: var(--black);
	font-size: 18px;
	font-weight: 400;
	line-height: 125.1%;
}

.cta .content {
	background-color: var(--rich-dark-blue);
	padding-top: 54px;
	padding-bottom: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	margin-bottom: 25px;
	position: relative;
}

.cta .content:after {
	position: absolute;
	bottom: -18px;
	right: 87px;
	left: 60px;
	height: 1px;
	background-color: #BB9D50;
	content: '';
}

.cta img {
	height: 489px;
	margin-bottom: -1px;
}

.cta .input-wraper {
	max-width: 1069px;
	width: 100%;
	margin: auto;
}

.cta .content .input-wraper .input {
	border: 1px solid #BB9D50;
	height: 60px;
	width: 100%;
	color: #fff;
	padding: 0px 20px;
}

.cta .content h3 {
	color: var(--white);
	text-align: center;
	font-size: 30px;
	font-weight: 400;
	line-height: 125.1%;
	margin-bottom: 20px;
}

.cta .content form {
	width: 100%;
}

.cta .content form .submit {
	margin: auto;
	color: var(--black);
	text-align: center;
	font-size: 14px;
	font-weight: 400;
	line-height: 157.1%;
	background-color: #BB9D50;
	width: 91px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 38px;
}

.media-section .banner {
	position: relative;
	height: 468px;
	margin-bottom: 94px;
}

.media-section .banner:after {
	position: absolute;
	background: rgba(12, 34, 70, 0.20);
	background-blend-mode: multiply;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	content: '';
}

.media-costs .cost .text h3 {
	color: var(--rich-dark-blue);
	font-size: 30px;
	font-weight: 700;
	line-height: 39px;
	padding-bottom: 12px;
	margin-right: 28px;
	margin-bottom: 13px;
	border-bottom: 1px solid #BB9D50;
}

.media-costs .cost .text p {
	color: var(--black);
	font-size: 18px;
	font-weight: 400;
	line-height: 34px;
}

.media-costs .cost .text {
	max-width: 559px;
	display: flex;
	flex-direction: column;
	width: 100%;
}

.media-costs .cost {
	display: flex;
	gap: 48px;
	justify-content: space-between;
	padding-bottom: 50px;
	margin-bottom: 0px;
	border-bottom: 1px solid #BB9D50;
}

.media-costs .cost:last-of-type {
	margin: 0;
}

.media-costs .cost.first-img {
	justify-content: flex-start;
}

.media-costs .cost .img-wraper {
	position: relative;
}

.media-section {
	overflow: hidden;
	padding-bottom: 9px;
}

.media-costs .cost .img-wraper .img {
	width: 681px;
	height: 369px;
	transition: all 0.5s ease-in-out;
}

.media-costs .cost.first-text .img-wraper:after {
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: -27px;
	background-color: var(--rich-dark-blue);
	content: '';
	width: 100vw;
	height: 217px;
	z-index: -1;
	margin-top: 80px;
}

.media-costs .cost.first-img .img-wraper:after {
	position: absolute;
	top: 104px;
	bottom: 0px;
	left: 0px;
	background-color: var(--rich-dark-blue);
	content: '';
	width: 100%;
	height: 237px;
	z-index: -1;
}

.media-costs .cost.first-text .text {
	padding-top: 65px;
}

.media-costs .cost.first-img .text {
	padding-top: 60px;
}

.media-costs .cost.first-img .img-wraper:before {
	position: absolute;
	top: 80px;
	bottom: 0px;
	right: 0px;
	background-color: var(--rich-dark-blue);
	content: '';
	width: 100%;
	height: 217px;
	z-index: -1;
	transform: translateX(calc(-38% + 64px));
}

.media-costs .cost .cm-btn-brown {
	margin-top: auto;
}

.about-section .banner {
	height: fit-content !important;
	width: 100%;
	background-color: var(--rich-dark-blue);
	padding: 35px 0px;
}

.about-section .banner .img-wraper {
	max-width: 1015px;
	width: 100%;
	height: 527px;
	transform: translatey(37px);
	position: relative;
	margin: auto;
	display: none;
}

.about-section .banner .title {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
	justify-content: center;
	border-bottom: 1px solid #BB9D50;
	padding-bottom: 24px;
	margin-bottom: 12px;
	display: none;
}

.about-section .banner h3 {
	color: var(--white);
	text-align: center;
	font-size: 30px;
	font-weight: 400;
	line-height: 125.1%;
}

.about-section .banner .title h1 {
	color: var(--white);
	font-size: 30px;
	font-weight: 600;
	line-height: 125.1%;
}

.about-section .banner .title h2 {
	color: #BB9D50;
	font-size: 30px;
	font-weight: 400;
	line-height: 125.1%;
}

.about-section .banner .title p {
	color: var(--black);
	font-size: 18px;
	font-weight: 400;
	line-height: 34px;
}

.about-section .banner .img-wraper:after {
	position: absolute;
	background: rgba(12, 34, 70, 0.20);
	background-blend-mode: multiply;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	content: '';
}

.about-section .custom-container {
	max-width: 1435px;
}

.about-section .media-costs {
	padding-top: 203px;
}

.about-section {
	padding-bottom: 25px;
}

.media-costs h2 {
	color: var(--rich-dark-blue);
	font-size: 30px;
	font-weight: 700;
	line-height: 39px;
	margin-bottom: 51px;
}

.about-section .media-costs .cost h3 {
	border: none !important;
}

.about-section .media-costs .cost {
	padding-bottom: 82px;
}

.about-section .media-costs .cost .img-wraper .img {
	height: 467px;
}

.about-text-img {
	display: flex;
	padding-top: 73px;
	justify-content: space-between;
	gap: 20px;
}

.about-text-img p {
	color: var(--black);
	text-align: justify;
	font-size: 17px;
	font-weight: 400;
	line-height: 26px;
}

.about-text-img p a {
	display: initial;
	text-decoration: underline;
}

.about-text-img .text {
	max-width: 572px;
	width: 100%;
	padding-top: 0px;
	flex-direction: column;
	display: flex;
	margin-right: 43px;
	position: relative;
	top: -5px;
}

.about-text-img .text .cm-btn-brown {
	margin-top: auto;
}

.about-text-img .img-wraper {
	width: 632px;
	height: 394px;
}

.about-section .box .counter {
	color: var(--rich-dark-blue);
	font-size: 100px;
	font-weight: 400;
	line-height: 125.1%;
	position: relative;
}

.about-section .box p {
	color: var(--rich-dark-blue);
	font-size: 25px;
	font-weight: 400;
	margin-top: 5px;
}

.counter-content {
	display: flex;
	position: relative;
	justify-content: space-between;
	max-width: 1035px;
	padding: 40px 0px 55px;
	margin: 102px auto 129px;
}

.counter-content:before,
.counter-content:after {
	position: absolute;
	top: 0px;
	left: 0px;
	right: 0px;
	margin: auto;
	height: 1px;
	width: 100%;
	content: '';
	max-width: 795px;
	background-color: #BB9D50;
}

.counter-content .box:nth-child(1) {
	transform: translateX(-41px);
}

.counter-content:before {
	top: auto;
	bottom: 0;
}

.about-section .box .counter:after {
	width: 119px;
	height: 1px;
	content: '';
	background-color: #BB9D50;
	left: -82px;
	bottom: 4px;
	position: absolute;
}

.houses-img .img-wraper {
	width: 720px;
	height: 437px;
	background-color: var(--rich-dark-blue);
	display: flex;
	position: relative;
}

.houses-img .img-wraper img {
	max-width: calc(100% - 61px);
	margin-left: auto;
	border-left: 31px solid #BB9D50;
}

.houses-img .img-wraper .overlay {
	color: var(--white);
	background-color: var(--rich-dark-blue);
	text-align: center;
	font-size: 32px;
	font-weight: 600;
	line-height: 157.1%;
	position: absolute;
	top: 60px;
	bottom: 56px;
	height: 100%;
	left: 156px;
	max-height: calc(100% - 116px);
	display: flex;
	align-items: center;
	justify-content: center;
	transform: scale(0.9);
	transition: all 0.5s ease-in-out;
	opacity: 0;
	right: 75px;
}

.houses-img .img-wraper:after {
	content: '';
	position: absolute;
	bottom: -31px;
	right: 0px;
	width: calc(100% - 93px);
	background-color: #BB9D50;
	height: 1px;
}

.houses-img {
	display: flex;
	gap: 20px;
	justify-content: space-between;
}

.houses-img .img-wraper:hover .overlay {
	transform: scale(1);
	opacity: 1;
}

.houses-img .text {
	max-width: 559px;
	display: flex;
	flex-direction: column;
	width: 100%;
	padding-top: 0px;
	margin-right: 43px;
}

.houses-img .text h3 {
	color: var(--rich-dark-blue);
	font-size: 30px;
	font-weight: 700;
	line-height: 39px;
	padding-bottom: 12px;
	margin-right: 28px;
	margin-bottom: 13px;
	border-bottom: 1px solid #BB9D50;
}

.houses-img .text p {
	color: var(--black);
	font-size: 18px;
	font-weight: 400;
	line-height: 34px;
}

.houses-img .text .cm-btn-black {
	margin-top: auto;
}

.icons-sticky {
	position: fixed;
	right: 0px;
	top: 40%;
	z-index: 9;
	display: flex;
	flex-direction: column;
	gap: 15px;
	transition: all 0.5s ease-in-out;
	opacity: 1;
}

.icons-sticky.show {
	opacity: 1;
	pointer-events: all;
}

.icons-sticky a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 49px;
	height: 49px;
	background-color: var(--rich-dark-blue);
}

.properties-section .radio input {
	position: absolute;
	appearance: none;
}

.properties-section .radio input:checked+label {
	background-color: #06162F !important;
	color: #fff !important;
}

.beds .filter-content {
	width: 220px;
}

.beds .filter-content li label {
	font-size: 18px;
	color: #fff;
	padding: 0px 10px;
	cursor: pointer;
}

.beds .filter-content:after {
	left: 90px;
}

.drop .filter-content {
	width: 543px;
}

.drop .filter-content ul {
	display: flex;
	flex-wrap: wrap;
}
.drop .filter-content ul li{
  width: 33%;
}
.sort-select .list li,
.filter-content li {
	display: flex;
	align-items: center;
}

.sort-select .list label,
.drop .filter-content li label {
	font-size: 16px;
	color: #fff;
	padding: 0px 10px;
	cursor: pointer;
}

.sort-select .list label {
	padding: 0px;
	margin-right: 3px;
}

.drop .filter-content:after {
	left: 90px;
}

.skeleton {
	position: relative;
}

.skeleton:after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	background-color: #e2e5e7;
	background-image: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
	background-size: 40px 100%;
	background-repeat: no-repeat;
	background-position: left -40px top 0;
	-webkit-animation: shine 1s ease infinite;
	animation: shine 1s ease infinite;
	z-index: 9;
	top: 0px;
	left: 0px;
}

@keyframes shine {
	to {
		background-position: right -40px top 0;
	}
}

/*** Custom CSS Added ***/
.wpcf7-form {
	direction: rtl;
}

.wpcf7 input[type="url"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"] {
	direction: rtl;
}

.banner-wraper .slide .description span.img {
	position: relative;
	top: 2px;
}

.footer .wpcf7 form.sent .wpcf7-response-output,
.footer .wpcf7 form.invalid .wpcf7-response-output,
.footer .wpcf7 form.unaccepted .wpcf7-response-output,
.footer .wpcf7 form.payment-required .wpcf7-response-output {
	color: #FFFFFF;
}

.cm-btn-brown span {
	transform: translateX(0px) !important;
}

.properties-section .sort-select .list input:after {
	display: none;
}

.properties-section .sort-select .list input {
	appearance: none;
	visibility: hidden;
	position: unset;
	width: 0;
	height: 0;
}

lite-youtube::before {
	visibility: hidden;
}

lite-youtube {
	height: 413px;
}

lite-youtube>.lty-playbtn {
	left: 45%;
}

.propertie-box .text {
	min-height: 170px;
}

.error404 .general-page .about-text-img p {
	direction: ltr;
	justify-content: end;
	display: flex;
}

.hc-offcanvas-nav.nav-position-right .nav-container {
	right: 0;
	left: auto;
}

.hc-offcanvas-nav li.nav-close {
	display: none;
}

.btns-list .btns .button.whatsapp-color {
	background-color: transparent;
	color: #fff;
}

.header.animated .logo {
	width: 149px;
	height: 40px;
	top: 0px;
}

.header.animated .head-wraper {
	padding: 6px 22px 1px;
}

.properties-section .filters.sticky {
	width: 100%;
	position: fixed;
	z-index: 9;
	animation: sticky 1s forwards 1;
	background: #dddddde0;
	right: 0;
	-webkit-transition: all .5s ease-in-out;
	transition: all .5s ease-in-out;
	padding-bottom: 15px;
}

@keyframes sticky {
	from {
		top: -50%;
	}

	to {
		top: 80px;
	}
}

.sidebar {
	height: 100%;
	width: 340px;
	position: fixed;
	z-index: 999999;
	top: 0;
	right: -100%;
	background-color: #f2f2f2;
	overflow-x: hidden;
	transition: 0.5s;
	padding-top: 60px;
	transition: 0.3s;
}

.main-sidebar-section .logo a {
	padding-right: 0;
}

.main-sidebar-section .form-section .wpcf7-not-valid-tip {
	position: absolute;
	top: 34px;
	left: 0;
}

.sidebar .closebtn {
	position: absolute;
	top: 0;
	left: 0;
	font-size: 36px;
	margin-right: 50px;
}

.main-sidebar-section .title {
	font-size: 26px;
	padding-left: 33px;
	color: #000;
}

.main-sidebar-section .smd a {
	font-size: 20px;
	padding-left: 32px;
	margin-top: 20px;
	color: #000;
}

.sidebar.closeme {
	right: -100%;
	-webkit-transition: all .5s ease-in-out;
	transition: all .5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

.sidebar.openme {
	right: 0;
	-webkit-transition: all .5s ease-in-out;
	transition: all .5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

.main-sidebar-section .form-section input {
	border: 1px solid #000000;
	height: 49px;
	width: 100%;
	border-radius: 0px;
	margin-bottom: 10px;
	padding-left: 12px;
	outline: none;
	direction: ltr;
}

.main-sidebar-section .form-section textarea {
	border: 1px solid #000000;
	height: 120px;
	width: 100%;
	border-radius: 0px;
	margin-bottom: 0px;
	padding-left: 12px;
	outline: none;
	direction: ltr;
}

.height-set {
	min-height: 100px;
}

.modal-header {
	display: block;
}

.modal-header .btn-close {
	right: 20px;
	position: absolute;
	top: 30px;
}

.propertie-in-banner {
	background-position: center !important;
}

.hc-offcanvas-nav li {
	text-align: right;
}

.gm-style .gm-style-iw-c {
	top: 17px !important;
	max-height: fit-content !important;
	padding: 0 !important;
	background: transparent !important;
	overflow: hidden !important;
	box-shadow: none !important;
}

#relatedMap .gm-style .gm-style-iw-d,
#homearchiveMap .gm-style .gm-style-iw-d,
#archiveMap .gm-style .gm-style-iw-d {
	height: 100% !important;
	max-height: 100% !important;
	overflow: hidden !important;
}

.property-box.infoWindowBox .map-section {
	background-color: transparent;
	padding-bottom: 0;
}

.property-box.infoWindowBox .map-section .map .box {
	position: unset;
}

#relatedMap .gm-style .gm-style-iw-d,
#homearchiveMap .gm-style .gm-style-iw-d,
#archiveMap .gm-style .gm-style-iw-d {
	height: 100% !important;
	max-height: 100% !important;
}

.modal-header {
	display: block;
}

.propertie-in-banner {
	background-position: center !important;
}

#homearchiveMap {
	height: 816px;
}

.home-properties-boxes {
	display: none;
}

.map-section .map .box .text p,
.map-section .map .box .text h4 {
	font-family: var(--Assistant);
}

.agent-section .agent .img-wraper img {
	object-fit: contain;
}

.set-inline a {
	color: var(--black);
	font-size: 13px;
	font-weight: 700;
	line-height: 125.1%;
	margin-left: auto;
}

a.saved-props img {
	width: 20px;
	height: 18px;
}

button.close-filter-box {
	position: relative;
	width: 100%;
	display: flex;
}

button.close-filter-box img {
	width: 20px;
	height: 20px;
	background-color: #BB9D50;
	position: absolute;
	top: 0;
	right: 0;
}

.map-section .head .search-input input {
	width: 100%;
}

span.add-space {
	padding-right: 5px;
}

ul.cities-meta li.child label {
	padding-left: 20px;
}

.footer .custom-container .custom-row .footer-col-3 nav {
	width: 80%;
}

.btns-list .content-left .view {
	display: flex;
	align-items: center;
	padding-right: 30px;
}

.btns-list .content-left .view p {
	padding-right: 10px;
}

.btns-list .content-left .view img {
	position: relative;
	top: 2px;
}

.home .slick-next {
	visibility: hidden;
}

.home .slick-next:after {
	left: 0 !important;
	top: 0 !important;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	background-image: url(../imeges/arrow.svg);
	position: absolute;
	width: 22.7px;
	margin: auto;
	right: 0;
	bottom: 0;
	height: 24.8px;
	content: '';
	visibility: visible;
}

.home .slick-next {
	right: 40px;
	top: 58%;
	transform: rotate(180deg);
}

.map-background-image {
	background-image: url("../imeges/map-image.jpg");
	background-size: cover;
	height: 211px;
	background-position: center;
}

.banner-wraper .slide .description .new {
	display: flex;
}

.price-range-wraper .values .max-price {
	order: 2;
}

.price-range-wraper .values .min-price {
	order: 1;
}

.active-state label.active {
	background-color: #06162F !important;
	color: #fff !important;
}

.slder-content .video-slider .slide {
	cursor: pointer;
}

.single-properties .text-img {
	padding: 40px 0px 40px;
}

.single-properties .additional-properties {
	padding-left: 33px;
}

.single-properties .additional-properties .custom-row {
	justify-content: center;
}

.single-properties .additional-properties .boxes-row {
	max-width: 100%;
	flex-wrap: inherit;
	justify-content: center;
}

.header .topbar .content-right .menu-top-menu-english-container {
	order: 2;
}

.header .topbar .content-right a.saved-props {
	order: 1;
}

.video-content .text ul.amnities li {
	display: flex;
	align-items: center;
	gap: 10px;
}

.video-content .text ul.amnities img {
	width: 30px;
	height: 27px;
	object-fit: contain;
}

#menu-top-menu-english li:nth-child(1) {
	order: 2;
}

#menu-top-menu-english li:nth-child(2) {
	order: 3;
}

#menu-top-menu-english li:nth-child(3) {
	order: 4;
}

#menu-top-menu-english li:nth-child(4) {
	order: 5;
}

#menu-top-menu-english li:nth-child(6) {
	order: 1;
}

.short-content-villa {
	height: 68px;
	overflow: hidden;
}

.show-full-content {
	cursor: pointer;
	color: #BB9D50;
}

.single-villa-content-wrapper.activeContent .short-content-villa {
	height: auto;
}

.show-full-content .less-text,
.show-full-content.activeShow .more-text {
	display: none;
}

.show-full-content.activeShow .less-text {
	display: block;
}

.page-template-template-media .media-costs .cost .cm-btn-brown {
	margin-top: 20px;
}

.hc-offcanvas-nav li.wpml-ls-item img {
	width: 10%;
}
.media-section{
	padding-top: 20px;
}
.header-sticky.stick-me .head-wraper {
	padding: 13px 22px 13px;
	transition: 0.3s ease-in-out;
}
.header .logo{
	transition: 0.3s ease-in-out;
}
.header.header-sticky.stick-me .logo{
	width: 200px;
	height: 40px;
	transition: 0.3s ease-in-out;
}
.header.header-sticky .logo img{
	transition: 0.3s ease-in-out;
}
.header.header-sticky.stick-me .logo img{
	object-fit: contain;
	transition: 0.3s ease-in-out;
}
.properties-section .sort-select .select img {
	width: 21px;
	height: 10px;
	object-fit: contain;
	position: relative;
	top: 10px;
}
.video-content .img-wraper img {
	height: 413px;
}
.video-content .img-wraper .slick-next:before {
	position: absolute;
	top: 50%;
	content: ">";
	color: #BB9D50;
	font-size: 30px;
	font-style: normal;
	font-weight: 300;
	line-height: 39px;
	left: 20px;
}
.video-content .img-wraper .slick-prev:before {
	position: absolute;
	top: 50%;
	content: ">";
	color: #BB9D50;
	font-size: 30px;
	font-style: normal;
	font-weight: 300;
	line-height: 39px;
	right: 20px;
	transform: rotate(180deg);
}