/*----------------------------------------------------------------------------------------

*---------------------------------------------------------------------------------------- */
/* INDEX
----------------------------------------------------------------------------------------
01. Global Variables
02. General css
03. Header css
04. Hero css
05. Property Type css
06. Featured Property css
07. About us css
08. How It Works css
09. Why Choose us css
10. Infobar css
11. Property By City css
12. Latest Posts css
13. Footer css
14. About us Page css
15. Listing Page css
16. Property Single Page css
17. Blog Archive Page css
18. Post Single css
19. Contact us page css
20. FAQ page css
21. Page Not Found Page css
22. Agents page css
23. Responsive css
-------------------------------------------------------------------------------------- */

/************************************/
/****    01. Global Variables    ****/
/************************************/

:root {
	--primary-color: #073262;
	--secondary-color: #F6F8FF;
	--text-color: #646262;
	--white-color: #ffffff;
	--dark-color: #333333;
	--accent-color: #073262;
	--divider-color: #DDE4FF;
	--gray-divider: #DDDBDB;
	--overlay-color: #07326280;
	--dark-overlay-color: #073262aa;
	--error-color: rgb(230, 87, 87);
	--accent-font: 'roboto', sans-serif;
	--default-font: 'roboto', sans-serif;
}

/************************************/
/**** 	   02. General css		 ****/
/************************************/

body {
	font-size: 16px;
	font-weight: 400;
	font-family: var(--default-font);
	color: var(--text-color);
	line-height: 1.6em;
}

p {
	line-height: 1.6em;
	margin-bottom: 15px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--accent-font);
	margin-top: 0;
	font-weight: 700;
	color: var(--primary-color);
}

figure {
	display: block;
	margin: 0;
	width: 100%;
}

img {
	max-width: 100%;
}

b,
strong {
	font-weight: 600;
}

a {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
	outline: 0;
}

a:focus {
	text-decoration: none;
	outline: 0;
}

::-webkit-scrollbar-track {
	background-color: #f1f1f1;
	border-left: 1px solid #ededed;
}

::-webkit-scrollbar {
	width: 7px;
	background-color: var(--accent-color);
}

::-webkit-scrollbar-thumb {
	background: var(--accent-color);
}

.container {
	max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
	padding-right: 15px;
	padding-left: 15px;
}

.image-anime {
	position: relative;
	overflow: hidden;
}

.image-anime:after {
	content: "";
	position: absolute;
	width: 200%;
	height: 0%;
	left: 50%;
	top: 50%;
	background-color: rgba(255, 255, 255, .3);
	transform: translate(-50%, -50%) rotate(-45deg);
	z-index: 1;
}

.image-anime:hover:after {
	height: 250%;
	transition: all 600ms linear;
	background-color: transparent;
}

.reveal {
	position: relative;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	visibility: hidden;
	overflow: hidden;
}

.reveal img {
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-transform-origin: left;
	transform-origin: left;
}

.row {
	margin-right: -15px;
	margin-left: -15px;
	position: relative;
	z-index: 1;
}

.row>* {
	padding-right: 15px;
	padding-left: 15px;
}

.form-control {
	width: 100%;
	box-shadow: none;
	outline: 0;
	background: var(--secondary-color);
	border: 1px solid var(--divider-color);
	font-family: var(--default-font);
	font-size: 14px;
	color: var(--primary-color);
	padding: 14px 20px;
}

.form-control:focus {
	box-shadow: none;
	outline: 0;
	border-color: var(--divider-color);
}

select.form-control {
	background-image: url(../images/icon-dropdown.svg);
	background-repeat: no-repeat;
	background-position: right 15px center;
}

.help-block.with-errors ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.help-block.with-errors ul li {
	font-size: 14px;
	color: var(--error-color);
	line-height: 1.2em;
	margin-top: 2px;
}

.btn-default {
	display: inline-block;
	background: #fea543;
	color: var(--white-color);
	font-family: var(--accent-font);
	font-size: 16px;
	font-weight: 600;
	padding: 14px 30px;
	border-radius: 5px;
	position: relative;
	overflow: hidden;
	z-index: 0;
	border: none;
	outline: 0;
	box-shadow: none;
	transition: 0.2s transform;
}

.btn-default:before {
	content: '';
	position: absolute;
	width: 0;
	height: 104%;
	top: 50%;
	left: 50%;
	background: var(--primary-color);
	opacity: 0;
	z-index: -1;
	transform: translateX(-51%) translateY(-51%);
	transition: all 0.4s;
	border-radius: 5px;
}

.btn-default:hover::before {
	width: 106%;
	opacity: 1;
}

.btn-default.btn-border {
	background: none;
	color: var(--accent-color);
	padding: 12px 30px;
	border: 2px solid var(--accent-color);
}

.btn-default.btn-border:before {
	background: var(--accent-color);
}

.btn-default.btn-border:hover {
	color: var(--white-color);
}

#magic-cursor {
	position: absolute;
	width: 10px !important;
	height: 10px !important;
	pointer-events: none;
	z-index: 1000000;
}

#ball {
	position: fixed;
	display: block;
	left: 0;
	top: 0;
	transform: translate(-50%, -50%);
	width: 10px !important;
	height: 10px !important;
	background: var(--accent-color);
	border-radius: 50%;
	pointer-events: none;
	opacity: 1 !important;
}

.preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background-color: var(--primary-color);
	display: flex;
	align-items: center;
	justify-content: center;
}

.loading-container,
.loading {
	height: 100px;
	position: relative;
	width: 100px;
	border-radius: 100%;
}

.loading-container {
	margin: 40px auto
}

.loading {
	border: 1px solid transparent;
	border-color: transparent var(--white-color) transparent var(--white-color);
	animation: rotate-loading 1.5s linear 0s infinite normal;
	transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
	transition: all 0.5s ease-in-out;
}

#loading-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 100px;
	transform: translate(-50%, -50%);
}

@keyframes rotate-loading {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.section-title {
	text-align: center;
	margin-bottom: 60px;
}

.section-title h3 {
	display: inline-block;
	text-align: center;
	font-size: 24px;
	text-transform: uppercase;
	font-weight: 600;

	color: var(--dark-color);
	position: relative;

	margin-bottom: 15px;
	z-index: 2;
}



.section-title h1,
.section-title h2 {
	font-size: 45px;
	color: var(--primary-color);
	font-weight: 700;
	line-height: 1.2em;
	margin-bottom: 0;
}

/************************************/
/**** 	   03. Header css		 ****/
/************************************/

header.main-header {
	position: relative;
	/* background: var(--white-color); */
	border-radius: 0px;
	border-bottom: 1px solid transparent;
	z-index: 100;
	position: fixed;
	top: 0px;
	width: 100%;
}

header.main-header .header-sticky {
	padding: 4px 0px 0px;
	position: relative;
	top: 0;
	background-color: white;
	z-index: 100;
}

header.main-header .header-sticky.hide {
	transform: translateY(-100%);
	transition: transform 0.3s ease-in-out;
	padding: 5px 0;
	border-radius: 0;
	border-bottom: 1px solid #16330010;
}

header.main-header .header-sticky.active {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	border-radius: 0;
	border-bottom: 1px solid #16330010;
	transform: translateY(0);
	background: var(--white-color);
}

.navbar {
	padding: 0;
}

.navbar-brand {
	padding: 0;
}

.main-menu {
	font-family: var(--default-font);
	justify-content: flex-end;
}

.main-menu ul {
	align-items: center;
}

.main-menu ul li {
	margin-left: 20px;
	position: relative;
}

.main-menu ul li.submenu>a:after {
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 14px;
	margin-left: 8px;
}

.main-menu ul li a {
	font-size: 17px;
	font-weight: 600;
	font-family: var(--accent-font);
	padding: 12px 6px !important;
	color: #202020;
}

.main-menu ul li.highlighted-menu a {
	display: block;
	background: #fea543;
	color: var(--white-color);
	padding: 14px 30px !important;
	border-radius: 5px;
	position: relative;
	overflow: hidden;
	z-index: 0;
	color: #fff !important;
}

.main-menu ul li.highlighted-menu a::before {
	content: '';
	position: absolute;
	width: 0;
	height: 104%;
	top: 50%;
	left: 50%;
	background: var(--primary-color);
	opacity: 0;
	z-index: -1;
	transform: translateX(-51%) translateY(-51%);
	transition: all 0.4s;
}

.main-menu ul li.highlighted-menu a:hover::before {
	width: 106%;
	opacity: 1;
}

.main-menu ul li.highlighted-menu a:hover::after {
	transform: translate(0, 0);
}

.main-menu ul li.highlighted-menu a:hover {
	color: var(--white-color);
}

.main-menu ul li a:hover,
.main-menu ul li a:focus {
	color: var(--accent-color);
}

.main-menu ul ul {
	visibility: hidden;
	opacity: 0;
	transform: scaleY(0.8);
	transform-origin: top;
	padding: 8px 0;
	margin: 0;
	list-style: none;
	width: 220px;
	border-radius: 20px;
	position: absolute;
	left: 0;
	top: 100%;
	overflow: hidden;
	background-color: var(--accent-color);
	transition: all .3s ease-in-out;
}

.main-menu ul ul ul {
	left: 100%;
	top: 0;
}

.main-menu ul ul li {
	margin: 0;
	padding: 0;
}

.main-menu ul ul li a {
	color: var(--white-color);
	padding: 8px 20px !important;
}

.main-menu ul li:hover>ul {
	visibility: visible;
	opacity: 1;
	transform: scaleY(1);
}

.main-menu ul ul li a:hover {
	color: var(--white-color);
	background: #ffffff20;
}

.responsive-menu,
.navbar-toggle {
	display: none;
}

.responsive-menu {
	top: 15px;
	position: relative;
}

.slicknav_btn {
	background: var(--accent-color);
	padding: 6px 0 0;
	width: 38px;
	height: 38px;
	margin: 0;
	border-radius: 5px;
}

.slicknav_icon .slicknav_icon-bar {
	display: block;
	width: 100%;
	height: 3px;
	width: 22px;
	background-color: var(--white-color);
	margin: 4px auto !important;
}

.slicknav_menu {
	padding: 0;
	background: var(--accent-color);
	border-radius: 5px;
}

.slicknav_nav {
	padding-top: 5px;
	padding-bottom: 5px;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a {
	font-size: 16px;
	font-weight: 400;
	padding: 4px 15px;
	font-family: var(--accent-font);
	color: var(--white-color);
}

.slicknav_nav a:hover,
.slicknav_nav .slicknav_row:hover {
	background-color: transparent;
	color: var(--primary-color);
}

.slicknav_arrow {
	font-size: 0 !important;
}

.slicknav_arrow:after {
	content: '\f105';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 12px;
	margin-left: 8px;
	color: var(--white-color);
}

/************************************/
/**** 	    04. Hero css		 ****/
/************************************/

.hero {
	position: relative;
	margin-top: 86px;
}

.hero .hero-section {

	overflow: hidden;

	/* border-radius: 20px; */

	background: url(../images/hero.jpg) no-repeat center center;

	background-size: cover;

	padding: 100px 0 312px;

	position: relative;
}

.hero .hero-section:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--overlay-color);
	z-index: 1;
}

.hero-content {
	max-width: 720px;
	margin: 0 auto;
	text-align: center;
}

.hero-content .section-title {
	margin-bottom: 30px;
}

.hero-content .section-title h3 {
	/* color: var(--accent-color); */
	color: #fff;
}

.hero-content .section-title h3:before {
	background-image: url(../images/icon-heading-light.svg);
}

.hero-content .section-title h1 {
	color: var(--white-color);
	font-size: 70px;
}

.hero-content-body p {
	color: var(--white-color);
}

.hero-content-footer {
	margin-top: 40px;
}

.hero-content-footer .btn-default {
	margin: 0 10px;
}

.hero-content-footer .btn-default.btn-border {
	border-color: var(--white-color);
	color: var(--white-color);
}

.hero-content-footer .btn-default.btn-border:hover {
	border-color: var(--accent-color);
}

.hero.hero-video .hero-section {
	background: none;
}

.hero-video .hero-section .hero-bg-video {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}

.hero-video .hero-section .hero-bg-video video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-video .hero-section .hero-bg-video iframe {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-slider .hero-section {
	padding: 0;
}

.hero-slider .hero-section {
	background: none;
}

.hero-slider .hero-section:before {
	display: none;
}

.hero-slider .hero-section .hero-slide {
	height: 650px !important;
	object-fit: cover;
	position: relative;
}



.hero-slider .hero-section .hero-slide .hero-slide-image {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.hero-slider .hero-section .hero-slide .hero-slide-image:after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #0000001c;
	z-index: 1;
}

.hero-slider .hero-section .hero-slide .hero-slide-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}


.hero-slider .hero-section .hero-slide .hero-content {
	z-index: 4;
	position: relative;
}

.hero-slider .hero-carousel .hero-button-prev,
.hero-slider .hero-carousel .hero-button-next {
	width: 50px;
	height: 50px;
	background: var(--accent-color) url(../images/arrow-right.svg) no-repeat center center;
	background-size: 50% auto;
	position: absolute;
	top: 50%;
	z-index: 2;
	border-radius: 5px;
	margin-top: -25px;
	opacity: 0;
	transition: all 0.3s ease-in-out;
	display: none;
}

