/**
 * Theme Name: Zaremba
 * Template: hello-elementor
 */

*{
/* 	font-family: "Albert Sans", sans-serif; */
/* 	cursor:url('/wp-content/uploads/2024/02/zaremba-cursor.png'), auto !important; */
}

/**
 * Careers - Culture
 */
.careers-culture.full-page-section {
    background: url('/wp-content/uploads/2024/04/zarembamanagers.jpg');
/* 	min-height: 90vh; */
	background-size: cover!important;
	background-position: center!important;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff; 
/* 	font-family: lato; */
	filter: grayscale(100%);
	transition: background 0.3s ease-in-out;
	position: relative;
}

.careers-culture.full-page-section::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: url('/wp-content/uploads/2024/04/zarembaculture1.jpg');
	background-size: cover!important;
	background-position: center!important;
	z-index: -1;
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
}
.careers-culture.full-page-section.second-image::after {
	opacity: 1!important;
}
.careers-culture-inner{
	min-height: 90vh;
    padding-top: 40px;
	display: flex;
	justify-content: flex-end;
	background-color: rgba(187,185,175,0.7);
}
.careers-culture .column-container {
	display: flex;
	padding-right: 80px;
	justify-content: space-around;
/* 	position: absolute; */
/* 	bottom: 40px; */
	width: 100%;
	min-height: 50%;
	margin-bottom: 4%;
}

.careers-culture .column {
	flex: 55%;
	padding: 20px;
/* 	min-height: 100%; */
/* 	display: grid;
	grid-template-rows: 1fr 3fr 1fr; */
	align-self: flex-end;
}

.careers-culture .column.column2 {
	/*flex: 1;*/
	flex: 45%;
	padding: 0;
	overflow: hidden;
}

.careers-culture .column h2 {
	margin-bottom: 20px;
}

.careers-culture .column p {
	font-size: 18px;
	line-height: 28px;
}

@media (max-width: 1024px) {
	.careers-culture .column {
		flex: 50%;
	}
	
	.careers-culture .column.column2 {
		flex: 50%;
	}
	
	.careers-culture .column-container {
		margin-bottom: 8%;
	}
}

@media (max-width: 768px) {
	.careers-culture .column-container {
		flex-wrap: wrap;
		padding: 0 25px;
	}
	
	.careers-culture .column,
	.careers-culture .column.column2 {
		flex: 100%;
	}
	
	.careers-culture .column p {
		font-size: 15px; 
	}
}

/**
 * Slider
 */
.careers-slider {
	display: flex;
}

.careers-slider .careers-slide {
	flex: 0 0 100%;
}

/** 
 * Slider Animations
 */
.slideInFadeRight {
	animation: slideInFadeRight 250ms;
}

.slideOutFadeRight {
	animation: slideOutFadeRight 250ms;
}

.slideInFadeLeft {
	animation: slideInFadeLeft 250ms;
}

.slideOutFadeLeft {
	animation: slideOutFadeLeft 250ms;
}

@keyframes slideInFadeRight {
	0% {
		opacity: 0;
		transform: translateX(100px);
	}
	100% {
		transform: translateX(0);
		opacity: 1;
	}
}
@keyframes slideInFadeLeft {
	0% {
		opacity: 0;
		transform: translateX(-100px);
	}
	100% {
		transform: translateX(0);
		opacity: 1;
	}
}
@keyframes slideOutFadeLeft {
	0% {
		opacity: 1;
	}
	80% {
		opacity: 0;
	}
	100% {
		opacity: 0;
		transform: translateX(-100px);
	}
}

@keyframes slideOutFadeRight {
	0% {
		opacity: 1;
	}
	80% {
		opacity: 0;
	}
	100% {
		opacity: 0;
		transform: translateX(100px);
	}
}

/*Buttons start*/
.careers-nav span{
	border: 1px solid #fff;
	border-radius: 50%;
	font-weight: 700;
	color: #fff;
	margin: 0 10px;
	padding: 2px 5px;
}

.careers-nav span svg{
	fill: #fff;
	position: relative;
	top: 2px;
}

.careers-nav span:hover, .careers-nav span:focus{

	background: transparent;
	outline: none;
}

