/**
	* Theme Name:     Webinmo Child
	* Author:         the WordPress team
	* Template:       twentytwentyone
	* Text Domain:	   webinmo-child
	* Version: 1.30
	* Description:    Webinmo is a blank canvas for your ideas and it makes the block editor your best brush. With new block patterns, which allow you to create a beautiful layout in a matter of seconds, this theme’s soft colors and eye-catching — yet timeless — design will let your work shine. Take it for a spin! See how Webinmo elevates your portfolio, business website, or personal blog.
*/

* {
	box-sizing: border-box;
}
:root {
	--clr_main: #f1d38e;
	--clr_border: #DCB865;
	--clr_dark: #064444;
	--clr_text: #fff;
	--transition: all 0.3s 0s ease-in-out;
	--font_Glacial: 'Glacial Indifference';
	--font_Aileron: 'Aileron';
	--font_Cormorant: 'Cormorant Garamond';
}
html {
	scroll-behavior: smooth;
	height: auto !important; /*added 11/11/2024 */
}
body {
	margin: 0;
	font-size: 19px;
	line-height: 1;
	font-weight: 400;
	color: var(--clr_text);
	font-family: var(--font_Glacial);
}
.container_full {
	padding: 0 60px;
	width: 100%;
}
.container {
	max-width: 1200px;
	padding-left: 20px;
	padding-right: 20px;
	margin-left: auto;
	margin-right: auto;
}
.wide_container {
	max-width: 1400px;
	padding-left: 20px;
	padding-right: 20px;
	margin-left: auto;
	margin-right: auto;
}
.row {
	display: flex;
	flex-wrap: wrap;
	margin-left: -15px;
	margin-right: -15px;
}
.row>[class*="col_"] {
	padding-left: 15px;
	padding-right: 15px;
}
.col_4 {
	width: 33.3333%;
}
.col_6 {
	width: 50%;
}
a {
	text-decoration: none;
	outline: none;
	transition: var(--transition);
}
ul {
	padding-left: 0;
	margin: 0;
}
img,
iframe {
	vertical-align: top;
	max-width: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
	margin-top: 0;
}
h1 {
	font-family: var(--font_Glacial);
	font-weight: 400;
	text-transform: uppercase;
	font-size: 47px;
	line-height: 1.3;
	letter-spacing: 9px;
	margin-bottom: 32px;
}
h2 {
	font-family: var(--font_Glacial);
	font-weight: 400;
	text-transform: uppercase;
	font-size: 42px;
	line-height: 1.3;
	letter-spacing: 11px;
	margin-bottom: 30px;
}
p {
	line-height: 1.5;
}
p:last-child {
	margin-bottom: 0;
}
.main_title {
	text-align: center;
}
/* .main_title h2 {
	font-size: 45px;
} */
.link_btn {
	margin-top: 45px;
}
.link_btn a {
	font-family: var(--font_Glacial);
	font-size: 18px;
	line-height: 1;
	text-transform: uppercase;
	color: var(--clr_main);
	display: inline-block;
	letter-spacing: 3px;
	position: relative;
	padding-bottom: 12px;
}
.link_btn a::after {
	content: '';
	width: 100%;
	display: block;
	border-bottom: 1px solid var(--clr_main);
	transition: var(--transition);
	position: absolute;
	bottom: 0;
	left: 0;	
	right: auto; 
}


.cta_property_sec .link_btn a {
	font-size: 1.6vw;
	padding-bottom: 1.3vw;
}
.cta_property_sec .link_btn a::after {
	border-bottom: 0.3vw solid var(--clr_main);
	width:110%;
	left: 50%;
	transform: translate(-50%, -50%);
	/* right: auto; */
}




.link_btn a:hover:after {
	width: 0;
	right: 0;
	left: auto;
}
.comn_btn {
	margin-top: 40px;
}
.comn_btn a {
	font-size: 1vw;
	line-height: 1;
	text-transform: uppercase;
	font-weight: 400;
	letter-spacing: 3px;
	background-color: var(--clr_main);
	color: #013030;
	padding: 1.3vw 3.7vw;
	display: inline-block;
	border: 1px solid var(--clr_main);
}
.comn_btn a:hover {
	background-color: transparent;
	color: var(--clr_main);
}
.bg_white .comn_btn a {
	border-color: var(--clr_border);
	background-color: var(--clr_border);
	color: var(--clr_text);
}
.bg_white .comn_btn a:hover {
	border-color: var(--clr_dark);
	background-color: transparent;
	color: var(--clr_dark);
}
.bg_white .comn_btn.reverse_hover a {
	border-color: var(--clr_dark);
	background-color: transparent;
	color: var(--clr_dark);
}
.bg_white .comn_btn.reverse_hover a:hover {
	border-color: var(--clr_border);
	background-color: var(--clr_border);
	color: var(--clr_text);
}
.contact_b.comn_btn a {
	font-weight: 700;
	padding: 19px 32px;
	border-width: 2px;
}
.lock-scrolling {
	overflow: hidden;
}
body .w_full {
	width: 100%;
}
body .max_w_full {
	max-width: 100%;
}
body .pl_0 {
	padding-left: 0;
}
body .clr_main {
	color: var(--clr_main);
}
.bg_white {
	background-color: var(--clr_text);
	color: var(--clr_dark);
}