.hero-slider:hover .hero-carousel .hero-button-prev,
.hero-slider:hover .hero-carousel .hero-button-next {
	opacity: 1;
}

.hero-slider .hero-carousel .hero-button-prev:hover,
.hero-slider .hero-carousel .hero-button-next:hover {
	background-color: var(--primary-color);
}

.hero-slider .hero-carousel .hero-button-prev {
	left: 30px;
	transform: rotate(180deg);
}

.hero-slider .hero-carousel .hero-button-next {
	right: 30px;
}

.hero .hero-search-form-section {
	position: absolute;
	z-index: 10;
	bottom: 100px;
	width: 100%;
	padding: 0 15px;
}

.hero-video .hero-search-form {
	margin: 0;
}

.hero-search-form {
	background-color: var(--white-color);
	padding: 30px;
	border-radius: 20px;
	backdrop-filter: blur(10px);
}

.social-media {
	width: 20px;
	position: absolute;
	left: 15px;
	top: calc(50% + 60px);
	transform: translateY(-50%);
	z-index: 2;
	text-align: center;
}

.social-media h6 {
	width: 125px;
	color: #fff;
	transform: rotate(90deg);
	transform-origin: left;
	margin-left: 9px;
	font-weight: 600;
	margin-bottom: 120px;
	font-size: 14px;
}

.social-media ul {
	margin: 0;
	padding: 0;
}

.social-media ul:before {
	content: "";
	width: 1px;
	height: 42px;
	background: #fff;
	display: inline-block;
	margin-bottom: 15px;
	margin-top: 10px;
}

.social-media ul li {
	margin: 0;
	padding: 3px 0;
	list-style: none;
}

.social-media ul li a {
	color: #fff;
	font-size: 12px;
}

.social-media ul li a:hover {
	color: #ebcfa7;
}

.search-heading {
	display: none;
}

.search-heading h4 {
	margin-bottom: 0;
	position: relative;
	font-size: 18px;
	text-align: center;
}

.hero-search-form .form-control {
	width: 100%;
	box-shadow: none;
	outline: 0;
	background: var(--secondary-color);
	border: 1px solid var(--divider-color);
	font-family: var(--default-font);
	font-size: 14px;
	color: var(--primary-color);
	padding: 14px 20px;
}

.hero-search-form select.form-control {
	background-image: url(../images/icon-dropdown.svg);
	background-repeat: no-repeat;
	background-position: right 15px center;
}

.hero-search-form .btn-default {
	width: 100%;
	padding: 13px 20px;
}

/******************************************/
/****   	 05. Property Type css 	   ****/
/******************************************/

.property-types {
	padding: 40px 0px 1px;
}

.property-type-item {
	background: var(--secondary-color);
	padding: 30px;
	border-radius: 20px;
}

.property-type-item .icon-box {
	width: 70px;
	height: 70px;
	background: var(--primary-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	transition: all 0.3s ease-out;
}

.property-type-item:hover .icon-box {
	background: var(--accent-color);
}

.property-type-item h3 {
	font-size: 22px;
	font-weight: 600;
	color: var(--dark-color);
	margin-bottom: 6px;
}

.property-type-item p {
	margin: 0;
}

.property-type-slider .swiper-pagination {
	position: relative;
	bottom: 0;
	margin-top: 30px;
}

.property-type-slider .swiper-pagination .swiper-pagination-bullet {
	width: 16px;
	height: 16px;
	background: var(--primary-color);
	transition: all 0.3s;
}

/******************************************/
/****   06. Featured Property css      ****/
/******************************************/

.featured-property {
	background: var(--secondary-color);
	padding: 40px 0;

}

.property-item {
	background: var(--secondary-color);
	border-radius: 20px;
	overflow: hidden;
	/* padding: 25px; */
	margin: 10px 5px;
	box-shadow: 0px 0px 10px #ddd
}

.featured-property .property-item {
	background-color: var(--white-color);
}

.property-item .property-header {
	position: relative;
	overflow: hidden;
	/* margin-bottom: 30px; */
	padding: 20px;
}

.property-item .property-header figure img {
	width: 100%;
	transition: all 0.5s ease-out;
	border-radius: 20px;
}

.property-item:hover .property-header figure img {
	transform: scale(1.2);
}

.property-item:hover .property-header figure:after {
	height: 250%;
	transition: all 600ms linear;
	background-color: transparent;
}

.property-item:hover .property-header figure:after {
	height: 250%;
	transition: all 600ms linear;
	background-color: transparent;
}

.property-item .property-header .property-label {
	position: absolute;
	top: 20px;
	left: 20px;
	background: var(--primary-color);
	color: var(--white-color);
	font-family: var(--accent-font);
	font-size: 16px;
	font-weight: 500;
	padding: 4px 14px;
	border-radius: 5px;
}

.property-item .property-body {
	padding: 15px 20px 10px;
}

.property-item .property-body h3 {
	font-size: 24px;
	font-weight: 600;
	color: #073262;
}

.property-item .property-body p {
	margin-bottom: 0;
	color: #666666;
	font-weight: 600;
}

.property-item .property-meta {
	display: flex;
	flex-wrap: wrap;
	margin-top: 12px;
	padding-bottom: 10px;
	margin-bottom: 10px;
	border-bottom: 1px solid var(--gray-divider);
}

.property-item .property-meta .property-amenity-item {
	width: 48%;
	margin-right: 4%;
	display: flex;
	align-items: center;
	margin-bottom: 6px;
}

.property-item .property-meta .property-amenity-item:nth-of-type(2n + 2) {
	margin-right: 0;
}

.property-item .property-meta .property-amenity-item .icon-box {
	width: 22px;
	margin-right: 10px;
}

.property-item .property-footer {

	display: flex;

	flex-wrap: wrap;

	align-items: center;

	justify-content: space-between;

	padding: 0px 30px 30px;
}

.property-item .property-footer .property-price {
	margin-bottom: 0;
	font-weight: 600;
	font-size: 17px;
	color: white;
	padding: 10px 20px;
	background-color: #fea543;
	border-radius: 10px;
}

.property-item .property-footer .btn-default {
	font-size: 14px;

}

.property-slider .swiper-pagination {
	position: relative;
	bottom: 0;
	margin-top: 50px;
}

.property-slider .swiper-pagination .swiper-pagination-bullet {
	width: 16px;
	height: 16px;
	background: var(--primary-color);
	transition: all 0.3s;
}

/******************************************/
/****   	 07. About us css   	   ****/
/******************************************/

.about-us {
	padding: 40px 0;
}

.about-images {
	position: relative;
	padding-left: 84px;
	padding-top: 32px;
	background: url(../images/icon-about-dot.svg) no-repeat top left;
}

.about-image img {
	width: 100%;
	border-radius: 20px;
}

.about-video {
	width: 45%;
	position: absolute;
	bottom: 30px;
	left: 0;
	z-index: 1;
	border-radius: 20px;
	overflow: hidden;
}

.about-video figure img {
	width: 100%;
	border: 4px solid var(--white-color);
	border-radius: 20px;
}

.video-play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.video-play-button a {
	display: inline-block;
	position: relative;
	font-size: 50px;
	height: 50px;
	border-radius: 50%;
	text-align: center;
}

.video-play-button a img {
	width: 50px;
}

.video-play-button a:before {
	content: '';
	position: absolute;
	top: -30%;
	left: -30%;
	width: 160%;
	height: 160%;
	border: 2px solid var(--secondary-color);
	border-radius: 50%;
	transform: scale(0.6);
	z-index: -1;
	animation: border-zooming 1s infinite linear;
}

.video-play-button a:after {
	content: '';
	position: absolute;
	top: -30%;
	left: -30%;
	width: 160%;
	height: 160%;
	border: 2px solid var(--secondary-color);
	border-radius: 50%;
	transform: scale(0.6);
	z-index: -1;
	animation: border-zooming 1s infinite linear;
	animation-delay: .3s;
}

@keyframes border-zooming {
	100% {
		transform: scale(1);
		opacity: 0;
	}
}

.about-content {
	padding-top: 32px;
	padding-left: 10px;
}

.about-us .section-title {
	text-align: left;
	margin-bottom: 20px;
}

.about-content-body ul {
	padding: 0;
	margin: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
}

.about-content-body ul li {
	font-size: 18px;
	font-weight: 500;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	width: 48%;
	margin-right: 4%;
	margin-bottom: 25px;
}

.about-content-body ul li:nth-child(2n + 2) {
	margin-right: 0;
}

.about-content-body ul li .icon-box {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	background: var(--secondary-color);
	border-radius: 50%;
	margin-right: 15px;
}

.about-content-body ul li span {
	display: block;
	width: calc(100% - 75px);
}

/******************************************/
/****   	 08. How It Works css  	   ****/
/******************************************/

.how-it-works {
	padding: 40px 0;
	background: var(--secondary-color);
}

.how-it-work-item {
	text-align: center;
	background: var(--white-color);
	padding: 30px;
	border-radius: 20px;
	margin-bottom: 30px;
}

.how-it-work-item .icon-box {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 86px;
	height: 80px;
	background: var(--primary-color);
	border-radius: 50%;
	margin: 0 auto 25px;
	transition: all 0.3s ease-out;
}

.how-it-work-item:hover .icon-box {}

.how-it-work-item h3 {
	font-size: 22px;
	margin-bottom: 15px;
	color: var(--dark-color);
	font-weight: 600;
}

.how-it-work-item p {
	margin-bottom: 0;
}

/******************************************/
/****     09. Why Choose us css   	   ****/
/******************************************/

.why-choose-us {
	padding: 40px 0 40px;
}

.why-choose-us .section-title {
	text-align: left;
	margin-bottom: 20px;
}

.why-choose-us-body ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.why-choose-us-body ul li {
	position: relative;
	font-size: 16px;

	padding-left: 34px;
	margin-bottom: 15px;
}

.why-choose-us-body ul li:before {
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	background: #282828 url(../images/icon-checkmark.svg) no-repeat center center;
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: 2px;
}

.why-choose-us-body .btn-default {
	margin-top: 20px;
}

.why-choose-us-images {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-end;
	padding-bottom: 30px;
}

.why-choose-us-image1,
.why-choose-us-image2 {
	width: 48%;
}

.why-choose-us-image2 {
	margin-bottom: 30px;
}

.why-choose-us-image1 img,
.why-choose-us-image2 img {
	width: 100%;
	border-radius: 20px;
}

.exclusive-agents {
	background: var(--secondary-color);
	padding: 30px;
	border-radius: 20px;
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	text-align: center;
	min-width: 248px;
	animation: moveobject 2s infinite linear alternate;
}

.exclusive-agents h5 {
	font-size: 18px;
	font-weight: 600;
}

@keyframes moveobject {
	50% {
		left: 45%;
	}
}

/******************************************/
/****    	  10. Infobar css   	   ****/
/******************************************/

.infobar-cta {
	padding: 40px 0;
}

.infobar-box {
	background-color: var(--secondary-color);
	padding: 40px 50px;
	border-radius: 20px;
}

.cta-content h2 {
	font-size: 40px;
	font-weight: 700;
}

.cta-content p {
	margin-bottom: 0;
}

.cta-button {
	text-align: right;
}

.cta-button .btn-default {
	margin-left: 10px;
}

.cta-button .btn-default i {
	margin-right: 10px;
}

/******************************************/
/****   11. Property By City css 	   ****/
/******************************************/
.property-item-facility {
	padding: 0px 20px;
}

.property-item-facility h4 {
	font-size: 22px;
	font-weight: 600;
	color: var(--dark-color);
}

.property-item-facility ul {
	padding: 0px 0px;
}

.property-item-facility ul li {
	line-height: 30px;
	font-size: 16px;
	list-style: none;
}

.property-by-city {
	padding: 40px 0;

}

.location-item {
	border-radius: 20px;
	overflow: hidden;
	position: relative;
}

.location-item .location-image img {
	width: 100%;
	transition: all 0.5s ease-out;
}

.location-item .location-content {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 30px;
	background: #00000047;
}

.location-item .location-content .location-header h3 {
	font-size: 22px;
	font-weight: 500;
	color: var(--white-color);
}

.location-item .location-content .location-header p {
	color: var(--white-color);
	font-size: 16px;
}

.location-item .location-content .location-footer {
	position: absolute;
	left: 30px;
	bottom: 10px;
	opacity: 0;
	transition: all 0.3s ease-out;
}

.location-item:hover .location-content .location-footer {
	bottom: 25px;
	opacity: 1;
}

.location-item:hover .location-image img {
	transform: scale(1.2);
}

/******************************************/
/****   	12. Latest Posts css   	   ****/
/******************************************/

.latest-posts {
	padding: 40px 0;
}

.post-item {
	box-shadow: 0px 0px 10px #ddd;
	padding: 30px;
	border-radius: 30px;

}

.post-item .post-featured-image {
	border-radius: 20px;
	overflow: hidden;
	position: relative;
	margin-bottom: 20px;
}

.post-item .post-featured-image figure img {
	width: 100%;
	transition: all 0.4s ease-out;
}

.post-item .post-featured-image .post-read-more {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--overlay-color);
	opacity: 0;
	transition: all 0.3s ease-out;
}