.careers-nav .careers-nav-prev:hover{
	margin-left: 0;
	margin-right: 20px;
}
.careers-nav .careers-nav-next:hover{
    margin-right: 0;
    margin-left: 20px;
}


/**
 * Swiper Sliders
 */
.thumbnail-slider-wrapper,
.large-slider-wrapper {
    position: relative;
    padding-left: 40px;
    padding-right: 40px;
}

.large-slider {
    width: 100%;
    aspect-ratio: 2 / 1;
    margin-bottom: 15px;
}

.large-slider .swiper-slide img,
.gallery-thumbs .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumbs .swiper-slide {
    height: 100%;
    aspect-ratio: 2 / 1.2;
}

.gallery-thumbs .swiper-slide img {
    border-bottom: 11px solid transparent;
    transition: border 0.2s ease-in-out;
}

.gallery-thumbs .swiper-slide-thumb-active img {
    border-color: #9B9381;
}

.large-slider-wrapper .swiper-button-next {
    right: -20px;
}

.large-slider-wrapper .swiper-button-prev {
    transform: rotate(-180deg);
    left: -20px;
}

@media (max-width: 768px) {

    .large-slider-wrapper,
    .thumbnail-slider-wrapper { padding: 0; }
    .large-slider-wrapper .swiper-button-next {
        right: 15px;
    }
    
    .large-slider-wrapper .swiper-button-prev {
        left: 15px;
    }
}

/**
 * Carousel Slider
 */
.photo-carousel {
    padding: 0 120px;
}

.photo-carousel .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 1600px) {
    .photo-carousel {
        padding: 0 240px;
    }

    .photo-carousel-wrapper .swiper-button-next {
        right: 80px;
    }

    .photo-carousel-wrapper .swiper-button-prev {
        left: 80px;
    }
}

@media (min-width: 1920px) {
    .photo-carousel {
        padding: 0 380px;
    }

    .photo-carousel-wrapper .swiper-button-next {
        right: 40px;
    }

    .photo-carousel-wrapper .swiper-button-prev {
        left: 40px;
    }
}

@media (max-width: 767px) {
    .photo-carousel-wrapper {
        padding: 0 25px;
    }

    .photo-carousel {
        padding: 0;
    }

    .swiper-navigation {
        position: relative;
        display: flex;
        justify-content: center;
        gap: 80px;
        padding: 60px 25px; 
    }

    .swiper-navigation .swiper-button-next,
    .swiper-navigation .swiper-button-prev {
        position: static;
        margin-top: 0;
    }

    .swiper-button-next {
        order: 1;
    }
}

/**
 * Swiper Buttons
 */

.swiper-button-next {
    right: 20px;
}

.swiper-button-prev {
    left: 20px;
}

.swiper-button-next,
.swiper-button-prev {
    width: 40px;
    height: 40px;
    background: url(assets/img/arrow.png) center no-repeat;
    background-size: 40px;
    top: 50%;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    display: none;
}

.swiper-button-prev {
    transform: rotate(-180deg);
}

/**
 * Text Slider 
 */
.property-testimonial-slider .employee_review_content_heading h2 {
    color: #15374F;
}

.property-testimonial-slider .employee_review_arrows span {
    border: 1px solid #15374F!important;
}

.property-testimonial-slider .employee_review_arrows span svg {
    fill: #15374F!important;
}

/**
 * Home Cards
 */
.flex-container {
	display: flex;
	justify-content: center;
	align-items: center;
	gap:10px;
}

.card {
    width: 360px;
    height: 300px;
    border: 20px solid #fff;
    margin-top: -80px;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
    cursor: pointer; 
	position: relative;
}

