@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Assistant:wght@200..800&display=swap");

:root {
	--black: #000;
	--white: #fff;
	--golden: #ccab6e;
	--coc_grown: #b0a08c;
	--light_cream: #f4eddf;
	--silver: #f2f2f2;
	/* --poppin: "Poppins", sans-serif; */
	--poppin: "Assistant", sans-serif;
	--inter: "Inter", sans-serif;
}

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

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

img {
	user-select: none;
}

img:hover {
	opacity: 1;
}

a {
	text-decoration: none;
}

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

button {
	background-color: transparent;
	outline: none;
	border: none;
}

body {
	min-height: 100vh;
	text-align: right;
	scroll-behavior: smooth;
	background-color: var(--white);
	font-family: "Assistant", sans-serif !important;
	overflow-x: clip;
	direction: rtl;
	padding-top: 0 !important;
}

.row {
	padding: 0;
	margin: 0;
}

h1 {
	color: var(--black);
	text-align: center;
	font-size: 40px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	font-family: "Assistant", sans-serif !important;
}

h2 {
	color: var(--black);
	font-size: 44px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	font-family: "Assistant", sans-serif !important;
}

h3 {
	color: var(--black);
	font-size: 32px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	font-family: "Assistant", sans-serif !important;
}

h4 {
	color: var(--black);
	font-family: "Assistant", sans-serif !important;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}

h5,
h6,
p strong,
a,
span,
input,
textarea,
input::placeholder,
textarea::placeholder,
button,
label {
	font-family: "Assistant", sans-serif !important;
}

p {
	color: var(--black);
	font-family: "Assistant", sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	font-family: "Assistant", sans-serif !important;
}

/***** COMPONENT START *****/

/* property cards */
.new_projects_cards .project_card {
	max-width: 507px;
	height: 340px;
	position: relative;
}

.new_projects_cards .project_card .hover_content {
	position: absolute;
	bottom: 0;
	width: 93%;
	min-height: 77px;

	border-radius: 32px 0px 0px 0px;
	background: rgba(0, 0, 0, 0.73);
	padding: 15px 15px;

	transition: all 0.5s;
	opacity: 0;
	visibility: hidden;
}

.new_projects_cards .project_card .proj_content {
	width: 100%;
	height: 100%;
}

.new_projects_cards .project_card .proj_content a {
	height: 100%;
	margin-top: 0;
	width: 100%;
}

.new_projects_cards .project_card .proj_content > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.new_projects_cards .project_card .proj_content .wish_list {
	max-width: 28px;
	width: 100%;
	height: 28px;
	border-radius: 100px;
	background-color: var(--white);
	position: absolute;
	top: 13px;
	left: 20px;
	z-index: 1;

	display: flex;
	align-items: center;
	justify-content: center;
	/* padding: 6px 5px; */
}

.new_projects_cards .project_card .proj_content .wish_list img,
.luxury_pro_cards .prop_card .top_content .wish_list img {
	object-fit: contain;
	width: 14px;
	height: 13px;
}

.new_projects_cards .project_card:hover .hover_content {
	opacity: 1;
	visibility: visible;
}

.new_projects_cards .project_card .hover_content p,
.new_projects_cards .project_card .hover_content h4,
.luxury_pro_cards .prop_card .hover_content h4 {
	color: var(--white);
}

.new_projects_cards .project_card .hover_content .flx {
	display: flex;
	align-items: end;
	justify-content: space-between;
}

.new_projects_cards .more_proj_hidden {
	position: relative;
	height: 85px;
	overflow: hidden;
	transition: height 1s ease;
	pointer-events: none;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
	margin-top: 25px;
}