.post-item .post-featured-image .post-read-more .btn-default {
	top: 20px;
	opacity: 0;
	transition: all 0.3s ease-out;
}

.post-item:hover .post-featured-image .post-read-more {
	opacity: 1;
}

.post-item:hover .post-featured-image .post-read-more .btn-default {
	top: 0;
	opacity: 1;
}

.post-item:hover .post-featured-image figure img {
	transform: scale(1.2);
}

.post-item .post-body .post-category ul {
	padding: 0;
	margin: 0 0 4px;
	list-style: none;
}

.post-item .post-body .post-category ul li a {
	color: var(--text-color);
}

.post-item .post-body h3 {
	margin-bottom: 0;
}

.post-item .post-body h3 a {
	font-size: 20px;
	line-height: normal;
	font-weight: 600;
	color: var(--dark-color);
}

/******************************************/
/****   	 	13. Footer css   	   ****/
/******************************************/

footer.footer {
	background: #00356c;
	/* background: var(--primary-color); */
	/* margin: 70px 40px 0; */
	padding: 80px 0px;
	/* border-radius: 20px; */
}

.newsletter-box {
	background: var(--secondary-color);
	padding: 30px 50px;
	border-radius: 20px;
	margin-top: -70px;
	margin-bottom: 80px;
}

.newsletter-title h2 {
	font-size: 40px;
}

.newsletter-title p {
	margin-bottom: 0;
}

.newsletter-form .row>* {
	padding-left: 0;
	padding-right: 0;
}

.newsletter-form .form-control {
	background-color: var(--white-color);
	font-family: var(--default-font);
	padding: 0;
	border: none;
	height: 56px;
	padding: 0 20px;
	border-radius: 5px 0 0 5px;
	box-shadow: none;
	outline: 0;
}

.newsletter-form .btn-default {
	outline: 0;
	width: 100%;
	border-radius: 0 5px 5px 0;
	height: 56px;
}

.footer-about {
	padding-right: 80px;
}

.footer-about .footer-logo {
	margin-bottom: 30px;
}

.footer-about-content p {
	color: var(--white-color);
}

.footer-social-links ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.footer-social-links ul li {
	display: inline-block;
	margin-right: 8px;
}

.footer-social-links ul li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	font-size: 18px;
	border-radius: 5px;
	background: var(--accent-color);
	color: var(--white-color);
	transition: all 0.3s ease-out;
}

.footer-social-links ul li a:hover {
	background-color: var(--secondary-color);
	color: var(--primary-color);
}

.footer-contact-info h3,
.footer-quick-links h3,
.footer-appointment h3 {
	font-size: 22px;
	/* color: var(--accent-color); */
	color: #fff;
	margin-bottom: 30px;
}

.footer-info-box {
	position: relative;
	padding-left: 30px;
	margin-bottom: 25px;
}

.footer-info-box .icon-box {
	position: absolute;
	top: 0;
	left: 0;
}

.footer-info-box p {
	color: var(--white-color);
	margin-bottom: 0;
}

.footer-quick-links ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.footer-quick-links ul li {
	margin-bottom: 8px;
}

.footer-quick-links ul li a {
	color: var(--white-color);
	position: relative;
	padding-left: 20px;
	transition: all 0.3s ease-out;
}

.footer-quick-links ul li a:hover {
	color: var(--accent-color);
}

.footer-quick-links ul li a:before {
	content: '';
	display: block;
	position: absolute;
	top: 4px;
	left: 0;
	width: 14px;
	height: 14px;
	background: url(../images/icon-menu-item.svg) no-repeat left center;
}

.footer-appointment .footer-appointment-content p {
	color: var(--white-color);
}

.footer-appointment .footer-appointment-content .btn-default:before {
	background: var(--secondary-color);
}

.footer-appointment .footer-appointment-content .btn-default:hover {
	color: var(--primary-color);
}

.footer-copyright-links {
	padding: 20px 0;
}

.footer-copyright p {
	margin: 0;
}

.footer-policy-links {
	text-align: right;
}

.footer-policy-links ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.footer-policy-links ul li {
	display: inline-block;
	margin-left: 16px;
	position: relative;
	padding-left: 20px;
}

.footer-policy-links ul li:before {
	content: '';
	display: block;
	width: 1px;
	height: 15px;
	background: var(--text-color);
	position: absolute;
	top: 5px;
	left: 0;
}

.footer-policy-links ul li:first-child {
	padding-left: 0;
}

.footer-policy-links ul li:first-child:before {
	display: none;
}

.footer-policy-links ul li a {
	color: var(--text-color);
	transition: all 0.4s ease-out;
}

.footer-policy-links ul li a:hover {
	color: var(--accent-color);
}

/******************************************/
/****     14. About us Page css 	   ****/
/******************************************/

.page-header {
	padding: 107px 0;
	background: url(../images/hero.jpg) no-repeat center center;
	background-size: cover;
	position: relative;
	margin: 77px 0px 0px;
	border-radius: 0px;
	overflow: hidden;
}

.page-header:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #0000004d;
}

.page-header-box {
	text-align: center;
}

.page-header-box h1 {
	font-size: 70px;
	font-weight: 600;
	color: var(--white-color);
}

.page-header-box .breadcrumb {
	justify-content: center;
	margin-bottom: 0;
}

.page-header-box ol li.breadcrumb-item {
	color: var(--white-color);
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before {
	color: var(--white-color);
}

.page-header-box ol li.breadcrumb-item a {
	color: inherit;
}

.photo-gallery {
	padding: 100px 0 20px;
}

.gallery-item {
	border-radius: 20px;
	overflow: hidden;
	margin-bottom: 30px;
}

.gallery-item figure img {
	aspect-ratio: 1/1;
	object-fit: cover;
	object-position: center center;
	transition: all 0.5s ease-out;
}

.gallery-item:hover figure img {
	transform: scale(1.2);
}

.testimonials {
	padding: 40px 0;
	background: var(--secondary-color);
}

.testimonial-slide {
	background: var(--white-color);
	border-radius: 20px;
	padding: 30px;
	text-align: center;
	margin-bottom: 0px;
	transition: all 0.4s ease-in-out;
}

.testimonial-slide .testimonial-rating {
	margin-bottom: 20px;
}

.testimonial-slide .testimonial-author-info h3 {
	font-size: 16px;
	font-family: var(--default-font);
	font-weight: 600;
	color: var(--text-color);
	margin-bottom: 15px;
}

.testimonial-slide .testimonial-author-info figure {
	max-width: 100px;
	margin: 0 auto -80px;
	overflow: hidden;
	border-radius: 50%;
	background-color: var(--secondary-color);
}

.testimonial-slide .testimonial-author-info figure img {
	aspect-ratio: 1/1;
	object-fit: cover;
	border-radius: 50%;
	border: 6px solid var(--secondary-color);
}

.testimonial-slider .swiper-slide-active .testimonial-slide {
	background: var(--primary-color);
}

.testimonial-slider .swiper-slide-active .testimonial-slide .testimonial-content,
.testimonial-slider .swiper-slide-active .testimonial-slide .testimonial-author-info h3 {
	color: var(--white-color);
}

.testimonial-slider .swiper-pagination {
	position: relative;
	bottom: 0;
	margin-top: 30px;
}

.testimonial-slider .swiper-pagination .swiper-pagination-bullet {
	width: 16px;
	height: 16px;
	background: var(--primary-color);
	transition: all 0.3s;
}

.stat-counter {
	padding: 40px 0;
}

.counter-item {
	background: var(--secondary-color);
	text-align: center;
	padding: 30px;
	border-radius: 20px;
}

.counter-item .icon-box {
	margin: 0 auto 25px;
	width: 80px;
	height: 80px;
	border-radius: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--primary-color);
	transition: all 0.3s ease-in-out;
}

.counter-item:hover .icon-box {
	background-color: var(--accent-color);
}

.counter-item .icon-box img {
	max-width: 50%;
}

.counter-item h3 {
	font-size: 28px;
	font-weight: 700;
	color: var(--dark-color);
	margin-bottom: 5px;
}

.counter-item p {
	margin-bottom: 0;
}

.our-partners {
	background: var(--secondary-color);
	padding: 40px 0;
}

.client-logo {
	background: var(--white-color);
	border-radius: 20px;
	display: flex;
	text-align: center;
	align-items: center;
	justify-content: center;
	padding: 40px 30px;
}

.our-agents {
	padding: 40px 0;
}

.agent-item .agent-header {
	margin-bottom: 30px;
	border-radius: 20px;
	overflow: hidden;
	position: relative;
}

.agent-item .agent-header .agent-image img {
	width: 100%;
	transition: all 0.5s ease-in-out;
}

.agent-item .agent-header .agent-social-links {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -30px;
	opacity: 0;
	transition: all 0.4s ease-out;
	z-index: 2;
}

.agent-item:hover .agent-header .agent-image img {
	transform: scale(1.1);
}

.agent-item:hover .agent-header .agent-image figure:after {
	height: 250%;
	transition: all 600ms linear;
	background-color: transparent;
}

.agent-item:hover .agent-header .agent-social-links {
	bottom: 0;
	opacity: 1;
}

.agent-item .agent-header .agent-social-links ul {
	padding: 0 20px 30px;
	margin: 0;
	list-style: none;
	text-align: center;
}

.agent-item .agent-header .agent-social-links ul li {
	display: inline-block;
	margin: 0 2px;
}

.agent-item .agent-header .agent-social-links ul li a {
	width: 38px;
	height: 38px;
	font-size: 18px;
	border-radius: 5px;
	background: var(--accent-color);
	color: var(--white-color);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-out;
}

.agent-item .agent-header .agent-social-links ul li a:hover {
	background-color: var(--primary-color);
}

.agent-item .agent-body {
	text-align: center;
}

.agent-item .agent-body h3 {
	font-size: 22px;
	color: var(--dark-color);
	font-weight: 600;
}

.agent-item .agent-body p {
	margin-bottom: 0;
}

/******************************************/
/****   	 15. Listing Page css  	   ****/
/******************************************/

.page-property-listing {
	padding: 40px 0;
}

.page-property-listing .property-item {
	margin-bottom: 30px;
}

.post-pagination {
	margin-top: 30px;
	text-align: center;
}

.post-pagination ul {
	justify-content: center;
	padding: 0;
	margin: 0;
}

.post-pagination ul li a,
.post-pagination ul li span {
	display: flex;
	text-decoration: none;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	background: var(--secondary-color);
	margin: 0 4px;
	border-radius: 5px;
	font-family: var(--accent-font);
	font-weight: 700;
	color: var(--primary-color);
	transition: all 0.3s ease-in-out;
}

.post-pagination ul li.active a,
.post-pagination ul li a:hover {
	background: var(--accent-color);
	color: var(--white-color);
}

.property-sidebar {
	padding-left: 30px;
}

.property-category-box {
	background: var(--secondary-color);
	padding: 40px;
	border-radius: 20px;
	margin-bottom: 30px;
}

.property-category-box h3 {
	font-size: 22px;
	color: var(--dark-color);
	font-weight: 600;
	margin-bottom: 15px;
}

.property-category-box ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.property-category-box ul li {
	border-bottom: 1px solid var(--divider-color);
	padding: 10px 0;
}

.property-category-box ul li:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.property-category-box ul li a {
	display: block;
	font-weight: 600;
	color: var(--text-color);
	position: relative;
	padding-left: 20px;
	transition: all 0.3s ease-in-out;
}

.property-category-box ul li a:before {
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	background: url(../images/icon-list.svg) no-repeat left center;
	position: absolute;
	left: 0;
	top: 2px;
}

.property-category-box ul li a:hover {
	color: var(--accent-color);
}

.need-help-box {
	position: relative;
	text-align: center;
	border-radius: 20px;
	overflow: hidden;
}

.need-help-box:after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--dark-overlay-color);
}

.need-help-box .need-help-img img {
	width: 100%;
	transition: all 0.5s ease-in-out;
}

.need-help-box:hover .need-help-img img {
	transform: scale(1.2);
}

.need-help-box .need-help-content {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	justify-content: center;
	z-index: 2;
}

.need-help-box .need-help-content h3 {
	color: var(--white-color);
	font-size: 28px;
	font-weight: 600;
	margin-bottom: 30px;
	width: 100%;
}

/******************************************/
/****   16. Property Single Page css   ****/
/******************************************/

.page-property-single {
	padding: 40px 0;
}

.porperty-single-sidebar {
	padding-left: 30px;
	height: 100%;
}

.property-info-box {
	background: var(--secondary-color);
	padding: 40px;
	border-radius: 20px;
	margin-bottom: 40px;
}

.property-info-box h3 {
	font-size: 22px;
	color: var(--dark-color);
	font-weight: 600;
	margin-bottom: 20px;
}

.property-info-item {
	position: relative;
	padding: 14px 0 14px 32px;
	border-bottom: 1px solid var(--gray-divider);
}

.property-info-item:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.property-info-item .icon-box {
	position: absolute;
	top: 14px;
	left: 0;
}

.property-info-item .icon-box img {
	max-height: 20px;
}

.property-info-item p {
	margin: 0;
}