.card a.card-link {
	position: absolute;
	z-index: 2;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.card_inner {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 15px 0 0;
	box-sizing: border-box;
	background-size: cover;
	background-position: center;
}

.card_inner_cta { 
	--cta-height: 40px;
	height: var(--cta-height);
	background: rgba(14, 35, 64, 0.7);
	text-align: center;
}
.card_inner a {
	color: #fff;
	text-decoration: none;
	padding: 10px;
	text-align: center;
	transition: background-color 0.3s ease;
	text-transform: uppercase;
	font-size: 12px;
	letter-spacing: 0.5px;


}
.card_inner_cta a::before {
    content: "";
    background: rgba(14, 35, 64, 0.7);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: var(--cta-height);
    transition: all 0.3s;
}
.card_inner:hover a::before {
    background: #9B9381;
    width: 100%;
}
.card_inner:hover a span{
    z-index: 99;
    position: relative;
}
.card_inner{
    /*outline: solid 3px #000;*/
}
.card_inner .chevron-right{
    font-size: 40px;
    line-height: 1px;
    position: absolute;
    bottom: 9px;
    right: 5px;
}
.card_inner .chevron-right svg{
    fill: #fff;
    
}
.card2 .card_inner .chevron-right{
    /*right: -5px;*/
}
.card3 .card_inner .chevron-right{
    /*right: -65px;*/
}
.card1 {
	background-image: url('/wp-content/uploads/2025/10/Soldano.jpg');
}

.card2 {
	background-image: url('/wp-content/uploads/2025/03/Central-Park.jpg');

}

.card3 {
	background-image: url('/wp-content/uploads/2025/03/Magnolia-Seniors.jpg');
}

@media (max-width:767px){
	.flex-container {
		flex-direction:column;
	}
	.card{
		/*outline: solid #000 1px;*/
		margin-bottom:60px;
	}
    
} /*media query ends here*/


/* Property Cards Starts */
 .properties_card{
        height: 450px;
        background-repeat: no-repeat;
        background-size: cover;
        display: flex;
        align-items: flex-end;
/*         font-family: lato; */
        font-size: 14px;
	 background-position: center!important;
        
    }
    
.properties_card_content{
	position: relative;
	height: 150px;
	bottom: 0;
	width: 100%;
	padding: 20px 40px;
	padding-bottom: 0;
	display: grid;
	transition: height 200ms ease-in-out;
	overflow: hidden;
}

.properties_card_content::before {
	z-index: 0;
	background-color: rgba(14,35,64,0.72);
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	mix-blend-mode: multiply;
}

.properties_card_content > * {
	z-index: 1;
}
    .properties_card:hover .properties_card_content{
        height: 100%;
    }
    .properties_card_content_text{
        grid-area: 1 / 1 / 1 / 3;
        transition: all 100ms linear;
    }
    .properties_card_content:hover .properties_card_content_text {
        grid-area: 2 / 1 / 2 / 3;
		display: flex;
	    flex-direction: column;
    	justify-content: center;
    }
    .properties_card_content h3{
        font-size: 24px;
        font-weight: 600;
        letter-spacing: .5px;
        margin-bottom: 5px;
    }
    .properties_card_content_address{
        margin: 0;
    }
.properties_card_content_address a {
	color: #fff;
	font-weight: normal;
}
    .unit_types{
        border-left: 1px solid var( --e-global-color-b0b1839 );
        padding-left: 30px;
        margin-left: 75px;
        text-transform: uppercase;
        grid-area: 2 / 3 / 3 / 4;
        display: flex;
		flex-direction: column;
		justify-content: center;
		gap:10px;
		opacity: 0;
		transition: all 100ms ease-in;
		
    }
    .properties_card:hover .unit_types{
        opacity: 1;
        margin-left: 25px;
/* 		transition: all 100ms ease-in; */
		transition-delay: 150ms;
    }
    .unit_types p{
        margin: 0;
        font-weight: 600;
    }
    .properties_card .view_properties_button {
        display: flex;
        align-items: center;
        justify-content: center;
        color: var( --e-global-color-b0b1839 )!important;
        grid-area: 3 / 1 / 3 / 4;
        font-weight: 600;
        text-transform: uppercase;
        opacity: 0;
        transition: all 200ms ease-in;
		letter-spacing:1px;
        
    }
.properties_card .property-links {
	    display: flex;
    justify-content: center;
    align-content: center;
    gap: 15px;
    row-gap: 0;
    grid-area: 3 / 1 / 3 / 4;
    flex-wrap: wrap;
	
}
.properties_card .view_properties_button:hover{
	color: var( --e-global-color-b0b1839 )!important;
}
    .properties_card:hover .view_properties_button{
        opacity: 1;
/*         margin-top: 0; */
    }
    .properties_card .view_properties_button .chevron-right{
        font-size: 40px;
        line-height: 20px;
        height: 25px;
        width: 25px;
        margin: 0;
        padding: 0;
        margin-left: 8px;
        position: relative;
        border: 0.9px solid var( --e-global-color-b0b1839 );
        border-radius: 500px;
        display: flex;
        justify-content: center;
        align-items: center;
        padding-bottom: 1px;
			padding-left:1px;
    }
.properties_card .view_properties_button .chevron-right svg{
	fill: var( --e-global-color-b0b1839 );
}
.properties_card.includesEmail .properties_card_content_number{
	margin-bottom:0;
}
.properties_card.includesEmail .properties_card_content{
	padding-top:10px;
}
/* Property Cards Ends */

/* Reviews section starts */

.review_image_container {
	max-width: 100%;
    min-height: 450px;
    height: 450px;
    aspect-ratio: 1 / .75;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    position: relative;
}

.employee_review_image {
	position: absolute;
	opacity: 0;
	width: 100%;
    height: 100%;
    background-size: cover!important;
    background-repeat: no-repeat!important;
    margin-top:-70px;
  	z-index: 0;
	transition: opacity 0.3s ease-in-out;
}

@media (max-width: 1160px) {
	.employee_review_image {
  	aspect-ratio: 1 / .95;
    }
}

.employee_review_image.active{
		opacity: 1;
		z-index: 9;
}

@media(max-width:767px){
	.review_image_container { 
		height: auto;
		max-height: none;
		aspect-ratio: 1 / 0;
	}
    .employee_review_image {
        min-height: 250px;
		margin-top: 30px;
    }
}
.employee_review_content_container {
/*     font-family: lato; */
    text-align: center;
    display: none;
    flex-direction: column;
	justify-content: center;
    padding: 50px 10px 0;
}

.employee_review_content_container > * {
	opacity: 0;
	transition: opacity 0.5s ease-in-out;
}

.employee_review_content_container.active > * {
	opacity: 1;
}

.employee_review_content_container.active{
    display: flex;
}

.employee_review_content_heading h2{
    font-size: 18px;
    letter-spacing: 1px;
    color: #9B9381;
}
.employee_review_content_p{
    padding: 20px 50px;
    line-height: 28px; 
    letter-spacing: 0.5px;
}

.employee_review_content_attribution .employee_name{
    font-size: 26px;
    margin: 0 0 10px;
}
.employee_review_content_attribution .employee_title{
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}
.employee_review_arrows{
    display: flex;
    justify-content: center;
    gap: 2rem;
    /*outline: 1px dashed;*/
    margin: 40px auto;
}
.employee_review_arrows span{
    border: 1px solid #9B9381;
    color: #9B9381;
    font-size: 30px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    padding-bottom: 6px;
    cursor: pointer; 
}
.employee_review_arrows span svg{
    fill:var( --e-global-color-b0b1839 );
    position: relative;
    top:3px;
    
}
@keyframes slideIn {
        0% {
            transform: translateX(200%);
        }
        100% {
            transform: translateX(0);
        }
    }

    @keyframes slideOut {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-100%);
        }
    }

    .slide-left.active {
        animation: slideIn 0.5s ease forwards;
    }

    .slide-right {
        animation: slideOut 0.5s ease forwards;
    }