.new_projects_cards .more_proj_hidden::before {
	content: "";
	position: absolute;
	display: inline-block;
	width: 100%;
	height: 100%;
	background: linear-gradient(0deg, #fff 4.56%, rgba(255, 255, 255, 0) 91.8%);
	top: 0;
	z-index: 2;
}

.new_projects_cards .more_proj_hidden.active {
	pointer-events: auto;
}

.new_projects_cards .more_proj_hidden::before {
	content: "";
	position: absolute;
	display: inline-block;
	width: 100%;
	height: 100%;
	background: linear-gradient(0deg, #fff 4.56%, rgba(255, 255, 255, 0) 91.8%);
	top: 0;
	z-index: 2;
	transition: all 1s;
}

.new_projects_cards .more_proj_hidden.active::before {
	display: none;
}

.new_projects_cards .see_more_proj img {
	transition: all 1s;
}

.new_projects_cards .see_more_proj.rotate img {
	transform: rotate(180deg);
}

.new_projects_cards .see_more_proj {
	position: absolute;
	bottom: -25px;
	z-index: 5;
	right: 0;
	left: 0;
}

.new_projects_cards .see_more_proj.rotate {
	position: relative;
	top: 25px;
}

/* more project btn */
.more_proj_btn {
	display: flex !important;
	flex-direction: column;
	gap: 15px;
	align-items: center;
	width: 129px;
	margin: auto;
}

.load-more-area .load-more-area-btn {
	display: inline-flex;
	max-width: 129px;
	width: 100%;
	height: 52px;
	justify-content: center;
	align-items: center;

	color: var(--black);
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;

	border: 2px solid #000;
	background: var(--white);
	font-family: "Assistant", sans-serif !important;
}

.load-more-area {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 15px;
	position: relative;
	top: -63px;
	z-index: 5;
}

/* JERUS LUXURY PROPERTIES  */

.luxury_pro_cards .prop_card {
	max-width: 507px;
	height: 340px;
	position: relative;
}

.luxury_pro_cards .prop_content {
	height: 100%;
}

.luxury_pro_cards .prop_card .prop_content > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.luxury_pro_cards .prop_card .top_content .wish_list {
	max-width: 28px;
	width: 100%;
	height: 28px;
	background-color: var(--white);
	border-radius: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
}

.luxury_pro_cards .prop_card .top_content {
	background-color: var(--coc_grown);
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 15px 20px;
	min-height: 58px;

	position: absolute;
	top: 0;
	left: 0;
}

.luxury_pro_cards .prop_card .top_content p {
	color: var(--white);
}

.luxury_pro_cards .prop_card .hover_content {
	position: absolute;
	bottom: 0;
	min-height: 77px;

	border-radius: 32px 0px 0px 0px;
	background: rgba(0, 0, 0, 0.73);
	width: 93%;
	padding: 15px 15px;
	transition: all 0.5s;
	opacity: 0;
	visibility: hidden;
}

.luxury_pro_cards .prop_card .hover_content .flx {
	display: flex;
	align-items: end;
	gap: 15px;
	justify-content: space-between;
}

.luxury_pro_cards .prop_card:hover .hover_content {
	opacity: 1;
	visibility: visible;
}

.luxury_pro_cards .prop_card .hover_content p {
	color: var(--white);
}

.luxury_pro_cards .more_prop_hidden {
	position: relative;
	height: 85px;
	overflow: hidden;
	transition: height 1s ease;
	pointer-events: none;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
	margin-top: 25px;
}

.luxury_pro_cards .more_prop_hidden::before {
	content: "";
	position: absolute;
	display: inline-block;
	width: 100%;
	height: 100%;
	background: linear-gradient(0deg, #fff 4.56%, rgba(255, 255, 255, 0) 91.8%);
	top: 0;
	z-index: 2;
}

.luxury_pro_cards .more_prop_hidden.active {
	pointer-events: auto;
}

.luxury_pro_cards .more_prop_hidden::before {
	content: "";
	position: absolute;
	display: inline-block;
	width: 100%;
	height: 100%;
	background: linear-gradient(0deg, #fff 4.56%, rgba(255, 255, 255, 0) 91.8%);
	top: 0;
	z-index: 2;
	transition: all 1s;
}

.luxury_pro_cards .more_prop_hidden.active::before {
	display: none;
}

.luxury_pro_cards .see_more_proj img {
	transition: all 1s;
}

.luxury_pro_cards .see_more_proj.rotate img {
	transform: rotate(180deg);
}

.luxury_pro_cards .see_more_proj.rotate {
	top: 25px;
}

/* ARROW HOVER BUTTON */

.btn_arrow_hover span {
	display: inline-block;
	width: 86px;
	height: 86px;
	background-color: rgba(204, 171, 110, 0.53);
	border-radius: 100%;
	transition: all 1s;
}

.btn_arrow_hover {
	display: flex;
	align-items: center;
	max-width: 175px;
	width: 100%;
	margin: auto;
	padding: 0;
	margin-top: 11px;
}

.btn_arrow_hover img {
	width: 138px;
	margin-left: -45px;
	transition: all 1s;
	z-index: 1;
	transform: scale(-1);
}

.btn_arrow_hover:hover span {
	transform: translateX(65px);
}

.btn_arrow_hover:hover img {
	transform: translateX(-65px) scale(-1);
}

/* SEND BUTTON */

.send_btn {
	width: 100%;
	height: 59px;
	background-color: var(--golden);
	margin-top: 55px !important;
	position: relative;
}

.send_btn input {
	border: none !important;
	margin: 0 !important;
	padding: 0 !important;
	height: 100% !important;
	width: 100% !important;

	color: var(--white) !important;
	background-color: transparent;
	text-align: center !important;
	font-family: "Assistant", sans-serif !important;
	font-size: 19px !important;
	font-weight: 400 !important;
	line-height: 52px !important;
	position: relative;
	z-index: 1;
}

.mid_hover {
	position: relative;
}

.mid_hover::before {
	content: "";
	position: absolute;
	display: inline-block;
	background-color: var(--black);
	width: 100%;
	height: 100%;
	top: 0;
	right: 0;
	left: 0;
	margin: auto;
	height: 100%;
	width: 0px;
	transition: all 1s;
}

.mid_hover:hover::before {
	width: 100%;
}

/* STICKY LINKS */
.sticky_btns .mid_hover {
	width: 100%;
	height: 59px;
	display: flex;
	align-items: center;
	justify-content: center;

	background-color: var(--golden);
}

.sticky_btns .mid_hover span {
	color: var(--white);
	text-align: center;
	font-family: "Assistant", sans-serif !important;
	font-size: 19px;
	font-style: normal;
	font-weight: 400;
	line-height: 23px;

	position: relative;
	z-index: 1;
}

.sticky_btns {
	display: flex;
	flex-direction: column;
	gap: 12px;
	width: 136px;
	position: fixed;
	top: 48%;
	z-index: 999;
}

.sticky_btns .share-content {
	display: flex !important;
	position: absolute;
	right: 50px;
	bottom: -6px;
	align-items: center;
	gap: 25px;
	padding: 17px 30px;
	background-color: var(--black);
	opacity: 0;
	visibility: hidden;
	transform: scale(0.95);
	transition: all 0.3s ease;
}

.sticky_btns .share-content.share-open {
	opacity: 1;
	visibility: visible;
	transform: scale(1);
}

/* NEWSLETTER BUTTON */
.btn-newsletter {
	max-width: fit-content;
	width: 100%;
	margin: auto;
	height: 59px;

	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 9999;

	background-color: var(--golden);
	display: flex;
	align-items: center;
	justify-content: end;
	gap: 50px;
	padding-left: 40px;
	padding-right: 25px;
}

.btn-newsletter span {
	position: relative;
	z-index: 3;

	color: var(--white);
	text-align: center;
	font-family: "Assistant", sans-serif !important;
	font-size: 19px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.btn-newsletter .small-text {
	font-size: 12px;
	line-height: normal;
	color: var(--white);
}

.btn-newsletter button {
	position: relative;
	z-index: 4;

	width: 84px;
	height: 30px;
	border: 1px solid #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;

	color: var(--white);
	text-align: center;
	font-family: "Assistant", sans-serif !important;
	font-size: 13px;
	font-style: normal;
	font-weight: 400;
	line-height: 1;
}

.single-contact-now-btn {
	max-width: 300px;
	height: 59px;
	width: 100%;
	background-color: var(--golden);
	margin-top: 35px;
}

.single-contact-now-btn a {
	width: 100%;
	height: 100%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;

	color: var(--white);
	font-family: "Assistant", sans-serif !important;
	font-size: 19px;
	font-style: normal;
	font-weight: 400;
}

/***** COMPONENT END *****/

/* HEADER */

header.mobile-header {
	display: none;
}

header {
	max-width: calc(100% - 150px);
	margin: auto;
	position: absolute;
	width: 100%;
	right: 0;
	left: 0;
	top: 55px;
	z-index: 9999;

	position: fixed !important;
	transition: all 0.5s;
	direction: ltr;
}

header.shadow {
	animation: header 1s forwards 1;
	box-shadow: none !important;
	padding: 15px 0;
	padding-top: 20px;
}

header.shadow ul li a {
	color: var(--white) !important;
}

header.shadow::before {
	content: "";
	position: absolute;
	top: 0;
	right: -50%;
	width: 3000px;
	height: 100%;
	background-color: rgb(0 0 0 / 65%);
	z-index: -1;
}

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

	to {
		top: 0%;
	}
}

header .container-fluidss {
	max-width: 1572px;
	margin: auto;
}

header .head-flx {
	display: flex;
	gap: 30px;
	justify-content: space-between;
}

header .nav_div .country {
	max-width: 40px;
	width: 100%;
	height: 22px;
	display: flex;
	margin-left: auto;
	margin-bottom: 28px;
	transition: all 0.5s;
}

header .nav_div nav ul {
	display: flex;
	gap: 15px;
	justify-content: space-between;
	flex-direction: row-reverse;
}

header nav ul li a {
	color: var(--white);
	text-align: center;
	font-family: "Assistant", sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	text-transform: capitalize;
}

header nav ul li.current-menu-item a {
	color: var(--golden) !important;
}

header nav ul li {
	position: relative;
}

header nav .mega_menu {
	position: absolute;
	top: 22px;
	flex-direction: column;
	gap: 10px !important;
	padding: 20px 10px;
	padding-right: 50px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s;
	width: 200px;
	align-items: end;
	flex-direction: column !important;
	right: -49px;
	padding-left: 0;
}

header nav .mega_menu li.menu-item a {
	font-size: 14px;
	font-weight: 275;
	line-height: normal;
	color: var(--white) !important;
}

header nav ul li.menu-item-has-children:hover .mega_menu {
	opacity: 1;
	visibility: visible;
}

header .head-flx .nav_div {
	margin-left: -87px;
	width: 100%;
	margin-top: -15px;
}

header .main_logo {
	max-width: 620px;
	width: 100%;
	height: 121px;
	transition: all 0.5s;
}

header .main_logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

header.shadow .main_logo {
	max-width: 390px;
	height: 66px;
}

header.shadow .nav_div {
	margin-right: 0 !important;
	margin-top: 0;
	max-width: 950px;
}

header.shadow .country {
	margin-bottom: 15px !important;
}

header nav .mega_menu::after {
	content: "";
	position: absolute;
	display: inline-block;
	background-color: rgb(0 0 0 / 65%);
	width: 100%;
	height: 94%;
	top: 15px;
	left: -25px;
	z-index: -1;
}

header.shadow nav .mega_menu::after {
	top: 21px;
	height: 90%;
}

/******** HOME - HERO SECTION ********/

.home_banner {
	position: relative;
}

.home_banner .img {
	height: 1012px;
	width: 100%;
	position: relative;
	overflow: clip;
}

.home_banner .img::before {
	content: "";
	position: absolute;
	display: inline-block;
	width: 100%;
	height: 100%;
	top: 0;
	opacity: 0.4;
	background: #343434;
	mix-blend-mode: multiply;
	z-index: 1;
}

.home_banner .img img,
.home_banner .img video {
	height: 100%;
	width: 100%;
	object-fit: cover;
	transition: all 3s;
	object-position: bottom;
}

.home_banner .img:hover img {
	transform: scale(1.5);
}
.home_banner.project_banner .img:hover img{
	transform: none;
}

.home_banner .porp_detail {
	display: flex;
	gap: 20px;
	justify-content: space-between;
	max-width: 1557px;
	padding: 0 75px;
	width: 100%;
	margin: auto;
	position: absolute;
	bottom: 45px;
	right: 0;
	left: 0;
	z-index: 2;
}

.home_banner .porp_detail h2 {
	text-align: center;
	margin-bottom: 12px;
	color: var(--white);
}

.home_banner .porp_detail p {
	font-size: 15px;
	color: var(--white);
	text-align: center;
}

/* NEW JERUS PROJECTS */

.new_jerus_projects {
	margin-top: 67px;
	position: relative;
}

.new_jerus_projects::before,
.luxury_jerus_properties::before {
	content: "";
	display: inline-block;
	position: absolute;
	width: 100%;
	height: 550px;
	background-color: var(--light_cream);
	top: 26%;
	right: 0;
	width: 100%;
}

.new_jerus_projects .container-fluidss {
	max-width: 1722px;
	margin: auto;
	padding: 0 75px;
}

.new_jerus_projects .proj_flx {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
	margin-top: 35px;
}

.new_jerus_projects .heading h3 {
	text-transform: capitalize;
}

.new_jerus_projects .heading a,
.luxury_jerus_properties .heading a {
	color: var(--golden);
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	margin-top: 10px;
	display: inline-block;

	font-family: "Assistant", sans-serif !important;
}

.luxury_jerus_properties {
	position: relative;
	margin-top: 60px;
}

.luxury_jerus_properties .container-fluidss {
	max-width: 1722px;
	margin: auto;
	padding: 0 75px;
}

.luxury_jerus_properties .prop_flx {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
	margin-top: 27px;
}

.luxury_jerus_properties .more_prop_hidden {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
	margin-top: 25px;
}

.luxury_jerus_properties .heading h3,
.luxury_jerus_properties .heading a {
	text-transform: capitalize;
}

.prop_whats_new {
	max-width: calc(100% - 150px);
	margin: auto;
	margin-top: 43px;
}

.prop_whats_new .container-fluidss {
	max-width: 1572px;
	margin: auto;
}

.prop_whats_new .prop_flx {
	margin-top: 60px;
	padding-bottom: 79px;
}

.prop_whats_new .prop_flx::before {
	content: "";
	position: absolute;
	display: inline-block;
	width: 100%;
	height: 329px;
	background-color: #f2f2f2;
	right: 0;
	bottom: 0;
}

.prop_whats_new .slick-track {
	display: flex;
	gap: 35px;
}

.prop_whats_new .luxury_pro_cards .prop_card {
	height: 401px;
}

.prop_whats_new .luxury_pro_cards .prop_card .hover_content {
	width: 100%;
}

.prop_whats_new .slick-prev:before {
	content: "";
	display: inline-block;
	background-image: url("../images/svg/slide_arr_le.svg");
	width: 35px;
	height: 30px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

.prop_whats_new .slick-prev {
	left: -40px;
	right: unset;
}

.prop_whats_new .slick-next:before {
	content: "";
	display: inline-block;
	background-image: url("../images/svg/slide_arr_ri.svg");
	width: 35px;
	height: 30px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

.prop_whats_new .slick-next {
	left: unset;
	right: -40px;
}

.welcome_oren_cohen {
	max-width: calc(100% - 150px);
	margin: auto;
	margin-top: 29px;
}

.welcome_oren_cohen .container-fluidss {
	max-width: 1572px;
	margin: auto;
	/* height: 435px; */

	/* background-color: var(--light_cream);
  border: 1px solid #000; */
	padding: 36px 100px 0px 131px;
	position: relative;
	background-color: var(--light_cream);
	/*border: 1px solid #000;*/
	border: 1px solid transparent;
}

/* .welcome_oren_cohen .container-fluidss::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 100%;
  height: 435px;
  background-color: var(--light_cream);
  border: 1px solid #000;
  right: 0;
  top: 0;
} */

.welcome_oren_cohen .contain-btn {
	max-width: 1572px;
	margin: auto;
	margin-top: 62px;
	padding-right: 55px;
}

.welcome_oren_cohen .btn_arrow_hover {
	margin-bottom: -43px;
	max-width: 190px;
}

.welcome_oren_cohen .wel_flx {
	display: flex;
	gap: 25px;
	justify-content: space-between;
	align-items: end;
	position: relative;
	z-index: 1;
}

.welcome_oren_cohen h3 {
	text-transform: capitalize;
}

.welcome_oren_cohen .text-wrapper {
	width: 50%;
}

.welcome_oren_cohen .text {
	max-width: 600px;
	margin-top: 30px;
	padding-right: 44px;
}

.welcome_oren_cohen .text p {
	text-align: justify;
}

.welcome_oren_cohen .wel_img {
	max-width: 666px;
	width: 100%;
	height: 442px;
	overflow: hidden;
	margin-bottom: -105px;
	box-shadow: 5px 6px 16px 5px rgba(0, 0, 0, 0.2);
}

.welcome_oren_cohen .wel_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 1s;
}

.welcome_oren_cohen .wel_img:hover img {
	transform: scale(1.3) matrix(1, 0, 0, 1, 0, 45);
}

.welcome_oren_cohen .btn_flx {
	display: flex;
	gap: 70px;
	width: 50%;
}

.welcome_oren_cohen .btn_flx .btn_hover {
	border: 1px solid #ccab6e;
	background-color: var(--light_cream);
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);

	color: var(--black);
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;

	max-width: 275px;
	width: 100%;
	height: 52px;

	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	transition: all 0.5s;
}

.welcome_oren_cohen .btn_flx .btn_hover:hover {
	border: 1px solid #ccab6e;
	background: #ccab6e;
}

.home_logo_slider {
	margin-top: 100px;
}

.home_logo_slider .item {
	display: flex;
	gap: 10px;
	align-items: center;
}

.home_logo_slider .item p {
	font-size: 15px;
}

.home_logo_slider h3 {
	color: var(--golden);
}

.home_logo_slider .slick-track {
	display: flex;
	align-items: center;
	gap: 30px;
}

.lets_start_working {
	margin-top: 75px;
	background: linear-gradient(rgba(0, 0, 0, 0.73), rgba(0, 0, 0, 0.73)), url("../images/working_img.png");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	height: 925px;
	width: 100%;
	position: relative;
	overflow: hidden;
}

.lets_start_working .container-fluidss {
	max-width: 1650px;
	margin: auto;
	height: 100%;
	padding: 0 75px;
}

.lets_start_working .let_flx {
	display: flex;
	gap: 25px;
	justify-content: space-between;
	height: 100%;
}

.lets_start_working .heading {
	max-width: 855px;
	width: 100%;
	padding-top: 250px;
}

.lets_start_working .heading h3 {
	color: var(--white);
	position: relative;
}

.lets_start_working .heading h3::before {
	content: "";
	position: absolute;
	display: inline-block;
	height: 1px;
	width: 100%;
	background-color: var(--white);
	bottom: -35px;
}

.lets_start_working .home_categories {
	height: 100%;
	max-width: 561px;
	width: 100%;
	position: relative;
	z-index: 1;

	display: flex;
	flex-direction: column;
	gap: 244px;
	transform: translateY(285px);
	transition: all 7s;
}

/* .lets_start_working:hover .home_categories {
  transform: translateY(-140%);
} */

.lets_start_working .cate {
	display: inline-block;
	width: 100%;
	padding: 55px 50px 25px 60px;
	background-color: var(--black);
	position: relative;
}

.lets_start_working .cate.buy,
.lets_start_working .cate.value {
	padding-bottom: 105px;
}

.lets_start_working .cate::before {
	content: "";
	position: absolute;
	display: inline-block;
	width: 100%;
	height: 100%;
	background-color: var(--golden);
	right: -9px;
	top: -9px;
	z-index: -1;
}

.lets_start_working .cate h5 {
	color: var(--white);
	font-size: 25px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	margin-bottom: 15px;

	font-family: "Assistant", sans-serif;
}

.lets_start_working .cate p {
	color: var(--white);
	text-align: justify;
}

.lets_start_working .cate .guide {
	color: var(--golden);
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	margin-top: 35px;
	padding: 0;
}

/* .lets_start_working .cate .text-wrapper {
  padding: 55px;
  padding-bottom: 25px;
} */

.lets_start_working .btn_arrow_hover {
	position: absolute;
	bottom: -43px;
	left: 70px;
	max-width: 190px;
	justify-content: end;
}

.lets_start_working .btn_arrow_hover img {
	filter: brightness(2) invert(1);
}

.clients_say {
	max-width: 100%;
	margin: auto;
	margin-top: 150px;
}

.clients_say .container-fluidss {
	max-width: 1920px;
	margin: auto;
}

.clients_say .container-fluidss h3 {
	max-width: 1722px;
	margin: auto;
	padding: 0 75px;
}

.clients_say .rew p {
	font-weight: 300;
	min-height: 210px;
}

.clients_say .rew h4 {
	font-weight: 600;
	color: var(--black);
}

.clients_say .mem {
	margin-top: 20px;
}

.clients_say .rew {
	padding: 0 145px;
	position: relative;
	padding-top: 30px;
}

.clients_say .rew::after {
	content: "";
	position: absolute;
	display: inline-block;
	width: 0.5px;
	height: 285px;
	right: 0;
	top: 0;
	background-color: var(--golden);
}

.clients_say .review_slid {
	margin-top: 45px;
}

.clients_say .slick-list {
	overflow: unset;
	overflow-x: hidden;
}

.clients_say .btn-container {
	max-width: 1722px;
	margin: auto;
	margin-top: 15px;
	padding: 0 75px;
}

.clients_say .btn-container .btn_arrow_hover {
	max-width: 190px;
	margin-left: 0;
}

.shop_holder {
	margin-top: 50px;
	background-color: var(--light_cream);
	padding: 55px 0;
}

.shop_holder .container-fluidss {
	max-width: 1590px;
	margin: auto;
	padding: 0 75px;
}

.shop_holder .hold_flx {
	display: flex;
	justify-content: space-between;
	gap: 55px;
}

.shop_holder .item.item_1 {
	max-width: 505px;
	width: 100%;
	padding-left: 75px;
	position: relative;
}

.shop_holder .item.item_1::before {
	content: "";
	position: absolute;
	display: inline-block;
	width: 1px;
	height: 268px;
	background-color: var(--white);
	left: 0;
	top: 0;
	bottom: 0;
	margin: auto;
}

.shop_holder .item.item_2 {
	max-width: 850px;
	width: 100%;
	padding-top: 75px;
}

.shop_holder .item_1 h5 {
	color: #000;
	font-family: "Assistant", sans-serif !important;
	font-size: 24px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	margin-top: 50px;
}

.shop_holder .item p {
	text-align: justify;
}

.home_stay_know {
	max-width: calc(100% - 150px);
	margin: auto;
	margin-top: 105px;
}

.home_stay_know .container-fluidss {
	max-width: 1380px;
	margin: auto;
}

.home_stay_know h3,
.home_stay_know p {
	text-align: center;
}

.home_stay_know p {
	margin-top: 10px;
}

.home_stay_know .gall_img {
	display: flex;
	gap: 9px;
	margin-top: 25px;
	justify-content: center;
	flex-wrap: wrap;

	display: grid;
	grid-template-columns: repeat(6, 1fr);
}

.home_stay_know img {
	max-width: 222px;
	height: 216px;
	width: 100%;
}

footer {
	margin-top: 90px;
	background-color: var(--black);
	padding: 35px 0;
}

footer .container-fluidss {
	max-width: 1722px;
	margin: auto;
	padding: 0 75px;
}

footer .f_flx {
	display: flex;
	gap: 58px;
	/* justify-content: space-between; */
}

footer .item.item_1 {
	max-width: 502px;
	width: 100%;
}

footer .item.item_2 {
	max-width: 275px;
	width: 100%;
	padding-top: 51px;
	margin-right: 140px;
}

footer .item.item_3 {
	max-width: 530px;
	width: 100%;
}

footer .footer_logo {
	width: 100%;
	height: 85px;
	object-fit: contain;
}

footer .link_flx {
	margin-top: 35px;
	display: flex;
	gap: 40px;
}

footer .link_flx ul li a {
	color: var(--white);
	text-align: justify;
	font-family: "Assistant", sans-serif !important;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: 0.7px;
	width: 100%;
	display: inline-block;
}

footer .link_flx ul li .foot_menu a {
	text-align: right;
}

footer .link_flx ul li .foot_menu li {
	margin-top: 5px;
}

footer .link_flx ul.menu li {
	margin-top: 25px;
}

footer .item_3 {
	padding-top: 40px;
}

footer .item_2 h5 {
	color: var(--golden);
	text-align: center;
	font-family: "Assistant", sans-serif !important;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	text-transform: uppercase;
}

footer .real_estate_imgs {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

footer .real_estate_imgs a:nth-child(1) img {
	width: 118px;
	height: 40px;
}

footer .real_estate_imgs a:nth-child(2) img {
	width: 124px;
	height: 42px;
}

footer .real_estate_imgs a:nth-child(3) img {
	width: 98px;
	height: 51px;
	margin-right: -20px;

	position: relative;
	top: -7px;
}

footer .real_estate_imgs img {
	/* width: 122px; */
	object-fit: contain;
	/* height: 45px;
  object-position: center; */
}

footer .footer_btns {
	display: flex;
	align-items: center;
	gap: 25px;
	margin-top: 75px;
	justify-content: space-between;
}

footer .footer_btns button {
	max-width: 335px;
	width: 100%;
	padding: 0;
	display: flex;
	align-items: center;

	color: var(--white);
	font-family: "Assistant", sans-serif !important;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

footer .footer_btns button .btn_arrow_hover span {
	width: 57px;
	height: 57px;
}

footer .footer_btns button .btn_arrow_hover img {
	/* filter: brightness(2) invert(1); */
	width: 91px;
	margin-left: -33px;
	height: 20px;
}

footer .footer_btns .btn_arrow_hover {
	max-width: 130px;
	margin-top: 0;
}

footer .footer_btns .btn_arrow_hover:hover span {
	transform: translateX(45px);
}

footer .footer_btns .btn_arrow_hover:hover img {
	transform: translateX(-45px) scale(-1);
}

footer .custom-checkbox {
	display: flex;
	gap: 30px;
}

footer .custom-checkbox label {
	display: flex;
	align-items: center;
	cursor: pointer;
	position: relative;
	padding-right: 30px;

	color: var(--white);
	font-family: "Assistant", sans-serif !important;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

footer .custom-checkbox input[type="checkbox"] {
	opacity: 0;
	position: absolute;
	cursor: pointer;
	height: 0;
	width: 0;
}

footer .checkmark {
	position: absolute;
	right: 0;
	height: 18px;
	width: 18px;
	background-color: var(--white);
	border: 2px solid #ccc;
	transition: all 0.3s ease;
}

footer .custom-checkbox input:checked ~ .checkmark {
	background-color: var(--black);
	border-color: var(--white);
}

footer .checkmark::after {
	content: "";
	position: absolute;
	display: none;
}

footer .custom-checkbox input:checked ~ .checkmark::after {
	display: block;
}

footer .custom-checkbox .checkmark::after {
	right: 5px;
	top: 1px;
	width: 5px;
	height: 10px;
	border: solid white;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

footer .btm_footer {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	margin-top: 48px;
	padding-top: 15px;
	border-top: 1px solid #fff;
}

footer .btm_footer p,
footer .btm_footer a {
	color: var(--white);
	text-align: center;
	font-family: "Assistant", sans-serif !important;
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

footer .btm_footer .social_icon {
	display: flex;
	gap: 12px;
	align-items: center;
	height: fit-content;
}

footer .col ul li {
	margin-top: 25px;
	position: relative;
}

footer .foot_menu {
	display: none;
	padding-right: 15px;
}

footer .col li.has-submenu > a::after {
	content: ">";
	position: absolute;
	left: 10px;
	top: 0;
	transform: rotate(-90deg);
	transition: transform 0.3s ease;
	font-size: 18px;
}

footer .col li.has-submenu.open > a::after {
	transform: rotate(-270deg);
}

footer .btm_footer .social_icon a {
	height: 17px;
	width: 17px;
}

footer .btm_footer .social_icon a img {
	width: 100%;
	height: 100%;
}

/****** HOME BLOG MODAL ******/
.home_blog_modal .modal-dialog {
	max-width: 1662px;
	width: 100%;
	top: 17%;
	padding: 0 75px;
	margin: 0;
}

.home_blog_modal .modal-content {
	background: rgba(244, 237, 223, 0.85);
}

.home_blog_modal .modal-body {
	padding: 69px 119px 53px 73px;
}

.home_blog_modal h3 {
	text-align: center;
}

.home_blog_modal p {
	text-align: justify;
}

.home_blog_modal h5 {
	color: var(--black);
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 52px;
	margin-top: 25px;
}

.home_blog_modal .social_icon {
	display: flex;
	align-items: center;
	margin-top: 7px;
	gap: 10px;
}

.home_blog_modal .blog_flx {
	display: flex;
	gap: 20px;
	justify-content: space-between;
	margin-top: 65px;
}

.home_blog_modal .text-wrapper {
	max-width: 590px;
	width: 100%;
	padding-top: 7px;
}

.home_blog_modal .blog_img {
	max-width: 590px;
	width: 100%;
	text-align: center;
}

.home_blog_modal form input {
	width: 100%;
	border: none;
	background-color: transparent;
	border-bottom: 1px solid #000;
	margin-top: 30px;
	outline: none;
}

.home_blog_modal form input:nth-child(2) {
	margin-top: 70px;
}

.home_blog_modal form input,
.home_blog_modal form input::placeholder {
	color: var(--black);
	font-family: "Assistant", sans-serif !important;
	font-size: 17px;
	font-style: normal;
	font-weight: 400;
	line-height: 52px;
}

.home_blog_modal .blog_img .img {
	height: 459px;
	width: 100%;
}

.home_blog_modal .blog_img .img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.home_blog_modal .blog_btn {
	margin-top: 30px;
	display: inline-flex;
	align-items: center;
	gap: 25px;

	color: var(--black);
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.home_blog_modal .blog_btn .btn_arrow_hover {
	margin-top: 0;
	max-width: 179px;
}

.home_blog_modal .blog_btn .btn_arrow_hover img {
	filter: brightness(2) invert(1);
}

.home_blog_modal .btn-close {
	background: unset;
	width: 49px;
	height: 49px;
	background-color: rgba(204, 171, 110, 0.53);
	border-radius: 100%;
	position: absolute;
	top: -63px;
	left: 0;
	opacity: unset;
	box-shadow: unset !important;
}

.home_blog_modal {
	/* background: rgb(0 0 0 / 50%); */
	background-color: #000000ba;
}

/****** FEATURED PROPERTIES - PAGE ******/
.home_banner.feature_banner {
	height: 620px;
}

.home_banner.feature_banner > .elementor-container {
	height: 100%;
	min-height: unset !important;
}

.home_banner.feature_banner .img {
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
}

.home_banner.feature_banner .img::before {
	opacity: 0.75;
}

.home_banner.feature_banner .img .elementor-widget-image {
	height: 100%;
}

.home_banner.feature_banner .img .elementor-widget-image .elementor-widget-container {
	height: 100%;
}

.home_banner.feature_banner .porp_detail {
	display: inline-block;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	height: fit-content;
}

.new_jerus_projects.feat_lux_prop {
	margin-top: 5px;
	padding: 0 !important;
}

.new_jerus_projects.feat_lux_prop .heading > .elementor-element-populated {
	padding: 0 75px;
}

.bread_crumb {
	display: flex;
	gap: 5px;
	flex-wrap: wrap;
}

.bread_crumb a,
.bread_crumb p {
	color: var(--black);
	font-size: 11px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;

	font-family: "Assistant", sans-serif !important;
}

.bread_crumb a {
	text-decoration: underline;
}

.feat_lux_prop .top_para {
	max-width: 1042px;
	margin: auto;
	margin-top: 30px;
}

.feat_lux_prop .top_para p {
	text-align: center;
	font-weight: 300;
}

.feat_lux_prop .heading {
	margin-top: 45px;
	text-align: right;
}

.feat_lux_prop .view_sold_ppty {
	color: var(--golden);
	text-align: center;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	display: inline-block;
	margin-top: 55px;
}

.feat_lux_prop .container-fluidss {
	text-align: center;
}

.feat_cohen_group .see_less {
	display: none;
}

.feat_cohen_group .container-fluidss .elementor-widget-wrap {
	padding: 0;
}

.feat_cohen_group {
	max-width: calc(100% - 150px);
	margin: auto;
	margin-top: 75px;
}

.feat_cohen_group .container-fluidss {
	max-width: 1572px;
	margin: auto;
	background-color: var(--light_cream);
	padding: 65px 25px;
	padding-bottom: 35px;
}

.feat_cohen_group .text-wrapper {
	max-width: 1120px;
	margin: auto;
}

.feat_cohen_group h3 {
	text-align: center;
	margin-top: 20px;

	font-family: "Assistant", sans-serif !important;
}

.feat_lux_prop {
	margin-top: 0 !important;
}

.feat_lux_prop .heading .elementor-align-right {
	margin-bottom: 0;
}

.feat_cohen_group p {
	text-align: justify;
	margin-top: 30px;
}

.feat_cohen_group .more_proj_btn {
	margin-top: 60px;
}

.feat_cohen_group .more_proj_btn img {
	transition: all 1s;
}

.feat_cohen_group .more_proj_btn span {
	color: #000;
	text-align: center;
	font-family: "Assistant", sans-serif !important;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.feat_cohen_group .more_proj_btn.active img {
	transform: rotate(180deg);
}

.feat_cohen_group .join_vip {
	/* padding: 0 75px; */
	color: var(--golden);
	text-align: center;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	display: inline-block;
	width: 100%;
	margin-bottom: 60px;
}

.feat_lux_prop .new_projects_cards .see_more_proj {
	bottom: 100px;
}

.feat_lux_prop .view_sold_ppty {
	margin-top: 100px !important;
}

/* NEW PROJECT CARD */
.new_properties .new_card {
	max-width: 507px;
	width: 100%;
}

.new_properties .new_card .img {
	width: 100%;
	height: 285px;
}

.new_properties .new_card .img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.new_properties .new_card .card-content {
	padding-top: 40px;
	padding-right: 12px;
}

.new_properties .new_card h5 {
	color: var(--black);
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 30px;
	margin-bottom: 7px;

	min-height: 60px;
}

.new_properties .new_card p {
	text-align: justify;
	min-height: 163px;
}

.new_properties .new_card .btn_proj {
	padding: 0;
	display: inline-flex;
	align-items: center;
	gap: 15px;
	margin-top: 10px;

	color: var(--black);
	font-family: "Assistant", sans-serif !important;
	font-size: 14px;
	font-weight: 400;
	line-height: normal;
}

.new_properties .new_card .btn_proj .btn_arrow_hover {
	margin-top: 0;
	max-width: fit-content;
}

.new_properties .new_card .btn_arrow_hover span {
	width: 35px;
	height: 35px;
}

.new_properties .new_card .btn_arrow_hover img {
	width: 56px;
	margin-left: -18px;
}

.new_properties .new_card .btn_arrow_hover:hover span {
	transform: translateX(27px);
}

.new_properties .new_card .btn_arrow_hover:hover img {
	transform: translateX(-24px) scale(-1);
}

.new_properties .card_row {
	position: relative;
	padding-bottom: 35px;
	margin-bottom: 72px;
}

.new_properties .card_row::before {
	content: "";
	position: absolute;
	display: inline-block;
	width: 100%;
	height: 530px;
	bottom: 0;
	background-color: var(--light_cream);
	right: 0;
	z-index: -1;
}

.new_properties .card_row .row_flx {
	display: flex;
	gap: 25px;
	max-width: 1722px;
	margin: auto;
	padding: 0 75px;
}

.new_proj_cate .container-fluidss {
	max-width: 1192px;
	margin: auto;
	padding: 0 75px;
}

.new_proj_cate {
	padding: 0 !important;
}

.new_proj_cate .new_properties {
	margin-top: 112px;
}

.new_proj_cate .bread_crumb {
	justify-content: center;
	margin-top: 5px;
	padding: 0 75px;
}

.new_proj_cate .top_para {
	margin-top: 45px;
}

.new_proj_cate .top_para p {
	text-align: center;
	font-weight: 300;
	font-family: "Assistant", sans-serif !important;
}

.new_properties .more_proj_hidden {
	position: relative;
	height: 30px;
	overflow: hidden;
	transition: height 1s ease;
	pointer-events: none;
	margin-top: 0;
}

.new_properties .more_proj_hidden.active {
	pointer-events: auto;
}

.new_properties .more_proj_hidden::before {
	content: "";
	position: absolute;
	display: inline-block;
	width: 100%;
	height: 100%;
	background: linear-gradient(0deg, #fff 4.56%, rgba(255, 255, 255, 0) 113.8%);
	top: 0;
	z-index: 2;
	transition: all 1s;
}

.new_properties .more_proj_hidden.active::before {
	display: none;
}

.new_proj_cate .more_proj_btn {
	position: relative;
	z-index: 99;
	top: -63px;
}

.new_proj_cate .more_proj_btn.rotate img {
	transform: rotate(180deg);
}

.new_proj_cate .more_proj_btn img {
	transition: all 1s;
}

.feat_cohen_group.npj_cohen {
	margin-top: 0;
}

/****** CONTACT US - PAGE ******/
.contactUs-page,
.about-page {
	margin-top: 215px;
}

.contactUs-page header nav ul li a,
.about-page header nav ul li a {
	color: var(--black);
}
.contactUs_form h3,
.contactUs_form h1 {
	color: var(--black);
	text-align: center;
	font-size: 32px;
	font-style: normal;
	font-weight: 400;
	line-height: 52px;
}

.contactUs_form {
	max-width: calc(100% - 150px);
	margin: auto;
	margin-top: 55px;
}

.contactUs_form .container-fluidss {
	max-width: 1456px;
	margin: auto;
}

.contactUs_form form {
	margin-top: 40px;
}

.contactUs_form form input,
.contactUs_form form textarea {
	width: 100%;
	border: none;
	border-bottom: 1px solid #000;
	resize: none;
	outline: none;
	height: 56px;
	border-radius: unset !important;
}

.contactUs_form form textarea {
	overflow: hidden;
}

.contactUs_form form input,
.contactUs_form form input::placeholder,
.contactUs_form form textarea,
.contactUs_form form textarea::placeholder {
	color: var(--black);
	font-family: "Assistant", sans-serif !important;
	font-size: 17px;
	font-style: normal;
	font-weight: 400;
	line-height: 52px;
}

.contactUs_form form .inp_flx {
	display: flex;
	gap: 90px;
}

.contactUs_form form .inp_flx:nth-child(2) {
	margin-top: 30px;
}

.contactUs_form form .send_btn {
	max-width: 683px;
	margin: auto;
	margin-top: 70px !important;
}

.contactUs_form form .send_btn input {
	height: 100%;
}

.contactUs_form .contact-more-detail {
	margin-top: 80px;
	border-top: 1px solid #ccab6e;
	border-bottom: 1px solid #ccab6e;
	padding: 25px 0;

	display: flex;
	align-items: center;
	gap: 15px;
	justify-content: center;
	flex-wrap: wrap;
}

.contactUs_form .contact-more-detail a {
	display: flex;
	gap: 10px;
	align-items: center;

	color: var(--black);
	font-family: "Assistant", sans-serif !important;
	font-size: 17px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.lets_start_working.contact_working {
	margin-top: 40px;
}

.welcome_oren_cohen.about_cohen {
	margin-top: 20px;
}

.welcome_oren_cohen.about_cohen .container-fluidss {
	border: unset;
}

.about_cohen .bread_crumb {
	max-width: 1722px;
	margin: auto;
	padding: 0;
	margin-bottom: 35px;
}

.about_cohen .bread_crumb a,
.about_cohen .bread_crumb p {
	font-family: "Assistant", sans-serif !important;
}

.about_propertise {
	margin-top: 70px;

	background-image: url("../images/about_img.png");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	position: relative;
	height: fit-content;
	width: 100%;
	padding: 90px 0px 62px 0px;

	border-bottom: 3px solid rgba(0, 0, 0, 0.6);
}

.about_propertise::before {
	content: "";
	position: absolute;
	display: inline-block;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	top: 0;
	right: 0;
}

.about_propertise .container-fluidss {
	position: relative;
	z-index: 2;
	max-width: 1380px;
	margin: auto;
	padding: 0 75px;
}

.about_propertise h2 {
	color: var(--white);
	text-align: center;
	font-size: 30px;
	font-style: normal;
	font-weight: 400;
	line-height: 52px;
}

.about_propertise h5 {
	color: var(--white);
	text-align: center;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 52px;
	margin-top: 20px;
}

.meet_team {
	max-width: calc(100% - 150px);
	margin: auto;
	margin-top: 60px;
}

.meet_team .container-fluidss {
	max-width: 900px;
	margin: auto;
}

.meet_team .heading h3 {
	text-align: center;
	color: var(--black);
}

.meet_team .heading .text {
	margin-top: 16px;
}

.meet_team .heading p {
	text-align: center;
}

.meet_team .proj_mems {
	margin-top: 55px;
}

.meet_team .proj_mems .m_flx {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 105px;
}

.meet_team .proj_mems .img {
	width: 100%;
	height: 595px;
}

.meet_team .proj_mems .img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(1);
}

.meet_team .proj_mems .mem_title {
	padding: 17px 0;
}

.meet_team .proj_mems .mem_title h5,
.meet_team .proj_mems .mem_title h6 {
	color: var(--black);
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 32px;
}

.meet_team .proj_mems .mem_title h6 {
	color: var(--golden);
	min-height: 64px;
}

.meet_team .proj_mems p {
	text-align: justify;
	line-height: 26px;
}

.meet_team .proj_mems .mem_social {
	border-top: 1px solid #ccab6e;
	margin-top: 17px;
	padding-top: 17px;
}

.meet_team .proj_mems .mem_social .mem-phone-info {
	display: flex;
	gap: 19px;
	align-items: center;
}

.meet_team .proj_mems .mem_social a {
	color: var(--black);
	font-family: "Assistant", sans-serif !important;
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: 26px;

	display: flex;
	align-items: center;
	gap: 19px;
}

.meet_team .proj_mems .mem_social .mail {
	padding-right: 46px;
}

.meet_team .proj_mems .mem .more_text {
	display: none;
}

.meet_team .proj_mems .mem .show_more.rotate img {
	transform: rotate(180deg);
	transition: transform 0.3s ease;
}

.meet_team .mem .show_more {
	display: flex;
	width: fit-content;
	margin: auto;
	margin-top: 10px;
}

.about_banner_2 {
	margin-top: 60px;
	height: 619px;
	width: 100%;
	transition: all 2s;
	position: relative;
	overflow: hidden;
}

.about_banner_2 .banner_img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 100% 10%;
	transition: all 1.5s;
}

.about_banner_2:hover .banner_img {
	object-position: 100% 56%;
}

.about_banner_2::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: 100%;
	background-color: #f4eddf;
	mix-blend-mode: multiply;
	z-index: 2;
	pointer-events: none;
}

.about_banner_2 .container-fluidss {
	max-width: 1235px;
	margin: auto;
	padding: 0 75px;
	position: absolute;
	top: 0;
	z-index: 2;
	width: 100%;
	right: 0;
	left: 0;
	bottom: 0;
	height: fit-content;
}

.about_banner_2 h2 {
	color: var(--black);
	text-align: center;
	font-size: 30px;
	font-style: normal;
	font-weight: 400;
	line-height: 48px;
}

.about_banner_2 .read_more {
	width: 129px;
	height: 52px;
	margin: auto;
	margin-top: 10px;

	display: flex;
	justify-content: center;
	align-items: center;
	border: 2px solid #000;
	background: rgba(255, 255, 255, 0.25);

	color: var(--black);
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

/****** BLOG - PAGE ******/
.blog_banner {
	position: relative;
	height: 616px;
}

.blog_banner::after {
	content: "";
	position: absolute;
	display: inline-block;
	background-color: rgba(0, 0, 0, 0.47);
	width: 100%;
	height: 100%;
	top: 0;
	right: 0;
}

.blog_banner .main_img {
	width: 100%;
	height: 100%;
}

.blog_banner .main_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 100% 45%;
	transition: all 2s;
}

.blog_banner:hover .main_img img {
	object-position: 100% 100%;
}

.blog_banner .text-wrapper {
	position: absolute;
	max-width: 740px;
	width: 100%;
	height: fit-content;
	/* top: 0; */
	bottom: 105px;
	right: 0;
	left: 0;
	margin: auto;
	z-index: 2;
	text-align: center;
}

.blog_banner h1 {
	color: var(--white) !important;
	text-align: center;
	font-size: 40px !important;
	font-style: normal;
	font-weight: 400 !important;
	line-height: normal;
	margin-bottom: 17px;
}

.blog_banner .text-wrapper img {
	width: 470px;
	height: 133px;
	object-fit: contain;
}

.blog_content_div {
	margin-top: 25px;
}

.blog_content_div .bread_crumb,
.blog_content_div .blog_item .blog_flx {
	max-width: 1437px;
	margin: auto;
}

.blog_content_div .blog_item .blog_flx {
	display: flex;
	gap: 20px;
	justify-content: space-between;
	/* padding-right: 34px; */
}

.blog_content_div .blog_item:nth-child(even) .blog_flx {
	flex-direction: row-reverse;
}

.blog_content_div .blog_item {
	padding: 0 75px;
	margin-top: 90px;
	position: relative;
	padding-bottom: 55px;
}

.blog_content_div .blog_item.blog_1 {
	padding-bottom: 55px;
}

.blog_content_div .blog_item::after {
	content: "";
	position: absolute;
	display: inline-block;
	width: 100%;
	height: 300px;
	background-color: var(--light_cream);
	right: 0;
	bottom: 10px;
	z-index: -1;
}

.blog_content_div .blog_item.blog_1::after {
	height: 300px;
}

.blog_content_div .blog_item .img {
	max-width: 660px;
	width: 100%;
	height: 371px;
}

.blog_content_div .blog_item .img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: top;
}

.blog_content_div .blog_item .text-wrapper {
	max-width: 650px;
	width: 100%;
}

.blog_content_div .blog_item.blog_1 .text-wrapper {
	padding-top: 79px;
}

.blog_content_div .blog_item h5 {
	color: var(--black);
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
	line-height: 30px;
	min-height: 60px;
}

.blog_content_div .blog_item .text {
	margin-top: 25px;
}

.blog_content_div .blog_item p {
	text-align: justify;
	font-size: 18px;
}

.btn_read_more {
	display: inline-flex;
	align-items: center;
	gap: 15px;
	width: fit-content;

	color: var(--black);
	font-family: "Assistant", sans-serif !important;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	margin-top: 70px;
}

.btn_read_more .btn_arrow_hover {
	margin-top: 0;
	width: auto;
	max-width: fit-content;
}

.btn_read_more .btn_arrow_hover span {
	width: 35px;
	height: 35px;
}

.btn_read_more .btn_arrow_hover img {
	width: 56px;
	margin-left: -19px;
	transition: all 1s;
}

.btn_read_more .btn_arrow_hover:hover span {
	transform: translateX(28px);
}

.btn_read_more .btn_arrow_hover:hover img {
	transform: translateX(-25px) scale(-1);
}

.blog_content_div .blog_item.blog_2 .blog_flx {
	flex-direction: row-reverse;
}

.blog_content_div .blog_item.blog_2 .img {
	max-width: 570px;
	width: 100%;
	height: 561px;
}

.blog_content_div .blog_item.blog_2 .text-wrapper,
.blog_content_div .blog_item.blog_3 .text-wrapper {
	padding-top: 85px;
}

.blog_content_div .blog_item .text-wrapper {
	padding-top: 66px;
}

.blog_content_div .blog_item.blog_2::after,
.blog_content_div .blog_item.blog_3::after {
	bottom: 115px;
}

.blog_content_div .blog_item.blog_2 {
	padding-bottom: 0;
}

.blog_content_div .blog_item.blog_3 {
	margin-top: 67px;
	padding-bottom: 0;
}

.blog_content_div .blog_item.blog_3 .img {
	max-width: 572px;
	height: 563px;
}

.blog_content_div .blog_item.blog_4 {
	margin-top: 36px;
	padding-bottom: 0;
}

.blog_content_div .blog_item.blog_4 .img {
	height: 623px;
}

.blog_content_div .blog_item.blog_4 .text-wrapper {
	padding-top: 83px;
}

.blog_content_div .blog_item.blog_4::after {
	bottom: 178px;
}

.blog_content_div .blog_item.blog_4 .blog_flx {
	flex-direction: row-reverse;
}

/****** BLOG DETAIL - PAGE ******/
.blog_detail_page header ul li a {
	color: var(--black);
}

.blog_detail_page header {
	position: relative;
}

.blog_detail_content {
	max-width: calc(100% - 150px);
	margin: auto;
	margin-top: 120px;
}

.blog_detail_content .container-fluidss {
	max-width: 1468px;
	margin: auto;
}

.blog_detail_content h1 {
	color: var(--black);
	text-align: center;
	font-size: 30px !important;
	font-style: normal;
	font-weight: 400 !important;
	line-height: 50px;
	max-width: 695px;
	margin: auto;
}

.blog_detail_content > .elementor-column-gap-custom {
	gap: 25px;
}

.blog_detail_content .elementor-widget-wrap {
	padding: 0 !important;
}

.blog_detail_content .blog_inner_content {
	margin-top: 55px;
}

.blog_detail_content .blog_flx {
	display: flex;
	gap: 20px;
	justify-content: space-between;
	margin-top: 85px;
}

.blog_detail_content .text-wrapper {
	max-width: 728px;
	width: 100%;
}

.blog_detail_content .text-wrapper p {
	text-align: justify;
	line-height: 29px;
}

.blog_detail_content .blog_img {
	max-width: 582px;
	height: fit-content;
	width: 100%;
}

.blog_detail_content .blog_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/****** MEDIA & INFO - PAGE ******/
.media_banner {
	height: 616px;
	position: relative;
}

.media_banner .img {
	height: 100% !important;
}

.media_banner .img::before {
	opacity: 0.7;
}

.media_banner h1 {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	width: fit-content;
	height: fit-content;
	margin: auto;

	color: var(--white);
	text-align: center;
	font-size: 40px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	z-index: 2;
}

.media-article-items {
	max-width: calc(100% - 150px);
	margin: auto;
	margin-top: 120px;
	position: relative;
}

.media-article-items .container-fluidss {
	max-width: 1430px;
	margin: auto;
}

.media-article-items .m_flx {
	display: flex;
	justify-content: space-between;
	gap: 20px;
}

.media-article-items .see_media {
	/*max-width: 512px;*/
	max-width: 100%;
	width: 100%;
	padding-top: 65px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.media-article-items .media-item {
	max-width: 800px;
}

.media-article-items h3 {
	color: var(--black);
	text-align: center;
}

.media-article-items .media-item {
	width: 100%;
	margin-top: 96px;
}

.media-article-items .media-item .img {
	width: 100%;
	height: 333px;
}

.media-article-items .media-item.media_1 .img {
	height: 416px;
}

.media-article-items .media-item .img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.media-article-items .media-item h5 {
	color: var(--black);
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 30px;
	margin-top: 50px;
}

.media-article-items .media-item .date {
	margin-top: 9px;
	margin-bottom: 17px;
}

.media-article-items .media-item .date p {
	display: inline-block;
}

.media-article-items .media-item .date p,
.media-article-items .media-item .date a {
	color: var(--black);
	text-align: justify;
	font-family: "Assistant", sans-serif !important;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.media-article-items .media-item.media_1 .date a {
	text-decoration: underline;
}

.media-article-items .media-item .text {
	padding-right: 15px;
}

.media-article-items .media-item p {
	text-align: justify;
}

.media-article-items .media-item .text a {
	text-decoration: underline;
}

.media-article-items .media-item a {
	color: var(--black);
	font-family: "Assistant", sans-serif;
	text-align: justify;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.media-article-items .media-item .btn_read_more {
	font-size: 14px;
}

.media-article-items .btn_read_more {
	margin-top: 32px;
}

.media-article-items .useful_info {
	/*max-width: 785px;*/
	max-width: 100%;
	width: 100%;
	background-color: var(--light_cream);
	padding: 65px 140px 43px 136px;
	height: fit-content;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.media-article-items .useful_info .media-item {
	max-width: 800px;
}

.media-article-items .useful_info .media-item .img {
	height: 287px;
}

.media-article-items .useful_info .media-item.info_1 {
	margin-top: 90px;
}

.media-article-items .useful_info .media-item {
	margin-top: 155px;
}

.media-article-items .useful_info .media-item h5 {
	margin-top: 42px;
	margin-bottom: 11px;
}

.media-article-items .useful_info .media-item.info_3 .text p {
	margin-top: 20px;
}

.media-article-items .useful_info .media-item.info_3 .text p:nth-child(1) {
	margin-top: 0;
}

.media-article-items .more_proj_hidden {
	position: relative;
	height: 0;
	overflow: hidden;
	transition: height 2s ease;
}

.media-article-items .see_more_proj img {
	transition: all 1s;
}

.media-article-items .see_more_proj.rotate img {
	transform: rotate(180deg);
}

.media-article-items .see_more_proj {
	position: absolute;
	bottom: -25px;
	z-index: 5;
	right: 0;
	left: 0;
}

.media-article-items .more_articles .see_media {
	padding-top: 0;
}

.media-article-items .more_articles .useful_info {
	padding-top: 0;
	height: fit-content;
}

.media-article-items .more_articles .useful_info .info_1 {
	margin-top: 0;
}

/****** SUCCESSFUL PROJECTS ******/
.successful_banner .text-wrapper {
	bottom: 0;
	top: 0;
}

.successful_banner .main_img img {
	object-position: 100% 45%;
}

.successful_banner:hover .main_img img {
	object-position: 100% 0%;
}

.successful_project_div {
	/* max-width: calc(100% - 150px);
  margin: auto; */
	margin-top: 25px;
	overflow-x: hidden;
}

.successful_project_div .container-fluidss {
	max-width: 1722px;
	padding: 0 75px;
	margin: auto;
}

.successful_project_div .heading {
	max-width: 1095px;
	margin: auto;
	margin-top: 50px;
}

.successful_project_div .heading h3 {
	color: var(--black);
	text-align: center;
	font-size: 30px;
	font-style: normal;
	font-weight: 400;
	line-height: 30px;
}

.successful_project_div .heading p {
	text-align: center;
	margin-top: 35px;
}

.successful_project_div .success_item .more_text {
	display: none;
}

.successful_project_div .success_item .show_more.rotate img {
	transform: rotate(180deg);
	transition: transform 0.3s ease;
}

.successful_project_div .success_item .su_flx {
	display: flex;
	gap: 20px;
	justify-content: space-between;
}

.successful_project_div .success_item {
	margin-top: 130px;
	position: relative;
}

.successful_project_div .success_item .inner_content {
	max-width: 650px;
	width: 100%;
}

.successful_project_div .success_item .success_img {
	max-width: 660px;
	width: 100%;
	height: 372px;
}

.successful_project_div .success_item .success_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.successful_project_div .success_item h5 {
	color: var(--black);
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 30px;
}

.successful_project_div .success_item .text {
	margin-top: 20px;
}

.successful_project_div .success_item p {
	text-align: justify;
	line-height: 29px;
}

.successful_project_div .success_item .show_more {
	width: fit-content;
	display: flex;
	margin: auto;
	margin-top: 45px;
}

.successful_project_div .success_item:nth-child(odd) .success_img {
	margin-top: 75px;
}

.successful_project_div .success_item:nth-child(even) {
	margin-top: 70px;
	padding-bottom: 80px;
}

.successful_project_div .success_item:nth-child(even)::after {
	content: "";
	position: absolute;
	display: inline-block;
	height: 307px;
	width: 3000px;
	background-color: var(--light_cream);
	bottom: 0;
	z-index: -1;
	right: -32%;
}

/****** NEIGHBORHOODS - PAGE ******/
.neighborhood_banner .text-wrapper {
	bottom: 0;
	top: 0;
}

.neigh-proj-items {
	max-width: calc(100% - 150px);
	margin: auto;
	margin-top: 10px;
}

.neigh-proj-items .container-fluidss {
	max-width: 1572px;
	margin: auto;
}

.neigh-proj-items .top-content {
	max-width: 1095px;
	margin: auto;
	margin-top: 40px;
}

.neigh-proj-items .top-content p {
	text-align: center;
	font-weight: 300;
}

.neigh-proj-items .neigh_flx {
	max-width: 1142px;
	margin: auto;
	margin-top: 155px;

	display: flex;
	flex-wrap: wrap;
}

.neigh-proj-items .neigh_item .btn_read_more {
	margin-top: 34px;
}

.neigh-proj-items .neigh_item:nth-child(even) {
	padding-right: 64px;
}

.neigh-proj-items .neigh_item:nth-child(odd) {
	padding-left: 64px;
}

.neigh-proj-items .neigh_item {
	max-width: 50%;
	width: 100%;
	padding-bottom: 28px;
	margin-bottom: 40px;
	position: relative;
}

.neigh-proj-items .neigh_item::after {
	content: "";
	position: absolute;
	display: inline-block;
	width: 100%;
	height: 1px;
	background-color: var(--golden);
	bottom: 0;
	right: 0;
}

.neigh-proj-items .neigh_item .img {
	width: 100%;
	height: 285px;
}

.neigh-proj-items .neigh_item .img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.neigh-proj-items .neigh_item h5 {
	color: var(--black);
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 31px;
	margin-top: 25px;
	margin-bottom: 21px;
}

.neigh-proj-items .neigh_item p {
	text-align: justify;
	font-weight: 400;
}

.history-jerus-neigh {
	max-width: calc(100% - 150px);
	margin: auto;
	margin-top: 50px;
}

.history-jerus-neigh .container-fluidss {
	max-width: 1570px;
	margin: auto;
	background-color: var(--light_cream);
	padding: 55px;
	padding-bottom: 84px;
}

.history-jerus-neigh h3 {
	max-width: 745px;
	margin: auto;
	text-align: center;
	line-height: 51px;
}

.history-jerus-neigh .text {
	max-width: 1120px;
	margin: auto;
	margin-top: 23px;
}

.history-jerus-neigh p {
	line-height: 29px;
	text-align: justify;
}

.history-jerus-neigh p:nth-child(3),
.history-jerus-neigh p:nth-child(8) {
	margin-top: 30px;
}

/****** EIN SOF - PAGE ******/
.ein-sof-page header {
	position: relative;
}

.ein-sof-page header ul li a {
	color: var(--black);
}

.ein-sof-page {
	overflow-x: hidden;
}

.ein-sof-slider {
	margin-top: 125px;
}

.ein-sof-slider .img {
	height: 322px;
	margin: auto 10px;
	position: relative;
}

.ein-sof-slider .img::before {
	content: "";
	position: absolute;
	display: inline-block;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.25);
	top: 0;
	right: 0;
}

.ein-sof-slider .img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.einSof-more-items .ein_foundation .more_text {
	display: none;
}

.einSof-more-items .ein_foundation .show_more.rotate img {
	transform: rotate(180deg);
	transition: transform 0.3s ease;
}

.einSof-more-items {
	max-width: calc(100% - 150px);
	margin: auto;
	margin-top: 55px;
}

.einSof-more-items .container-fluidss {
	max-width: 1572px;
	margin: auto;
}

.einSof-more-items .top-content {
	max-width: 1040px;
	margin: auto;
	margin-top: 32px;
}

.einSof-more-items .top-content p {
	text-align: center;
	font-weight: 300;
	margin-top: 15px;
}

.einSof-more-items .top-content h5 {
	color: var(--golden);
	text-align: center;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	margin-top: 25px;
	margin-bottom: 25px;
}

.einSof-more-items .ein_foundation .ein-flx {
	display: flex;
	gap: 20px;
	justify-content: space-between;
}

.einSof-more-items .ein_foundation .head h5 {
	color: var(--black);
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 30px;
	margin-bottom: 10px;

	font-family: "Assistant", sans-serif !important;
}

.einSof-more-items .ein_foundation.ein_3 .head h5 {
	margin-top: 0;
}

.einSof-more-items .ein_foundation .head p {
	text-align: justify;
	font-weight: 500;
	line-height: 29px;
	margin-top: 10px;
}

.einSof-more-items .ein_foundation p {
	text-align: justify;
	line-height: 29px;
	margin-top: 20px;
}

.einSof-more-items .ein_foundation h5 {
	color: var(--black);
	font-family: "Assistant", sans-serif !important;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 29px;
	margin-top: 20px;
}

.einSof-more-items .ein_foundation .inner_text {
	max-width: 785px;
	width: 100%;
}

.einSof-more-items .ein_foundation .show_more {
	display: flex;
	width: fit-content;
	margin: auto;
	margin-top: 20px;
}

.einSof-more-items .ein_foundation .img {
	max-width: 706px;
	height: 697px;
	width: 100%;
	position: relative;
}

.einSof-more-items .ein_foundation .img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.einSof-more-items .ein_foundation .btn_read_more {
	margin-top: 50px;

	color: var(--black);
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;

	font-family: "Assistant", sans-serif !important;
	gap: 30px;
}

.einSof-more-items .ein_foundation .btn_read_more .btn_arrow_hover span {
	width: 86px;
	height: 86px;
}

.einSof-more-items .ein_foundation .btn_read_more .btn_arrow_hover img {
	width: 138px;
	margin-left: -45px;
	transition: all 1s;
	filter: brightness(2) invert(1);
}

.einSof-more-items .ein_foundation .btn_arrow_hover:hover span {
	transform: translateX(65px);
}

.einSof-more-items .ein_foundation .btn_arrow_hover:hover img {
	transform: translateX(-65px) scale(-1);
}

.einSof-more-items .ein_foundation {
	padding-bottom: 48px;
	position: relative;
}

.einSof-more-items .ein_foundation::after {
	content: "";
	position: absolute;
	display: inline-block;
	width: 3000px;
	height: 405px;
	background-color: var(--light_cream);
	right: -45%;
	bottom: 0;
	z-index: -1;
}

.einSof-more-items .ein_foundation {
	margin-top: 140px;
}

.einSof-more-items .ein_foundation.ein_1 {
	margin-top: 140px;
}

.einSof-more-items .ein_foundation.ein_2 {
	margin-top: 70px;
	padding-bottom: 75px;
}

.einSof-more-items .ein_foundation.ein_2::after {
	width: 100%;
	right: 0;
	height: 309px;
}

.einSof-more-items .ein_foundation.ein_2 .img {
	max-width: 1063px;
	height: 1004px;
	margin: auto;
}

.einSof-more-items .ein_foundation.ein_3::after {
	height: 375px;
}

.einSof-more-items .ein_foundation.ein_3 {
	padding-bottom: 55px;
}

.einSof-more-items .ein_foundation.ein_3 .ein-flx {
	flex-direction: row-reverse;
}

.einSof-more-items .ein_foundation.ein_3 .img {
	height: 935px;
}

.einSof-more-items .ein_foundation.ein_4::after {
	height: 360px;
}

.einSof-more-items .ein_foundation.ein_4 {
	padding-bottom: 32px;
	margin-top: 48px;
}

.einSof-more-items .ein_foundation.ein_4 .img {
	max-width: 626px;
	height: 1197px;
}

.einSof-more-items .ein_foundation.ein_5::after {
	height: 338px;
}

.einSof-more-items .ein_foundation.ein_5 .img {
	height: 844px;
}

.einSof-more-items .ein_foundation.ein_5 .img {
	position: relative;
}

.einSof-more-items .ein_foundation.ein_5 .img::before {
	content: "";
	position: absolute;
	display: inline-block;
	background-image: url("../images/svg/ein-tag.svg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	width: 184px;
	height: 187px;
	position: absolute;
	top: -32px;
	right: -47px;
}

.einSof-more-items .ein_foundation.ein_5 {
	margin-top: 115px;
	padding-bottom: 50px;
}

.einSof-more-items .ein_foundation.ein_5 .ein-flx {
	flex-direction: row-reverse;
	gap: 55px;
}

.einSof-more-items .ein_foundation.ein_6::after {
	height: 396px;
}

.einSof-more-items .ein_foundation.ein_6 {
	padding-bottom: 55px;
}

.einSof-more-items .ein_foundation.ein_6 .img {
	max-width: 669px;
	height: 818px;
	margin-top: 50px;
	background: #f6f6f6;
	box-shadow: 0px 0px 21px 0px rgba(0, 0, 0, 0.25);
}

.einSof-more-items .ein_foundation.ein_6 .img img {
	object-fit: scale-down;
}

.einSof-more-items .ein_foundation.ein_7 {
	margin-top: 130px;
	padding-bottom: 35px;
}

.einSof-more-items .ein_foundation.ein_7::after {
	height: 262px;
}

.einSof-more-items .ein_foundation.ein_7 .img {
	max-width: 731px;
	height: 455px;
}

.einSof-more-items .ein_foundation.ein_7 .ein-flx {
	flex-direction: row-reverse;
}

.einSof-more-items .ein_foundation.ein_9 .img {
	background: var(--white);
	box-shadow: 0px 0px 21px 0px rgba(0, 0, 0, 0.25);
	max-width: 587px;
	height: 580px;
	margin-top: 15px;
}

.einSof-more-items .ein_foundation.ein_8 .img {
	height: 455px;
}

.einSof-more-items .ein_foundation.ein_9 .img img {
	object-fit: scale-down;
}

.einSof-more-items .ein_foundation.ein_8 {
	padding-bottom: 33px;
}

.einSof-more-items .ein_foundation.ein_8::after {
	height: 325px;
}

.einSof-more-items .ein_foundation.ein_10 .img {
	max-width: 742px;
	height: 720px;
}

.einSof-more-items .ein_foundation.ein_9 {
	padding-bottom: 55px;
}

.einSof-more-items .ein_foundation.ein_9 .ein-flx {
	flex-direction: row-reverse;
}

.ein_contact_us {
	background: linear-gradient(0deg, rgba(255, 255, 255, 0.56) 0%, rgba(255, 255, 255, 0.65) 100%), url("../images/contact_img.jpg") lightgray 154px -102.417px / 75.931% 227.98% no-repeat;
	background-blend-mode: normal, luminosity;
	padding: 69px 75px 88px 75px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 100% 15%;
}

.ein_contact_us .container-fluidss {
	max-width: 1455px;
	margin: auto;
}

.ein_contact_us h3 {
	text-align: center;
	line-height: 52px;
}

.ein_contact_us .head p {
	text-align: center;
	line-height: 33px;
}

.ein_contact_us .head {
	max-width: 745px;
	margin: auto;
}

.ein_contact_us .form-flx {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 92px;
	row-gap: 32px;
	margin-top: 50px;
}

.ein_contact_us .form-flx input,
.ein_contact_us .form-flx textarea {
	width: 100%;
	height: 52px;

	color: var(--black);
	font-family: "Assistant", sans-serif !important;
	font-size: 17px;
	font-style: normal;
	font-weight: 400;
	line-height: 52px;

	border: none;
	background-color: transparent;
	border-bottom: 1px solid #000;
	border-radius: 0;
	outline: unset;
}

.ein_contact_us .form-flx textarea {
	overflow-y: hidden;
	resize: none;
}

.ein_contact_us .form-flx input::placeholder,
.ein_contact_us .form-flx textarea::placeholder {
	color: var(--black);
	font-family: "Assistant", sans-serif !important;
	font-size: 17px;
	font-style: normal;
	font-weight: 400;
	line-height: 52px;
}

.ein_contact_us .send_btn {
	max-width: 683px;
	margin: auto;
	margin-top: 70px;
}

/****** OUR SERVICES ******/
.service_banner {
	height: 620px;
	position: relative;
}

.service_exper {
	max-width: calc(100% - 150px);
	margin: auto;
	margin-top: 15px;
}

.service_exper .container-fluidss {
	max-width: 1572px;
	margin: auto;
}

.service_exper .top-content {
	margin-top: 35px;
}

.service_exper .top-content h4 {
	color: var(--black);
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	margin-bottom: 19px;

	font-family: "Assistant", sans-serif !important;
}

.service_exper .top-content p {
	text-align: justify;
	font-family: "Assistant", sans-serif !important;
	line-height: 29px;
}

.service_exper .service_item {
	margin-top: 115px;
	position: relative;
}

.service_exper .service_item .ser-flx {
	display: flex;
	gap: 20px;
	justify-content: space-between;
}

.service_exper .service_item .inner-content {
	max-width: 770px;
	width: 100%;
}

.service_exper .service_item .ser_img {
	max-width: 676px;
	height: 563px;
	width: 100%;
}

.service_exper .service_item .ser_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.service_exper .service_item h4 {
	color: var(--black);
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.service_exper .service_item h5 {
	color: var(--black);
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 155.403%;
	margin-bottom: 13px;
}

.service_exper .service_item h5:nth-child(4) {
	margin-top: 45px;
}

.service_exper .service_item p {
	text-align: justify;
	padding-bottom: 10px;
	font-size: 18px;
}

.service_exper .service_item.ser_1::after {
	content: "";
	position: absolute;
	display: inline-block;
	width: 3000px;
	height: 100%;
	right: -47%;
	bottom: -100%;
	background-color: var(--light_cream);
	z-index: -1;
}

/****** NEWSLETTER MODAL ******/
.newsletter_join .modal-dialog {
	max-width: 1662px;
	padding: 0 75px;
	top: 10%;
}

.newsletter_join {
	z-index: 9999;
}

.newsletter_join .modal-body {
	padding: 50px 45px;
	padding-right: 55px;
}

.newsletter_join .btn-close {
	padding: 0;
	position: absolute;
	top: -57px;
	left: 5px;
	width: 49px;
	height: 49px;
	border-radius: 100%;
	background: rgba(204, 171, 110, 0.53);
	opacity: 1;
	box-shadow: none;
}

.newsletter_join {
	background-color: #000000ba;
}

.newsletter_join .modal-content {
	background: rgba(244, 237, 223, 0.85);
}

.newsletter_join h3 {
	text-align: center;
}

.newsletter_join .news_flx {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	margin-top: 65px;
	flex-direction: row-reverse;
}

.newsletter_join .news_form {
	max-width: 594px;
	width: 100%;
}

.newsletter_join .img {
	max-width: 562px;
	height: 375px;
	width: 100%;
}

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

.newsletter_join input {
	width: 100%;
	border: none;
	border-bottom: 1px solid #000;
	background-color: transparent;
	margin-top: 33px;
}

.newsletter_join input,
.newsletter_join input::placeholder {
	color: var(--black);
	font-family: "Assistant", sans-serif !important;
	font-size: 17px;
	font-style: normal;
	font-weight: 400;
	line-height: 52px;
}

.newsletter_join input:nth-child(2) {
	margin-top: 55px;
}

.newsletter_join .send_btn {
	margin-top: 70px !important;
}

/****** CONTACT MODAL ******/
.contact-modal {
	background-color: rgb(0 0 0 / 73%);
}

.contact-modal .btn-close {
	padding: 0;
	position: absolute;
	top: -57px;
	left: 35px;
	width: 49px;
	height: 49px;
	border-radius: 100%;
	background: rgba(204, 171, 110, 0.53);
	opacity: 1;
	box-shadow: unset;
}

.contact-modal .modal-body {
	padding: 75px 102px;
}

.contact-modal .modal-content {
	background: rgba(244, 237, 223, 0.8);
}

.modal form span.note {
	display: none !important;
}

.modal .modal-content {
	border-radius: unset !important;
}

.contact-modal .modal-dialog {
	max-width: 961px;
	padding: 0 75px;
	top: 15%;
}

.contact-modal h3 {
	text-align: center;
}

.contact-modal form {
	margin-top: 35px;
}

.contact-modal input,
.contact-modal textarea {
	width: 100%;
	height: 52px;
	background-color: transparent;
	border: none;
	border-bottom: 1px solid #000;
	outline: unset;
	margin-top: 25px;
}

.contact-modal textarea {
	resize: none;
	overflow-y: hidden;
}

.contact-modal .send_btn {
	margin-top: 45px !important;
}

.contact-modal .checkbox-group {
	display: flex;
	flex-wrap: wrap;
	column-gap: 50px;
	row-gap: 30px;
	margin-top: 35px;
}

.contact-modal .checkbox-wrapper {
	display: flex;
	align-items: center;
	gap: 15px;
	justify-content: end;
}

.contact-modal .checkbox-wrapper input[type="checkbox"] {
	appearance: none;
	width: 26px;
	height: 26px;
	border: 1px solid transparent;
	border-radius: 5px;
	cursor: pointer;
	position: relative;
	transition: all 0.2s ease;
	background-color: #d9d9d9;
	margin-top: 0;
}

.contact-modal .checkbox-wrapper input[type="checkbox"]:checked {
	background-color: var(--black);
	border-color: var(--black);
}

.contact-modal .checkbox-wrapper input[type="checkbox"]::after {
	content: "";
	position: absolute;
	top: 4px;
	left: 9px;
	width: 5px;
	height: 12px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
	opacity: 0;
	transition: all 0.2s ease;
}

.contact-modal .checkbox-wrapper input[type="checkbox"]:checked::after {
	opacity: 1;
}

.contact-modal input,
.contact-modal input::placeholder,
.contact-modal textarea::placeholder,
.contact-modal textarea,
.contact-modal label {
	color: var(--black);
	font-family: "Assistant", sans-serif !important;
	font-size: 17px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.contact-modal .full-width {
	flex-basis: 100%;
	justify-content: start;
}

.cate_model .home_blog_modal .contact-modal .full-width {
	justify-content: end;
}

/****** PROJECT - PAGE ******/
.project_banner .img {
	height: 790px !important;
}

.project_banner .img::before {
	background: rgba(0, 0, 0, 0.3);
}

.duplex_penthouse {
	max-width: calc(100% - 150px);
	margin: auto;
	margin-top: 85px;
}

.duplex_penthouse .container-fluidss {
	max-width: 1572px;
	margin: auto;
}

.duplex_penthouse .dup_flx {
	display: flex;
	justify-content: space-between;
	gap: 20px;
}

.duplex_penthouse .left-content {
	max-width: 670px;
	width: 100%;
}

.duplex_penthouse .left-content h1,
.duplex_penthouse .left-content h3 {
	line-height: 52px;
	margin-bottom: 11px;
	color: var(--black);
	font-size: 32px;
	font-style: normal;
	font-weight: 400;
	text-align: right;
}

.duplex_penthouse .left-content h4,
.duplex_penthouse .left-content h5 {
	color: var(--golden);
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	margin-top: 15px;
	font-family: "Assistant", sans-serif !important;
}

.duplex_penthouse .left-content .text {
	margin-top: 15px;
}

.duplex_penthouse .right-content h5 {
	font-size: 23px;
}

.duplex_penthouse .right-content h4 {
	margin-top: 11px;
}

.duplex_penthouse .right-content .text {
	margin-top: 25px;
}

.duplex_penthouse .right-content p,
.duplex_penthouse .right-content ul li {
	color: var(--black);
	text-align: justify;
	line-height: 26px;
}

.duplex_penthouse .right-content ul li {
	font-family: "Assistant", sans-serif !important;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	list-style: disc;
}

.duplex_penthouse .right-content ul {
	padding-right: 25px;
}

.duplex_penthouse .more-detail {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	height: 37px;
	width: fit-content;
	background-color: var(--golden);

	color: var(--white);
	font-family: var(--inter);
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;

	margin-top: 22px;
	padding: 0 19px;
}

.duplex_penthouse .more-detail span {
	position: relative;
	z-index: 1;
}

.duplex_penthouse .right-content {
	padding-bottom: 27px;
	border-bottom: 1px solid #ccab6e;
}

.duplex_penthouse .penthouse-category .item {
	max-width: 165px;
	width: 100%;
	text-align: center;
}

.duplex_penthouse .penthouse-category {
	display: flex;
	gap: 40px;
	/* justify-content: center; */
	flex-wrap: wrap;

	border-top: 1px solid #ccab6e;
	border-bottom: 1px solid #ccab6e;
	padding-top: 45px;
	padding-bottom: 25px;
	margin-bottom: 28px;
}

.duplex_penthouse .penthouse-category h5 {
	color: var(--black);
	text-align: center;
	font-family: "Assistant", sans-serif !important;
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: 26px;
	margin-top: 0 !important;
}

.duplex_penthouse .penthouse-category img {
	width: 45px;
	height: 37px;
	object-fit: scale-down;
	margin: auto;
	margin-bottom: 23px;
	object-position: top;
}

.duplex_penthouse .right-content {
	max-width: 786px;
	width: 100%;
	margin-top: 12px;
}

.duplex_penthouse .penthouse_img,
.duplex_penthouse .penthouse_img img {
	width: 100%;
	height: 552px;
}

.duplex_penthouse .penthouse_img img {
	width: 100%;
	/* height: 100%; */
	object-fit: cover;
}

.project-area {
	max-width: calc(100% - 150px);
	margin: auto;
	margin-top: 45px;
}

.project-area .container-fluidss {
	max-width: 1572px;
	margin: auto;
}

.project-area .a_flx {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	align-items: center;
}

.project-area .text-content {
	max-width: 670px;
	width: 100%;
}

.project-area .area_img {
	max-width: 786px;
	width: 100%;
	height: 492px;
}

.project-area .area_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.project-area h5 {
	color: var(--black);
	font-size: 25px;
	font-style: normal;
	font-weight: 400;
	line-height: 52px;
}

.project-area .text {
	margin-top: 25px;
}

.project-area p {
	text-align: justify;
	line-height: 26px;
}

.project_feature {
	max-width: calc(100% - 150px);
	margin: auto;
	margin-top: 55px;
}

.project_feature .container-fluidss {
	max-width: 1572px;
	margin: auto;
}

.project_feature .feat_flx {
	display: flex;
	gap: 20px;
	justify-content: space-between;
}

.penthouse_features {
	max-width: 730px;
	width: 100%;
	border-top: 1px solid #ccab6e;
	padding-top: 43px;
}

.project_feature .project_map {
	max-width: 791px;
	height: 396px;
	width: 100%;
	margin-top: 55px;
}

.project_feature .project_map iframe {
	width: 100%;
	height: 100%;
	mix-blend-mode: luminosity;
}

.penthouse_features h5 {
	color: var(--black);
	font-size: 25px;
	font-style: normal;
	font-weight: 400;
	line-height: 37px;
}

.apartment-plan .apartment_features h5 {
	text-align: right !important;
}

.penthouse_features .flx {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}

.apartment-plan .penthouse_features .flx {
	gap: unset !important;
	margin-top: 0 !important;
}

.penthouse_features .feat {
	display: flex;
	align-items: center;
	gap: 32px;
	margin-top: 26px;
}

.penthouse_features .feat p {
	font-weight: 300;
}

.penthouse_features .feat img {
	width: 26px;
	height: 26px;
	object-fit: scale-down;
	object-position: center;
}

.proj_area_address {
	background-color: var(--light_cream);
	padding: 32px 0;
	margin-top: 15px;
}

.proj_area_address .container-fluidss {
	max-width: 1722px;
	margin: auto;
	padding: 0 75px;
}

.proj_area_address h5 {
	color: var(--black);
	font-size: 25px;
	font-style: normal;
	font-weight: 400;
	line-height: 37px;
}

.proj_area_address .area_flx {
	display: flex;
	flex-wrap: wrap;
	gap: 25px;
	row-gap: 45px;
}

.proj_area_address .loca {
	width: fit-content;
	display: flex;
	gap: 15px;
	align-items: start;
	margin-top: 25px;
	position: relative;
	padding-left: 25px;
}

.proj_area_address .loca::before {
	content: "";
	position: absolute;
	display: inline-block;
	width: 1px;
	height: 100%;
	background-color: var(--golden);
	top: 0;
	left: 0;
}

.proj_area_address .loca img {
	width: 20px;
	height: 26px;
	object-fit: contain;
}

.proj_area_address .loca p {
	color: var(--black);
	font-weight: 300;
}

.proj_area_address .loca .min {
	font-size: 14px;
	margin-top: 10px;
}

.project-gallery {
	max-width: 1920px;
	margin: auto;
	padding: 0 15px;
	margin-top: 15px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.project-gallery .normal-width {
	width: 24%;
	height: 263px;
	display: inline-block;
}

.project-gallery .normal-width img {
	width: 100%;
	height: 100%;
}

.project-gallery .left-img {
	/* max-width: 916px; */
	max-width: 49.7%;
	width: 100%;
	height: 534px;
}

.project-gallery .right-img {
	width: 49.7%;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
}

.project-gallery .right-img .normal-width {
	width: 100%;
}

.project-gallery .right-img .normal-width img {
	width: 100%;
}

.project-gallery .moreproj-images {
	width: 100%;

	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
}

.project-gallery .moreproj-images a {
	width: 100%;
}

.project-gallery img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.proj_exclusive_units {
	max-width: calc(100% - 150px);
	margin: auto;
	margin-top: 58px;
}

.proj_exclusive_units .container-fluidss {
	max-width: 1572px;
	margin: auto;
}

.proj_exclusive_units .head h4 {
	color: var(--black);
	font-size: 25px;
	font-style: normal;
	font-weight: 400;
	line-height: 52px;
	position: relative;

	font-family: "Assistant", sans-serif !important;
}

.proj_exclusive_units .head h4::after {
	content: "";
	position: absolute;
	display: inline-block;
	height: 1px;
	width: 100%;
	background-color: var(--golden);
	bottom: 0;
	right: 0;
}

.proj_exclusive_units .text-wrapper h5 {
	color: var(--black);
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 52px;
	position: relative;
	display: inline-block;
}

.proj_exclusive_units .text-wrapper h5::after {
	content: "";
	position: absolute;
	display: inline-block;
	height: 1px;
	width: 115%;
	background-color: var(--golden);
	bottom: 0;
	right: 0;
}

.proj_exclusive_units .text-wrapper p {
	color: var(--black);
	font-family: "Assistant", sans-serif;
	font-size: 17px;
	font-style: normal;
	font-weight: 400;
	line-height: 26px;
}

.proj_exclusive_units .unit_flx {
	display: flex;
}

.proj_exclusive_units .head {
	max-width: 545px;
	width: 100%;
}

.proj_exclusive_units .text-wrapper {
	max-width: 820px;
	width: 100%;
}

.proj_exclusive_units .text {
	margin-top: 20px;
}

.proj_plan_specif {
	margin-top: 40px;
	background-color: rgba(244, 237, 223, 0.46);
	padding: 117px 75px 103px 75px;
}

.proj_plan_specif .container-fluidss {
	max-width: 1577px;
	margin: auto;
}

.proj_plan_specif h3 {
	text-align: center;
}

.proj_plan_specif .plan_flx {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	margin-top: 55px;
	flex-wrap: wrap;
}
.proj_plan_specif .plan_flx.justify-center {
	justify-content: center;
}

.proj_plan_specif .build h5 {
	color: var(--black);
	text-align: center;
	font-size: 25px;
	font-style: normal;
	font-weight: 400;
	line-height: 52px;
}

.proj_plan_specif .build {
	max-width: 448px;
	width: 100%;
}

.proj_plan_specif .build .flx {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin-top: 25px;
}

.proj_plan_specif .build .item {
	width: 100%;
	height: auto;
	border: 1px solid #000;
	padding: 28px 20px;
	cursor: pointer;
	transition: all 0.7s;
}

.proj_plan_specif .build .item:hover {
	filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
	background-color: rgba(204, 171, 110, 0.53);
}

.proj_plan_specif .build .item p {
	text-align: center;
}

.apartment-plan .modal-dialog {
	max-width: 1662px;
	padding: 0 75px;
	top: 10%;
}

.apartment-plan .modal-body {
	padding: 74px 85px 92px 71px;
}

.apartment-plan .modal-content {
	background-color: rgba(255, 255, 255, 0.91);
}

.apartment-plan .btn-close {
	background: unset;
	box-shadow: unset;
	background-color: rgba(204, 171, 110, 0.53);
	width: 49px;
	height: 49px;
	border-radius: 100%;
	position: absolute;
	left: 0;
	top: -75px;
	opacity: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
}

.apartment-plan .sp_flx {
	display: flex;
	justify-content: space-between;
	gap: 20px;
}
.apartment-plan h1,
.apartment-plan h3 {
	line-height: 52px;
	text-align: right;
	color: var(--black);
	font-size: 32px;
	font-style: normal;
	font-weight: 400;
	font-family: "Assistant", sans-serif !important;
}

.apartment-plan .pro_no {
	color: var(--black);
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	font-family: "Assistant", sans-serif !important;
}

.apartment-plan .req {
	color: var(--golden);
	font-size: 23px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	margin-top: 11px;
	font-family: "Assistant", sans-serif !important;
}

.apartment-plan .text {
	margin-top: 57px;
}

.apartment-plan .text p,
.apartment-plan .text ul li {
	color: var(--black);
	text-align: justify;
	font-family: "Assistant", sans-serif !important;
	line-height: 26px;
	text-align: right;
}

.apartment-plan .text ul li {
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	list-style: disc;
}

.apartment-plan .text ul {
	padding-right: 25px;
}

.apartment-plan .left-content {
	max-width: 506px;
	width: 100%;
}

.apartment-plan .right-content {
	max-width: 765px;
	width: 100%;
}

.apartment-plan .apart_cate {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	padding-top: 45px;
	padding-bottom: 23px;
	border-top: 1px solid #ccab6e;
	border-bottom: 1px solid #ccab6e;
}

.apartment-plan .apart_cate .item {
	max-width: 155px;
	width: 100%;
	text-align: center;
	background-color: transparent !important;
	border: unset;
	padding: 0;
	filter: unset !important;
}

.apartment-plan .apart_cate p {
	color: var(--black);
	text-align: center;
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: 26px;
}

.apartment-plan .apart_cate img {
	width: 33px;
	height: 33px;
	margin-bottom: 28px;
}

.apartment-plan .right-content .img {
	max-width: 695px;
	height: 388px;
	margin: auto;
	margin-top: 65px;
}

.apartment-plan .right-content .img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.apartment-plan .speck_apartment {
	padding-bottom: 55px;
	border-bottom: 1px solid #ccab6e;
}

.apartment-plan .apartment_features {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	margin-top: 50px;
}

.apartment-plan .house_map {
	max-width: 594px;
	height: 336px;
	margin-top: 27px;
	width: 100%;
}

.apartment-plan .house_map img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.apartment-plan .penthouse_features {
	max-width: 685px;
	width: 100%;
	padding-top: 0;
	border-top: unset;
}

.about_propertise.estate_banner {
	margin-top: 0;
}

.project_contact form {
	margin-top: 25px;
}

.project_contact .see-projects {
	color: var(--golden);
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	display: flex;
	width: fit-content;
	margin: auto;
	margin-top: 35px;
}

.project_contact .container-fluidss {
	padding-bottom: 35px;
	border-bottom: 1px solid #ccab6e;
}

.project_work_counter {
	max-width: calc(100% - 150px);
	margin: auto;
	margin-top: 35px;
}

.project_work_counter .container-fluidss {
	max-width: 1455px;
	margin: auto;
}

.project_work_counter h3 {
	text-align: center;
}

.project_work_counter .count_flx {
	display: flex;
	gap: 20px;
	justify-content: space-between;
	margin-top: 65px;
}

.project_work_counter .item {
	max-width: 359px;
	width: 100%;
}

.project_work_counter h2 {
	color: var(--golden);
	margin-bottom: 12px;
	text-align: center;
}

.project_work_counter p {
	color: var(--golden);
	text-align: center;
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

/****** FEATURE PROPERTY ******/
.feature-prop header {
	position: relative;
}

.feature-prop header ul li a {
	color: var(--black);
}

.feat_prop_detail {
	max-width: calc(100% - 150px);
	margin: auto;
	margin-top: 165px;
}

.feat_prop_detail .container-fluidss {
	max-width: 1572px;
	margin: auto;
}

.feat_prop_detail .prop-flx {
	display: flex;
	justify-content: space-between;
	gap: 35px;
}

.feat_prop_detail .right-content {
	max-width: 955px;
	margin-top: 12px;
}

.feat_prop_detail .apart_cate {
	justify-content: center;
}

.feat_prop_detail .text {
	margin-top: 41px;
}

.feat_prop_detail .left-content {
	max-width: 545px;
}

.feat_prop_detail .prop_slider {
	max-width: 915px;
	margin: auto;
	margin-top: 95px;
}

.feat_prop_detail .prop_slider img {
	height: 511px;
	object-fit: contain;
}

.feat_prop_detail .prop_slider .slick-prev:before {
	content: "";
	background-image: url("../images/svg/slide_arr_le.svg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	width: 20px;
	height: 20px;
	display: inline-block;
}

.feat_prop_detail .prop_slider .slick-prev {
	left: -35px;
	right: unset;
}

.feat_prop_detail .prop_slider .slick-next {
	right: -35px;
	left: unset;
}

.feat_prop_detail .prop_slider .slick-next:before {
	content: "";
	background-image: url("../images/svg/slide_arr_ri.svg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	width: 20px;
	height: 20px;
	display: inline-block;
}

.feat_prop_detail .prop_slider .slick-dots li,
.duplex_penthouse .penthouse_img .slick-dots li {
	width: auto;
	height: auto;
	margin: 0 5px;
}

.feat_prop_detail .prop_slider .slick-dots li button::before,
.duplex_penthouse .penthouse_img .slick-dots li button::before {
	display: none;
}

.feat_prop_detail .prop_slider .slick-dots li button,
.duplex_penthouse .penthouse_img .slick-dots li button {
	width: 8px;
	height: 8px;
	border-radius: 100%;
	background-color: #d9d9d9;
	padding: 0;
}

.feat_prop_detail .prop_slider .slick-dots li.slick-active button,
.duplex_penthouse .penthouse_img .slick-dots li.slick-active button {
	background-color: var(--black);
}

.feat_prop_feature {
	max-width: calc(100% - 150px);
	margin: auto;
	margin-top: 55px;
}

.feat_prop_feature .container-fluidss {
	max-width: 1572px;
	margin: auto;
	padding-top: 45px;
	border-top: 1px solid #ccab6e;
}

.feat_prop_feature .feat_flx {
	display: flex;
	gap: 20px;
	justify-content: space-between;
}

.feat_prop_feature .feature_item {
	max-width: 705px;
	width: 100%;
	padding-top: 20px;
}

.feat_prop_feature h5 {
	color: var(--black);
	font-size: 25px;
	font-style: normal;
	font-weight: 400;
	line-height: 37px;
}

.feat_prop_feature .feature_item .flx {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}

.feat_prop_feature .feature_item .feat {
	display: flex;
	align-items: center;
	gap: 32px;
	margin-top: 26px;
}

.feat_prop_feature .feature_item .feat p {
	text-transform: capitalize;
}

.feat_prop_feature .feature_item .feat p {
	font-weight: 300;
}

.feat_prop_feature .feature_item .feat img {
	width: 26px;
	height: 26px;
	object-fit: scale-down;
	object-position: center;
}

.feat_prop_feature .feat_video {
	max-width: 789px;
	width: 100%;
	height: 440px;
	position: relative;
}

.feat_prop_feature .feat_video img,
.feat_prop_feature .feat_video video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.feat_prop_feature .feat_video .elementor-custom-embed-image-overlay,
.feat_prop_feature .feat_video .elementor-open-lightbox {
	height: 100%;
}

.feat_prop_feature .feat_video .elementor-custom-embed-play {
	width: 119px;
	height: 119px;
	object-fit: contain;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	z-index: 1;
	cursor: pointer;
	transform: unset;
}

.feat_prop_feature .feat_video .elementor-custom-embed-play .eicon-play {
	width: 100%;
	height: 100%;
	display: inline-block;
}

.feat_prop_feature .feat_video .elementor-custom-embed-play .eicon-play::before {
	width: 100%;
	height: 100%;
}

.feat_prop_area {
	max-width: calc(100% - 150px);
	margin: auto;
	margin-top: 70px;
	background-color: unset;
	padding: 0;
}

.feat_prop_area .container-fluidss {
	max-width: 1572px;
	margin: auto;
	background-color: var(--light_cream);
	padding: 0;
}

.feat_prop_area .feat-flx {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	min-height: 396px;
}

.feat_prop_area .address-content {
	max-width: 500px;
	width: 100%;
	padding: 62px 25px;
	margin-right: 65px;
}

.feat_prop_area .address-content h5 {
	text-align: center;
}

.feat_prop_area .proj_map {
	max-width: 791px;
	width: 100%;
	height: auto;
	/* mix-blend-mode: luminosity; */
}

.feat_prop_area .proj_map iframe {
	width: 100%;
	height: 100%;
}

.feat_prop_area .loca:nth-child(even)::before {
	background-color: unset;
}

.feat_prop_area .area_flx {
	row-gap: 45px;
	margin-top: 55px;
}

.book_appointment {
	max-width: calc(100% - 150px);
	margin: auto;
	margin-top: 65px;
	position: relative;
}

.book_appointment .container-fluidss {
	max-width: 1572px;
	margin: auto;
	padding-bottom: 45px;
	border-bottom: 1px solid #ccab6e;
}

.book_appointment .app_flx {
	display: flex;
	gap: 65px;
}

.book_appointment .mem_img {
	max-width: 208px;
	width: 100%;
	height: 215px;
}

.book_appointment .mem_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.book_appointment .book_content h5 {
	color: var(--black);
	font-size: 25px;
	font-style: normal;
	font-weight: 400;
	line-height: 37px;
}

.book_appointment .book_content .btn_read_more {
	margin-top: 0;

	font-size: 16px;
}

.book_appointment .book_content .btn_read_more span {
	width: 57px;
	height: 57px;
}

.book_appointment .book_content .btn_read_more img {
	width: 91px;
	height: 20px;
	margin-left: -32px;
}

.book_appointment .book_content .btn_read_more .btn_arrow_hover:hover span {
	transform: translateX(43px);
}

.book_appointment .book_content .btn_read_more .btn_arrow_hover:hover img {
	transform: translateX(-44px) scale(-1);
}

.book_appointment .inner-mem {
	margin-top: 62px;
	display: flex;
	gap: 29px;
	align-items: center;
}

.book_appointment .book_content {
	padding-top: 20px;
}

.book_appointment .custom-checkbox-wrapper {
	display: flex;
	gap: 27px;
	margin-right: 15px;
}

.book_appointment .custom-checkbox {
	display: flex;
	align-items: center;
	cursor: pointer;
	gap: 12px;

	color: var(--black);
	font-family: "Assistant", sans-serif !important;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.book_appointment .custom-checkbox input {
	display: none;
}

.book_appointment .checkbox-box {
	width: 18px;
	height: 18px;
	border: 1px solid #000;
	display: inline-block;
	position: relative;
}

.book_appointment .custom-checkbox input:checked + .checkbox-box::after {
	content: "";
	position: absolute;
	top: 0px;
	right: 6px;
	width: 6px;
	height: 12px;
	border: solid black;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.book_appointment .inner-mem .social_link {
	display: flex;
	align-items: center;
	gap: 29px;
}

.book_appointment .inner-mem .social_link img {
	object-position: top;
	width: 26px;
	height: 21px;
	object-fit: contain;
}

.propery_map {
	max-width: calc(100% - 150px);
	margin: auto;
	margin-top: 85px;
}

.propery_map .container-fluidss {
	max-width: 1572px;
	margin: auto;
	padding-bottom: 42px;
	border-bottom: 1px solid #ccab6e;
}

.propery_map .map_imgs {
	max-width: 761px;
	height: 430px;
	margin: auto;
}

.propery_map .map_imgs img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.feat_sold_prop {
	margin-top: 80px;
}

.feat_sold_prop::before {
	display: none;
}

.feat_sold_prop .sold_prop {
	max-width: 534px;
	height: 59px;
	margin: auto;
	margin-top: 55px;

	display: flex;
	align-items: center;
	justify-content: center;

	background-color: var(--golden);
}

.feat_sold_prop .sold_prop span {
	position: relative;
	z-index: 1;

	color: var(--white);
	font-family: "Assistant", sans-serif !important;
	font-size: 19px;
	font-style: normal;
	font-weight: 400;
	line-height: 52px;
}

.feat_proj_area {
	margin-top: 125px;
}

.feat_proj_area .area_img {
	max-width: 962px;
	width: 100%;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 25px;
	height: auto !important;
}

.feat_proj_area .area_img img {
	width: 100%;
	height: 263px;
}

.feat_proj_area .a_flx {
	align-items: end;
}

.feat_proj_area .text-content {
	max-width: 550px;
	width: 100%;
}

.feat_prop_banner {
	margin-top: 135px;
}

.feat_prop_cont .container-fluidss {
	padding-bottom: 95px;
}

.cate_model .content .more_text {
	display: none;
}

.cate_model .content .show_more.rotate img {
	transform: rotate(180deg);
	transition: transform 0.3s ease;
}

/****** SEARCH PROPERTIES ******/
.search-box-area {
	background-color: #f2f2f2;
}

.search-box-area .container {
	max-width: 1602px;
	margin: auto;
	padding: 16px 75px;
	padding-bottom: 36px;
}

.search-box-area .searchbox {
	padding: 0;
	border: unset;
	background: unset;
}

.search-box-area .searchtitle {
	color: var(--black);
	text-align: center;
	font-size: 32px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	margin-bottom: 40px;
	text-transform: capitalize;

	font-family: "Assistant", sans-serif !important;
}

.search-box-area form select option,
.search-box-area .ms-options ul li label {
	color: var(--black);
	text-align: justify;
	font-family: "Assistant", sans-serif !important;
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.search-box-area form select,
.search-box-area form .ms-options-wrap button {
	background: url(../images/svg/select_icon.svg) 7% 15px no-repeat !important;
	border: 1px solid #000 !important;
	background-color: rgba(255, 255, 255, 0) !important;
	height: 41px !important;
	font-family: "Assistant", sans-serif !important;
	font-size: 15px !important;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	padding-right: 16px !important;
	text-align: right !important;
	text-align-last: right !important;
}

.search-box-area form .ms-options-wrap button::after {
	display: none;
}

.search-box-area .searchbox .searchform .field {
	max-width: 197px;
}

.search-box-area form .field input,
.search-box-area form .field input::placeholder {
	font-family: "Assistant", sans-serif !important;
	font-size: 15px !important;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	text-align: right !important;
	text-align-last: right !important;
}

.search-box-area form .field input {
	border: 1px solid #000 !important;
	background-color: rgba(255, 255, 255, 0) !important;
	height: 41px !important;
	padding-right: 16px !important;
}

.search-box-area form .field {
	padding: 0 !important;
}

.search-box-area form .formcontainer {
	display: flex;
	gap: 12px;
	justify-content: center;
}

.search-box-area form .ms-options > ul input[type="checkbox"] {
	position: absolute;
	right: 4px;
	top: 12px !important;
	appearance: none;
	border: none !important;
	padding: 0 !important;
	margin: 0 !important;
}

/****** CATEGORY ITEMS ******/
.cate_model .modal-dialog {
	max-width: 1662px;
	padding: 0 75px;
	top: 15%;
}

.cate_model .modal-body {
	padding: 55px 104px;
	padding-bottom: 30px;
	background-color: rgba(244, 237, 223, 0.85);
}

.cate_model .btn-close {
	background: unset;
	background-color: rgba(204, 171, 110, 0.53);
	width: 49px;
	height: 49px;
	padding: 0;
	border-radius: 100%;
	position: absolute;
	top: -60px;
	left: 0;
	opacity: 1;
	box-shadow: unset;
}

.cate_model h3 {
	text-align: center;
}

.cate_model .cata_flx {
	display: flex;
	gap: 20px;
	justify-content: space-between;
	margin-top: 45px;
}

.cate_model .left_content {
	max-width: 590px;
	width: 100%;
}

.cate_model .left_content p {
	text-align: justify;
}

.cate_model .show_more {
	max-width: fit-content;
	margin: auto;
	margin-top: 15px;
	display: flex;
}

.cate_model .btns {
	display: flex;
	align-items: center;
	gap: 19px;
	margin-top: 40px;
}

.cate_model .btns a {
	color: var(--black);
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.cate_model .btns .social-link {
	display: flex;
	gap: 20px;
}

.cate_model .right_content {
	max-width: 621px;
	width: 100%;
}

.home_blog_modal.sell .contact-modal span.wpcf7-list-item label {
	flex-direction: row-reverse;
}

.cate_model .right_content .img {
	width: 100%;
	height: 349px;
}

.cate_model .right_content .img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.cate_model.value_modal .right_content .img {
	width: 100%;
	height: 349px;
}

.cate_model.value_modal .right_content > img {
	width: 100%;
	height: 349px;
	object-fit: cover;
}

.cate_model .btn_read_more {
	margin: auto;
	display: flex;
	margin-top: 19px;
	margin-right: 19px;
	font-size: 18px;
	color: var(--black);
	gap: 25px;
}

.cate_model .btn_read_more .btn_arrow_hover span {
	width: 86px;
	height: 86px;
}

.cate_model .btn_read_more .btn_arrow_hover img {
	width: 138px;
	margin-right: -45px;
	transition: all 1s;
	height: 20px;
}

.cate_model .btn_read_more .btn_arrow_hover:hover img {
	transform: translateX(65px);
}

.cate_model .btn_read_more .btn_arrow_hover:hover span {
	transform: translateX(-65px);
}

.cate_model .cont_2 {
	margin-top: 30px;
}

.buy_modal .cont_2 {
	margin-top: 52px;
}

.buy_modal .btns,
.sell_modal .btns {
	gap: 75px;
}

.que_model {
	max-width: 885px;
	padding: 75px 75px;
	background-color: rgb(244 237 223 / 96%);
	border: unset !important;
}

.que_model #close_btn {
	width: 49px;
	height: 49px;
	border-radius: 100%;
	background-color: rgba(204, 171, 110, 0.53);
	color: var(--white);
	align-items: center;
	justify-content: center;
	display: flex;
	position: absolute;
	top: -60px;
	left: 0;
}

.que_model h3 {
	color: var(--black) !important;
	text-align: center !important;
	font-size: 32px !important;
	font-style: normal !important;
	font-weight: 400 !important;
	line-height: normal !important;
	font-family: "Assistant", sans-serif !important;
	padding: 0 !important;
}

.que_model .model_content {
	padding: 0;
}

.que_model form input,
.que_model form input::placeholder {
	color: var(--black) !important;
	font-family: "Assistant", sans-serif !important;
	font-size: 17px !important;
	font-style: normal !important;
	font-weight: 400 !important;
	line-height: 52px !important;
}

.que_model form input {
	border: unset !important;
	border-bottom: 1px solid #000 !important;
	padding: 0 !important;
	background-color: transparent !important;
	height: auto !important;
	margin-top: 17px !important;
	border-radius: unset !important;
}

.que_model .labelckech {
	display: flex !important;
	float: unset;
}

.que_model .labelckech label {
	display: flex;
	align-items: center;
	gap: 20px;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	margin-top: 20px;
	flex-direction: row-reverse;
}

.que_model .labelckech label span {
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	width: 100%;
}

.que_model .labelckech label input {
	margin-top: 0 !important;
}

.que_model form .submit {
	width: 100%;
	height: 59px;

	background-color: var(--golden);
	position: relative;
	transition: all 1s;
}

.que_model form .submit::before {
	content: "";
	position: absolute;
	display: inline-block;
	width: 0;
	height: 100%;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	margin: auto;
	background-color: var(--black);
	transition: all 1s;
}

.que_model form .submit:hover::before {
	width: 100%;
}

.que_model form .submit input {
	width: 100% !important;
	height: 100% !important;
	position: relative;
	z-index: 2;

	margin-top: 0 !important;
	border: unset !important;

	color: var(--white) !important;
	text-align: center !important;
	font-family: "Assistant", sans-serif !important;
	font-size: 19px !important;
	font-style: normal !important;
	font-weight: 400 !important;
	line-height: normal !important;
}

.post-type-archive-blog .elementor-column-gap-default > .elementor-column > .elementor-element-populated {
	padding: 0 !important;
}

.post-type-archive-blog .elementor-7507 .elementor-element.elementor-element-b8243b9 > .elementor-container,
.post-type-archive-blog .elementor-7507 .elementor-element.elementor-element-614b329 > .elementor-container,
.post-type-archive-blog .elementor-section.elementor-top-section .elementor-container {
	max-width: 100% !important;
}

.post-type-archive-blog .blog_content_div {
	margin-top: 0;
}

.searchstik {
	padding: 0 75px;
}

.searchstik .searchbox.active_sf {
	background-color: rgb(244 237 223) !important;
	max-width: 1472px;
	padding: 16px 30px;
	padding-bottom: 35px;
	border: unset;
}

.searchstik .searchbox #close_btn {
	background-color: rgba(204, 171, 110, 0.85);
	width: 49px;
	height: 49px;
	border-radius: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	left: 0;
	right: unset;
	top: -55px;
}

.searchstik .searchbox.active_sf .searchtitle {
	color: var(--black);
	text-align: center;
	font-family: "Assistant", sans-serif;
	font-size: 32px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	text-transform: capitalize;
}

.searchstik .searchbox .searchform .field select,
.searchstik #propertyno {
	padding: 0 16px;
	text-align-last: right;
	height: 41px;
	border: 1px solid #000;

	color: var(--black);
	text-align: justify;
	font-family: "Assistant", sans-serif !important;
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.searchstik .ms-options-wrap button {
	padding: 0 16px;
	height: 41px;
	text-align: right;
	border: 1px solid #000;

	color: var(--black);
	text-align: justify;
	font-family: "Assistant", sans-serif !important;
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.searchstik .ms-options-wrap.ms-active > .ms-options {
	padding-right: 7px;
}

.searchstik .ms-options-wrap > .ms-options > ul label {
	padding-left: 0;
}

.searchstik .desk .sbtn {
	height: 41px !important;
	color: var(--white) !important;
	text-align: center !important;
	font-family: "Assistant", sans-serif !important;
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	position: relative;
	z-index: 1;
	background-color: transparent !important;
	border: unset !important;
	box-shadow: unset !important;
}

.searchstik .searchbox .formcontainer {
	display: flex;
	gap: 10px;
}

.searchstik .searchbox .field {
	max-width: 100%;
	width: 100%;
	padding: 0;
}

/****** NEIGHBORHOODS PAGE ******/
.neigh_detail header {
	position: relative;
}

.rehavia_neigh {
	max-width: calc(100% - 150px);
	margin: auto;
	margin-top: 35px;
}

.rehavia_neigh .container-fluidss {
	max-width: 1303px;
	margin: auto;
}

.rehavia_neigh h3 {
	text-align: center;
}

.rehavia_neigh .neig_flx {
	display: flex;
	gap: 20px;
	justify-content: space-between;
	margin-top: 45px;
}

.rehavia_neigh .left-content {
	max-width: 590px;
	width: 100%;
}

.rehavia_neigh .right-content {
	max-width: 621px;
	height: 350px;
	width: 100%;
}

.rehavia_neigh .right-content img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.rehavia_neigh .more_text {
	display: none;
}

.rehavia_neigh .show_more.rotate img {
	transform: rotate(180deg);
	transition: transform 0.3s ease;
}

.rehavia_neigh .show_more {
	display: flex;
	width: fit-content;
	margin: auto;
	margin-top: 10px;
}

.rehavia_neigh p {
	text-align: justify;
}

.rehavia_neigh .wrap_2 {
	margin-top: 30px;
}

.rehavia_neigh .show_more {
	margin-top: 11px;
}

.neigh_jerus_proj {
	margin-top: 100px;
}

.neigh_jerus_proj h3 {
	text-align: center;
}

/* .term-rehavia .elementor-section.elementor-section-boxed>.elementor-container {
  max-width: 100%;
} */

.term-rehavia .elementor-column-gap-default > .elementor-column > .elementor-element-populated {
	padding: 0;
}

.term-rehavia .new_projects_cards .project_card .proj_content img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* .term-rehavia .new_projects_cards .project_card .proj_content .wish_list img {
  object-fit: scale-down;
} */

.term-rehavia .new_jerus_projects::before {
	width: 3000px;
	right: -50%;
}

.que_model.appoi {
	width: 100%;
	background: rgba(244, 237, 223, 0.95);
	transform: unset;
	top: 12%;
}

.que_model.appoi .wpcf7-not-valid-tip {
	font-size: 14px;
	text-align: right;
	line-height: normal;
	margin-top: 7px;
}

.que_model.appoi #close_btn {
	background-color: rgba(204, 171, 110, 0.75);
}

.que_model.appoi .half.submit {
	padding-top: 0;
}

.que_model.appoi .labelckech {
	margin-top: 0;
	justify-content: end;
	text-align: right;
}

.que_model.appoi .app .wpcf7-list-item input[type="checkbox"],
.que_model.appoi .labelckech .wpcf7-list-item input[type="checkbox"] {
	appearance: none;
	width: 26px;
	height: 26px !important;
	border: 1px solid transparent !important;
	border-radius: 5px;
	cursor: pointer;
	position: relative;
	transition: all 0.2s ease;
	background-color: #d9d9d9 !important;
	margin-top: 0 !important;
}

.que_model.appoi .app .wpcf7-list-item input[type="checkbox"]::after,
.que_model.appoi .labelckech .wpcf7-list-item input[type="checkbox"]::after {
	content: "";
	position: absolute;
	top: 4px;
	right: 9px;
	width: 5px;
	height: 12px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
	opacity: 0;
	transition: all 0.2s ease;
}

.que_model.appoi .app .wpcf7-list-item label,
.que_model.appoi .labelckech .wpcf7-list-item label {
	color: var(--black);
	font-family: "Assistant", sans-serif !important;
	font-size: 17px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.que_model.appoi .app .wpcf7-list-item input[type="checkbox"]:checked,
.que_model.appoi .labelckech .wpcf7-list-item input[type="checkbox"]:checked {
	background-color: var(--black) !important;
	border-color: var(--black) !important;
}

.que_model.appoi .app .wpcf7-list-item input[type="checkbox"]:checked::after,
.que_model.appoi .labelckech .wpcf7-list-item input[type="checkbox"]:checked::after {
	opacity: 1;
}

.que_model.appoi .app .wpcf7-list-item > label,
.que_model.appoi .labelckech .wpcf7-list-item > label {
	display: flex;
	align-items: center;
	gap: 13px;
}

.que_model.appoi .app {
	margin-top: 45px;
}

.que_model.appoi .app .wpcf7-list-item.last {
	margin-right: 0;
}

.que_model.appoi .app .wpcf7-checkbox {
	display: flex;
	gap: 35px;
}

.que_model .model_title h3 {
	text-transform: capitalize;
}

.top_content.free-text p {
	width: 90%;
}

.top_content.free-text {
	right: 0;
	left: unset;
}

.feat_cohen_group.npj_cohen {
	max-width: calc(100% - 150px) !important;
}

.feat_cohen_group .join_vip .elementor-widget-container {
	padding: 0 !important;
}

.post-type-archive-blog .breadcrumbs {
	padding: 0 75px;
}

.for-single-mobile {
	display: none !important;
}

.modal {
	z-index: 9999 !important;
}

.single-development .inner_cantainer {
	display: none;
}

.searchbox .searchform .field.desk {
	position: relative;
	height: 41px !important;
	transition: all 1s;

	background-color: var(--black) !important;
	border: unset !important;

	display: flex;
	align-items: center;
	justify-content: center;
}

.searchbox .searchform .field.desk::before {
	content: "";
	position: absolute;
	display: inline-block;
	width: 0;
	height: 100%;
	background-color: var(--golden);
	right: 0;
	left: 0;
	margin: auto;
	transition: all 1s;
}

.searchbox .searchform .field.desk:hover::before {
	width: 100%;
}

.search-box-area form .field.desk .sbtn {
	height: 100% !important;
	position: relative;
	z-index: 2;
	color: var(--white) !important;
	text-align: center !important;
	padding: 0 !important;
	text-align-last: center !important;
	border: unset !important;
}

.searchbox .searchform .field .ms-options-wrap ul {
	padding-right: 15px;
}

.prop_whats_new .luxury_pro_cards .prop_card .top_content {
	min-height: 47px;
	padding: 9px 20px;
}

.page-template-template-about .about_cohen .bread_crumb {
	max-width: 1572px;
	margin: auto;
	padding: 0;
	margin-bottom: 35px;
}

.page-template-template-contact {
	margin-top: 242px;
}

.contactUs_form form .note {
	display: none;
}

.page-template-template-contact footer {
	margin-top: 35px;
}

.home_banner.service_banner h1 {
	color: var(--white);
	text-align: center;
	font-size: 30px;
	font-style: normal;
	font-weight: 400;
	line-height: 50px;
}

.service_exper .bread_crumb p:nth-child(3) {
	text-decoration: underline;
}

.single-property .feat_prop_detail.apartment-plan {
	margin-top: 0 !important;
}

.single-property {
	margin-top: 250px;
}

.elementor-top-section.blog_content_div {
	max-width: calc(100% - 150px);
}

.breadcrumbs span {
	font-family: "Assistant", sans-serif !important;
}

.apartment-plan .single-contact-now-btn {
	max-width: fit-content;
	height: 59px;
	padding: 0 17px;
}

.apartment-plan .single-contact-now-btn a {
	font-size: 16px !important;
	line-height: normal !important;
	font-weight: 400 !important;
}

.new_pro_banner h1 {
	text-transform: unset !important;
}

.feat_cohen_group.npj_cohen .more_proj_btn {
	margin-top: 10px;
}

.new_jerus_projects.feat_lux_prop .new_projects_cards .see_more_proj.rotate {
	top: 0;
}

.blog_banner > .elementor-container {
	height: 100%;
	min-height: unset !important;
}

.neigh-proj-items .elementor-column-gap-default > .elementor-column > .elementor-element-populated {
	padding: 0 !important;
}

.modal form .wpcf7-not-valid-tip {
	font-size: 12px;
}

.modal form.wpcf7-form label.error {
	color: #dc3232;
	font-size: 12px;
	float: none;
	padding-right: 0;
	width: 100%;
	bottom: 0;
	position: unset;
}

.new_projects_cards .project_card .hover_content .arrow,
.luxury_pro_cards .prop_card .hover_content .arrow {
	padding-bottom: 2px;
	transform: scale(-1);
}

.contactUs-page nav .mega_menu li.menu-item a,
.about-page nav .mega_menu li.menu-item a {
	color: var(--white) !important;
}

.more_proj_btn.media-page span {
	border: 2px solid #000 !important;
}

.new_jerus_projects.sold_props::before {
	height: -webkit-fill-available !important;
}

.new_jerus_projects.sold_props {
	padding-bottom: 50px !important;
}

.duplex_penthouse .right-content h5,
.duplex_penthouse .right-content h4 {
	font-family: "Assistant", sans-serif !important;
}

.duplex_penthouse .right-content .penthouse-category h5 {
	font-family: "Assistant", sans-serif !important;
}

.ein_contact_us form span.note {
	display: none;
}

.breadcrumbs .elementor-widget-wrap.elementor-element-populated {
	padding: 0 75px;
}

.breadcrumbs .elementor-widget {
	margin-bottom: 0;
}

/* .feat_prop_feature .feat_flx .eicon-play:before {
	content: '';
	background-image: url("assets/images/svg/video_play.svg");
	width: 119px;
	height: 119px;
	background-size: contain;
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
} */

.feat_prop_feature .feat_video span.elementor-screen-only {
	display: none;
}

.single-development .about_propertise.feat_prop_banner {
	margin-top: 0;
}

.blog_detail_content.toparea {
	margin-top: 0 !important;
}

.blog_detail_content {
	margin-top: 85px !important;
}

.search-box-area .searchbox .searchform .field select,
.search-box-area .searchbox .searchform .field input {
	border-radius: unset !important;
}

.searchstik .searchbox form .formcontainer .field input {
	border-radius: unset !important;
}

.rtl .ms-options-wrap > .ms-options > ul input[type="checkbox"] {
	right: -7px;
	left: unset;
	top: 11px;
}

.ms-options-wrap input[type="checkbox"]:before {
	top: 0;
	right: 0;
}

.safari .modal form input {
	width: 100% !important;
	border-radius: unset !important;
}

.safari .contact-modal.modal form .checkbox-group input {
	width: 26px !important;
	height: 26px !important;
}

.safari .modal form .checkbox-wrapper input {
	max-width: 26px !important;
	width: 100% !important;
	height: 26px !important;
}

.que_model.active_que .wpcf7-not-valid-tip {
	font-size: 12px !important;
	text-align: right !important;
}

.btn-newsletter.visible {
	z-index: 99999 !important;
}

.btn-newsletter {
	z-index: -1 !important;
}

.elementor-widget:not(:last-child) {
	margin-bottom: 0;
}

/*Extra css*/
.wpcf7-form label.error {
	position: absolute;
	right: 0;
	bottom: -16px;
	font-family: "Assistant", sans-serif;
	padding-right: 0;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
	border: none;
	color: #000;
	margin: 0;
	padding: 0;
	text-align: right;
	font-size: 14px;
	font-family: "Assistant", sans-serif;
}

.copy-link-btn {
	padding-right: 0;
	margin-right: 0;
	position: relative;
	right: -2px;
}

/*General page css*/
.single-post.general-page ul,
.single-post.general-page ol {
	padding-right: 0;
	margin-bottom: 0;
}

.single-post.general-page ol li,
.single-post.general-page ul li {
	list-style: none;
}

.single-post.general-page .blog_detail_content .text-wrapper ul,
.single-post.general-page .blog_detail_content .text-wrapper ol,
.general-page ol,
.general-page ul {
	padding-right: 20px;
	margin-bottom: 20px;
}

.single-post.general-page .blog_detail_content .text-wrapper ul li,
.general-page ul li {
	list-style: disc;
	font-size: 16px;
	font-family: "Assistant", sans-serif;
	line-height: 26px;
}

.single-post.general-page .blog_detail_content .text-wrapper ol li,
.general-page ol li {
	list-style: decimal;
	font-size: 16px;
	font-family: "Assistant", sans-serif;
	line-height: 26px;
}

.general-page h1,
.general-page h2,
.general-page h3,
.general-page h4,
.general-page h5,
.general-page h6 {
	color: #000;
	font-weight: 700;
	margin: revert !important;
}

.single-post.general-page .blog_detail_content .text-wrapper h1,
.blog_detail_content .text-wrapper.full-width.general-page h1,
.general-page h1 {
	font-size: 2.5rem !important;
	text-align: right !important;
}

.general-page h2 {
	font-size: 2rem !important;
	text-align: right !important;
	color: #000 !important;
	line-height: normal !important;
	letter-spacing: normal !important;
}

.general-page h3 {
	font-size: 1.75rem !important;
	text-align: right !important;
	color: #000 !important;
	line-height: normal !important;
	letter-spacing: normal !important;
}

.general-page h4 {
	font-size: 1.5rem !important;
	color: #000 !important;
}

.general-page h5 {
	font-size: 1.25rem !important;
	color: #000 !important;
}

.general-page h6 {
	font-size: 1rem !important;
	color: #000 !important;
}

em {
	font-style: italic !important;
}

.single-post .blog_detail_content h1 {
	text-align: center !important;
	max-width: 100%;
}

/*General page css ends*/
.rehavia_neigh h1 {
	color: var(--black);
	font-size: 32px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	text-align: center;
	text-transform: capitalize;
}

.page-template-template-about .welcome_oren_cohen h1 {
	color: var(--black);
	font-size: 32px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	text-align: right;
	text-transform: capitalize;
}

.einSof-more-items .top-content h1 {
	color: var(--golden);
	text-align: center;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	margin-top: 25px;
	margin-bottom: 25px;
}

.elementor-build-page p {
	margin-bottom: 10px;
}

.new_jerus_projects.feat_lux_prop .elementor-align-left.elementor-widget {
	text-align: right;
}

.tax-neighborhood .elementor-column-gap-default > .elementor-column > .elementor-element-populated {
	padding: 0;
}

.feat_lux_prop .elementor-widget-wrap.elementor-element-populated .elementor-button-wrapper {
	text-align: right;
}

.feat_prop_area .proj_map .acf-map {
	height: 100%;
}

.rtl .wpcf7-form label.error {
	display: none !important;
}

.contactUs_form .contact-more-detail .link.whtsap {
	direction: ltr;
	flex-direction: row-reverse;
}

.videplac .playbtn {
	z-index: 9;
	cursor: pointer;
}

.blog_banner .main_img .elementor-element {
	height: 100%;
}

.feat_lux_prop .heading .elementor-element {
	text-align: right;
}

body.no-scroll {
	overflow: hidden;
	position: fixed;
	width: 100%;
}

.elementor-widget-text-editor h1,
.elementor-widget-text-editor h2 {
	font-size: inherit !important;
}

/*
body.page-template-template-media,
body.page-template {
	padding-top: 0 !important;
} */

.que_model.appoi {
	top: 9%;
}

.searchstik .searchbox .location-field,
.searchstik .searchbox .type-field {
	display: none;
}

.blog_detail_content .text-wrapper p {
	text-align: justify;
	line-height: 32px;
	font-size: 18px;
}
.insta-logo{
	display: flex;
	align-items: end;
	justify-content: center;
	gap: 10px;
}
.insta-logo a img{
	width: 50%;
	height: 50%;
	max-width: 50px;
	margin: 0 auto;
	text-align: center;
	display: block;
}
.return-to-blog a.elementor-button.elementor-button-link.elementor-size-sm{
	display: inline-flex;
	width: 100%;
	height: 52px;
	justify-content: center;
	align-items: center;
	color: var(--black);
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	border: 2px solid #000;
	background: var(--white);
	max-width: 170px;
}
.searchstik .ms-options-wrap>.ms-options>ul label{
	padding-top: 2px;
}
.single-development .labelckech span,
.single-property .labelckech span{
	text-align: right;
}

.project_banner .img::before{
	z-index: -1;
}
.service_exper .service_item h4{
	font-family: "Assistant", sans-serif !important;
	line-height: 30px !important;
	margin-bottom: 19px;
}