/* Header start */
.site-header {
	padding: 20px 0;
	background-color: #115b4c;
	background-image: url('/wp-content/uploads/header-bg.jpg');
	background-size: cover;
	background-position: center center;
	z-index: 99;
}
.site-header .head_row {
	display: flex;
	flex-wrap: wrap;
}
.site-header .head_left {
	width: 40%;
	display: flex;
	gap: 25px;
	align-items: center;
}

.site-header .head_left .header_wishlist{
	position:relative;
}

.site-header .site-branding {
	width: 20%;
	text-align: center;
}
.site-header .site-branding img {
	width: 100%;
	max-width: 90px;
	height: auto;
}
.site-header .primary-navigation {
	width: 40%;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.header_name a {
	font-family: var(--font_Cormorant);
	color: var(--clr_main);
	text-transform: uppercase;
	font-weight: 700;
	font-size: 32px;
	line-height: 1;
	letter-spacing: 6px;
}
.header_wishlist a,
.header_search a {
	font-size: 22px;
	line-height: 1;
	color: var(--clr_text);
}
.header_wishlist a .count {
	font-size: 12px;
	vertical-align: top;
	display: inline-block;
	margin-left: 5px;
}
.header_wishlist a{
	cursor: pointer;
}
.header_search i{
	font-weight:lighter;
}
.wishlist-popup{
	min-width:222px;
	display: none; border: 1px solid #c4c4c4; 
	padding: 10px;
	padding-bottom:0px; 
	background-color: #125a4c; 
	position: absolute;margin-top: 10px;
	color:#333;
	max-height: 350px;
	overflow-y: scroll;
	z-index:10000;
}

.menu_items ul {
	list-style: none;
	display: flex;
}
.menu_items ul li {
	margin-right: 40px;
	text-transform: uppercase;
	font-size: 16px;
	color: var(--clr_text);
	letter-spacing: 4px;
}
.menu_items ul li a {
	color: var(--clr_text);
}
.menu_items ul li a:hover {
	color: var(--clr_main);
}
.menu-button-container .button {
	background: none;
	border: none;
	outline: none;
	padding: 0;
	text-align: right;
	cursor: pointer;
	width: 65px;
}
.menu-button-container .button span {
	display: block;
	width: 100%;
	height: 3px;
	background-color: var(--clr_main);
	margin-bottom: 12px;
	margin-left: auto;
	transition: var(--transition);
}
.menu-button-container .button span:nth-child(2) {
	background-color: var(--clr_text);
	width: 76%;
}
.menu-button-container .button span:last-child {
	margin-bottom: 0;
	width: 52%;
}
.menu-button-container .button:hover span {
	width: 100% !important;
}
.site-header .primary-menu-container {
	position: fixed;
	background-image: url('/wp-content/uploads/nav-bg.jpg');
	left: 0;
	right: 0;
	top: -120%;
	bottom: 0;
	height: 100vh;
	z-index: 99;
	transition: all 0.5s 0s ease-in-out;
	background-size: cover;
	background-position: center center;
	display: flex;
	align-items: center;
	justify-content: center;
}

.site-header .primary-menu-container .header_wishlist{
	position:absolute;
	top:0;
	margin-top:70px;
	margin-right:40px;
}
.site-header .primary-menu-container .header_search{
	position:absolute;
	top:0;
	margin-top:70px;
	margin-left:40px
}
.site-header .primary-menu-container .header_wishlist .wishlist-container{
	position:absolute;top:0;left:0;margin-top:10px;margin-left:10px;color:black;background-color:rgb(255,255,255,0.9);padding:2px 3px;font-size:16px;border-radius:4px;

}
.site-header .primary-menu-container .header_wishlist img{
width:100%;
}
.site-header .primary-menu-container::before {
	content: '';
	background-color: #000;
	opacity: 0.75;
	position: absolute;
	left: 0;
	right: 0;
	top: -100%;
	bottom: 0;
}
.site-header .gtranslate_wrapper {
	position: absolute;
	z-index: 5;
	top: 60px;
	display: flex;
	column-gap: 12px;
}
.site-header .gtranslate_wrapper img {
	width: 100%;
	max-width: 32px;
	opacity: 1;
}
.menu_social {
	position: absolute;
	bottom: 60px;
	z-index: 5;
}
.menu_social ul {
	display: flex;
	justify-content: center;
	gap: 0 15px;
	list-style: none;
}
.menu_social li a {
	width: 45px;
	height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--clr_text);
	border-radius: 50%;
	font-size: 24px;
	line-height: 1;
	color: #fff;
}
.menu_social li a:hover {
	background-color: var(--clr_main);
	border-color: var(--clr_main);
	color: var(--clr_dark);
}
.site-header .primary-menu-container-in {
	max-width: 1150px;
}
.site-header .primary-menu-container .menu-wrappers {
	padding: 120px 50px;
	position: relative;
	z-index: 2;
}
.site-header .primary-menu-container .menu-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 46px 50px;
	list-style: none;
}
.site-header .primary-menu-container .menu-wrapper .menu-item {
	font-size: 20px;
	line-height: 1;
	letter-spacing: 6px;
	text-transform: uppercase;
}
.site-header .primary-menu-container .menu-wrapper .menu-item a {
	color: var(--clr_text);
}
.site-header .primary-menu-container .menu-wrapper .menu-item a:hover {
	color: var(--clr_main);
}
.site-header .primary-menu-container .menu-wrapper .menu-item.current-menu-item {
	font-weight: 700;
}
.site-header .primary-menu-container .menu-wrapper .menu-item.current-menu-item a {
	color: var(--clr_main);
}
.primary-navigation-open .site-header .primary-menu-container::before,
.primary-navigation-open .site-header .primary-menu-container {
	top: 0;
}
.menu-button-close {
	position: absolute;
	top: 40px;
	right: 60px;
	z-index: 9;
}
.menu-button-close .button {
	background: none;
	border: none;
	outline: none;
	position: relative;
	cursor: pointer;
	width: 30px;
	height: 30px;
	padding: 0;
}
.menu-button-close .button span {
	position: absolute;
	width: 100%;
	height: 2px;
	background-color: var(--clr_main);
	top: 45%;
	left: 0;
	transform: rotate(45deg);
}
.menu-button-close .button span:last-child {
	transform: rotate(-45deg);
	background-color: var(--clr_text);
}
/* .home .site-header {
	position: absolute;
	width: 100%;
	top: 40px;
} */
/* Header end */