/* Reviews section ends */
#mainFooter a{
	color:inherit;
}
/* Contact Page form starts */
/* .page-id-37 .contact_field label{
	color: var( --e-global-color-170bd05 );
	letter-spacing: 1px;
	margin-bottom: 10px;
	font-weight:bold;
	font-size:16px;
	
}
.page-id-37 .contact_field input,.contact_field textarea{
	border:none;
	border-radius: 1px;
	
}
.page-id-37 .contact_field_submit{
	text-align: center;
}
.page-id-37 .contact_field_submit .wpcf7-submit{
	border:2px solid var( --e-global-color-170bd05 );
	border-radius: 2px;
	color: var( --e-global-color-170bd05 );
	text-transform: uppercase;
	font-weight: bold;
	letter-spacing:1px;
	font-size:18px;
	padding: 5px 10px;
  display: flex;
  align-items: center;
	margin:auto;
	transition: all 200ms;
}
.page-id-37 .contact_field_submit .wpcf7-submit .chevron-right{
	padding-top:5px;
}
.page-id-37 .contact_field_submit .wpcf7-submit svg{
	fill:var( --e-global-color-170bd05 );
		transition: all 200ms;
}
.page-id-37 .contact_field_submit span.contact_field_submit_el {
    display: inline-block;
    position: relative;
}
.page-id-37 .contact_field_submit span.contact_field_submit_el::before {
    content: "";
    width: 0;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--e-global-color-b0b1839);
    transition: all 0.3s;
}
.page-id-37 .contact_field_submit span.contact_field_submit_el:hover::before {
    width: 100%;
}
.page-id-37 .contact_field_submit span.contact_field_submit_el button {
    position: relative!important;
    z-index: 999!important;
}
.page-id-37 .contact_field_submit .wpcf7-submit:hover, .page-id-37 .contact_field_submit .wpcf7-submit:active, .page-id-37 .contact_field_submit .wpcf7-submit:focus  {
    background-color: transparent;
}

.page-id-37 .contact_field_submit .wpcf7-submit:hover{
	border-color: #fff;
	color:#fff;
}
.page-id-37 .contact_field_submit .wpcf7-submit:hover svg{
	fill:#fff;
} */