.property-inquiry-box {
	background: var(--secondary-color);
	padding: 40px;
	border-radius: 20px;
	position: sticky;
	top: 100px;
}

.property-inquiry-box h3 {
	font-size: 22px;
	color: var(--dark-color);
	font-weight: 600;
	margin-bottom: 20px;
}

.property-inquiry-form .form-control {
	background: var(--white-color);
}

.property-inquiry-form .btn-default {
	width: 100%;
}

.property-photos-slider {
	border-radius: 20px;
	overflow: hidden;
}

.property-photo-item {
	border-radius: 20px;
	overflow: hidden;
}

.property-photos-slider .swiper-arrow-prev,
.property-photos-slider .swiper-arrow-next {
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 30px;
	color: var(--white-color);
	position: absolute;
	top: 50%;
	z-index: 1;
	transform: translateY(-50%);
	transition: all 0.3s ease-in-out;
}

.property-photos-slider .swiper-arrow-prev {
	left: 20px;
}

.property-photos-slider .swiper-arrow-next {
	right: 20px;
}

.property-photos-slider .swiper-arrow-prev:hover,
.property-photos-slider .swiper-arrow-next:hover {
	background-color: var(--primary-color);
}

.property-single-subtitle {
	margin-bottom: 15px;
}

.property-single-subtitle h3 {
	font-size: 36px;
	color: var(--primary-color);
	margin: 0;
}

.property-overview {
	margin-top: 50px;
	background: var(--secondary-color);
	padding: 40px 40px 10px 40px;
	border-radius: 20px;
}

.property-overview-box {
	display: flex;
	flex-wrap: wrap;
}