/* Footer start */
.site-footer {
	padding: 100px 0 70px;
	text-align: center;
}
.site-footer ul {
	list-style: none;
}
.site-footer a {
	color: var(--clr_text);
}
.site-footer a:hover {
	color: var(--clr_main);
}
.site-footer .site-info {
	margin-bottom: 70px;
}
.site-footer .site-info img {
	max-width: 96px;
	height: auto;
}
.footer_top p {
	text-transform: uppercase;
	color: #F1D38E;
	font-size: 18px;
	line-height: 1;
	letter-spacing: 4px;
	margin-bottom: 10px;
}
.footer_top h2 {
	font-family: var(--font_Cormorant);
	font-size: 32px;
	text-transform: none;
	letter-spacing: 0;
	margin-bottom: 50px;
}
.footer_menu {
	max-width: 647px;
	margin: 0 auto 80px;
}
.footer_menu .footer-navigation-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 40px 93px;
	flex-wrap: wrap;
	position: relative;
}
.footer_menu .footer-navigation-wrapper .menu-item {
	text-transform: uppercase;
	font-size: 14px;
	line-height: 1.4;
	font-weight: 400;
	letter-spacing: 3px;
}
.footer_menu .footer-navigation-wrapper::after {
	content: '';
	position: absolute;
	top: 39px;
	width: 100%;
	height: 1px;
	/* background-color: rgba(255, 255, 255, 0.2); 1113*/
	background-color: #b9b9b9;
}
.footer_contact {
	margin-bottom: 40px;
}
.footer_contact ul {
	display: flex;
	justify-content: center;
	gap: 0 90px;
}
.footer_contact ul li {
	font-size: 15px;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 4px;
	font-family: var(--font_Aileron);
}
.copyright p {
	font-size: 16px;
}
.copyright {
	margin-bottom: 60px;
}
.footer_social ul {
	display: flex;
	justify-content: center;
	gap: 0 15px;
}
.footer_social ul li a {
	width: 45px;
	height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid var(--clr_text);
	border-radius: 50%;
	font-size: 23px;
	line-height: 1;
}
.footer_social ul li a:hover {
	background-color: var(--clr_main);
	border-color: var(--clr_main);
	color: var(--clr_dark);
}
/* Footer end */