.contact_field_select label,.contact_field label {
/* 	font-family:lato; */
	font-size: 16px;
	margin-bottom:10px;
	letter-spacing: 0.5px;
}
.page-id-37 .contact-form .contact_field label {
	color:#15374F;
}
.contact_field_select span.wpcf7-form-control-wrap::before{
    content: "";
    width: 12px;
    height: 20px;
    background: url(/wp-content/uploads/2024/01/arrow-right.png);
    position: absolute;
    top: 10px;
    right: 10px;
    background-size: contain !important;
    background-position: top right !important;
    background-repeat: no-repeat !important;
    z-index: 100;
}
.contact_field input, .contact_field select, .contact_field textarea {
    border: 0;
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    padding: 8px 10px;
}
/* Style for the file input */
input[type="file"] {
	display: none; /* Hide the default file input */
}

/* Style for the custom file input button */
.custom-file-input {
	display: flex;
	background-color: #fff;
	cursor: pointer;
	min-height: 40px;
	color: #ccc;
	font-size: 14px;
	align-items: center;
	padding-left: 10px;
}
.contact_field_submit {
    text-align: center;
}

span.contact_field_submit_el {
    display: inline-block;
    position: relative;
}
span.contact_field_submit_el button {
    position: relative;
    z-index: 50;
}
.contact_field_submit button,.contact_field_submit button[type=submit]:focus {
    border: 2px solid #1F84CD;
    color: #1F84CD;
    background: transparent;
    text-transform: uppercase;
    padding: 15px 25px;
    transition: all 0.3s;
    border-radius: 2px;
}
.page-id-37 .contact-form .contact_field_submit button,
.page-id-37 .contact-form .contact_field_submit button[type=submit]:focus{
	border-color: #1F84CD;
	color: #1F84CD;
}

.contact_field_submit button:hover {
    background: transparent;
}
span.contact_field_submit_el button::before {
    content: "";
    width: 0;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #1F84CD;
    transition: all 0.3s;
}
span.contact_field_submit_el button:hover::before {
    width: 100%;
}
span.contact_field_submit_el button:hover span{
    position:relative;
    z-index:999;
	color: #fff;
}
.wpcf7-spinner {
    display: none;
}
.contact_field_submit_el span.chevron-right {
    font-size: 40px;
    margin: 0;
    line-height: 0;
    position: relative;
    top: 5px;
    left: 5px;
}

/* Contact Form Columns */
.wpcf7 .row {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px; /* Adjust to your preferred gutter size */
}

/* Columns for medium-sized screens (similar to col-md-8 and col-md-4 in Bootstrap) */
.wpcf7 .col-md-8, .wpcf7 .col-md-4, .wpcf7 .col-md-6 {
	width: 100%;
	padding: 0 15px; /* Adjust to your preferred gutter size */
}

@media (min-width: 768px) {
	.wpcf7 .col-md-8 {
		width: 66.66666667%; /* Adjust for the desired width ratio */
	}

	.wpcf7 .col-md-4 {
		width: 33.33333333%; /* Adjust for the desired width ratio */
	}

    .wpcf7 .col-md-6 {
		width: 50%; /* Adjust for the desired width ratio */
	}
}

