@import "mapbox-gl.css";
@import "bootstrap.min.css";
@import "slick.css";

@import "navbar.css";
@import "footer.css";

@import "home.css";
@import "sell-page.css";
@import "partners-page.css";
@import "contact-us.css";
@import "about-us.css";
@import "property-for-buy.css";

@import "slider-banner.css";
@import "locale-switcher.css";
@import "property-item.css";
@import "filter-bar.css";
@import "appraisal-request.css";
@import "book-an-inspection.css";
@import "customer-say.css";
@import "our-team.css";
@import "member-item.css";

:root {
	--primary-background-color: #005e5a;
	--light-hover-color: #ebf9f9;
	--light-background-color: #fafffc;
	--primary-content-color: #fff3a4;

	--card-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

html {
	scroll-behavior: smooth;
}

.body {
	/* margin-top: 80px; */
	font-family: "Poppins", sans-serif;
	font-weight: 300;
}

.container {
	padding-left: 18px;
	padding-right: 18px;
}

a {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

/* Banner Heading */
.banner-wrapper {
	padding: 48px 0;
}

.gray-banner {
	background-color: #f8f8f8;
}

.banner-heading {
	margin-bottom: 24px;
	display: flex;
	justify-content: center;
	text-transform: uppercase;
	font-weight: 400;
	font-size: 32px;
	line-height: 32px;
}

.banner-heading-text {
	padding: 0 36px;
	text-align: center;
}

.banner-heading-border {
	margin-top: 12px;
	width: 100%;
	height: 3px;
	background-color: #000;
	box-shadow: 3px 3px 4px rgba(0, 0, 0, 0.2);
}

/* Submit button */
.submit-button {
	box-sizing: border-box;
	padding: 12px 24px;
	width: fit-content;
	display: flex;
	justify-content: center;
	color: var(--primary-content-color);
	background-color: var(--primary-background-color);
	border: solid 2px var(--primary-background-color);
	border-radius: 100px;
	cursor: pointer;
}

.submit-button:hover {
	filter: brightness(1.2);
}

.submit-button-text {
	font-size: 16px;
	line-height: 16px;
}

.submit-button.light-button {
	color: var(--primary-background-color);
	background-color: #fff;
}

.submit-button.gray-button {
	color: #000;
	border: solid 2px #d9d9d9;
	background-color: #d9d9d9;
}

.submit-button.gray-button:hover {
	filter: brightness(0.8);
}

/* Slick */
.slick-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
	border-radius: 50%;
	color: rgba(255, 255, 255, 0.3);
	background-color: rgba(0, 0, 0, 0.3);
	cursor: pointer;
	z-index: 5;
}

.slick-arrow:hover {
	color: rgba(255, 255, 255, 1);
}

.slick-arrow:active {
	background-color: rgba(0, 0, 0, 0.5);
}

.slick-prev {
	left: 12px;
}

.slick-next {
	right: 12px;
}

.slick-dots {
	position: absolute;
	bottom: 0px;
	left: 50%;
	transform: translate(-50%, 100%);
	margin: 0 !important;
	padding: 0 !important;
	display: flex !important;
	list-style: none;
}

.slick-dots li {
	margin: 10px 10px;
	padding: 0;
	display: flex;
	justify-content: center;
}

.slick-dots li button {
	padding: 0;
	height: 10px;
	width: 10px;
	font-size: 0;
	border-radius: 50%;
	border: solid 0.5px var(--primary-background-color);
}

.slick-dots li button:focus {
	outline: none;
}

.slick-dots .slick-active button {
	background-color: var(--primary-background-color);
}

/* Pagination */
.pagination {
	margin: 0;
}

.pagination #firstPage .page-link,
.pagination #prevPage .page-link,
.pagination #nextPage .page-link,
.pagination #lastPage .page-link {
	width: fit-content;
}

.page-item .page-link {
	width: 24px;
	height: 24px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 6px;
	padding: 0;
	color: var(--primary-background-color);
	background-color: #fff;
	border: none;
	border-radius: 2px;
}

.page-item.active .page-link {
	color: #fff;
	background-color: var(--primary-background-color);
	border-color: var(--primary-background-color);
}

.page-item.disabled .page-link {
	color: #777;
}

/* Select */

select {
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
}

.select-wrapper {
	position: relative;
}

.select-wrapper::after {
	position: absolute;
	right: 6px;
	top: 50%;
	transform: translateY(-50%);
	content: "\f078";
	font-family: "Font Awesome 5 Free";
	font-weight: 600;
	font-size: 14px;
	pointer-events: none;
}

/* See more */

.see-more-btn {
	width: 100%;
	padding: 6px;
	justify-content: center;
	display: none;
}

.see-more-btn.fadeButton {
	position: absolute;
	bottom: 0;
	height: 120px;
	align-items: last baseline;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 1));
}

.see-more-btn button {
	display: flex;
	gap: 6px;
	color: var(--primary-background-color);
	border: none;
	background: transparent;
}

.see-more-btn button span {
	line-height: 18px;
}

@media (max-width: 767px) {
	.body {
		/* margin-top: 60px; */
	}

	.mobile-hidden {
		display: none !important;
	}

	.banner-heading {
		font-weight: 300;
		font-size: 24px;
		line-height: 32px;
	}

	.banner-heading-text {
		padding: 0;
	}

	.banner-heading-border {
		display: none;
	}

	.see-more-btn {
		display: flex;
	}
}