/* Home page start */
.home_ban_sec {
	position: relative;
	overflow: hidden;
}
.home_ban_desktop {
	/* margin-bottom: -3.2%; */
}
.home_ban_btns a {
	font-size: 1.4vw;
	line-height: 1;
	color: #013030;
	position: absolute;
	bottom: 26.6%;
	left: 17.4%;
	z-index: 3;
	letter-spacing: 4px;
}
.home_ban_btns .home_ban_right {
	left: auto;
	right: 16%;
}
.home_ban_mob {
	display: none;
}
.title_sec {
	padding: 120px 0 80px;
	text-align: center;
}
.title_wrap {
	max-width: 970px;
	margin: 0 auto;
}
.title_wrap h1:last-child {
	margin-bottom: 0;
}
.title_wrap .comn_btn {
	margin-top: 70px;
}
.comn_sections {
	padding: 80px 0 20px;
}
.comn_section {
	margin-bottom: 200px;
}
.comn_container {
	padding: 0 80px;
	max-width: 1260px;
	margin-left: auto;
	margin-right: auto;
}
.full_container .comn_container {
	padding: 0 0;
	max-width: none;
}
.comn_row {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.comn_img {
	width: 58%;
	padding-right: 80px;
}
.comn_img img {
	width: 100%;
}
.comn_txt {
	width: 42%;
}
.comn_txt_in {
	max-width: 350px;
	margin-left: auto;
}
.comn_txt_in a{
	
	color:var(--clr_main);
}

.comn_txt_in p{
	font-size:23px;
}

.page-template-gem-collection .comn_txt_in a{
	color:white;
}

.comn_section:nth-child(2n) .comn_row {
	flex-direction: row-reverse;
}
.comn_section:nth-child(2n) .comn_img {
	padding-right: 0;
	padding-left: 80px;
}
.comn_section:nth-child(2n) .comn_txt_in {
	margin-left: 0;
}
.reverse_order .comn_section .comn_row {
	flex-direction: row-reverse;
}
.reverse_order .comn_section .comn_img {
	padding-right: 0;
	padding-left: 80px;
}
.reverse_order .comn_section .comn_txt_in {
	margin-left: 0;
}
.reverse_order .comn_section:nth-child(2n) .comn_row {
	flex-direction: row;
}
.reverse_order .comn_section:nth-child(2n) .comn_img {
	padding-right: 80px;
	padding-left: 0;
}
.reverse_order .comn_section:nth-child(2n) .comn_txt_in {
	margin-left: auto;
}
/* .home .title_sec .link_btn a {
	padding-left: 20px;
	padding-right: 20px;
} */
.cta_property_slider {
	position: relative;
	text-align: center;
}
.cta_property_slider .item {
	/* padding: 220px 60px 420px; 1111 */
	padding: 16vw 6vw 429px; 
	position: relative;
	background-size: cover;
	background-position: top center;	
	background-color:transparent;
	background-repeat: no-repeat;
}

.page-template-sell .cta_property_slider .item {
	padding: 19vw 6vw 429px;
}
.page-template-sell .cta_property_slider .item {
	padding-bottom: 27vw;
}
.page-template-sell .cta_property_slider .item_wrap h2{
	margin-bottom:10vw;
}


.cta_property_slider>.item {
	/* padding-bottom: 320px; 1111*/
	padding-bottom: 21vw;
}
.cta_property_slider .item::before {
	content: '';
	background-color: rgba(0, 0, 0, 0.7);
	position: absolute;
	inset: 0;
}
.cta_property_slider .item_wrap {
	position: relative;
	z-index: 2;
}
.cta_property_title {
	font-size: 1.8vw;
	position: absolute;
	z-index: 2;
	width: 100%;
	top: 8vw;
}
.cta_property_slider .link_btn {
	position: absolute;
	width: 100%;
	/* bottom: 190px; 11112024*/
	bottom: 9vw; 
	z-index: 2;
	margin-top: 0;
}
/* .cta_property_slider .link_btn a {
	font-size: 32px;
	}
	.cta_property_slider .link_btn a::after {
	border-bottom-width: 3px;
} */
.cta_property_slider .owl-nav {
	position: absolute;
	bottom: 280px;
	width: 100%;
	pointer-events: none;
	font-size: 42px;
	line-height: 1;
	display: flex;
	justify-content: center;
	gap: 40px;
}
.cta_property_slider .owl-nav button {
	pointer-events: all;
}
.cta_property_slider .item_wrap h2 {
	font-size: 4.8vw;
	line-height: 1.3;
	letter-spacing: 30px;
	/* margin-bottom: 120px; changed 11112024*/ 
	margin-bottom: 9vw;
	word-break: break-word;	 
	max-width: 60vw; /* added 1111*/ 
	margin-left: auto; /* added 1111*/ 
	margin-right: auto; /* added 1111*/ 
	
}

.home .cta_property_slider .item_wrap h2, .page-template-about .cta_property_slider .item_wrap h2,  .page-template-sell .cta_property_slider .item_wrap h2{
	font-size: 5vw;
}

.page-template-sell .cta_property_slider .item_wrap h2{
	max-width:none;
}

.home .title_sec p{
	font-size:23px;
}
.page-template-buy .title_sec p{
	font-size:23px;
}

.page-template-buy .title_wrap, .page-template-rent .title_wrap{
	max-width: 1004px;
}

.page-template-rent .title_sec p{
	font-size:23px;
}
.page-template-concierge .title_sec p{
	font-size:23px;
}
.page-template-gem-collection .title_sec p{
	font-size:23px;
}
.page-template-new-development .title_sec p{
	font-size:23px;
}

.page-template-new-development .title_wrap{
	max-width:1015px;
}
.page-template-shine-on-marbella .title_sec p{
	font-size:23px;
}
.single-propiedad .title_sec p{
	font-size:23px;
}
.exclusive_wrap p{
	font-size:23px;
}

.page-template-buy .exclusive_wrap{
	max-width:900px;
}


.page-template-shine-on-marbella .title_wrap{
	max-width:807px;
}
.page-template-gem-collection .title_sec {
	max-width: 923px;
	margin-left:auto;
	margin-right:auto;
}
.page-template-concierge .concierge-intro{
	max-width: 845px;
	margin-left:auto;
	margin-right:auto;
}

/* Home page end */

/* Contact start */
.contact_sec {
	padding: 120px 0;
	text-align: center;
}
.contact_wrap h1 {
	margin-bottom: 60px;
}
.contact_wrap ul {
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0 110px;
	margin-top: 120px;
	margin-bottom: 100px;
}
.contact_wrap ul li {
	font-size: 26px;
	line-height: 1.2;
	font-weight: 700;
	letter-spacing: 2px;
}
.contact_wrap ul li a {
	color: var(--clr_dark);
}
.contact_wrap ul li a:hover {
	color: #bfa770;
}
.contact_wrap ul li a i {
	font-size: 37px;
	vertical-align: top;
	display: inline-block;
	margin-right: 15px;
	color: #bfa770;
}
.contact_form {
	text-align: left;
}
.contact_form_row {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -20px -40px;
}
.contact_form_field {
	width: 100%;
	padding: 0 20px;
	margin-bottom: 40px;
}
.contact_form_field.half {
	width: 50%;
}
.contact_form_field label {
	display: block;
}
.contact_form_field.half input,
.contact_form_field textarea {
	border: none;
	border-bottom: 3px solid var(--clr_dark);
	background-color: transparent;
	outline: none;
	width: 100%;
	padding: 18px 0;
	font-size: 22px;
	line-height: 1;
	color: var(--clr_dark);
	letter-spacing: 0;
	font-family: var(--font_Glacial);
}
.contact_form_field textarea {
	height: 165px;
	resize: none;
}
.contact_form_btn {
	text-align: center;
	margin-top: 50px;
	position: relative;
}
.contact_form_btn .wpcf7-submit {
	font-size: 15px;
	line-height: 1;
	text-transform: uppercase;
	font-weight: 400;
	letter-spacing: 5px;
	background-color: var(--clr_main);
	color: var(--clr_text);
	padding: 22px 40px;
	display: inline-block;
	border: 3px solid var(--clr_main);
	cursor: pointer;
	outline: none;
}
.contact_form_btn .wpcf7-spinner {
	position: absolute;
	margin: auto 20px;
	top: 0;
	bottom: 0;
}
.contact_form .wpcf7-not-valid-tip {
	font-size: 20px;
	line-height: 1;
	margin-top: 14px;
}
.contact_form .wpcf7-response-output {
	display: none;
	font-size: 22px;
	line-height: 1.5;
	color: #46b450;
	background-color: #f5fbf6;
	padding: 12px 20px !important;
	width: 100%;
	margin: 45px 0 0 !important;
	border: 3px solid #46b450 !important;
}
.contact_form .sent .wpcf7-response-output {
	display: block;
}
.more_sec {
	padding: 160px 0 180px;
	text-align: center
}
.more_sec .main_title {
	margin-bottom: 50px;
}
.more_sec p a {
	font-weight: 700;
	text-decoration: underline;
	color: #c49946;
}
/* Contact end */

/* Sell start */
.sell_page .comn_txt h2 {
	/* font-size: 55px; */
	letter-spacing: 6px;
}
.sell_page .cta_property_slider .item_wrap {
	max-width: 1200px;
	margin: 0 auto;
}
/* Sell end */

/* Service start */
.service_need_sec {
	padding-bottom: 180px;
}
.service_need {
	max-width: 900px;
}
.service_need .main_title {
	max-width: 600px;
	text-align: left;
	margin-bottom: 60px;
}
/* Service end */

/* Gem collection start */
.gem_title_sec {
	position: relative;
	padding: 25vw 0 120px;
	overflow: hidden;
}
.gem_title_sec_bg {
	position: absolute;
	top: 0;
	width: 110%;
	margin-left: -10%;
	max-width: 110%;
}
.gem_title_sec .container {
	position: relative;
	z-index: 2;
}




.gem_title_wrap {
	text-align: center;
}
.gem_title_gems {
	display: flex;
	align-items: flex-start;
	gap: 0 50px;
	justify-content: center;
	margin-top: 120px;
}
.gem_title_gems img {
	max-width: 200px;
	width: 100%;
}
.floor_plan_container{
	text-align:center;
	
}
.floor_plan_container h1{
	margin-bottom:50px;
	
}
/* Gem collection end */

/* About start */
.partner_sec {
	padding-bottom: 180px;
	text-align: center;
}
.partner_sec .main_title {
	margin-bottom: 140px;
}
.partner_imgs {
	display: flex;
	align-items: center;
	justify-content: center;
	column-gap: 50px;
	flex-wrap: wrap;
}
.partner_imgs img {
	max-height: 160px;
	max-width: 190px;
	width: 100%;
	object-fit: contain;
}
.team_sec {
	padding-bottom: 150px;
	padding-top: 150px;
}
.team_sec .wide_container {
	position: relative;
}
.team_row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.team_lists {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -30px -70px;
	width: 46%;
	position: relative;
	z-index: 2;
	/* max-width: 800px; */
}
.team_list {
	width: 50%;
	padding: 0 30px;
	margin-bottom: 70px;
	cursor: pointer;
}
.team_list_img {
	position: relative;
	margin-bottom: 50px;
}
.team_list_img::before {
	content: '';
	position: absolute;
	inset: 0;
	background-color: #064444;
	opacity: 0;
	mix-blend-mode: multiply;
	transition: opacity 0.8s;
}
.team_list_img:hover::before {
	opacity: 1;
}
.team_list h4 {
	font-weight: 400;
	font-size: 28px;
	line-height: 1.2;
	white-space: pre;
	margin-bottom: 12px;
	transition: var(--transition);
}
.team_list h6 {
	margin-bottom: 0;
	font-weight: 400;
	font-size: 20px;
	line-height: 1.2;
	letter-spacing: 5px;
	text-transform: uppercase;
	transition: var(--transition);
}
.team_list:hover h4,
.team_list:hover h6 {
	color: var(--clr_main);
}
.team_details {
	width: 54%;
}
.team_detail {
	opacity: 0;
	visibility: hidden;
	height: 0;
	transition: opacity 0.3s 0s ease-in-out;
	position: relative;
}
.team_detail_close {
	display: none;
}
.team_detail_img {
	/* 1111 */
	/* width: 65%; */
	/* position: absolute; */
	/* max-width: none; */
	/* top: -15%; */
	/* bottom: -15%; */
	/* min-height: 100vh; */
	/* right: 15px; */
	
	width: 112%;
  position: absolute;
  max-width: none;
  top: -114%;
 
  min-height: 100vh;
  right: -1px;
}
.team_detail_img img {
	width: 100%;
	height: 100%;
	opacity: 0.2;
	object-fit: cover;
}
.team_detail_txt {
	position: relative;
	z-index: 2;
	max-width: 680px;
	padding-left: 140px;
}
.team_detail_txt h4 {
	font-weight: 400;
	font-size: 32px;
	line-height: 1.2;
	white-space: pre;
	margin-bottom: 16px;
}
.team_detail_txt h6 {
	margin-bottom: 50px;
	font-weight: 400;
	font-size: 27px;
	line-height: 1.2;
	letter-spacing: 5px;
	text-transform: uppercase;
}
.team_detail_txt ul {
	list-style: none;
	margin-top: 60px;
}
.team_detail_txt li {
	margin-bottom: 20px;
	text-transform: uppercase;
	letter-spacing: 4px;
}
.team_detail_txt li:last-child {
	margin-bottom: 0;
}
.team_detail_txt li a {
	color: var(--clr_main);
	opacity: 0.9;
}
.team_detail_txt li a:hover {
	opacity: 1;
}
.team_detail.active {
	opacity: 1;
	visibility: visible;
	height: auto;
}
.comn_sections.about_comn_sections2 {
	padding-top: 220px;
}
/* About end */

/* Inside property start */
.property_detail_sec .price {
	text-align: center;
	margin-bottom: 100px;
}
.property_detail_sec .price h2 {
	font-size: 50px;
	letter-spacing: 6px;
}
.property_detail_sec .row {
	align-items: center;
}
.property_detail_sec .col_6:first-child {
	border-right: 3px solid var(--clr_border);
}
.property_detail_list {
	padding: 40px 40px 40px 0;
	list-style: none;
}
.property_detail_list li {
	display: flex;
	gap: 20px;
	margin-bottom: 20px;
}
.property_detail_list li:last-child {
	margin-bottom: 0;
}
.property_detail_list li strong {
	width: 50%;
	font-size: 20px;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: 3px;
}
.property_detail_list li span {
	/* width: 50%; */
	display: inline-grid;
    place-items: center;
}
.property_detail_list li strong img {
	width: 40px;
	height: 40px;
	object-fit: contain;
	display: inline-block;
	margin-right: 30px;
	vertical-align: middle;
}
.property_detail_location {
	padding-left: 80px;
}
.property_detail_location h6 {
	font-size: 20px;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: 3px;
	margin-bottom: 40px;
}
.property_deatil_action {
	padding: 160px 0;
}
.property_deatil_action ul {
	list-style: none;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0 70px;
}
.property_deatil_action li a {
	display: inline-block;
	font-size: 19px;
	line-height: 1;
	font-weight: 700;
	color: #BFA770;
	text-transform: uppercase;
	letter-spacing: 3px;
}
.property_deatil_action li a img {
	display: block;
	height: 55px;
	width: 55px;
	object-fit: contain;
	margin: 0 auto 30px;
}
.wishlist{
	cursor: pointer;
}
.property_gallery_slider .owl-carousel .owl-stage {
	display: flex;
}
.property_gallery_slider .owl-carousel .owl-item {
	display: flex;
	flex: 1 0 auto;
}

.owl-carousel .owl-item  .feature_img img{
	height:700px;
	object-fit: cover;
}

.floor_plan_container .owl-carousel .owl-item  .feature_img img{
	object-fit: contain;
}
.floor_plan_container  .fa-chevron-right::before, .floor_plan_container  .fa-chevron-left::before{
	color:#333;
}
.floor_plan_container .owl-carousel .owl-item .feature_img img{
	
	max-height:350px;
}

.property_gallery_slider .item {
	width: 100%;
}
.property_gallery_slider .item img {
	height: 100%;
	object-fit: cover;
	max-height: 500px;
}
.property_gallery_slider .owl-nav {
	position: absolute;
	top: 50%;
	margin: auto;
	transform: translateY(-50%);
	width: 62%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	left: 0;
	right: 0;
	z-index: 2;
	font-size: 110px;
	color: var(--clr_text);
	pointer-events: none;
}
.property_gallery_slider .owl-nav button {
	pointer-events: all;
	text-shadow: 0 0 10px rgba(0, 0, 0, 0.75);
}
.property_gallery_print {
	display: none;
}
.share_property {
	position: relative;
}
.share_tooltip {
	position: absolute;
	left: 50%;
	right: auto;
	margin: auto;
	text-align: center;
	display: flex;
	align-items: center;
	padding: 0 15px;
	border: 1px solid var(--clr_dark);
	column-gap: 10px;
	transform: translateX(-50%);
	top: calc(100% + 40px);
	opacity: 0;
	visibility: hidden;
	transition: var(--transition);
	background-color: #fff;
	pointer-events: none;
}
.share_tooltip::before {
	content: '';
	width: 12px;
	height: 12px;
	background-color: #fff;
	border-top: 1px solid var(--clr_dark);
	border-left: 1px solid var(--clr_dark);
	transform: rotate(45deg);
	position: absolute;
	top: -7px;
	left: 0;
	right: 0;
	margin: auto;
	pointer-events: none;
}
.share_tooltip button {
	background: none;
	border: none;
	padding: 12px 8px;
	font-size: 16px;
	color: var(--clr_dark);
	cursor: pointer;
	transition: var(--transition);
	pointer-events: all;
}
.share_tooltip button:hover {
	color: #BFA770;
}
.share_tooltip.active {
	top: calc(100% + 20px);
	opacity: 1;
	visibility: visible;
}



.content-text {
    max-height: 150px; /* Adjust this height as needed */
    overflow: hidden;
    transition: max-height 0.5s ease; /* Smooth transition */
    position: relative;
}
.content-text.expanded {
    max-height: none;
}
.read-more-btn {
    display: inline-block;
    margin-top: 10px;
    color: #BFA770;
    cursor: pointer;
    text-decoration: underline;
}
.read-more-btn:hover {
    color: #BFA770;
}
.property-full-desc{
	display:none
}




/* Inside property end */

/* Rent page start */
.search_form_sec {
	padding: 80px 0 170px;
}
.search_form {
	/* max-width: 850px; */
	margin: auto;
}
.search_form_fields {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -30px -30px;
}
.search_form_field {
	padding: 0 30px;
	margin-bottom: 30px;
	width: 33.3333%;
}
.search_form label {
	display: block;
	font-size: 17px;
	text-transform: uppercase;
	line-height: 1;
	letter-spacing: 1px;
	margin-bottom: 15px;
}
.search_form select {
	background: none;
	border: none;
	border-top: 2px solid #ddd;
	width: 100%;
	padding: 15px 30px 10px 0;
	font-size: 14px;
	line-height: 1;
	text-transform: uppercase;
	cursor: pointer;
	color: var(--clr_dark);
	letter-spacing: 1px;
	-webkit-appearance: none;
	-moz-appearance: none;
	outline: none;
	background-color:white;
}
.select_box {
	position: relative;
}
.select_box::before,
.select_box::after {
	content: '';
	width: 15px;
	height: 2px;
	background-color: var(--clr_dark);
	position: absolute;
	top: 22px;
	right: 0;
	transform: rotate(-45deg);
	pointer-events: none;
}
.select_box::before {
	transform: rotate(45deg);
	right: 9px;
}
.search_form_field.search_form_price {
	width: 100%;
	display: flex;
	margin-top: 15px;
}
.search_form_price label {
	width: 90px;
}
.search_form_price .slider-container {
	position: relative;
	width: calc(100% - 90px);
	margin-top: 6px;
}
.search_form_price .range-slider {
	-webkit-appearance: none;
	width: 100%;
	height: 4px;
	background: none;
	outline: none;
	margin: 0;
	position: absolute;
	z-index: 1;
	pointer-events: none;
}
.search_form_price .range-slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 14px;
	height: 14px;
	background: #fff;
	border-radius: 50%;
	cursor: pointer;
	position: relative;
	z-index: 9;
	border: 2px solid var(--clr_dark);
	margin: 0;
	pointer-events: auto;
}
.search_form_price .range-slider::-moz-range-thumb {
	width: 14px;
	height: 14px;
	background: #fff;
	border-radius: 50%;
	cursor: pointer;
	position: relative;
	z-index: 9;
	border: 2px solid var(--clr_dark);
	margin: 0;
	pointer-events: auto;
}
.search_form_price .slider-track {
	position: absolute;
	height: 4px;
	background-color: #afafaf;
	top: 0;
	pointer-events: none;
}
.search_form_price .slider-values {
	display: flex;
	justify-content: center;
	margin-top: 30px;
	gap: 20px;
}
.search_form_price .slider-values span {
	font-size: 18px;
	text-transform: uppercase;
	line-height: 1;
	letter-spacing: 1px;
}
.result_sec {
	padding: 110px 0 100px;
	border-top: 2px solid #c4c4c4;
}
.result_toolbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 100px;
}
.result_toolbar p {
	margin-bottom: 0;
	font-size: 20px;
	line-height: 1.2;
	font-weight: 600;
	letter-spacing: 3px;
}
.select_sort {
	position: relative;
}
.select_sort select {
	border: 3px solid var(--clr_dark);
	text-align: center;
	background: none;
	padding: 12px 30px;
	text-transform: uppercase;
	color: var(--clr_dark);
	letter-spacing: 4px;
	font-weight: 700;
	font-family: var(--font_Glacial);
	min-width: 240px;
	cursor: pointer;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-color:white;
}
.select_sort i {
	position: absolute;
	left: 13px;
	top: 9px;
	font-size: 17px;
	pointer-events: none;
}
.select_sort i.fa-chevron-down {
	top: 19px;
}
.result_sec .row {
	justify-content: left;
	margin-bottom: -90px;
}
.result_sec .col_4 {
	margin-bottom: 90px;
}
.result_box {
	height: 100%;
	background-color: #115b4c;
	text-align: center;
	background-image: url('/wp-content/uploads/result-list-bg.jpg');
	background-position: center center;
	background-size: cover;
}
.result_box_img img {
	width: 100%;
	height: 310px;
	object-fit: cover;
}
.result_box_txt {
	padding: 50px 40px 40px;
}
.result_box_txt h4 {
	font-size: 20px;
	letter-spacing: 5px;
	margin-bottom: 40px;
	font-weight: 700;
	color: var(--clr_text);
	text-transform: uppercase;
}
.result_box_txt h4 a {
	color: var(--clr_text);
}
.result_box_txt h4 a:hover {
	color: var(--clr_main);
}
.result_area {
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 20px;
	color: var(--clr_text);
	line-height: 1;
	max-width: 320px;
	margin: 0 auto 50px;
	gap: 20px;
}
.result_info_bedbath span {
	display: inline-block;
	margin-right: 20px;
}
.result_info_bedbath span:last-child {
	margin-right: 0;
}
.result_info_bedbath img {
	width: 29px;
	height: 20px;
	object-fit: contain;
	display: inline-block;
	margin-right: 4px;
}
.result_price {
	margin-bottom: 60px;
	list-style: none;
	font-size: 20px;
	color: var(--clr_text);
}
.result_price li:first-child {
	padding-bottom: 18px;
	border-bottom: 1px solid #959595;
	max-width: 230px;
	margin: 0 auto 18px;
}
.result_wishlist {
	font-size: 20px;
	text-transform: uppercase;
	letter-spacing: 4px;
	text-align: left;
	color: var(--clr_text);
}
.result_wishlist a {
	color: var(--clr_text);
}
.result_wishlist a:hover {
	color: var(--clr_main);
}
.result_pagination ul, .result_pagination {
	margin-top: 100px;
	display: flex;
	justify-content: center;
	list-style: none;
	color: var(--clr_dark);
	gap: 10px;
	flex-wrap: wrap;
}
.result_pagination ul li a, .result_pagination a, .result_pagination span {
	font-size: 17px;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: 3px;
	font-weight: 700;
	color: var(--clr_dark);
	border: 3px solid transparent;
	width: 46px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.result_pagination ul li a.active, .result_pagination .current {
	border-color: var(--clr_dark);
}
.result_pagination ul li a.prev,
.result_pagination ul li a.next, .result_pagination a.prev,
.result_pagination a.next {
	width: auto;
	border: none;
}
.exclusive_sec {
	padding: 80px 0 200px;
	text-align: center;
}
.exclusive_sec h3 {
	font-size: 36px;
	line-height: 1.4;
	margin-bottom: 40px;
	font-style: italic;
}
.exclusive_wrap {
	max-width: 1000px;
	margin: 0 auto;
}
.exclusive_sec .comn_btn {
	margin-top: 110px;
}
/* Rent page end */

/* Buy page start */
.result_with_btn.result_sec,
.buy_page .result_sec {
	position: relative;
}
.result_with_btn .result_btn,
.buy_page .result_btn {
	position: absolute;
	top: -35px;
	text-align: center;
	width: 100%;
}
.result_with_btn .result_btn a,
.buy_page .result_btn a {
	font-size: 20px;
	line-height: 1;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 5px;
	background-color: var(--clr_text);
	color: var(--clr_dark);
	padding: 24px 30px;
	display: inline-block;
	border: 2px solid #c4c4c4;
}
.buy_page .search_form {
	max-width: none;
}
.buy_page .search_form form, .page-template-new-development .search_form form {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.buy_page .search_form_fields, .page-template-new-development .search_form_fields{
	width: 70%;
}
.buy_page .search_form_action, .page-template-new-development .search_form_action {
	width: 30%;
}
.search_form_btns {
	max-width: 230px;
	margin-left: auto;
}
.search_form_search {
	border: 3px solid var(--clr_dark);
	text-align: center;
	background: none;
	padding: 13px 20px;
	text-transform: uppercase;
	color: var(--clr_dark);
	letter-spacing: 4px;
	font-weight: 700;
	cursor: pointer;
	width: 100%;
	font-family: var(--font_Glacial);
	transition: var(--transition);
}
.search_form_search:hover {
	background-color: var(--clr_dark);
	color: var(--clr_text);
}
.search_form_reset {
	background: none;
	border: none;
	text-align: center;
	width: 100%;
	padding: 0;
	font-family: var(--font_Glacial);
	text-transform: uppercase;
	font-weight: 700;
	font-size: 12px;
	line-height: 1;
	letter-spacing: 1px;
	color: #9d9d9d;
	display: block;
	margin-top: 26px;
	cursor: pointer;
	transition: var(--transition);
}
.search_form_reset:hover {
	color: var(--clr_dark);
}
.search_form_reset span {
	display: inline-block;
	margin-left: 18px;
}
.feature_sec {
	padding: 80px 0;
}
.feature_slider {
	max-width: 1300px;
	margin: 0 auto;
}
.feature_label {
	position: absolute;
	right: 40px;
	top: 40px;
}
.feature_label span {
	display: inline-block;
	padding: 20px 55px;
	background-color: rgba(255, 255, 255, 0.65);
	font-size: 22px;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: 5px;
	font-weight: 700;
}
.feature_txt {
	background-color: #115b4c;
	background-image: url('/wp-content/uploads/feature-text-bg.jpg');
	background-size: cover;
	background-position: center center;
	padding: 32px 60px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 20px;
	line-height: 1;
	color: var(--clr_text);
}
.feature_txt .feature_left {
	display: flex;
	align-items: center;
	gap: 38px;
}
.feature_txt .feature_left img {
	max-width: 55px;
	display: inline-block;
	margin-right: 12px;
}
.feature_right a {
	font-size: 17px;
	text-transform: uppercase;
	color: var(--clr_text);
	letter-spacing: 1px;
}
.feature_right a i {
	font-size: 28px;
	margin-left: 20px;
	display: inline-block;
	vertical-align: top;
	margin-top: -3px;
}
.feature_right a .count {
	font-size: 12px;
	vertical-align: top;
	display: inline-block;
	margin-left: -1px;
	margin-top: -6px;
}
.feature_slider .owl-nav {
	position: absolute;
	top: 50%;
	margin: auto;
	transform: translateY(-50%);
	width: 88%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	left: 0;
	right: 0;
	z-index: 2;
	font-size: 100px;
	color: var(--clr_text);
	pointer-events: none;
}
.feature_slider .owl-nav button {
	pointer-events: all;
	text-shadow: 0 0 10px rgba(0, 0, 0, 0.75);
}
/* Buy page end */