/* Contact Page form ends */
/* Leadership cards starts */
.readBio{
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    display: flex;
    align-items: center;
    color: #9B9381;
    transition: all .5s;
/*     font-family: lato; */
    margin-left: -70px;
    pointer-events: none;
}
.readBioText{
    opacity: 0;
    pointer-events: none;
    transition: opacity .5s;
}
.leadersColumn:hover .readBioText{
    opacity: 1;
}
.leadersColumn:hover .readBio{
    margin-left: 0;
    color: #9B9381;
    pointer-events: auto;

}
.readBio:hover .circle-container{
    opacity: 1;
    border-color: #9B9381;

}
.readBio .circle-container {
      position: relative;
      width: 25px;
      height: 25px;
      background-color: transparent; 
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      border: solid .5px #9B9381;
      left:10px;
    }

    .readBio .chevron-right {
			padding-top:8px;
			padding-right:1px;
    }
.readBio .chevron-right svg{
	fill: #9B9381;
}

/* Timeline */
.timelineLeftBox::after {
    content: "";
    height: 1px;
    width: 150px;
    position: absolute;
    right: 0;
    top: 40px;
    z-index: 9;
    background: #54595F;
    display: inline-block;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
	.timelineLeftBox::after {
		width: 60px;
		left: 0;
		right: initial;
	}
}

/* Leadership cards ends */
@media(min-width:1150px){
    .introParagraph p.elementor-heading-title.elementor-size-default{
       min-width:550px; 
    }
}

/**
 * Tabs
 */
.management_services_arrows{
	position: absolute;
	top: 0;
	right: 0;
    display: flex;
    justify-content: center;
    gap: 14px;
    /*outline: 1px dashed;*/
/*     margin: 40px auto; */
}
.management_services_arrows span{
    border: 1px solid #15374F;
    color: #15374F;
    font-size: 30px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    width: 25px;
    height: 25px;
    justify-content: center;
    align-items: center;
    padding-bottom: 6px;
    cursor: pointer; 
	transition: 0.2s ease-in;
}
.management_services_arrows span svg{
    fill:#15374F;
    position: relative;
    top: 3px;
	transition: 0.05s ease-in;
}
.management_services_arrows span:hover,
.management_services_arrows span:hover svg {
	border-color: #fff; 
	fill: #fff;
}


/**
 * Single Property
 */
.property-residents-columns {
    display: flex;
    gap: 50px;
    justify-content: center;
    padding: 0 25px;
}

.property-residents-columns__column {
    background: #fff;
    padding: 40px 60px;
    color: #15374F;
    flex: 0 1 33%;
}

.property-residents-columns__column p {
    font-size: 16px;
}

.property-residents-columns__column a.button {
    color: #9B9381;
}

.property-residents-columns__column a.button:hover {
    color: #15374F;
}

.single-property-contact-form .contact_field_submit {
    text-align: left;
}

@media (max-width: 1023px) {
    .property-residents-columns {
        flex-wrap: wrap;
        gap: 40px;
    }

    .property-residents-columns__column {
        flex: 0 1 40%;
    }
}

@media (max-width: 767px) {
    .property-residents-columns {
        flex-wrap: wrap;
        gap: 20px;
    }

    .property-residents-columns__column {
        flex: 100%;
    }
}

/**
 * Floorplan Popup
 */
body:not(.elementor-editor-active) #floorplan-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 999;
}

.close-floorplan-popup:hover {
    cursor: pointer;
}

/**
 * Floorplan Filter
 */
.r360-floorplan-filter {
    padding: 0;
}

.r360-floorplan-filter li {
    list-style: none;
    font-size: 17px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 10px 0;
}

@media (max-width: 767px) {
    .r360-floorplan-filter li:not(:last-child) {
        padding: 24px 0;
        border-bottom: 2px solid rgba(255, 255, 255, 0.4);
    }
}

/**
 * Button
 */
a.button {
    color: #9B9381;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    transition: 0.2s ease-in-out;
    display: flex;
    align-items: center;
    gap: 10px;
}

a.button.button-white {
    color: #fff;
}

a.button.button-white .button-icon {
    border-color: #fff;
}

a.button.button-white .button-icon svg {
    fill: #fff;
}

a.button.button-white:hover {
    color: #9B9381;
}

