/* widgets css for properties */
.property-widget {
	border: 1px solid #ddd;
	border-radius: 8px;
	text-align: center;
	background-color: #f9f9f9;
	/*border: 1px solid #CEA798;*/
	box-shadow: 0px 0px 8px 1px #cea798;
	display: flex;
	flex-direction: column;
}

.property-image-wrapper {
    position: relative;
}

.property-image {
	width: 100%;
	height: auto;
}

.property-type-flag {
	position: absolute;
    left: 10px;
    bottom: 10px;
    background-color: #cea798;
    padding: 5px 10px;
    color: #fff;
    border-radius: 5px;
	font-size: 12px;
}
.property-title {
	margin: 10px 0;
	color: #000000;
	font-style: italic;
	font-weight: 800;
	padding: 0px;
}

.property-location {
	color: #777;
	padding-bottom: 10px;
}

.widget-divider {
	margin: 15px 0;
	border: 0;
	height: 1px;
	background: #ddd;
}

p.property-price {
	color: #222338;
	font-weight: 800;
	font-style: italic;
	padding: 10px 0px;
	cursor: pointer;
}

.property-title, .property-location, .property-price {
	font-family: 'Roboto', sans-serif;
	font-size: 18px;
}

.property-link {
	border-top: 1px solid #CEA798;
	margin-top: auto;
}

.grid-view-3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

@media screen and (max-width: 400px) {
	.grid-view-3 {
		grid-template-columns: repeat(1, 1fr);
	}
}

@media screen and (min-width:401px) and (max-width: 780px) {
	.grid-view-3 {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* bronest search form */

.bronest-search-form form.wpforms-form {
	display: flex;
    justify-content: space-between;
    align-items: end;
}

.bronest-search-form form.wpforms-form .wpforms-field-container {
	width: 75%;
}

@media screen and (max-width: 750px) {
	.bronest-search-form form.wpforms-form {
		display: block;
		text-align: center;
	}
	.bronest-search-form form.wpforms-form .wpforms-field-container {
		width: 100%;
	}
}



.bronest-search-form form.wpforms-form .wpforms-submit-container {
	padding-bottom: 15px;
}

.bronest-search-form form.wpforms-form select {
	padding-left: 10px !important;
    border: 0px;
    border-bottom: 1px solid #000;
}

.bronest-search-form form.wpforms-form .wpforms-submit-container button {
	width: 200px;
	background-color: #222338 !important;
	border-radius: 8px;
}

.pagination-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.pagination-list {
    list-style: none;
    display: flex;
    padding: 0;
    border-radius: 5px;
    overflow: hidden;
}

.pagination-list li {
    margin: 0 3px;
}


.pagination-list a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #222338;
    background-color: #fff;
    border: 1px solid #ddd;
    transition: background-color 0.3s ease;
}

.pagination-list a:hover {
    background-color: #222338;
    color: #fff;
}

.pagination-list a:active {
    background-color: #222338;
    color: #fff;
}

/* Active Page */
.pagination-list .active a {
    background-color: #222338;
    color: white;
    cursor: default;
}


/* Responsive Design */
@media screen and (max-width: 600px) {
    .pagination-list a {
        padding: 8px 10px;
    }
}

@media screen and (max-width: 400px) {
    .pagination-list a {
        padding: 6px 8px;
    }
}


/* contact us form */

.bronest-contact-us form input, textarea {
	border: 1px solid #CEA798 !important;
}

.bronest-contact-us form button {
	background-color: #CEA798 !important;
	color: #fff !important;
	width: 100%;
}


/* request model css */

/* .request-model {
	font-family: Arial, sans-serif;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 100vh;
	background-color: #f7f7f7;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.hide-model {
	display: none !important;
}

.request-model.container {
	position: relative;
	display: flex;
	background: linear-gradient(120deg, #a1c4fd 0%, #c2e9fb 100%);
	width: 80%;
	max-width: 900px;
	height: 500px;
	border-radius: 12px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
	overflow: hidden;
	opacity: 0;
	visibility: hidden;
	transition: opacity 1s ease, visibility 0s 1s;
}

.request-model.container.show {
	opacity: 1;
	visibility: visible;
	transition: opacity 1s ease;
}

.request-model.container img {
	width: 50%;
	height: 100%;
	object-fit: cover;
} */
/* Close Icon */
/* .request-model .close-icon {
	position: absolute;
	top: 10px;
	right: 20px;
	font-size: 24px;
	cursor: pointer;
	color: #333;
	background: none;
	border: none;
}

.request-model .close-icon:hover {
	color: #ff0000;
} */

/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.request-model {
    position: fixed; /* Ensure it's always fixed relative to the screen */
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh; /* Full height to cover the screen */
    /* display: flex; */
    justify-content: center; /* Horizontally center */
    align-items: center; /* Vertically center */
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    visibility: hidden; /* Hidden initially */
    opacity: 0;
    transition: opacity 0.5s ease;
	z-index: 100;
	display: none;
}

.request-model.show {
    visibility: visible !important;
    opacity: 1 !important;
	display: flex !important;
}

.request-model .model-container {
    position: relative;
    display: flex;
    width: 80%;
    max-width: 500px;
    height: auto; /* Adjust height according to content */
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    background-color: #fff;
	justify-content: center;
}

.request-model .model-container img {
    width: 50%;
    height: 100%;
    object-fit: cover;
}

.form-container {
    padding: 20px;
    /* width: 50%; */
}

.form-container h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}

/* Close Icon */
.request-model .close-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    background: none;
    border: none;
}

.request-model .close-icon:hover {
    color: #ff0000;
}

.main-wrapper {
    padding:10px;
}

/* blog page css */

#skip_content {
	padding-top: 150px;
	font-family: "Montserrat", Sans-serif;
}

#skip_content a {
	color: #222338;
	text-decoration: none;
}


#skip_content aside {
	padding: 20px 0px;
	border-bottom: 1px solid #222338;
}

#skip_content .col-lg-4 {
	width: 25%;
}


#skip_content .main-wrapper .row {
	justify-content: space-between;
}


#skip_content .feature-box img {
	max-width: 100%;
    height: auto;
}


#skip_content h1 {

	font-size: 43px;
	font-weight: 600;
	font-style: italic;
}


#skip_content .wp-block-heading {
	font-size: 25px;
	font-weight: 600;
	font-style: italic;
}

@media screen and (max-width:1000px) {
    .property-content {
        min-height: 125px;
    }
}