.property-overview-box .property-overview-item {
	width: calc(33.33% - 20px);
	margin-right: 30px;
	margin-bottom: 30px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.property-overview-box .property-overview-item:nth-of-type(3n + 3) {
	margin-right: 0;
}

.property-overview-box .property-overview-item .icon-box {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	background: var(--primary-color);
	border-radius: 5px;
	margin-right: 15px;
}

.property-overview-box .property-overview-item .property-overview-content {
	width: calc(100% - 75px);
}

.property-overview-box .property-overview-item .property-overview-content h3 {
	font-size: 20px;
	font-weight: 600;
	color: var(--dark-color);
	margin-bottom: 6px;
}

.property-overview-box .property-overview-item .property-overview-content p {
	margin: 0;
}

.about-property {
	background-color: var(--secondary-color);
	padding: 24px;
	border-radius: 20px;
	margin-top: 22px;
}

.about-property-cta .btn-border {
	margin-right: 15px;
	border-color: var(--primary-color);
	color: var(--primary-color);
}

.about-property-cta .btn-border.btn-default:before {
	background-color: var(--primary-color);
}

.property-amenities {
	background: var(--secondary-color);
	padding: 40px 40px 20px 40px;
	border-radius: 20px;
	margin-top: 50px;
}

.property-amenities-box ul {
	padding: 0;
	margin: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
}

.property-amenities-box ul li {
	width: calc(33.33% - 20px);
	font-size: 18px;
	font-weight: 500;
	margin-right: 20px;
	margin-bottom: 20px;
	position: relative;
	padding-left: 30px;
}

.property-amenities-box ul li:before {
	content: '';
	display: block;
	position: absolute;
	top: 2px;
	left: 0;
	width: 20px;
	height: 20px;
	background: url(../images/icon-checkbox.svg) no-repeat left center;
}

.property-map-location {
	background: var(--secondary-color);
	padding: 40px;
	border-radius: 20px;
	margin-top: 50px;
}

.property-map-iframe iframe {
	width: 100%;
	height: 300px;
	border-radius: 20px;
}

/******************************************/
/****  	  17. Blog Archive Page css    ****/
/******************************************/

.blog-archive-page {
	padding: 40px 0;
}

.blog-archive-page .post-item {
	margin-bottom: 40px;
}

/******************************************/
/****   	 18. Post Single css  	   ****/
/******************************************/

.post-meta ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.post-meta ul li {
	display: inline-block;
	color: var(--white-color);
}

.post-meta ul li:after {
	content: '/';
	margin-left: 10px;
	margin-right: 6px;
}

.post-meta ul li:last-child::after {
	display: none;
}

.post-meta ul li a {
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.post-meta ul li a:hover {
	color: var(--accent-color);
}

.blog-single-page {
	padding: 100px 0 50px;
}

.post-sidebar {
	padding-left: 20px;
}

.search-box-widget {
	background: var(--secondary-color);
	padding: 40px;
	border-radius: 20px;
	margin-bottom: 40px;
}

.search-form .form-control {
	background: var(--white-color);
	border-right: none;
}

.search-form .btn-default {
	border-radius: 0 5px 5px 0;
	padding: 14px 20px;
}

.category-box-widget {
	background: var(--secondary-color);
	padding: 40px;
	border-radius: 20px;
	margin-bottom: 40px;
}

.category-box-widget h3 {
	font-size: 22px;
	color: var(--dark-color);
	font-weight: 600;
	margin-bottom: 15px;
}

.category-box-widget ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.category-box-widget ul li {
	border-bottom: 1px solid var(--divider-color);
	padding: 10px 0;
}

.category-box-widget ul li:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.category-box-widget ul li a {
	display: block;
	font-weight: 600;
	color: var(--text-color);
	position: relative;
	padding-left: 20px;
	transition: all 0.3s ease-in-out;
}

.category-box-widget ul li a:before {
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	background: url(../images/icon-list.svg) no-repeat left center;
	position: absolute;
	left: 0;
	top: 2px;
}

.category-box-widget ul li a:hover {
	color: var(--accent-color);
}

.recent-posts-widget {
	background: var(--secondary-color);
	padding: 40px;
	border-radius: 20px;
	margin-bottom: 40px;
}

.recent-posts-widget h3 {
	font-size: 22px;
	color: var(--dark-color);
	font-weight: 600;
	margin-bottom: 25px;
}

.recent-post-item {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
}

.recent-post-item:last-child {
	margin-bottom: 0;
}

.recent-post-item .post-image {
	width: 36%;
}

.recent-post-item .post-image img {
	aspect-ratio: 1/0.8;
	object-fit: cover;
	border-radius: 6px;
}

.recent-post-item .post-info {
	width: 60%;
}

.recent-post-item .post-info p.meta {
	margin: 0 0 8px;
	color: var(--text-color);
}

.recent-post-item .post-info p.meta a {
	color: inherit;
}

.recent-post-item .post-info h4 {
	font-size: 18px;
	font-weight: 600;
	color: var(--dark-color);
	margin: 0;
}

.recent-post-item .post-info h4 a {
	color: inherit;
}

.popular-tags-widget {
	background: var(--secondary-color);
	padding: 40px;
	border-radius: 20px;
}

.popular-tags-widget h3 {
	font-size: 22px;
	color: var(--dark-color);
	font-weight: 600;
	margin-bottom: 25px;
}

.tag-clouds ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.tag-clouds ul li {
	display: inline-block;
	margin-right: 6px;
	margin-bottom: 10px;
}

.tag-clouds ul li a {
	display: block;
	background: var(--white-color);
	padding: 10px 16px;
	color: var(--text-color);
	border-radius: 5px;
	border: 1px solid var(--divider-color);
	transition: all 0.3s ease-in-out;
}

.tag-clouds ul li a:hover {
	background: var(--primary-color);
	color: var(--white-color);
}

.post-featured-image {
	border-radius: 20px;
	overflow: hidden;
	margin-bottom: 30px;
}

.post-entry {
	background: var(--secondary-color);
	padding: 40px;
	border-radius: 20px;
	margin-bottom: 30px;
}

.post-entry a {
	color: var(--primary-color);
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6 {
	margin: 1em 0 0.6em;
}

.post-entry h1 {
	font-size: 36px;
}

.post-entry h2 {
	font-size: 30px;
}

.post-entry h3 {
	font-size: 26px;
}

.post-entry h4 {
	font-size: 22px;
}

.post-entry h5 {
	font-size: 18px;
}

.post-entry h6 {
	font-size: 16px;
}

.post-entry blockquote {
	border-left: 4px solid var(--accent-color);
	padding-left: 20px;
	margin-left: 20px;
}

.post-entry blockquote p {
	font-size: 18px;
	font-weight: 600;
}

.post-entry ul {
	list-style: none;
	padding: 0;
	margin: 0 0 1.7em;
}

.post-entry ul li {
	padding-left: 30px;
	position: relative;
	margin-bottom: 12px;
}

.post-entry ul li:before {
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	background: url(../images/icon-checkbox.svg) no-repeat center center;
	position: absolute;
	left: 0;
	top: 2px;
}

.post-content .post-tags {
	font-size: 20px;
	color: var(--primary-color);
	font-weight: 700;
	font-family: var(--accent-font);
}

.post-content .post-tags a {
	display: inline-block;
	color: var(--white-color);
	font-family: var(--accent-font);
	font-size: 14px;
	font-weight: 500;
	background: var(--accent-color);
	padding: 8px 20px;
	border-radius: 5px;
	margin-right: 5px;
	margin-bottom: 10px;
	transition: all 0.3s ease-in-out;
}

.post-content .post-tags a:hover {
	background: var(--primary-color);
}

.post-social-sharing ul {
	padding: 0;
	margin: 0;
	list-style: none;
	text-align: right;
}

.post-social-sharing ul li {
	display: inline-block;
	margin-left: 5px;
}

.post-social-sharing ul li a {
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--accent-color);
	color: var(--white-color);
	width: 40px;
	height: 40px;
	font-size: 16px;
	border-radius: 5px;
	transition: all 0.3s ease-out;
}

.post-social-sharing ul li a:hover {
	background: var(--primary-color);
	color: var(--white-color);
}

.realted-posts {
	padding: 50px 0 100px;
}

/******************************************/
/**** 	 19. Contact us page css	   ****/
/******************************************/

.contact-details {
	padding: 40px 0;
}

.contact-detail-item {
	background: var(--secondary-color);
	padding: 40px 60px 50px;
	border-radius: 20px;
	text-align: center;
}

.contact-detail-item .icon-box {
	width: 100px;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 30px;
	background: var(--primary-color);
	border-radius: 50px;
}

.contact-detail-item h3 {
	font-size: 22px;
	font-weight: 600;
	color: var(--dark-color);
}

.contact-detail-item p {
	margin: 0;
}

.contact-inquiry-box {
	background: var(--secondary-color);
	padding: 40px 0;
}

.contact-form .form-control {
	background: var(--white-color);
}

.google-location-map {
	padding: 40px 0;
}

.google-map-box iframe {
	border-radius: 20px;
	width: 100%;
	height: 450px;
}

/******************************************/
/**** 	 		20. FAQ page css	   ****/
/******************************************/

.faqs-page {
	padding: 40px 0;
}

.faq-accordion .accordion-item {
	background: var(--secondary-color);
	margin-bottom: 20px;
	border: none;
	border-radius: 10px;
	overflow: hidden;
}

.faq-accordion .accordion-item:last-child {
	margin-bottom: 0;
}

.faq-accordion .accordion-item .accordion-header .accordion-button {
	box-shadow: none;
	outline: 0;
	border: none;
	background: none;
	font-size: 18px;
	font-weight: 500;
	padding: 18px 20px;
	color: var(--dark-color);
}

.faq-accordion .accordion-item .accordion-button::after {
	content: '';
	width: 20px;
	height: 20px;
	display: block;
	background: url(../images/icon-faq.svg) no-repeat center center;
}

.faq-accordion .accordion-body {
	padding-top: 10px;
	color: var(--text-color);
}

.faq-accordion .accordion-body p:last-child {
	margin-bottom: 0;
}

/******************************************/
/**** 	21. Page Not Found Page css	   ****/
/******************************************/

.not-found-page {
	padding: 40px 0;
}

.page-not-found-box {
	text-align: center;
}

.page-not-found-box h2 {
	font-size: 36px;
	margin-top: 40px;
	margin-bottom: 30px;
}

/******************************************/
/**** 	 	22. Agents page css	       ****/
/******************************************/

.agents-page {
	padding: 100px 0 60px;
}

.agents-page .agent-item {
	margin-bottom: 40px;
}

/******************************************/
/****   	 23. Responsive css   	   ****/
/******************************************/

@media only screen and (max-width: 1360px) {

	.hero .hero-section,
	.page-header {
		margin: 0 0px;
	}

	footer.footer {
		margin: 70px 15px 0;
	}
}

@media only screen and (max-width: 1024px) {
	.main-menu ul li {
		margin-left: 18px;
	}
}

@media only screen and (max-width: 991px) {
	#magic-cursor {
		display: none !important;
	}

	.responsive-menu,
	.navbar-toggle {
		display: block;
	}

	.section-title {
		margin-bottom: 40px;
	}

	.section-title h1,
	.section-title h2 {
		font-size: 36px;
	}

	.main-menu ul li {
		margin: 0 10px;
	}

	header.main-header {
		border-radius: 20px;
	}

	header.main-header .header-sticky {
		padding: 20px 0;
	}

	header.main-header .header-sticky.active .slicknav_menu {
		border-radius: 0;
	}

	.hero .hero-section {
		padding: 60px 0;
	}

	.hero.hero-slider .hero-section {
		padding: 0;
	}

	.hero-slider .hero-section .hero-slide {
		padding: 60px 20px;
	}

	.hero-slider .hero-carousel .hero-button-prev,
	.hero-slider .hero-carousel .hero-button-next {
		opacity: 1;
		width: 36px;
		height: 36px;
	}

	.hero-slider .hero-carousel .hero-button-prev {
		left: 10px;
	}

	.hero-slider .hero-carousel .hero-button-next {
		right: 10px;
	}

	.hero .hero-search-form-section {
		position: relative;
		bottom: 0;
		border: 1px solid var(--divider-color);
		border-radius: 20px;
		margin-top: 40px;
		padding: 30px 15px 15px 15px;
		background: var(--secondary-color);
		width: auto;
		margin-left: 15px;
		margin-right: 15px;
	}

	.search-heading {
		display: block;
		margin-bottom: 20px;
	}

	.hero-search-form {
		padding: 0;
		background: transparent;
	}

	.hero-search-form .form-control {
		margin-bottom: 15px;
		background: var(--white-color);
	}

	.section-title h1 {
		font-size: 36px;
	}

	.hero-content .section-title h1 {
		font-size: 56px;
	}

	.property-types {
		padding: 60px 0;
	}

	.featured-property {
		padding: 60px 0;
	}

	.property-slider .swiper-pagination {
		margin-top: 30px;
	}

	.about-us {
		padding: 60px 0;
	}

	.about-images {
		margin-bottom: 30px;
	}

	.about-content {
		padding: 0;
	}

	.how-it-works {
		padding: 60px 0 30px;
	}

	.how-it-work-item {
		margin-bottom: 30px;
	}

	.why-choose-us {
		padding: 60px 0 30px;
	}

	.why-choose-us-images {
		margin-bottom: 30px;
	}

	.infobar-cta {
		padding: 30px 0 60px;
	}

	.cta-content {
		text-align: center;
		margin-bottom: 30px;
	}

	.cta-button {
		text-align: center;
	}

	.cta-button .btn-default {
		margin: 0 4px;
	}

	.property-by-city {
		padding: 60px 0 30px;
	}

	.location-item {
		margin-bottom: 30px;
	}

	.latest-posts {
		padding: 60px 0 30px;
	}

	.post-item {
		margin-bottom: 30px;
	}

	.newsletter-box {
		padding: 30px 40px;
		margin-bottom: 50px;
	}

	.newsletter-title {
		text-align: center;
		margin-bottom: 30px;
	}

	.mega-footer {
		padding: 0 10px;
	}

	.footer-about {
		padding: 0;
		margin-bottom: 40px;
	}

	.footer-contact-info h3,
	.footer-quick-links h3,
	.footer-appointment h3 {
		margin-bottom: 20px;
	}

	.footer-info-box {
		margin-bottom: 20px;
	}

	.footer-contact-info {
		margin-bottom: 40px;
		padding-right: 50px;
	}

	.footer-quick-links {
		margin-bottom: 40px;
	}

	footer.footer {
		padding-bottom: 50px;
	}

	.page-header {
		padding: 60px 0;
	}

	.page-header-box h1 {
		font-size: 36px;
	}

	.photo-gallery {
		padding: 60px 0 0;
	}

	.testimonial-slider {
		margin-left: -15px;
		margin-right: -15px;
	}

	.testimonials {
		padding: 60px 0;
	}

	.stat-counter {
		padding: 60px 0 30px;
	}

	.counter-item {
		margin-bottom: 30px;
	}

	.our-partners {
		padding: 60px 0 30px;
	}

	.client-logo {
		margin-bottom: 30px;
	}

	.our-agents {
		padding: 60px 0 30px;
	}

	.agent-item {
		margin-bottom: 30px;
	}

	.page-property-listing {
		padding: 60px 0;
	}

	.property-sidebar {
		padding: 0;
		margin-top: 40px;
	}

	.post-pagination {
		margin-top: 10px;
	}

	.page-property-single {
		padding: 60px 0;
	}

	.property-overview,
	.about-property,
	.property-amenities,
	.property-map-location {
		margin-top: 30px;
	}

	.porperty-single-sidebar {
		padding: 0;
		margin-top: 50px;
	}

	.property-inquiry-box {
		position: initial;
	}

	.blog-archive-page {
		padding: 60px 0;
	}

	.blog-single-page {
		padding: 60px 0 30px;
	}

	.post-sidebar {
		padding: 0;
		margin-top: 40px;
	}

	.post-social-sharing ul {
		text-align: left;
	}

	.search-box-widget,
	.category-box-widget,
	.recent-posts-widget {
		margin-bottom: 30px;
	}

	.realted-posts {
		padding: 30px 0 60px;
	}

	.contact-details {
		padding: 60px 0;
	}

	.contact-detail-item {
		padding: 30px 20px;
	}

	.contact-detail-item .icon-box {
		width: 70px;
		height: 70px;
		margin: 0 auto 20px;
	}

	.contact-detail-item .icon-box img {
		max-width: 40%;
	}

	.contact-inquiry-box {
		padding: 60px 0;
	}

	.google-location-map {
		padding: 60px 0;
	}

	.faqs-page {
		padding: 60px 0;
	}

	.not-found-page {
		padding: 60px 0;
	}

	.agents-page {
		padding: 60px 0 20px;
	}
}

@media only screen and (max-width: 767px) {

	.btn-default {
		padding: 10px 20px;
	}

	.btn-default.btn-border {
		padding: 8px 20px;
	}

	.section-title h1,
	.section-title h2 {
		font-size: 26px;
	}

	header.main-header .header-sticky {
		padding: 10px 0;
	}

	header.main-header .header-sticky.active {
		padding: 10px 0;
	}

	.navbar-brand img {
		max-height: 86px;
	}

	.hero .hero-section {
		padding: 40px 0;
	}

	.hero-slider .hero-section .hero-slide {
		padding: 40px 0px 80px;
	}

	.hero-slider .hero-carousel .hero-button-prev,
	.hero-slider .hero-carousel .hero-button-next {
		top: auto;
		bottom: 20px;
	}

	.hero-slider .hero-carousel .hero-button-prev {
		left: 38%;
	}

	.hero-slider .hero-carousel .hero-button-next {
		right: 38%;
	}

	.hero .hero-search-form-section {
		padding: 20px 5px;
	}

	.search-heading {
		display: block;
	}

	.section-title h1 {
		font-size: 28px;
	}

	.hero-content .section-title h1 {
		font-size: 28px;
	}

	.hero-content-footer {
		margin-top: 20px;
	}

	.btn-default {
		font-size: 14px;
	}

	.hero-content-footer .btn-default {
		margin: 0 4px;
	}

	.property-types {
		padding: 50px 0;
	}

	.property-type-item {
		text-align: center;
	}

	.property-type-item .icon-box {
		margin-left: auto;
		margin-right: auto;
	}

	.property-type-item h3 {
		font-size: 20px;
	}

	.property-type-slider .swiper-pagination {
		margin-top: 20px;
	}

	.property-type-slider .swiper-pagination .swiper-pagination-bullet {
		width: 12px;
		height: 12px;
	}

	.featured-property {
		padding: 50px 0;
	}

	.property-item .property-header .property-label {
		font-size: 14px;
	}

	.property-item .property-body h3 {
		font-size: 20px;
	}

	.property-item .property-body {
		padding: 20px;
	}

	.property-item .property-footer {}

	.property-item .property-footer .property-price {
		font-size: 16px;
	}

	.about-us {
		padding: 50px 0;
	}

	.about-images {
		padding-top: 20px;
		padding-left: 40px;
		background-size: 100px auto;
	}

	.about-content {
		padding-top: 0;
	}

	.about-content-body ul li {
		width: 100%;
		margin-right: 0;
		margin-bottom: 15px;
	}

	.about-content-body ul li .icon-box {
		width: 36px;
		height: 36px;
	}

	.about-content-body ul li .icon-box img {
		max-width: 50%;
	}

	.about-content-body ul li span {
		font-size: 16px;
	}

	.about-content-body .btn-default {
		margin-top: 10px;
	}

	.how-it-works {
		padding: 50px 0 20px;
	}

	.how-it-work-item .icon-box {
		width: 60px;
		height: 60px;
	}

	.how-it-work-item .icon-box img {
		max-width: 50%;
	}

	.how-it-work-item h3 {
		font-size: 20px;
	}

	.why-choose-us {
		padding: 50px 0 30px;
	}

	.why-choose-us-body ul li {
		font-size: 16px;
		margin-bottom: 10px;
	}

	.exclusive-agents {
		padding: 20px;
	}

	.exclusive-agents h5 {
		font-size: 16px;
	}

	.infobar-cta {
		padding: 30px 0 50px;
	}

	.infobar-box {
		padding: 30px 20px;
	}

	.cta-content h2 {
		font-size: 26px;
		margin-bottom: 10px;
	}

	.property-by-city {
		padding: 50px 0 20px;
	}

	.location-item .location-content .location-header h3 {
		font-size: 20px;
	}

	.latest-posts {
		padding: 50px 0 20px;
	}

	.post-item .post-body h3 a {
		font-size: 20px;
	}

	.newsletter-title {
		margin-bottom: 20px;
	}

	.newsletter-title h2 {
		font-size: 26px;
	}

	.newsletter-box {
		padding: 20px 30px;
	}

	.newsletter-form .form-control {
		border-radius: 5px;
		margin-bottom: 10px;
	}

	.newsletter-form .btn-default {
		border-radius: 5px;
	}

	.footer-contact-info h3,
	.footer-quick-links h3,
	.footer-appointment h3 {
		font-size: 20px;
	}

	.footer-contact-info {
		padding: 0;
	}

	.footer-copyright {
		text-align: center;
		margin-bottom: 15px;
	}

	.footer-policy-links {
		text-align: center;
	}

	.footer-policy-links ul li {
		margin-left: 10px;
		margin-right: 10px;
	}

	.page-header-box h1 {
		font-size: 26px;
	}

	.photo-gallery {
		padding: 50px 0 0;
	}

	.testimonials {
		padding: 50px 0;
	}

	.testimonial-slider {
		margin-left: 0;
		margin-right: 0;
	}

	.testimonial-slider .swiper-pagination {
		margin-top: 0px;
	}

	.stat-counter {
		padding: 50px 0 20px;
	}

	.our-partners {
		padding: 50px 0 20px;
	}

	.client-logo {
		padding: 30px 20px;
	}

	.our-agents {
		padding: 50px 0 20px;
	}

	.agent-item .agent-header {
		margin-bottom: 20px;
	}

	.agent-item .agent-body h3 {
		font-size: 20px;
	}

	.page-property-listing {
		padding: 50px 0;
	}

	.property-category-box {
		padding: 30px;
	}

	.property-category-box h3 {
		font-size: 20px;
	}

	.need-help-box .need-help-content h3 {
		font-size: 22px;
	}

	.page-property-single {
		padding: 50px 0;
	}

	.property-photos-slider .swiper-arrow-prev,
	.property-photos-slider .swiper-arrow-next {
		width: 40px;
		height: 40px;
	}

	.property-overview,
	.about-property,
	.property-amenities,
	.property-map-location {
		padding: 20px;
	}

	.property-single-subtitle {
		margin-bottom: 20px;
	}

	.property-single-subtitle h3 {
		font-size: 26px;
	}

	.property-overview-box .property-overview-item {
		width: calc(50% - 15px);
	}

	.property-overview-box .property-overview-item:nth-of-type(3n + 3) {
		margin-right: 30px;
	}

	.property-overview-box .property-overview-item:nth-of-type(2n + 2) {
		margin-right: 0;
	}

	.property-overview-box .property-overview-item .icon-box {
		width: 40px;
		height: 40px;
		margin-right: 10px;
	}

	.property-overview-box .property-overview-item .icon-box img {
		max-width: 50%;
	}

	.property-overview-box .property-overview-item .property-overview-content {
		width: calc(100% - 50px);
	}

	.property-overview-box .property-overview-item .property-overview-content h3 {
		font-size: 16px;
		margin-bottom: 2px;
	}

	.property-overview-box .property-overview-item .property-overview-content p {
		font-size: 14px;
	}

	.property-amenities-box ul li {
		width: 100%;
		margin-right: 0;
		margin-bottom: 10px;
	}

	.property-info-box {
		padding: 30px;
	}

	.property-inquiry-box {
		padding: 30px;
	}

	.blog-archive-page {
		padding: 50px 0;
	}

	.blog-archive-page .post-item {
		margin-bottom: 30px;
	}

	.blog-single-page {
		padding: 50px 0 30px;
	}

	.post-entry {
		padding: 20px;
	}

	.post-entry blockquote {
		margin-left: 0;
	}

	.post-entry blockquote p {
		font-size: 16px;
	}

	.post-entry h1 {
		font-size: 26px;
	}

	.post-entry h2 {
		font-size: 24px;
	}

	.post-entry h3 {
		font-size: 22px;
	}

	.post-entry h4 {
		font-size: 20px;
	}

	.post-entry h5 {
		font-size: 16px;
	}

	.post-entry h6 {
		font-size: 14px;
	}

	.post-content .post-tags a {
		padding: 8px 10px;
	}

	.search-box-widget,
	.category-box-widget,
	.recent-posts-widget,
	.popular-tags-widget {
		padding: 30px;
	}

	.tag-clouds ul li a {
		padding: 8px 10px;
	}

	.realted-posts {
		padding: 30px 0 20px;
	}

	.contact-details {
		padding: 50px 0 20px;
	}

	.contact-detail-item {
		margin-bottom: 30px;
	}

	.contact-detail-item h3 {
		font-size: 20px;
	}

	.contact-inquiry-box,
	.google-location-map {
		padding: 50px 0;
	}

	.faqs-page {
		padding: 50px 0;
	}

	.faq-accordion .accordion-item .accordion-header .accordion-button {
		font-size: 16px;
	}

	.not-found-page {
		padding: 50px 0;
	}

	.page-not-found-box h2 {
		font-size: 22px;
	}

	.agents-page {
		padding: 50px 0 10px;
	}
}


/******************************************/
/****      07. About us css        ****/
/******************************************/

.about-us {
	padding: 40px 0;
}

.about-images {
	position: relative;
	padding-left: 47px;
	padding-top: 32px;
	background: url(../images/icon-about-dot.svg) no-repeat top left;
}

.about-image img {
	width: 100%;
	border-radius: 20px;
}

.about-video {
	width: 45%;
	position: absolute;
	bottom: 30px;
	left: 0;
	z-index: 1;
	border-radius: 20px;
	overflow: hidden;
}

.about-video figure img {
	width: 100%;
	border: 4px solid var(--white-color);
	border-radius: 20px;
}

.video-play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.video-play-button a {
	display: inline-block;
	position: relative;
	font-size: 50px;
	height: 50px;
	border-radius: 50%;
	text-align: center;
}

.video-play-button a img {
	width: 50px;
}

.video-play-button a:before {
	content: '';
	position: absolute;
	top: -30%;
	left: -30%;
	width: 160%;
	height: 160%;
	border: 2px solid var(--secondary-color);
	border-radius: 50%;
	transform: scale(0.6);
	z-index: -1;
	animation: border-zooming 1s infinite linear;
}

.video-play-button a:after {
	content: '';
	position: absolute;
	top: -30%;
	left: -30%;
	width: 160%;
	height: 160%;
	border: 2px solid var(--secondary-color);
	border-radius: 50%;
	transform: scale(0.6);
	z-index: -1;
	animation: border-zooming 1s infinite linear;
	animation-delay: .3s;
}

@keyframes border-zooming {
	100% {
		transform: scale(1);
		opacity: 0;
	}
}

.about-content {
	padding-top: 32px;
	padding-left: 10px;
}

.about-us .section-title {
	text-align: left;
	margin-bottom: 20px;
}

.about-content-body ul {
	padding: 0;
	margin: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
}

.about-content-body ul li {
	font-size: 17px;
	font-weight: 500;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	width: 50%;
	margin-right: 0%;
	margin-bottom: 12px;
}

.about-content-body ul li:nth-child(2n + 2) {
	margin-right: 0;
}

.about-content-body ul li .icon-box {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	background: var(--secondary-color);
	border-radius: 50%;
	margin-right: 15px;
}

.about-content-body ul li span {
	display: block;
	width: calc(100% - 75px);
}

.image-anime {
	position: relative;
	overflow: hidden;
}

.image-anime:after {
	content: "";
	position: absolute;
	width: 200%;
	height: 0%;
	left: 50%;
	top: 50%;
	background-color: rgba(255, 255, 255, .3);
	transform: translate(-50%, -50%) rotate(-45deg);
	z-index: 1;
}

.image-anime:hover:after {
	height: 250%;
	transition: all 600ms linear;
	background-color: transparent;
}

.reveal {
	position: relative;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	visibility: hidden;
	overflow: hidden;
}

.property-information {
	background: #FFFFFF;
	border-radius: 10px;
	transition: 0.5s;
	margin-bottom: 30px;
}

.property-information:hover {
	box-shadow: 0px 30px 60px #1D30611A;
}

.property-information:hover .exclusive-img img {
	transform: scale(1.15);
}

.exclusive-img {
	overflow: hidden;
	border-radius: 10px 10px 0 0;
}

.exclusive-img img {
	transition: 0.5s;
	width: 100%;
}

.property-content {
	padding: 30px;
}

.property-content h5 {

	margin-bottom: 0px;

}

.property-content h5 a {
	color: #2D3954;
	position: relative;
	/* margin-bottom: 20px; */
	display: inline-block;
}

.property-content h5 a:hover {
	color: #073262;
}

.property-content h5 a:before {
	position: absolute;
	content: '';
	width: 5px;
	height: calc(100% + 10px);
	background: #073262;
	transform: translateY(-50%);
	left: -30px;
	top: 50%;
}

.for-price {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	margin-bottom: 20px;
}

.price {
	font-size: 20px;
	color: #2D3954;
	font-weight: 600;
	font-family: 'roboto', sans-serif;
}

.price span {
	font-size: 16px;
	color: #797D8A;
	font-weight: 400;
	font-family: 'roboto', sans-serif;
}

.rent-sale {
	font-size: 18px;
	color: #FFFFFF;
	padding: 0 20px;
	margin-left: auto;
	transform: translate(30px);
	font-family: 'roboto', sans-serif;
}

.info li {
	margin-right: 13px;
	display: inline-block;
}

.info i {
	color: #073262;
	margin-right: 6px;
}

.info li:last-child {
	margin-right: 0;
}

.blog-slide-box img {}

.blog-slide-box h4 {
	font-size: 1.3rem;
	font-weight: 500;
	text-transform: capitalize;
	line-height: 30px;
	color: #7F633E;
}

.blog-slide-box p {
	font-size: 15px;
	line-height: 26px;
	color: #393939;
	text-align: left;
	margin: 0px 0px 0px 0px;
}

.feature-box {
	display: flex;
	align-items: flex-start;
	margin-bottom: 25px;
}

.feature-box .icon {
	font-size: 32px;
	color: #fea543;
	margin-right: 20px;
	min-width: 40px;
}

.feature-box h4 {
	margin: 0;
	font-size: 23px;
	color: #9f8054;
	font-family: "Roboto", sans-serif;
	font-weight: 600;
}

.feature-box p {
	margin: 5px 0 0;
	color: #000;
	line-height: 28px;
	font-family: "Roboto", sans-serif;
	font-size: 18px;
}

.image-wrapper {
	position: relative;
	max-width: 100%;
}

.main-img {
	width: 100%;
	border-radius: 20px;
	border: 4px solid #eee;
}

.small-img {
	position: absolute;
	width: 358px;
	border-radius: 15px;
	border: 4px solid #fff;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.top-img {
	top: -40px;
	right: -30px;
}

.bottom-img {
	bottom: -79px;
	left: 30px;
	border-radius: 11px 77px;
}

.main-img {
	border-radius: 120px 5px;
}


header.main-header .header-sticky.active .main-menu ul li a {
	color: #222;
}

/* General Page Styles */
:root {
	--bg-color: #fdfdfa;
	/* Warm off-white from image */
	--teal-color: #4a9e9e;
	--orange-color: #e26e4e;
	--text-color: #333;
	--sub-text-color: #555;
	--font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	--transition-speed: 0.8s;
	--transition-easing: ease-out;
}


/* Timeline Container */
.timeline-container {
	position: relative;
	max-width: 1200px;
	width: 100%;
}

/* Rows */
.timeline-row {
	display: flex;
	justify-content: space-between;
	margin-bottom: 80px;
	/* Space for the connector line and text */
	position: relative;
}

.timeline-row.bottom {
	margin-bottom: 0;
	margin-top: 140px;
	/* Space for the complex connector from top to bottom */
	justify-content: flex-start;
	/* Steps are tighter on bottom */
	gap: 20px;
}

/* Steps */
.step-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	width: 18%;
	/* Approximate width for steps 1-5 */
	opacity: 0;
	/* Base state for animation */
	transform: translateY(20px);
	animation: fadeIn var(--transition-speed) var(--transition-easing) forwards;
}