a.button.button-white:hover .button-icon {
    border-color: #9B9381;
}

a.button.button-white:hover .button-icon svg {
    fill: #9B9381;
}

.button .button-text {
    z-index: 1;
}

.button .button-icon {
    content: "";
    display: inline-block;
    width: 34px;
    height: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    border: 1px solid #9B9381;
    vertical-align: middle;
    text-align: center;
    transition: 0.2s ease-in-out;
    z-index: 1;
}

.button .button-icon svg {
    fill: #9B9381;
    transition: 0.1s ease-in-out;
    transform: rotate(180deg);
}

.button.button-alt {
    padding: 12px 14px;
    
    border-radius: 2px;
    color: #fff;
}

.button.button-alt:before,
.button.button-alt:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 0;
    background-color: #9B9381;
    transition: all 0.2s ease-out;
    border-radius: 2px;
}

.button.button-alt:before {
    width: 100%;
    background-color: #9B9381;
}

.button.button-alt .button-icon {
    border: 0;
    width: 20px;
}

.button.button-alt .button-icon svg {
    fill: #fff;
}

.button:not(.button-alt):hover {
    color: #15374F;
    transform: translateX(20px);
}

.button.button-alt:hover:after {
    width: 100%;
}

.button.button-alt:hover .button-icon svg {
    fill: #fff;
}

.button:hover .button-icon {
    border-color: #15374F;
}

.button:hover .button-icon svg {
    fill: #15374F;
}

.elementor-heading-title li{
	font-size: 14px;
}

.elementor-element-479abf2.darkBG .elementor-element-4380f58 img {
    filter: brightness(8) !important;
}

.elementor-widget-n-menu .e-n-menu-title:hover:not(.e-current), .elementor-widget-n-menu .e-n-menu-title:hover:not(.e-current) a {
    color: #9B9381 !important;
}
div#privacyPolicy {
    padding: 0 10%;
}

h2.elementor-heading-title.elementor-size-default {
    white-space: nowrap;
	margin-bottom: 10px;
}

img.attachment-large.size-large.wp-image-5370 {
	width: 100%;
}

.page-id-3 main#content, .home main#content {
	padding-top: 80px;
}


@media(min-width:1024px){
	main#content {
		padding-top: 80px;
	}
}

.elementor-111 .elementor-element .elementor-heading-title a:hover, .elementor-111 .elementor-element.elementor-element-73c3c51 .elementor-heading-title a:focus {
    color: #9B9381 !important;
}

#mainFooter a:hover {
	color: #9B9381;
}
.elementor-33 .elementor-element.elementor-element-479abf2 {
        z-index: 9999;
}
.page-id-6851 .properties_card .properties_card_content {
    height: 100%;
}
.page-id-6851 .properties_card_content .properties_card_content_text {
    grid-area: 2 / 1 / 2 / 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.page-id-6851 .properties_card .unit_types {
    opacity: 1;
    margin-left: 25px;
    transition-delay: 150ms;
}
.page-id-6851 .properties_card .view_properties_button {
    opacity: 1;
}
/* width */
#property_card_scroller::-webkit-scrollbar {
  width: 10px;
}

/* Track */
#property_card_scroller::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
#property_card_scroller::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
#property_card_scroller::-webkit-scrollbar-thumb:hover {
  background: #555;
}
#property_card_scroller{
	overflow-x: hidden;
}
@media(max-width:767px){
	.properties_card_content{
		padding-top:12px;
	}
	h2.elementor-heading-title.elementor-size-default{
    	white-space: normal;
	}
}


@media (max-width: 767px) {
  .properties_card:not(:hover) .properties_card_content_text {
    grid-column: 1 / 4;
    width: 100%;
    padding-right: 0;
    margin: 0;
  }
}

@media (max-width: 767px) {
  .properties_card:hover .properties_card_content_text {
	grid-area: 2 / 1 / 2 / 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
	.properties_card.bp-left{
		background-position: left!important;
	}
	.properties_card.bp-right{
		background-position: right!important;
	}
	.properties_card.bp-10{
		background-position: 10% !important;
	}
	.properties_card.bp-20{
		background-position: 20% !important;
	}
	.properties_card.bp-30{
		background-position: 30% !important;
	}
	.properties_card.bp-80{
		background-position: 80% !important;
	}
}