.bottom .step-item {
	width: auto;
	min-width: 180px;
}

/* Animated Step Numbers */
.step-number {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 32px;
	font-weight: bold;
	color: white;
	position: relative;
	z-index: 2;
	box-sizing: border-box;
	border: 4px solid white;
	/* For the 'inset' effect */
	overflow: visible;
	/* To allow glow/border-effects */
	margin-bottom: 20px;
}

/* Dotted borders and color fills */
.teal .step-number {
	background-color: var(--teal-color);
	border-color: white;
	box-shadow: 0 0 0 1px var(--teal-color);
	/* To look like an inset teal ring */
}

.orange .step-number {
	background-color: var(--orange-color);
	border-color: white;
	box-shadow: 0 0 0 1px var(--orange-color);
}

/* Step 1 and 3 are specifically orange */
.step-item:nth-child(1) .step-number {
	background-color: var(--orange-color);
	box-shadow: 0 0 0 1px var(--orange-color);
}

.step-item:nth-child(3) .step-number {
	background-color: var(--orange-color);
	box-shadow: 0 0 0 1px var(--teal-color);
}

/* Step 1 dotted outer border */
.step-item:nth-child(1) .step-number::after {
	content: '';
	position: absolute;
	top: -6px;
	left: -6px;
	right: -6px;
	bottom: -6px;
	border-radius: 50%;

	z-index: -1;
}

/* Teal for 2, 4, 6, 8 */
.teal .step-number {
	background-color: var(--teal-color);
	box-shadow: 0 0 0 1px var(--teal-color);
}

/* Row 1 specifics */
.top .step-item:nth-child(1) .step-number {
	background-color: var(--orange-color);
	box-shadow: 0 0 0 1px var(--orange-color);
}

.top .step-item:nth-child(2) .step-number {
	background-color: var(--teal-color);
	box-shadow: 0 0 0 1px var(--teal-color);
}

.top .step-item:nth-child(3) .step-number {
	background-color: var(--teal-color);
	box-shadow: 0 0 0 1px var(--teal-color);
}

.top .step-item:nth-child(4) .step-number {
	background-color: var(--teal-color);
	box-shadow: 0 0 0 1px var(--teal-color);
}

.top .step-item:nth-child(5) .step-number {
	background-color: var(--orange-color);
	box-shadow: 0 0 0 1px var(--orange-color);
}

/* Row 2 specifics */
.bottom .step-item.teal:nth-child(1) .step-number {
	background-color: var(--teal-color);
	box-shadow: 0 0 0 1px var(--teal-color);
}

.bottom .step-item.orange:nth-child(2) .step-number {
	background-color: var(--orange-color);
	box-shadow: 0 0 0 1px var(--orange-color);
}

.bottom .step-item.teal:nth-child(3) .step-number {
	background-color: var(--teal-color);
	box-shadow: 0 0 0 1px var(--teal-color);
}

.bottom .step-item.orange:nth-child(4) .step-number {
	background-color: var(--orange-color);
	box-shadow: 0 0 0 1px var(--orange-color);
}

/* Step 5 and 9 have a subtle glow */
.step-item:nth-child(5) .step-number,
.step-item.last-glow .step-number {
	box-shadow: 0 0 15px var(--orange-color);
}

/* Step 9 (the final one) has the pulse animation via JS class */
.step-item.last-glow.pulse .step-number {
	animation: pulse-glow 2s infinite ease-in-out;
}

/* Text Styles */
.step-title {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 6px;
	line-height: 1.2;
}

.step-subtitle {
	font-size: 14px;
	color: var(--sub-text-color);
	line-height: 1.4;
}

/* Connector Lines and Arrows */
.connector {
	position: absolute;
	height: 2px;
	background-color: #888;
	top: 35px;
	/* Aligns with middle of step numbers */
	z-index: 1;
}

.connector::after {
	content: '';
	position: absolute;
	right: 0;
	top: -4px;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	border-left: 8px solid #888;
}

/* Straight arrows between items in a row */
.top .connector {
	width: calc(100% / 5 - 70px);
	left: calc(100% / 5 * 1 + 35px);
	/* General logic, but positioned precisely below */
}

.top .c1 {
	left: calc((100% / 5) * 0.5 + 30px);
	width: calc((100% / 5) - 80px);
}

.top .c2 {
	left: calc((100% / 5) * 1.5 + 35px);
	width: calc((100% / 5) - 80px);
}

.top .c3 {
	left: calc((100% / 5) * 2.5 + 40px);
	width: calc((100% / 5) - 80px);
}

.top .c4 {
	left: calc((100% / 5) * 3.5 + 45px);
	width: calc((100% / 5) - 80px);
}

/* Straight arrows for row 2 (more complex due to variable width) */
.bottom .connector {
	height: 2px;
	background-color: #888;
	position: static;
	margin-top: 35px;
	/* Mid height */
	align-self: flex-start;
	flex-grow: 1;
	/* Stretch between elements */
	max-width: 100px;
}

.bottom .connector.arrow-only::after {
	right: -5px;
}

/* Complex 'Z' connector from 5 to 6 */
.complex-connector {
	position: absolute;
	top: 35px;
	/* From middle of Step 5 */
	left: calc(100% / 5 * 4 + 35px + 70px);
	/* Adjust to center of Step 5 and then clear it */
	z-index: 0;
	pointer-events: none;
}

.path-line {
	stroke: #888;
	stroke-width: 2;
	fill: none;
	stroke-linecap: round;
}

/* Row 2 Flex adjust for connectors */
.bottom-flex-connector {
	display: flex;
	align-items: center;
	height: 70px;
	width: 80px;
}

.flex-arrow {
	position: relative;
	height: 2px;
	background: #888;
	width: 100%;
}

.flex-arrow::after {
	content: '';
	position: absolute;
	right: -2px;
	top: -4px;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	border-left: 8px solid #888;
}

/* Pop-up for Step 9 */
.popup-card {
	background-color: white;
	padding: 20px 25px;
	border-radius: 8px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	border: 1px solid #e0e0e0;
	margin-left: 10px;
	position: relative;
	z-index: 3;
	opacity: 0;
	transform: translateX(20px);
	transition: opacity 0.5s ease 1s, transform 0.5s ease 1s;
	/* delayed appearance */
}

.popup-card.show {
	opacity: 1;
	transform: translateX(0);
}

.popup-title {
	font-size: 18px;
	font-weight: bold;
	line-height: 1.2;
	margin-bottom: 0;
}

/* Overriding Step 9's number color inside popup logic */
.step-item.last-glow .step-number {
	margin-right: -10px;
	/* pull into pop-up visual area slightly */
}

/* Step 9 text content inside pop-up styling */
.step-item.last-glow .step-title,
.step-item.last-glow .step-subtitle {
	display: none;
	/* Hide original text position, move into pop-up */
}

/* Content for Step 9 inside the pop-up */
.popup-card .popup-title {
	font-size: 18px;
	font-weight: 600;
}

.step-item.last-glow .popup-card .popup-title {
	display: block;
}

/* ANIMATIONS */
@keyframes fadeIn {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes pulse-glow {
	0% {
		box-shadow: 0 0 10px var(--orange-color);
	}

	50% {
		box-shadow: 0 0 30px var(--orange-color);
	}

	100% {
		box-shadow: 0 0 10px var(--orange-color);
	}
}

/* Staggered Animations */
.step-item:nth-child(1) {
	animation-delay: 0.1s;
}

.step-item:nth-child(2) {
	animation-delay: 0.2s;
}

.step-item:nth-child(3) {
	animation-delay: 0.3s;
}

.step-item:nth-child(4) {
	animation-delay: 0.4s;
}

.step-item:nth-child(5) {
	animation-delay: 0.5s;
}

.bottom .step-item:nth-child(1) {
	animation-delay: 0.8s;
}

/* delayed row 2 */
.bottom .step-item:nth-child(2) {
	animation-delay: 0.9s;
}

.bottom .step-item:nth-child(3) {
	animation-delay: 1.0s;
}

.bottom .step-item:nth-child(4) {
	animation-delay: 1.1s;
}

.section-padding {
	padding: 80px 0;
}

.section-title {
	position: relative;
	margin-bottom: 35px;
	font-weight: 700;
	color: var(--text-dark);
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 3px;
	background-color: var(--primary-color);
}

.feature-card {
	background: #fff;
	padding: 30px;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease-in-out;
	height: 100%;
	border: 1px solid transparent;
}

.feature-card:hover {
	transform: translateY(-10px);
	border-color: var(--primary-color);
	box-shadow: 0 15px 40px rgba(13, 110, 253, 0.15);
}

.icon-fa {
	width: 70px;
	height: 70px;
	background-color: var(--accent-color);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-size: 28px;
	margin-bottom: 20px;
	transition: 0.3s;
}

.feature-card:hover .icon-fa {
	background-color: var(--primary-color);
	color: #fff;
}

.feature-card h4 {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 15px;
}

.feature-card p {
	color: #6c757d;
	line-height: 1.6;
	margin-bottom: 0;
}

.header_1 img {
	width: 300px;
}



.checklist.style3 ul {
    list-style: none; /* Removes the default bullet points */
    padding-left: 0;  /* Removes padding */
}

.checklist.style3 ul li {
    position: relative;
    padding-left: 30px; /* Space for the icon */
    margin-bottom: 10px; /* Space between list items */
}

.checklist.style3 ul li::before {
    content: "\f015"; /* Font Awesome unicode for 'check' */
    font-family: 'Font Awesome 6 Free'; /* Use Font Awesome */
    font-weight: 900; /* Necessary for solid icons */
    position: absolute;
    left: 0;
    top: 0;
    color: #fea543; /* Icon color */
    font-size: 16px; /* Icon size */
}
.mb-3
{
	margin-bottom: 30px;
}



.whats-float {
    position: fixed;
    transform:translate(135px,0px);
    bottom:20%;
    right:0;
    width:180px;
    overflow: hidden;
    background-color: #25d366;
    color: #FFF;
    border-radius: 2px 0 0 2px;
    z-index: 10;
    transition: all 0.5s ease-in-out;
    vertical-align: middle
}
.whats-float a span {
    color: white;
    font-size: 18px;
  font-family: "Lato",sans-serif;
    padding-top: 8px;
    padding-bottom: 10px;
    position: absolute;
    line-height: 180%;
    font-weight: bolder;
}

.whats-float i {
    font-size: 30px;
    color: white;
    line-height: 30px;
    padding: 10px 20px 10px 10px;
    transform:rotate(0deg);
    transition: all 0.5s ease-in-out;
    text-align:center;
}

.whats-float:hover {
    color: #FFFFFF;
    transform:translate(0px,0px);
}

.whats-float:hover i  {
    transform:rotate(360deg);
}

@media only screen and (max-width:750px) {
	.hero-slider .hero-section .hero-slide {
	height: 200px !important;
	object-fit: cover;
	position: relative;
}
.hero {
    position: relative;
    margin-top: 94px;
}
.about-content {
    padding-top: 0px;
    padding-left: 10px;
}
}






  .grid {
  	display: grid;
  	grid-template-columns: 1fr 1fr;
  	gap: 1.5rem;
  }

  @media(max-width: 700px) {
  	.grid {
  		grid-template-columns: 1fr;
  	}
  	
  }

  .card {
  	background: #fff;
  	border-radius: 14px;
  	border: 0.5px solid #d4dde8;
  	padding: 1.75rem;
  }

  .card-title {
  	font-size: 1.35rem;
  	font-weight: 600;
  	color: #1a3a5c;
  	margin-bottom: 1.25rem;
  	display: flex;
  	align-items: center;
  	gap: 8px;
  }

  .card-title svg {
  	color: #2563a8;
  	/* background-color: #ffffc0; */
  	/* padding: 17px; */
  }

  .form-group {
  	margin-bottom: 1rem;
  }

  .form-group label {
  	display: block;
  	font-size: 13px;
  	color: #5a7a99;
  	margin-bottom: 5px;
  	font-weight: 500;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
  	width: 100%;
  	padding: 10px 12px;
  	border: 0.5px solid #c5d5e8;
  	border-radius: 8px;
  	font-size: 14px;
  	color: #1a3a5c;
  	background: #f7fafd;
  	outline: none;
  	transition: border 0.2s;
  	font-family: var(--font-sans);
  }

  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus {
  	border-color: #2563a8;
  	background: #fff;
  }

  .form-group textarea {
  	resize: vertical;
  	min-height: 100px;
  }

  .form-row {
  	display: grid;
  	grid-template-columns: 1fr 1fr;
  	gap: 1rem;
  }

  @media(max-width: 500px) {
  	.form-row {
  		grid-template-columns: 1fr;
  	}
  }

  .submit-btn {
  	width: 100%;
  	padding: 12px;
  	background: #1a3a5c;
  	color: #fff;
  	border: none;
  	border-radius: 8px;
  	font-size: 15px;
  	font-weight: 500;
  	cursor: pointer;
  	margin-top: 0.5rem;
  	transition: background 0.2s, transform 0.1s;
  }

  .submit-btn:hover {
  	background: #2563a8;
  }

  .submit-btn:active {
  	transform: scale(0.98);
  }

  .info-item {
  	display: flex;
  	gap: 12px;
  	margin-bottom: 11px;
  	align-items: flex-start;
  }

  .info-icon {
  	width: 36px;
  	height: 36px;
  	border-radius: 8px;
  	background: #1a274d;
  	display: flex;
  	align-items: center;
  	justify-content: center;
  	flex-shrink: 0;
  }

  .info-icon svg {
  	color: #ffffff;
  }

  .info-label {
  	font-size: 17px;
  	color: #1a274d;
  	font-weight: 600;
  	margin-bottom: 0px;
  }

  .info-value p a  {
  	font-size: 14px;
  	color: #151515;
  	line-height: 1.5;
  	font-weight: 600;
  	margin-bottom: 10px !important;
  }

    .info-value p  {
	margin-bottom: 10px !important;
  }

  .map-box {
  	background: #e8f0fb;
  	border-radius: 10px;
  	height: 160px;
  	display: flex;
  	align-items: center;
  	justify-content: center;
  	margin-top: 1.25rem;
  	border: 0.5px solid #c5d5e8;
  	position: relative;
  	overflow: hidden;
  }

  .map-pin {
  	position: absolute;
  }

  .map-grid {
  	position: absolute;
  	inset: 0;
  	opacity: 0.15;
  }

  .map-label {
  	font-size: 13px;
  	color: #1a3a5c;
  	font-weight: 500;
  	z-index: 2;
  	background: #fff;
  	padding: 6px 14px;
  	border-radius: 20px;
  	border: 0.5px solid #c5d5e8;
  	box-shadow: 0 2px 8px rgba(37, 99, 168, 0.1);
  }

  .social-row {
  	display: flex;
  	gap: 10px;
  	margin-top: 0.25rem;
  	flex-wrap: wrap;
  }

  .social-btn {
  	display: flex;
  	align-items: center;
  	gap: 7px;
  	padding: 8px 14px;
  	border-radius: 8px;
  	border: 0.5px solid #c5d5e8;
  	background: #f7fafd;
  	font-size: 13px;
  	color: #1a3a5c;
  	cursor: pointer;
  	transition: border 0.2s, background 0.2s;
  	text-decoration: none;
  	font-weight: 500;
  }

  .social-btn:hover {
  	border-color: #2563a8;
  	background: #e8f0fb;
  }

  .hours-row {
  	display: flex;
  	justify-content: space-between;
  	font-size: 13px;
  	padding: 6px 0;
  	border-bottom: 0.5px solid #eef2f7;
  	color: #1a3a5c;
  }

  .hours-row:last-child {
  	border-bottom: none;
  }

  .hours-day {
  	color: #5a7a99;
  }

  .success-msg {
  	display: none;
  	background: #eaf6f0;
  	border: 0.5px solid #7ecfab;
  	border-radius: 8px;
  	padding: 12px 16px;
  	color: #1a5c3a;
  	font-size: 14px;
  	margin-top: 0.75rem;
  }
  .active_1
  {
	color: #fea543 !important;
  }
  .about_1 img
  {
	width: 100%;
	height: 440px;
	padding-right: 0px !important;
	object-fit: cover;
	border-radius: 20px;
  }
  .about_2 p
  {
	text-align: justify !important;
	margin-bottom: 10px !important;
  }

  .management_1 img
  {
	width: 100%;
	height: 350px;
	object-fit: cover;
  }



  /* Section Background */
.leadership-section {
  background: #f8fafc;
}

/* Card Styling */
.leader-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 16px;
  transition: 0.3s ease;
  border: 1px solid #e5e7eb;
}

.leader-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* Text */
.leader-card h4 {
  margin-bottom: 17px;
  font-size: 39px;
}

.leader-card p {
  line-height: 28px;
  font-size: 17px;
}

/* Responsive spacing */
@media (max-width: 768px) {
  .leader-card {
    text-align: center;
  }
}


/* Section */
.journey-section {
  background: #f8fafc;
}

/* Content */
.journey-content {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  line-height: 1.7;
  color: #4b5563;
}

/* Image */
.journey-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Points */
.journey-point {
  background: #ffffff;
  padding: 20px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  height: 100%;
  transition: 0.3s;
}

.journey-point h6 {
  font-weight: 600;
  margin-bottom: 8px;
}

.journey-point p {
  font-size: 14px;
  color: #6b7280;
}

.journey-point:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Responsive */
@media (max-width: 768px) {
  .journey-content {
    padding: 20px;
  }
}


.sidebar-title {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #c1a974;
}
.blog-cat {
    position: relative;
}

/* Blog Cat */

.blog-cat{
	position:relative;
}

.blog-cat li{
	position:relative;
	border-bottom: 1px solid #a9a9a9;
	margin-bottom:10px;
	padding-bottom: 7px;
}

.blog-cat li:last-child{
	margin-bottom:0px;
}

.blog-cat li a{
	position:relative;
	color:#222222;
	font-size:16px;
	font-weight:700;
	padding-left:20px;
	display:block;
	-webkit-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	transition:all 300ms ease;	
}

.blog-cat li a:before{
	position:absolute;
	content:'\f101';
	left:0px;
	top:4px;
	line-height:1em;
	font-family: 'FontAwesome';
}

.service-detail .inner-box .title-box h3 {
    padding-left: 3px;
    font-weight: 700;
    color: #111111;
    margin-top: 13px;
}
.service-detail .inner-box .images-box .image img {
    position: relative;
    width: 100%;
    object-fit: cover;
    height: 500px;
    display: block;
}
.service-detail .inner-box .lower-content p {
    position: relative;
}
.sticky-top
 {
    top: 90px;
    z-index: 1;
}
    .sticky-top {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        z-index: 1020;
    }
	.current-1 a
{
	color: #d47800 !important;
}
.sidebar-title:before {
    position: absolute;
    content: '';
    left: 0px;
    bottom: 3px;
    height: 2px;
    width: 70%;
    background-color: #222222;
}
.sidebar-page-container {
    position: relative;
    padding: 60px 0px 70px;
}
.service_1 ul
{
	list-style: none !important;
}
.lower-content
{
    margin-top: 22px;
}
.lower-content p
{
	line-height: 30px;
	font-size: 17px;
	color: #333333;
}
.sidebar-page-container .sidebar-side .contact-widget .contact-list li .icon {
    position: absolute;
    content: '';
    left: 0px;
    top: 5px;
    color: #c1a974;
    line-height: 1em;
    font-size: 54px;
}
.process-premium {
    padding: 38px 0;
    background: #ffffff;
}

.section-title h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 7px;
}

/* Timeline Base */
.timeline {
    position: relative;
    max-width: 1000px;
    margin: auto;
}

/* DOTTED LINE */
.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background: repeating-linear-gradient(to bottom, #19274e, #1f2b51 10px, transparent 10px, transparent 20px);
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: lineMove 3s linear infinite;
}

@keyframes lineMove {
    0% { background-position-y: 0; }
    100% { background-position-y: 40px; }
}

/* Timeline Items */
.timeline-item {
    padding: 20px 40px;
    position: relative;
    width: 50%;
}

/* LEFT */
.timeline-item.left {
    left: 0;
}

/* RIGHT */
.timeline-item.right {
    left: 50%;
}

/* CONTENT BOX */
.content {
    padding: 25px;
    border-radius: 20px;
    color: #ffffff;
    position: relative;
    transition: 0.4s;
}

/* COLORS */
.blue { background: #2ea3c6; }
.green { background: #7bbf3f; }
.purple { background: #7a4da3; }
.orange { background: #f39c12; }

/* ARROW */
.left .content::after {
    content: "";
    position: absolute;
    color: #1a284e;
    right: -20px;
    top: 30px;
    border-left: 20px solid;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.right .content::after {
    content: "";
    position: absolute;
    left: -20px;
    top: 30px;
    border-right: 20px solid;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    color: #18264d;
}

.blue::after { border-color: transparent transparent transparent #2ea3c6; }
.green::after { border-color: transparent transparent transparent #7bbf3f; }
.purple::after { border-color: transparent transparent transparent #7a4da3; }
.orange::after { border-color: transparent transparent transparent #f39c12; }

/* HOVER GLOW */
.content:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* SCROLL ANIMATION */
.timeline-item {
    opacity: 0;
    transform: translateY(50px);
    transition: 0.6s;
}

.timeline-item.show {
    opacity: 1;
    transform: translateY(0);
}

/* MOBILE */
@media(max-width:768px){
    .timeline-item {
        width: 100%;
        left: 0 !important;
    }

    .timeline::after {
        left: 20px;
    }

    .content {
        margin-left: 40px;
    }
}
.upcoming_img img
{
	width: 100%;
	height: 400px;
	object-fit: cover;
	border-radius: 20px;
}
.about-property-content p
{
	line-height: 30px;
	font-size: 17px;
	color: #333333;
}

.flat-section {
    padding: 100px 0px 100px;
}
.header-property-detail {
    padding: 30px 30px 15px;
    border-radius: 16px;
    background-color: #ffffff;
}
.flat-property-detail .header-property-detail {
    position: relative;
    z-index: 15;
    margin: -99px 0px 0px;
}
.flag-tag.primary {
    background-color: #ED2027;
}
.flag-tag {
    font-weight: 600;
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    text-align: center;
    display: inline-block;
    padding: 0px 8px;
    border-radius: 4px;
    background-color: rgb(16 60 59);
    color: #ffffff;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    cursor: pointer;
}
.header-property-detail .content-top {
    padding-bottom: 23px;
    margin-bottom: 23px;
    border-bottom: 1px solid #e4e4e4;
    flex-wrap: wrap;
    gap: 20px;
}
.box-name h4 {
    font-size: 36px;
    line-height: 44px;
    font-weight: 600;
}
.box-price h4
{
    font-size: 36px;
    line-height: 44px;
    font-weight: 600;
}
.header-property-detail .content-bottom .info-box .label {
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 700;
    color: #5c6368;
    opacity: 0.8;
}
.header-property-detail .content-bottom .info-box .meta {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}
.header-property-detail .content-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
    display: grid;
}
.info-box ul
{
  list-style: none;
}
.meta-item li span
{
  color: #073262;
  margin-right: 10px;
}
.single-property-desc .title {
    margin-bottom: 16px;
}
.fw-20
{
  font-size: 30px;
  font-weight: 600;
  line-height: 28px;
  color: #073262;
}
.fw-21
{
  font-size: 30px;
  font-weight: 600;
  line-height: 28px;
  color: #073262;
  margin-bottom: 20px;
}
.single-property-element:not(:last-child) {
    padding-bottom: 0px;
    margin-bottom: 19px;
    border-bottom: 1px solid #e4e4e4;
}
.single-property-overview .info-box {
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 20px;
}
.single-property-overview .info-box .item .box-icon {
    border-radius: 8px;
    background-color: #f7f7f7;
}

.box-icon.w-52 {
    width: 52px;
    height: 52px;
}
.box-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    cursor: pointer;
}
.single-property-overview .info-box .item {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 371px;
}

.single-property-overview .info-box .item .box-icon .icon {
  font-size: 28px;
  color: #073262;
}
.single-property-overview .info-box .item:hover .box-icon {
  background-color: #073262;
}
.single-property-overview .info-box .item:hover .box-icon .icon {
  color: #ffffff;
  animation: 0.3s link-icon2 linear;
}
.project_1 img
{
  width: 100%;
  object-fit: contain;
}
.my-20 {
  margin-top: 20px;
}
.h-300 img
{
  width: 100%;
  height: 230px;
  object-fit: cover;
}
.z-2{ z-index:2 }
.hover-op-1, .hover-op-05 {
    opacity: 0;
}
.bg-blur {
    background: rgba(0, 0, 0, .15);
    -webkit-backdrop-filter: blur(10px);
    -o-backdrop-filter: blur(10px);
    -moz-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}


.box-location-v3 {
    margin: 10px !important;
    margin-right: 20px !important;
}
.box-location-v3 {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-right: 10px;
    width: 374px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #f7f7f7;
    box-shadow: 0px 2px 2px 0px rgba(28, 36, 51, 0.1019607843);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.plots_6 .img-style img {
    width: 215px;
    height: 130px;
    object-fit: cover;
    -webkit-transition: transform 0.3s cubic-bezier(0, 0, 0.44, 1.18);
    transition: transform 0.3s cubic-bezier(0, 0, 0.44, 1.18);
}

.box-location-v3 .img-style {
  border-radius: 0;
}
.box-location-v3 .content p {
  margin-top: 4px;
  font-size: 16px;
  line-height: 26px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.box-location-v3 .content .btn-view {
  margin-top: 4px;
}
.box-location-v3 .content .btn-view .text {
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
}
.box-location-v3 .content .btn-view .text::before {
  background-color: #ffffff;
}
.box-location-v3.active, .box-location-v3:hover {
  background-color: #073262;
}
.box-location-v3.active .content h6 a,
.box-location-v3.active .content p, .box-location-v3:hover .content h6 a,
.box-location-v3:hover .content p {
  color: #ffffff;
}
.box-location-v3.active .content .btn-view .text,
.box-location-v3.active .content .btn-view .icon, .box-location-v3:hover .content .btn-view .text,
.box-location-v3:hover .content .btn-view .icon {
  color: #ffffff;
}
.content h6 a {
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  color: #222;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.box-location-v3 {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-right: 10px;
    width: 374px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #f7f7f7;
    box-shadow: 0px 2px 2px 0px rgba(28, 36, 51, 0.1019607843);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}


.ul-check li:before {
  position: absolute;
  left: 0;
  font-family: "FontAwesome";
  content: "\f058";
  margin-right: 12px;
  width: 20px;
  line-height: 1;
  padding: 2px 0;
  font-size: 18px;
  color: #18264d;
  display: inline-block;
  text-align: center;
  border-radius: 0px;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
}

/* Card */
.location-card {
    background: #fff;
    padding: 25px 20px;
    border-radius: 10px;
    position: relative;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* Accent Line */
.location-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 20px;
    width: 4px;
    height: 50%;
    background: #073262;
    border-radius: 2px;
}

/* Hover */
.location-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* Icon */
.location-icon {
    font-size: 23px;
    margin-bottom: 10px;
    color: #073262;
}

/* Title */
.location-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

/* Text */
.location-text {
    font-size: 14px;
    color: #666;
}

/* Mobile */
@media(max-width: 600px) {
    .location-header h2 {
        font-size: 26px;
    }
}
.single-property-attachments .attachments-item {
    display: flex;
    align-items: center;
    gap: 12px;
}
.box-icon.w-60 {
    width: 60px;
    height: 60px;
}
.widget-box {
    padding: 24px;
    border-radius: 16px;
}
.bg-surface {
    background-color: #f7f7f7;
}
.wrapper-sidebar-right {
    padding-left: 30px;
}
.fixed-sidebar {
    position: sticky !important;
    top: 100px;
}

.single-property-contact .title {
    margin-bottom: 20px;
}
.location-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.contact-form_1 {
    background: #ffffff !important;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.rs-team-single .btm-info-team {
    position: relative;
    box-shadow: 0px 0px 32px 0px rgb(3 31 35 / 11%);
    background: #fff;
    padding: 27px 24px;
}
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
    outline: none;
    transition: 0.3s;
}

.mt-80
{
	margin-top: 80px;
}



.velora-wrapper {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #e2f0ff;
}

/* Section */
.velora-wrapper {
    max-width: 1100px;
    margin: auto;
    padding: 40px 20px;
    border-radius: 20px;
}

.velora-title {
    text-align: center;
    font-size: 33px;
    color: #0f172a;
    margin-bottom: 22px;
}

/* Table */
.velora-table-box {
    overflow-x: auto;
}

.velora-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}

/* Rows */
.velora-table tr:nth-child(odd) {
    background: #ffffff;
}

.velora-table tr:nth-child(even) {
    background: #f1f5f9;
}

/* Cells */
.velora-table td {
    padding: 18px 22px;
    font-size: 15px;
    color: #1e293b;
    font-weight: 600;
    border-bottom: 1px solid #e2e8f0;
    border-right: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

/* Remove last column border */
.velora-table td:last-child {
    border-right: none;
}

/* First column */
.velora-table td:first-child {
    font-weight: 500;
    color: #3b3b3b;
    font-weight: 600;
    width: 30%;
    background: #f8fafc;
}

/* Hover */
.velora-table tr {
    transition: all 0.3s ease;
}

.velora-table tr:hover {
    background: #e0f2fe;
    transform: scale(1.01);
}

/* Scroll animation */
.velora-fade {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.velora-fade.velora-show {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media(max-width: 768px) {
    .velora-table td {
        display: block;
        width: 100%;
        border-right: none;
    }

    .velora-table tr {
        display: block;
        margin-bottom: 12px;
        border: 1px solid #e2e8f0;
        border-radius: 10px;
        overflow: hidden;
    }

    .velora-table td:first-child {
        background: #e2e8f0;
    }
}
.mt-30
{
	margin-top: 30px;
}
.two-col-list {
    list-style: none;
    padding-left: 10px;
    column-count: 2;        /* creates 2 columns */
    column-gap: 40px;
}

.two-col-list li {
    margin-bottom: 10px;
    color: #4e4e4e;
    font-weight: 600;
}
.two-col-list {
    list-style: none;
    padding-left: 10px;
    column-count: 2;        /* creates 2 columns */
    column-gap: 40px;
}




.checklist.style3 ul {
    list-style: none; /* Removes the default bullet points */
    padding-left: 0;  /* Removes padding */
}

.checklist.style3 ul li {
    position: relative;
    padding-left: 30px; /* Space for the icon */
    margin-bottom: 10px; /* Space between list items */
}

.checklist.style3 ul li::before {
    content: "\f138"; /* Font Awesome unicode for 'check' */
    font-family: 'Font Awesome 5 Free'; /* Use Font Awesome */
    font-weight: 900; /* Necessary for solid icons */
    position: absolute;
    left: 0;
    top: 0;
    color: #18264d; /* Icon color */
    font-size: 16px; /* Icon size */
}
.single-property-attachments .attachments-item {
    display: flex;
    align-items: center;
    gap: 12px;
}
.completed_1 img
{
	width: 100%;
	height: 250px;
	object-fit: cover;
	border-radius: 20px;
}
.home-project-1 img
{
	width: 100%;
	height: 350px;
	object-fit: cover;
	border-radius: 20px;
}