@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

:root {
	--btn: #b19777;
	--primary-color: #b19777;
	--secondery-color: #F8F8F8;
	--text-color: #283132;
	--accent-color: #f4dcb7;
	--white-color: #FFFFFF;
	--divider-color: #EAF0EC;
	--dark-divider-color: #746b5f59;
	--error-color: rgb(230, 87, 87);

	--default-font: "Raleway", sans-serif;
	--font-3: "fontawesome", sans-serif;
	--highlight: #212427;
	--heading-color: #746b5f;
	--rosegold: rgba(193, 115, 107, 0.05);
}


body {
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6em;
	background-color: var(--white-color);
	color: var(--text-color);
	cursor: auto;
}

p {
	line-height: 1.7em;
	margin-bottom: 1.6em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	font-weight: 700;
	line-height: 1.1em;
	color: var(--heading-color);
}

figure {
	margin: 0;
}

img {
	max-width: 100%;
}

a {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
	outline: 0;
}

a:focus {
	text-decoration: none;
	outline: 0;
}

html,
body {
	width: 100%;
	overflow-x: clip;
	scroll-behavior: smooth;
}

.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;
}

.row>* {
	padding-right: 15px;
	padding-left: 15px;
}

.row.no-gutters {
	margin-right: 0px;
	margin-left: 0px;
}

.row.no-gutters>* {
	padding-right: 0px;
	padding-left: 0px;
}

.btn-default {
	position: relative;
	display: inline-block;
	background: var(--btn);
	color: var(--white-color);
	font-size: 16px;
	font-weight: 700;
	line-height: 1em;
	text-transform: capitalize;
	border: none;
	padding: 17px 46px 17px 20px;
	transition: all 0.5s ease-in-out;
	overflow: hidden;
	z-index: 0;
	border-radius: 30px;
}

.btn-default:hover {
	background: transparent;
	color: var(--white-color);
}

.btn-default::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	width: 16px;
	height: 16px;
	background-image: url(../images/arrow-white.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	transform: translate(-20px, -50%);
	transition: all 0.4s ease-in-out;
}

.btn-default:hover::before {
	transform: translate(-18px, -50%);
}

.btn-default::after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: -15%;
	right: 0;
	width: 0;
	height: 106%;
	background: var(--primary-color);
	transform: skew(45deg);
	transition: all 0.4s ease-in-out;
	z-index: -1;
}

.btn-default:hover:after {
	width: 100%;
	transform: skew(0deg);
	left: 0;
}

.btn-default.btn-highlighted {
	background-color: var(--white-color);
	color: var(--accent-color);
}

.btn-default.btn-highlighted:hover {
	color: var(--white-color);
}

.btn-default.btn-highlighted::before {
	background-image: url(../images/arrow-accent.svg);
}

.btn-default.btn-highlighted:hover::before {
	filter: brightness(0) invert(1);
}

.btn-default.btn-highlighted::after {
	background-color: var(--accent-color);
}

.cb-cursor:before {
	/*background: var(--accent-color);*/
}

.preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background-color: var(--highlight);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: cubic-bezier(0.075, 0.82, 0.165, 1);
	-webkit-transition: cubic-bezier(0.075, 0.82, 0.165, 1);
	-moz-transition: cubic-bezier(0.075, 0.82, 0.165, 1);
	-ms-transition: cubic-bezier(0.075, 0.82, 0.165, 1);
	-o-transition: cubic-bezier(0.075, 0.82, 0.165, 1);
}

.loading-container,
.loading {
	height: 200px;
	position: relative;
	width: 200px;
	border-radius: 100%;
}

.loading-container {
	margin: 40px auto;
}

.loading {
	border: 1px solid transparent;
	border-color: transparent var(--accent-color) transparent var(--accent-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: 66px;
	transform: translate(-50%, -50%);
}

#loading-icon img {
	width: 200px;
}

@keyframes rotate-loading {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.section-row {
	margin-bottom: 80px;
}

.section-row .section-title {
	margin-bottom: 0;
	margin-right: 30px;
}

.section-btn {
	text-align: end;
}

.section-title-content {
	margin-left: 120px;
}

.section-title-content p {
	margin: 0;
}

.section-title {
	margin-bottom: 40px;
}


.section-title h3 {
	display: inline-block;
	position: relative;
	font-size: 15px;
	line-height: 1.6em;
	color: var(--primary-color);
	padding-left: 35px;
	margin-bottom: 20px;
	/* font-style: italic; */
	font-weight: 500;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.section-title h3::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	background: url('../images/icon-sub-heading.svg');
	background-repeat: no-repeat;
	background-position: left center;
	background-size: cover;
	width: 24px;
	height: 5px;
}

.section-title h1 {
	font-size: 60px;
	font-weight: 700;
	letter-spacing: -0.02em;
	margin-bottom: 0;
	cursor: auto;
	text-transform: uppercase;
}

.section-title h2 {
	font-size: 46px;
	font-weight: 300;
	letter-spacing: -0.02em;
	margin-bottom: 0;
	cursor: auto;
	font-family: auto;
}

.section-title h1 span,
.section-title h2 span {
	/*color: var(--highlight);*/
	color: #b48c5b;
	font-style: oblique;
	font-weight: 300;
}

.section-title p {
	margin-top: 30px;
	margin-bottom: 0;
}


.section-title-content.dark-section p,
.section-title.dark-section p,
.section-title.dark-section h2,
.section-title.dark-section h3 {
	color: var(--white-color);
}

.help-block.with-errors ul {
	margin: 0;
	text-align: left;
}

.help-block.with-errors ul li {
	color: var(--error-color);
	font-weight: 500;
	font-size: 14px;
}

/************************************/
/**** 	   03. Header css		 ****/
/************************************/




header.main-header {
	position: relative;
	z-index: 100;
}

header.main-header .header-sticky {
	position: relative;
	top: 0;
	z-index: 100;
}

header.main-header .header-sticky.hide {
	transform: translateY(-100px);
	transition: transform 3s ease-in-out;
	border-radius: 0;
}

.active {
	position: fixed !important;
	top: 0;
	left: 0;
	right: 0;
	border-radius: 0;
	transform: translateY(0);
	background: rgb(255, 255, 255);
	border-bottom: 1px solid var(--dark-divider-color);
	transition: all .5s cubic-bezier(0.075, 0.82, 0.165, 1);

}

@media screen and (max-width:575px) {
	.active {
		background-color: var(--highlight);
	}

}

/* header.main-header .header-sticky.active {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	border-radius: 0;
	transform: translateY(0);
	background: var(--primary-color);
	border-bottom: 1px solid var(--dark-divider-color);
} */

.navbar {
	padding: 10px 0;
	align-items: center;
	/* border-bottom: 1px solid var(--dark-divider-color); */
}

header.main-header .header-sticky.active .navbar {
	border-bottom: none;
}

.navbar-brand {
	padding: 0;
	margin: 0;
}

.navbar-brand img {
	width: 60%;
}

.main-menu .nav-menu-wrapper {
	flex: 1;
	text-align: center;
	margin-left: 40px;
}

.main-menu .nav-menu-wrapper>ul {
	align-items: center;
	display: inline-flex;
}

.main-menu ul li {
	margin: 0 6px;
	position: relative;
}


.active .main-menu ul li a {
	color: #000;
}

.main-menu ul li a {
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 500;
	padding: 0px 14px !important;
	color: var(--white-color);
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.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:hover,
.main-menu ul li a:focus {
	color: var(--heading-color);
	background: #f2efe9;
}

.main-menu ul ul {
	visibility: hidden;
	opacity: 0;
	transform: scaleY(0.8);
	transform-origin: top;
	padding: 0;
	margin: 0;
	list-style: none;
	width: 230px;
	border-radius: 20px;
	position: absolute;
	left: 0;
	top: 100%;
	background-color: #fff;
	transition: all 0.3s ease-in-out;
	text-align: left;
	box-shadow: 0 10px 24px -25px #000;
	border: solid 1px #746b5f38;
}

.main-menu ul li.submenu:first-child ul {
	width: 230px;
}

.main-menu ul ul ul {
	left: 100%;
	top: 0;
	text-align: left;
}

.main-menu ul li:hover>ul {
	visibility: visible;
	opacity: 1;
	transform: scaleY(1);
	padding: 5px 0;
}

.main-menu ul li.submenu ul li.submenu>a:after {
	content: '\f105';
	float: right;
}

.main-menu ul ul li {
	margin: 0;
	padding: 0;
}

.main-menu ul ul li a {
	color: #000;
	padding: 6px 20px !important;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li:hover>ul {
	visibility: visible;
	opacity: 1;
	transform: scaleY(1);
	padding: 5px 0;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus {
	color: var(--primary-color);
	background-color: transparent;
	padding: 6px 20px 6px 23px !important;
}

.responsive-menu,
.navbar-toggle {
	display: none;
}

.responsive-menu {
	top: 0;
	position: relative;
}

.slicknav_btn {
	background: var(--accent-color);
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	margin: 0;
	border-radius: 0;
}

.slicknav_icon .slicknav_icon-bar {
	display: block;
	width: 100%;
	height: 3px;
	width: 22px;
	background-color: var(--white-color);
	border-radius: 6px;
	margin: 4px auto !important;
	transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child {
	margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child {
	margin-bottom: 0 !important;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1) {
	transform: rotate(-45deg) translate(-5px, 5px);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2) {
	opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3) {
	transform: rotate(45deg) translate(-5px, -5px);
}

.slicknav_menu {
	position: absolute;
	width: 100%;
	padding: 0;
	background: var(--highlight);
}

.slicknav_menu ul {
	margin: 5px 0;
}

.slicknav_menu ul ul {
	margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a {
	position: relative;
	font-family: var(--accent-font);
	font-size: 16px;
	font-weight: 400;
	text-transform: capitalize;
	padding: 10px 20px;
	color: var(--white-color);
	line-height: normal;
	margin: 0;
	border-radius: 0 !important;
	transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover {
	background-color: transparent;
	color: var(--primary-color);
}

.slicknav_menu ul ul li a {
	padding: 10px 20px 10px 30px;
}

.slicknav_arrow {
	font-size: 0 !important;
}

.slicknav_arrow:after {
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 12px;
	margin-left: 8px;
	color: var(--white-color);
	position: absolute;
	right: 15px;
	top: 15px;
	transition: all 0.3s ease-out;
}

.slicknav_open>a .slicknav_arrow:after {
	transform: rotate(-180deg);
	color: var(--primary-color);
}

/************************************/
/***        04. Hero css	      ***/
/************************************/

.hero {
	position: relative;
	background: url('../images/hero-bg.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 280px 0 250px;
	min-height: 100vh;
	margin-top: -118px;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: linear-gradient(180deg, rgba(25, 35, 36, 0) 0%, rgba(25, 35, 36, 0.4) 80.94%);
	height: 100%;
	width: 100%;
	z-index: 1;
}

.hero.hero-video .hero-bg-video {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.hero.hero-video .hero-bg-video video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-slider-layout {
	background: none;
	padding: 0;
}

.hero.hero-slider-layout .hero-slide {
	position: relative;
	padding: 280px 0 250px;
	min-height: 100vh;
	max-height: 100vh;

}

.hero.hero-slider-layout .hero-slide::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(180deg, rgb(0 0 0 / 16%) 0%, rgb(0 0 0 / 45%) 80.94%);
	/*background: linear-gradient(180deg, rgba(25, 35, 36, 0) 0%, rgba(25, 35, 36, 0.4) 80.94%);*/
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media screen and (max-width:575px) {
	.hero.hero-slider-layout .hero-slide .hero-slider-image img {
		width: 100%;
		height: 74vh;
		object-fit: cover;
	}

	.hero.hero-slider-layout .hero-slide::before {
		height: 75vh;
	}


}

.hero.hero-slider-layout .hero-pagination {
	position: absolute;
	bottom: 50px;
	text-align: left;
	padding-left: calc(((100vw - 1300px) / 2));
	z-index: 2;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background: var(--white-color);
	opacity: 1;
	transition: all 0.3s ease-in-out;
	margin: 0 5px;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet-active {
	background-color: var(--accent-color);
}

.hero-content {
	position: relative;
	z-index: 2;
}

.hero-content .section-title h3,
.hero-content .section-title h1 {
	color: var(--white-color);
}

.hero-content .section-title p {
	font-size: 22px;
	color: var(--white-color);
	width: 100%;
	max-width: 600px;
}

.hero-content .section-title h3::before {
	filter: brightness(0) invert(1);
}

.hero-content .btn-default.btn-highlighted {
	margin-left: 30px;
}

/************************************/
/***       05. About Us css 	  ***/
/************************************/

.about-us {
	background-image: url('../images/section-bg-shape-1.svg');
	background-repeat: no-repeat;
	background-position: left center;
	background-size: contain;
	padding: 50px 0;
}

.about-us-images {
	position: relative;
	background-image: url(../images/about-us-bg-shape.svg);
	background-repeat: no-repeat;
	background-position: left 60px bottom 40px;
	background-size: auto;
	padding-right: 100px;
	padding-bottom: 270px;
	margin-right: 30px;
}

.about-img-1 figure,
.about-img-2 figure {
	display: block;
}

.about-img-1 img {
	width: 100%;
	object-fit: cover;
	aspect-ratio: 1 / 0.76;
}

.about-img-2 {
	position: absolute;
	width: 100%;
	max-width: 440px;
	bottom: 0;
	right: 0;
}

.about-img-2 img {
	width: 100%;
	object-fit: cover;
	aspect-ratio: 1 / 0.76;
}

.experience-counter {
	position: absolute;
	top: -45px;
	left: 0;
	height: 152px;
	width: 152px;
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	justify-content: center;
	align-items: center;
	background-color: var(--highlight);
	border: 6px solid var(--white-color);
	transform: translate(-50%, -6px);
	border-radius: 50%;
}

.experience-counter h3 {
	font-size: 34px;
	color: var(--white-color);
	text-align: center;
	width: 100%;
	margin-bottom: 5px;
}

.experience-counter p {
	font-weight: 600;
	line-height: 1.4em;
	text-transform: capitalize;
	color: var(--white-color);
	text-align: center;
	margin-bottom: 0;
}

.feedback-counter {
	position: absolute;
	top: 0;
	right: 0;
	transform: rotate(-180deg) translate(20px, -20px);
	writing-mode: vertical-rl;
	display: flex;
	align-items: center;
}

.feedback-counter p {
	font-size: 16px;
	font-weight: 500;
	color: var(--white-color);
	height: 60px;
	width: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--primary-color);
	border-radius: 50%;
	margin: 0 0 15px 0;
	transition: all 0.3s ease-in-out;
}

.feedback-counter:hover p {
	background-color: var(--primary-color);
}

.feedback-counter h3 {
	font-size: 18px;
	font-weight: 500;
	text-transform: capitalize;
	width: calc(100% - 75px);
	font-family: auto;
}

.about-us-content-body {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: 80px;
}

.about-us-content-body::before {
	content: '';
	position: absolute;
	right: 50%;
	top: 0;
	bottom: 0;
	transform: translateX(-50%);
	border: 1px solid var(--divider-color);
	width: 1px;
	height: 100%;
}

.about-us-content-info {
	width: calc(50% - 40px);
}

.about-us-content-list {
	margin-bottom: 40px;
}

.about-us-content-list ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.about-us-content-list ul li {
	position: relative;
	font-weight: 500;
	color: var(--primary-color);
	padding-left: 30px;
	margin-bottom: 15px;
}

.about-us-content-list ul li:last-child {
	margin-bottom: 0;
}

.about-us-content-list ul li::before {
	content: '\f058';
	position: absolute;
	font-family: 'FontAwesome';
	font-size: 20px;
	font-weight: 900;
	line-height: normal;
	color: var(--accent-color);
	display: inline-block;
	top: 2px;
	left: 0;
}

.about-us-contact-list {
	width: calc(50% - 40px);
}

.about-contact-item {
	display: flex;
	align-items: center;
	margin-bottom: 40px;
}

.about-contact-item:last-child {
	margin-bottom: 0;
}

.about-contact-item .icon-box {
	width: 40px;
	height: 40px;
	background-color: var(--accent-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 15px;
	transition: all 0.3s ease-in-out;
}

.about-contact-item:hover .icon-box {
	background-color: var(--primary-color);
}

.about-contact-item .icon-box figure {
	display: block;
	border-radius: 50%;
	overflow: hidden;
}

.about-contact-item .icon-box img {
	max-width: 40px;
	border-radius: 50%;
}

.about-contact-item .icon-box i {
	font-size: 18px;
	color: var(--white-color);
}

.about-contact-content {
	width: calc(100% - 55px);
}

.about-contact-content h3 {
	font-size: 20px;
	text-transform: capitalize;
}

.about-contact-content p {
	font-weight: 500;
	color: var(--primary-color);
	text-transform: capitalize;
	margin-bottom: 0;
}

/************************************/
/***     06. Why Choose Us css    ***/
/************************************/

.why-choose-us {
	padding: 50px 0;
	background-color: var(--secondery-color);
	/*background-color: #f2efe9;*/
}

.why-choose-item {
	display: flex;
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 20px;
	padding-bottom: 20px;
}

.why-choose-item:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.why-choose-item .icon-box {
	position: relative;
	width: 60px;
	height: 60px;
	background-color: #ffffff;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 20px;
	transition: all 0.4s ease-in-out;
}

.why-choose-item:hover .icon-box {
	background-color: transparent;
}

.why-choose-item .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: var(--primary-color);
	border-radius: 50%;
	height: 100%;
	width: 100%;
	transform: scale(0);
	transition: all 0.3s ease-in-out;
}

.why-choose-item:hover .icon-box::before {
	transform: scale(1);
}

.why-choose-item .icon-box img {
	max-width: 24px;
	z-index: 1;
	transition: all 0.3s ease-in-out;
}

.why-choose-item:hover .icon-box img {
	filter: brightness(0) invert(1);
}

.why-choose-item-content {
	width: calc(100% - 80px);
}

.why-choose-item-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 10px;
	color: #000;
}

.why-choose-item-content p {
	/* color: var(--primary-color); */
	margin-bottom: 0;
}

.why-choose-images {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-left: 30px;
}

.why-choose-img-box-1,
.why-choose-img-box-2 {
	display: flex;
	gap: 20px;
	width: 100%;
}

.why-choose-img-1 figure,
.why-choose-img-2 figure,
.why-choose-img-3 figure,
.why-choose-img-4 figure {
	display: block;
}

.why-choose-img-1 {
	width: calc(57% - 10px);
}

.why-choose-img-1 img {
	width: 100%;
	aspect-ratio: 1 / 0.756;
	object-fit: cover;
}

.why-choose-img-2 {
	width: calc(43% - 10px);
}

.why-choose-img-2 img {
	width: 100%;
	aspect-ratio: 1 / 1.01;
	object-fit: cover;
}

.why-choose-img-3 {
	width: calc(67% - 10px);
}

.why-choose-img-3 img {
	width: 100%;
	aspect-ratio: 1 / 0.746;
	object-fit: cover;
}

.why-choose-img-4 {
	width: calc(33% - 10px);
}

.why-choose-img-4 img {
	width: 100%;
	aspect-ratio: 1 / 1.55;
	object-fit: cover;
}

/************************************/
/***     07. Our Services css     ***/
/************************************/

.our-services {
	padding: 50px 0;
	background: url(../images/section-bg-shape-2.svg);
	background-repeat: no-repeat;
	background-position: top center;
	background-size: contain;
}

.service-item {
	position: relative;
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.service-image a {
	display: block;
	cursor: auto;
}

.service-image a figure::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: linear-gradient(360deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 105%);
	height: 100%;
	width: 100%;
	z-index: 1;
	transition: all 0.3s ease-in-out;
}

.service-image img {
	width: 100%;
	object-fit: cover;
	aspect-ratio: 1 / 1.36;
	transition: all 0.4s ease-in-out;
}

.service-item:hover .service-image img {
	transform: scale(1.1);
}


.service-btn-details {
	position: absolute;
	/* top: 40px; */
	right: 40px;
	z-index: 1;
	bottom: 40px;
}

.service-btn-details a {
	background-color: var(--primary-color);
	height: 100%;
	width: 100%;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.4s ease-in-out;
}

.service-btn-details a:hover {
	background-color: var(--primary-color);
}

.service-btn-details a img {
	max-width: 40px;
	height: 40px;
	padding: 10px;
	transform: rotate(-45deg);
	transition: all 0.4s ease-in-out;
}

.service-btn-details a:hover img {
	transform: rotate(0)
}


/*  */

.service-btn {
	position: absolute;
	/* top: 40px; */
	right: 40px;
	z-index: 1;
	bottom: 40px;
}

.service-btn a {
	background-color: var(--primary-color);
	height: 50px;
	width: 50px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.4s ease-in-out;
}

.service-btn a:hover {
	background-color: var(--primary-color);
}

.service-btn a img {
	max-width: 20px;
	transform: rotate(-45deg);
	transition: all 0.4s ease-in-out;
}

.service-btn a:hover img {
	transform: rotate(0)
}

.service-content {
	position: absolute;
	bottom: 40px;
	left: 40px;
	right: 40px;
	z-index: 1;
}

.service-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 10px;
}

.service-content h3 a {
	color: inherit;
}

.service-content p {
	color: var(--white-color);
	margin-bottom: 0;
}

.all-services-btn {
	text-align: center;
	margin-top: 20px;
}

/************************************/
/***      08. Intro Video css     ***/
/************************************/

.intro-video .container-fluid {
	padding: 0;
}

.intro-video-box {
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.intro-video-image a {
	display: block;
	cursor: auto;
}

.intro-video-image figure::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: linear-gradient(180deg, rgba(25, 35, 36, 0) 0%, rgba(25, 35, 36, 0.6) 80.94%);
	height: 100%;
	width: 100%;
	z-index: 1;
}

.intro-video-image img {
	width: 100%;
	aspect-ratio: 1 / 0.41;
	object-fit: cover;
}

.video-play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
}

.video-play-button a {
	position: relative;
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
	color: var(--white-color);
	border: 1px solid var(--white-color);
	border-radius: 50%;
	width: 100px;
	height: 100px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: auto;
	transition: all 0.3s ease-in-out;
}

.video-play-button a:hover {
	border-color: var(--primary-color);
	color: var(--primary-color);
}

/************************************/
/***    09. Latest Project css    ***/
/************************************/

.our-project {
	padding: 100px 0 70px;
}

.our-Project-nav {
	text-align: center;
	margin-bottom: 60px;
}

.our-Project-nav ul {
	list-style: none;
	text-align: center;
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 15px 30px;
	padding: 0;
	margin: 0;
}

.our-Project-nav ul li a {
	position: relative;
	display: inline-block;
	color: var(--highlight);
	font-weight: 500;
	line-height: 1.2em;
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.our-Project-nav ul li a:after,
.our-Project-nav ul li a:before {
	content: '';
	position: absolute;
	left: 0px;
	bottom: -8px;
	width: 100%;
	height: 2px;
	background-color: var(--primary-color);
	transform-origin: bottom right;
	transition: transform 0.4s ease-in-out;
	transform: scaleX(0);
}

.our-Project-nav ul li a:after {
	top: -8px;
	bottom: auto;
	left: 0px;
}

.our-Project-nav ul li a:hover:before,
.our-Project-nav ul li a.active-btn:before,
.our-Project-nav ul li a:hover:after,
.our-Project-nav ul li a.active-btn:after {
	transform-origin: bottom left;
	transform: scaleX(1);
}

.project-item {
	position: relative;
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.project-featured-image figure::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(360deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 111.33%);
	z-index: 0;
}

.project-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	opacity: 0;
	visibility: hidden;
	backdrop-filter: blur(20px);
	border-radius: 50%;
	transform: translate(-50%, -30%);
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.project-item:hover .project-btn {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, -50%);
}

.project-btn a {
	width: 100px;
	height: 100px;
	background: var(--dark-divider-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.project-btn img {
	max-width: 24px;
	transform: rotate(-45deg);
	transition: all 0.4s ease-in-out;
}

.project-btn a:hover {
	background: var(--primary-color);
}

.project-btn a:hover img {
	transform: rotate(0deg);
}

.project-featured-image img {
	width: 100%;
	aspect-ratio: 1 / 0.79;
	object-fit: cover;
}

.project-content {
	position: absolute;
	left: 40px;
	bottom: 40px;
	right: 40px;
}

.project-content h3,
.project-content h2 {
	color: var(--white-color);
	text-transform: capitalize;
	position: relative;
	z-index: 1;
}

.project-content h3 {
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 10px;
}

.project-content h2 {
	font-size: 20px;
	font-weight: 700;
}

.project-content h2 a {
	color: inherit;
}

/* new project section */
.single-product-one {
	position: relative;
	z-index: 1;
	display: block;
	overflow: hidden;
	background-color: #858585;

}

.single-product-one .project-item {
	margin-bottom: 0px;
}

.single-product-one a {
	display: block;
	width: 100%;
	height: 100%;
}

.single-product-one a img {
	width: 100%;
	height: 100%;
}

.single-product-one::after {
	position: absolute;
	content: "";
	left: 0;
	right: 0;
	bottom: 0;
	height: 0%;
	transition: 0.4s;
	z-index: 0;
	width: 100%;
	/*background: linear-gradient(180deg, rgba(18, 20, 21, 0) 30.87%, rgba(1, 1, 1, 0.8) 73.06%);*/
	pointer-events: none;
}

.single-product-one span.number {
	position: absolute;
	right: 30px;
	transition: 0.5s;
	top: 20px;
	z-index: 2;
	font-size: 60px;
	line-height: 100px;
	font-weight: 700;
	-webkit-text-stroke-width: 0.5px;
	-webkit-text-stroke-color: #e3e3e3;
	color: transparent;
}

.single-product-one .inenr-content-absolute {
	position: absolute;
	/*left: 40px;*/
	bottom: -122px;
	bottom: 40%;
	/*bottom: 25px;*/
	/* transition: 0.3s; */
	z-index: 2;
	width: 100%;

}

.single-product-one .inenr-content-absolute .title {
	/*color:#b48c5b;*/
	color: white;
	text-align: center;
	padding-bottom: 5px;

}

.single-product-one .inenr-content-absolute a .title {
	color: #fff;
	font-size: 34px;
	font-style: normal;
	font-weight: 700;
	line-height: 44px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.single-product-one .inenr-content-absolute .category {
	color: #e3e3e3;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 26px;
	letter-spacing: 4.8px;
	text-transform: uppercase;
}

.single-product-one::after {
	height: 100%;
}

.single-product-one span.number {
	right: 30px;
}

/* .single-product-one:hover .inenr-content-absolute {
	bottom: 50px;
} */

@media only screen and (max-width: 479px) {
	.single-product-one .inenr-content-absolute {
		bottom: 130px;
	}
}

@media only screen and (max-width: 767px) {
	.portfolio-boxes .swiper-slide-active .single-product-one::after {
		height: 100%;
	}

	.portfolio-boxes .swiper-slide-active .single-product-one span.number {
		right: 30px;
	}

	.portfolio-boxes .swiper-slide-active .single-product-one .inenr-content-absolute {
		bottom: 50px;
	}
	.swiper-vertical-right{
    height: auto !important;}
}

@media only screen and (max-width: 767px) and (max-width: 767px) {
	.portfolio-boxes .swiper-slide-active .single-product-one .inenr-content-absolute {
		bottom: 130px;
	}
}

/* new project section end */

.title-area-product-one {
	position: relative;
}

.title-area-product-one .swiper-next-prev-wrapper .swiper-button-next:hover::after,
.title-area-product-one .swiper-next-prev-wrapper .swiper-button-prev:hover::after {
	background: var(--primary-color);
	color: #fff;
}

.title-area-product-one .swiper-next-prev-wrapper .swiper-button-next {
	right: 0;
	bottom: 16px;
	top: auto;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
	.title-area-product-one .swiper-next-prev-wrapper .swiper-button-next {
		bottom: -5px;
	}
}

.title-area-product-one .swiper-next-prev-wrapper .swiper-button-prev {
	left: auto !important;
	right: 0px !important;
	top: 65px;
	background-color: #ffffff;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
	.title-area-product-one .swiper-next-prev-wrapper .swiper-button-prev {
		top: 83px;
	}
}

.title-area-product-one .swiper-next-prev-wrapper .swiper-button-next::after,
.title-area-product-one .swiper-next-prev-wrapper .swiper-button-prev::after {
	position: absolute;
	background-image: none !important;
	height: 45px;
	width: 45px;
	border: 1px solid #d8d9da;
	content: "\f054";
	font-family: var(--font-3);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.3s;
	font-size: 17px;
	color: var(--highlight);
}

.title-area-product-one .swiper-next-prev-wrapper .swiper-button-prev::after {
	content: "\f053";
}

@media only screen and (max-width: 1199px) {

	.title-area-product-one .swiper-next-prev-wrapper .swiper-button-next,
	.title-area-product-one .swiper-next-prev-wrapper .swiper-button-prev {
		display: none;
	}
}

/************************************/
/***      10. How We Work css     ***/
/************************************/

.how-we-work {
	background: var(--highlight);
	padding: 100px 0;
}

.how-we-work-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.how-we-work-item {
	width: calc(25% - 22.5px);
}

.how-we-work-item .icon-box {
	margin-bottom: 30px;
}

.how-we-work-item .icon-box img {
	max-width: 60px;
}

.how-we-work-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 10px;
}

.how-we-work-content p {
	color: var(--white-color);
	margin: 0;
}

.how-work-company-slider {
	/*border-top: 1px solid var(--dark-divider-color);
	margin-top: 60px;*/
	padding-top: 60px;
}

.how-work-company-slider .company-logo {
	text-align: center;
}

.how-work-company-slider .company-logo img {
	width: 100%;
	max-height: 100%;
}

/************************************/
/***      11. Our Skills css      ***/
/************************************/

.our-skill {
	padding: 60px 0;
	background: url('../images/section-bg-shape-2.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	/*background-color: #f1f1f0;*/
}

.skills-progress-bar {
	margin-bottom: 40px;
}

.skills-progress-bar:last-child {
	margin-bottom: 0;
}

.skillbar .skill-data {
	display: flex;
	justify-content: space-between;
	margin-bottom: 10px;
}

.skill-data .skill-title {
	font-size: 16px;
	text-transform: capitalize;
	color: var(--primary-color);
}

.skill-data .skill-no {
	font-size: 16px;
	color: var(--primary-color);
	margin-left: 20px;
}

.skill-progress {
	width: 100%;
	height: 12px;
	background: var(--divider-color);
	border-radius: 99px;
	position: relative;
}

.skill-progress .count-bar {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	background-color: var(--primary-color);
	border-radius: 99px;
}

.our-skill-image {
	position: relative;
	/*padding-bottom: 155px;*/
	margin-left: 65px;
}

.our-skill-img-1 {
	width: 333px;
	position: relative;
	background: url('../images/our-skill-img-bg-dot.svg');
	background-repeat: no-repeat;
	background-position: top left;
	background-size: 84px auto;
	padding: 30px 0 0 30px;
}

.our-skill-img-1 figure,
.our-skill-img-2 figure,
.our-skill-img-3 figure {
	display: block;
}

.our-skill-img-1 img {
	width: 100%;
	aspect-ratio: 1/1.37;
	object-fit: cover;
}

.our-skill-img-2 {
	width: 202px;
	position: absolute;
	top: 70px;
	right: 0;
}

.our-skill-img-2 img {
	width: 100%;
	aspect-ratio: 1/0.93;
	object-fit: cover;
}

.our-skill-img-3 {
	width: 333px;
	position: absolute;
	bottom: 0;
	right: 0;
}

.our-skill-img-3 img {
	width: 100%;
	aspect-ratio: 1/0.97;
	object-fit: cover;
}

/************************************/
/***   12. Our Testimonials css   ***/
/************************************/

.our-testimonials {
	background: #f2efe9;
}

.our-testimonials .container-fluid {
	padding: 0;
}

.our-testimonials-image {
	height: 100%;
}

.our-testimonials-image figure,
.our-testimonials-image figure img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 0.82;
	object-fit: cover;
}

.our-testimonial-content {
	padding-top: 50px;
	padding-bottom: 50px;
}

.our-testimonial-content .section-title {
	background: url('../images/testimonial-quote.svg') no-repeat;
	background-position: top right;
	background-size: 162px auto;
}

.testimonial-slider {
	width: 100%;
	/*max-width: 620px;*/
	margin-bottom: 40px;
	padding-bottom: 40px;
	border-bottom: 1px solid var(--divider-color);
}

.testimonial-slider .swiper-wrapper {
	cursor: auto;
}

.testimonial-rating {
	margin-bottom: 20px;
}

.testimonial-rating i {
	font-size: 18px;
	color: var(--primary-color);
	margin-right: 2px;
}

.testimonial-rating i:last-child {
	margin-right: 0;
}

.testimonial-content {
	margin-bottom: 40px;
}

.testimonial-content p {
	font-size: 20px;
	color: var(--primary-color);
	margin: 0;
}

.testimonial-body {
	display: flex;
	align-items: center;
}

.testimonial-body .author-image {
	margin-right: 15px;
	display: none;
}

.testimonial-body .author-image img {
	width: 60px;
	height: 60px;
	border-radius: 50%;
}

.testimonial-body .author-content {
	width: calc(100% - 75px);
}

.testimonial-body .author-content h3 {
	font-size: 20px;
	text-transform: capitalize;
}

.testimonial-body .author-content p {
	text-transform: capitalize;
	margin: 0;
}

.testimonial-rating-counter {
	display: flex;
	align-items: center;
	gap: 20px;
}

.testimonial-rating-counter .rating-counter h2 {
	font-size: 58px;
	color: var(--highlight);
}

.testimonial-client-rating {
	display: inline-block;
	background: var(--primary-color);
	padding: 0px 5px 3px 5px;
	line-height: 1em;
}

.testimonial-client-rating i {
	font-size: 10px;
	color: var(--white-color);
}

.testimonial-rating-content p {
	color: var(--primary-color);
	font-weight: 500;
	margin: 0;
}

/************************************/
/***       13. Our Blog css       ***/
/************************************/

.our-blog {
	padding: 100px 0;
	background: url('../images/section-bg-shape-2.svg');
	background-repeat: no-repeat;
	background-position: top center;
	background-size: contain;
}

.post-item {
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.post-featured-image {
	margin-bottom: 20px;
}

.post-featured-image a {
	cursor: auto;
}

.post-featured-image figure,
.post-featured-image a {
	display: block;
}

.post-featured-image img {
	width: 100%;
	aspect-ratio: 1 / 0.85;
	object-fit: cover;
	transition: all 0.4s ease-in-out;
}

.post-item:hover .post-featured-image img {
	transform: scale(1.1);
}

.post-item-content {
	margin-bottom: 15px;
}

.post-item-content h3 {
	color: var(--primary-color);
	font-size: 20px;
	line-height: 1.4em;
}

.post-item-content h3 a {
	color: inherit;
}

.post-item-btn a {
	position: relative;
	color: var(--primary-color);
	font-weight: 500;
	text-transform: capitalize;
	padding-right: 25px;
}

.post-item-btn a::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0px, -50%);
	width: 17px;
	height: 16px;
	background: url('../images/arrow-dark.svg') no-repeat;
	background-position: right center;
	background-size: cover;
	transition: all 0.4s ease-in-out;
}

.post-item-btn a:hover::after {
	transform: translate(2px, -50%);
}

.our-blog-footer {
	margin-top: 20px;
	text-align: center;
}



.main-footer {
	padding: 40px 0 0;
	background: var(--highlight);
	position: relative;
	overflow: hidden;
}

.main-footer::after {
	content: '';
	position: absolute;
	top: 54%;
	left: 1%;
	transform: translate(-20%, -50%);
	/*background: url(../images/logo-1.svg);*/
	background-repeat: no-repeat;
	background-position: left center;
	background-size: cover;
	width: 17%;
	height: 86%;
	z-index: 0;
	filter: brightness(0.5);
}

@media (max-width:1399px) {
	.main-footer::after {
		content: '';
		position: absolute;
		top: 38%;
		left: 1%;
		transform: translate(-20%, -50%);
		/*background: url(../images/logo-1.svg);*/
		background-repeat: no-repeat;
		background-position: left center;
		background-size: cover;
		width: 17%;
		height: 56%;
		z-index: 0;
		filter: brightness(0.5);
	}
}

/* .main-footer::after {
	content: '';
	position: absolute;
	top: 54%;
	left: 0;
	transform: translate(-20%, -50%);
	background: url(../images/logo-1.svg);
	background-repeat: no-repeat;
	background-position: left center;
	background-size: cover;
	width: 26%;
	height: 86%;
	z-index: 0;
	filter: brightness(0.5);
} */




.footer-logo p {
	font-style: italic;
}


.main-footer .footer-header .footer-logo img {
	width: 16%;
}

.main-footer .footer-header {
	border-bottom: 1px solid var(--dark-divider-color);
	margin-bottom: 40px;
	padding-bottom: 10px;
}

.footer-logo img {
	max-width: 165px;
	width: 100%;
}

/* .footer-social-links {
	display: flex;
	align-items: center;
	justify-content: end;
	gap: 30px;
} */
.footer-social-links {
	display: flex;
	align-items: center;
	/* justify-content: end; */
	gap: 30px;
	margin-top: 20px;
}

.footer-social-link-title h3 {
	font-size: 20px;
	text-transform: capitalize;
	color: var(--white-color);
}

.footer-social-links ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-social-links ul li {
	display: inline-flex;
	margin-right: 10px;
}

.footer-social-links ul li:last-child {
	margin-right: 0;
}

.footer-social-links ul li a {
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--white-color);
	border-radius: 50%;
	height: 36px;
	width: 36px;
	transition: all 0.3s ease-in-out;
}

.footer-social-links ul li a i {
	font-size: 18px;
	color: var(--highlight);
	transition: all 0.3s ease-in-out;
}

.footer-social-links ul li a:hover {
	background: var(--accent-color);
}

.footer-social-links ul li a:hover i {
	color: var(--white-color);
}

.footer-links h3 {
	font-size: 20px;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 20px;
}

.footer-links ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-links ul li {
	color: var(--white-color);
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
	margin-bottom: 10px;
}

.footer-links ul li:last-child {
	margin-bottom: 0;
}

.footer-links ul li:hover {
	color: var(--accent-color);
}

.footer-links ul li a {
	display: block;
	color: inherit;
}

.footer-contact-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 15px;
}

.footer-contact-item:last-child {
	margin-bottom: 0;
}

.footer-contact-item .icon-box {
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--dark-divider-color);
	border-radius: 50%;
	width: 40px;
	height: 40px;
	margin-right: 10px;
	transition: all 0.3s ease-in-out;
}

.footer-contact-item:hover .icon-box {
	border-color: var(--white-color);
}

.footer-contact-item .icon-box i {
	font-size: 16px;
	color: var(--white-color);
}

.footer-contact-content {
	width: calc(100% - 50px);
}

.footer-contact-content p {
	color: var(--white-color);
	margin: 0;
}

.footer-newsletter-form p {
	color: var(--white-color);
	margin-bottom: 30px;
}

.footer-newsletter-form .form-group {
	display: flex;
	background: var(--white-color);
	overflow: hidden;
}

.footer-newsletter-form .form-group .form-control {
	width: 85%;
	border: none;
	border-radius: 0;
	color: var(--text-color);
	background: transparent;
	padding: 13px 10px;
	box-shadow: none;
}

.footer-newsletter-form .form-group .form-control::placeholder {
	color: var(--text-color);
}

.footer-newsletter-form button {
	background-color: #f2efe9;
	width: 15%;
	border: none;
	padding: 0;
}

.footer-newsletter-form button i {
	color: var(--bs-black);
	font-size: 16px;
	transition: all 0.3s ease-in-out;
}

.footer-newsletter-form button:hover i {
	color: var(--primary-color);
}

.footer-copyright {
	border-top: 1px solid var(--dark-divider-color);
	/*text-align: center;*/
	margin-top: 35px;
	padding: 10px 0;
}

.footer-copyright-text p {
	color: var(--white-color);
	margin: 0;
}

.footer-copyright-text p a {

	color: var(--white-color);
}

.footer-copyright-text p a:hover {

	color: var(--accent-color);
}

.emaar-header {
	position: relative;
	background: url('../images/emaar/banner-1.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	height: 900px;
	/*padding: 270px 0 180px;*/
	margin-top: -118px;
}

.emaar-header::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(180deg, rgba(25, 35, 36, 0) 0%, rgba(25, 35, 36, 0.4) 80.94%);
	width: 100%;
	height: 100%;
	z-index: 0;
}

.emaar-header-box {
	position: relative;
	text-align: center;
	z-index: 1;
}

.page-header {
	position: relative;
	background: url('../images/bg.png');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 270px 0 220px;
	margin-top: -118px;
}

.page-header::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(180deg, rgb(167 165 163 / 12%) 0%, rgb(4 4 4 / 20%) 80.94%);
	/*background: linear-gradient(180deg, rgba(25, 35, 36, 0) 0%, rgba(25, 35, 36, 0.4) 80.94%);*/
	width: 100%;
	height: 100%;
	z-index: 0;
}

.page-header-box {
	position: relative;
	text-align: center;
	z-index: 1;
}

.page-header-box h1 {
	display: inline-block;
	font-size: 52px;
	font-weight: 700;
	color: var(--white-color);
	letter-spacing: -0.02em;
	margin-bottom: 10px;
	cursor: auto;
}

.page-header-box ol {
	margin: 0;
	padding: 0;
	justify-content: center;
}

.page-header-box ol li.breadcrumb-item {
	font-size: 22px;
	text-transform: capitalize;
	color: var(--white-color);
}

.page-header-box ol li.breadcrumb-item a {
	color: inherit;
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before {
	font-size: 20px;
	color: var(--white-color);
}

.about-us.page-about-us {
	background: transparent;
}

.about-facility-list {
	margin-top: 100px;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.about-facility-item {
	width: calc(33.33% - 20px);
	display: flex;
}

.about-facility-item .icon-box {
	position: relative;
	height: 60px;
	width: 60px;
	background-color: var(--divider-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 20px;
}

.about-facility-item .icon-box:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	background: var(--primary-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.about-facility-item:hover .icon-box:before {
	transform: scale(1);
}

.about-facility-item .icon-box img {
	max-width: 24px;
	z-index: 1;
	transition: all 0.4s ease-in-out;
}

.about-facility-item:hover .icon-box img {
	filter: brightness(0) invert(1);
}

.about-facility-content {
	width: calc(100% - 80px);
}

.about-facility-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.about-facility-content p {
	margin-bottom: 0;
}

.vision-mission {
	padding: 100px 0 50px;
	background: linear-gradient(180deg, var(--highlight) 60%, var(--white-color) 40%);
}

.vision-mission-box {
	background-color: var(--secondery-color);
	padding: 45px 60px;
	display: flex;
	flex-wrap: nowrap;
	gap: 30px 100px;
}

.vision-mission-item {
	position: relative;
	width: calc(50% - 75px);
}

.vision-mission-item::before {
	content: '';
	position: absolute;
	height: 100%;
	width: 1px;
	top: 0;
	right: -75px;
	bottom: 0;
	background-color: var(--divider-color);
	z-index: 1;
}

.vision-mission-item:nth-child(2n + 4)::before,
.vision-mission-item:last-child::before {
	display: none;
}

.vision-mission-item .icon-box {
	position: relative;
	width: 95px;
	height: 95px;
	background: var(--divider-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.vision-mission-item .icon-box:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	background: var(--primary-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.vision-mission-item:hover .icon-box:before {
	transform: scale(1);
}

.vision-mission-item .icon-box img {
	position: relative;
	max-width: 36px;
	z-index: 1;
	transition: all 0.4s ease-in-out;
}

.vision-mission-item:hover .icon-box img {
	filter: brightness(0) invert(1);
}

.vision-mission-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 20px;
}

.vision-mission-content p {
	margin: 0;
}

.best-selling {
	background: url(../images/section-bg-shape-1.svg);
	background-repeat: no-repeat;
	background-position: left center;
	background-size: contain;
	padding: 50px 0 100px;
}

.best-selling-content-img {
	margin-bottom: 80px;
}

.best-selling-iamge figure,
.best-selling-content-img figure {
	display: block;
}

.best-selling-content-img img {
	width: 100%;
	aspect-ratio: 1 / 0.42;
	object-fit: cover;
}

.best-selling-content .section-title {
	margin-bottom: 0;
}

.best-selling-iamge img {
	width: 100%;
	aspect-ratio: 1 / 0.93;
	object-fit: cover;
}

.our-team {
	padding: 100px 0 70px;
}

.team-member-item {
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.team-image {
	position: relative;
	margin-bottom: 20px;
	overflow: hidden;
}

.team-image a {
	display: block;
	cursor: auto;
}

.team-image figure {
	display: block;
}

.team-image figure img {
	width: 100%;
	aspect-ratio: 1 / 1.11;
	object-fit: cover;
	transition: all 0.4s ease-in-out;
}

.team-member-item:hover .team-image figure img {
	transform: scale(1.1);
}

.team-readmore-btn {
	position: absolute;
	top: 30px;
	right: 30px;
	z-index: 1;
}

.team-readmore-btn a {
	width: 60px;
	height: 60px;
	background-color: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: auto;
	transition: all 0.4s ease-in-out;
}

.team-readmore-btn a:hover {
	background-color: var(--primary-color);
}

.team-readmore-btn img {
	max-width: 20px;
	transform: rotate(-45deg);
	transition: all 0.4s ease-in-out;
}

.team-readmore-btn a:hover img {
	transform: rotate(0deg);
}

.team-content {
	text-align: center;
	margin-bottom: 20px;
}

.team-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.team-content p {
	font-weight: 500;
	text-transform: capitalize;
	margin: 0;
}

.team-social-icon ul {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: center;
}

.team-social-icon ul li {
	display: inline-flex;
	margin-right: 10px;
}

.team-social-icon ul li:last-child {
	margin-right: 0;
}

.team-social-icon ul li a {
	width: 44px;
	height: 44px;
	color: var(--accent-color);
	background: var(--divider-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.team-social-icon ul li a:hover {
	color: var(--white-color);
	background: var(--primary-color);
}

.team-social-icon ul li a i {
	color: inherit;
	font-size: 18px;
}

.our-faqs {
	padding: 100px 0;
}

.our-faqs-content {
	margin-right: 70px;
}

.faq-accordion .accordion-item {
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 30px;
	padding-bottom: 15px;
}

.faq-accordion .accordion-item:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.faq-accordion .accordion-header .accordion-button {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.2em;
	color: var(--primary-color);
	align-items: start;
	padding-right: 35px;
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-header .accordion-button span {
	margin-right: 7px;
}

.faq-accordion .accordion-button:not(.collapsed) {
	padding-bottom: 15px;
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after {
	content: '\2b';
	font-family: 'Font Awesome 6 Free';
	position: absolute;
	font-size: 18px;
	font-weight: 900;
	color: var(--primary-color);
	text-align: right;
	top: 0;
	right: 0;
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
	content: '\f068';
}

.faq-accordion .accordion-body {
	padding-right: 35px;
}

.faq-accordion .accordion-body p {
	margin: 0;
}

.our-faqs-image {
	text-align: right;
}

.our-faqs-image figure {
	display: block;
}

.our-faqs-image img {
	width: 100%;
	aspect-ratio: 1 / 1.26;
	object-fit: cover;
}

.our-clients {
	background-color: var(--secondery-color);
	padding: 100px 0;
}

.our-clients .our-clients-box {
	max-width: 1100px;
	margin: 0 auto;
	text-align: center;
}

.our-client-slider .client-logo {
	text-align: center;
}

.our-client-slider .client-logo img {
	width: 100%;
	max-height: 40px;
	filter: brightness(0.5);
}

/************************************/
/***     16. Services Page css 	  ***/
/************************************/

.page-services {
	padding: 50px 0 70px;
}

/************************************/
/***    17. Service Single css 	  ***/
/************************************/

.page-service-single {
	padding: 100px 0;
}

.service-sidebar {
	position: sticky;
	top: 30px;
	margin-right: 30px;
}

.service-catagery-list {
	border: 1px solid var(--divider-color);
	padding: 30px;
	margin-bottom: 40px;
	overflow: hidden;
}

.service-catagery-list h3 {
	font-size: 20px;
	text-transform: capitalize;
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 20px;
	margin-bottom: 20px;
}

.service-catagery-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.service-catagery-list ul li {
	margin-bottom: 20px;
}

.service-catagery-list ul li:last-child {
	margin: 0;
}

.service-catagery-list ul li a {
	position: relative;
	display: block;
	font-weight: 500;
	text-transform: capitalize;
	color: var(--accent-color);
	padding-right: 25px;
	transition: all 0.3s ease-in-out;
}

.service-catagery-list ul li:hover a {
	color: var(--primary-color);
}

.service-catagery-list ul li a::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	width: 18px;
	height: 18px;
	transform: translateY(-50%) rotate(-45deg);
	background-image: url(../images/arrow-accent.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	transition: all 0.3s ease-in-out;
}

.service-catagery-list ul li:hover a::before {
	transform: translateY(-50%) rotate(0);
	filter: brightness(0) invert(0);
}

.sidebar-cta-image figure {
	display: block;
}

.sidebar-cta-image img {
	width: 100%;
	aspect-ratio: 1 / 0.57;
	object-fit: cover;
}

.sidebar-cta-Body {
	border: 1px solid var(--divider-color);
	padding: 30px;
}

.sidebar-cta-content {
	margin-bottom: 25px;
}

.sidebar-cta-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.sidebar-cta-content p {
	font-weight: 500;
	margin-bottom: 0;
}

.sidebar-cta-contact-item {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.sidebar-cta-contact-item:last-child {
	margin-bottom: 0;
}

.sidebar-cta-contact-item .icon-box {
	position: relative;
	height: 58px;
	width: 58px;
	background-color: var(--divider-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 20px;
	transition: all 0.4s ease-in-out;
}

.sidebar-cta-contact-item:hover {
	background-color: transparent;
}

.sidebar-cta-contact-item .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: var(--primary-color);
	border-radius: 50%;
	height: 100%;
	width: 100%;
	transform: scale(0);
	transition: all 0.3s ease-in-out;
}

.sidebar-cta-contact-item:hover .icon-box::before {
	transform: scale(1);
}

.sidebar-cta-contact-item .icon-box img {
	position: relative;
	max-width: 24px;
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.sidebar-cta-contact-item:hover .icon-box img {
	filter: brightness(0) invert(1);
}

.cta-contact-item-content {
	width: calc(100% - 78px);
}

.cta-contact-item-content p {
	font-weight: 500;
	margin: 0;
}

.service-feature-image {
	margin-bottom: 40px;
}

.service-feature-image figure {
	display: block;
}

.service-feature-image img {
	width: 100%;
	aspect-ratio: 1 / 0.55;
	object-fit: cover;
}

.service-entry {
	margin-bottom: 60px;
}

.service-entry h2 {
	font-size: 46px;
	margin-bottom: 20px;
}

.service-entry h2 span {
	color: var(--accent-color);
}

.service-entry p {
	margin-bottom: 20px;
}

.service-entry p:last-child {
	margin-bottom: 0;
}

.service-entry ul {
	list-style: none;
	margin-bottom: 20px;
	padding: 0;
}

.service-entry ul li {
	position: relative;
	font-weight: 500;
	color: var(--text-color);
	text-transform: capitalize;
	padding-left: 30px;
	margin-bottom: 15px;
}

.service-entry ul li:last-child {
	margin-bottom: 0;
}

.service-entry ul li::before {
	content: '\f058';
	position: absolute;
	font-family: 'FontAwesome';
	font-size: 20px;
	font-weight: 900;
	line-height: normal;
	color: var(--accent-color);
	display: inline-block;
	top: 2px;
	left: 0;
}

.service-entry-list-image {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
}

.service-entry-image,
.service-entry-list {
	width: calc(50% - 15px);
}

.service-entry-image figure {
	display: block;
}

.service-entry-image img {
	width: 100%;
	aspect-ratio: 1 / 0.615;
	object-fit: cover;
}

.service-entry-list ul {
	margin-bottom: 0;
}

.why-choose-content.service-single-why-choose {
	margin-bottom: 60px;
}

/************************************/
/***     18. single service page css ***/
/************************************/

.service__card {
	background: #f2efe9;
	padding: 70px 32px;
	color: #413c38;
	position: relative;
}

.service__card .section-title h5 {
	font-weight: 400;
	color: #413c38;
}

.styleline::before {
	background: #746b5f;
	content: '';
	height: 1px;
	margin: 0;
	position: absolute;
	top: 15%;
	right: 0;
	width: 50%;
}

.style-lines:after {
	background: #746b5f;
	content: '';
	height: 1px;
	margin: 0;
	position: absolute;
	left: 0;
	bottom: 10%;
	width: 50%;
}

.service-card-image {
	height: 100%;
}

.service-card-image .image-anime {
	position: relative;
	overflow: hidden;
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.service-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	/* aspect-ratio: 1.06; */
	transition: all 0.4s ease-in-out;
}

/************************************/
/***     19. Blog Archive css 	  ***/
/************************************/

.page-blog {
	padding: 100px 0;
}

.page-pagination {
	margin-top: 20px;
	text-align: center;
}

.page-pagination ul {
	justify-content: center;
	padding: 0;
	margin: 0;
}

.page-pagination ul li a,
.page-pagination ul li span {
	display: flex;
	text-decoration: none;
	justify-content: center;
	align-items: center;
	background: var(--accent-color);
	color: var(--white-color);
	width: 40px;
	height: 40px;
	margin: 0 5px;
	font-weight: 700;
	line-height: 1em;
	transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a,
.page-pagination ul li a:hover {
	background: var(--primary-color);
	color: var(--white-color);
}

/************************************/
/***     19. Blog Single css 	  ***/
/************************************/

.page-single-post {
	padding: 100px 0;
}

.post-image {
	position: relative;
	margin-bottom: 30px;
}

.post-image figure {
	display: block;
}

.post-image figure,
.post-image img {
	aspect-ratio: 1 / 0.50;
	object-fit: cover;
}

.post-content {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
}

.post-entry {
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
	margin-bottom: 30px;
}

.post-entry:after {
	content: '';
	display: block;
	clear: both;
}

.post-entry a {
	color: var(--accent-color);
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6 {
	font-weight: 700;
	line-height: 1.2em;
	margin: 0 0 0.6em;
}

.post-entry h1 {
	font-size: 80px;
	letter-spacing: -0.02em;
}

.post-entry h2 {
	font-size: 46px;
	letter-spacing: -0.02em;
}

.post-entry h3 {
	font-size: 46px;
}

.post-entry h4 {
	font-size: 30px;
}

.post-entry h5 {
	font-size: 24px;
}

.post-entry h6 {
	font-size: 18px;
}

.post-entry p {
	margin-bottom: 20px;
}

.post-entry p:last-child {
	margin-bottom: 0;
}

.post-entry p strong {
	color: var(--primary-color);
	font-size: 18px;
	font-weight: 600;
}

.post-entry ol {
	margin: 0 0 30px;
}

.post-entry ol li {
	margin-bottom: 20px;
	font-size: 18px;
	font-weight: 600;
	color: var(--text-color);
}

.post-entry ul {
	padding: 0;
	margin: 20px 0 20px;
	padding-left: 20px;
}

.post-entry ul li {
	font-size: 18px;
	font-weight: 500;
	color: var(--text-color);
	position: relative;
	margin-bottom: 15px;
}

.post-entry ul li:last-child {
	margin-bottom: 0;
}

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul {
	margin-top: 20px;
	margin-bottom: 0;
}

.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child {
	margin-bottom: 0;
}

.post-entry blockquote {
	background: url(../images/icon-blockquote.svg), var(--accent-color);
	background-repeat: no-repeat;
	background-position: 35px 30px;
	background-size: 58px;
	border-radius: 0;
	padding: 30px 30px 30px 100px;
	margin-bottom: 30px;
}

.post-entry blockquote p {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4em;
	color: var(--white-color);
}

.post-entry blockquote p:last-child {
	margin-bottom: 0;
}

.tag-links {
	font-size: 20px;
	font-weight: 700;
	color: var(--primary-color);
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.post-tags .tag-links a {
	display: inline-block;
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
	background: var(--accent-color);
	color: var(--white-color);
	border-radius: 0;
	padding: 6px 20px;
	transition: all 0.3s ease-in-out;
}

.post-tags .tag-links a:hover {
	background: var(--primary-color);
}

.post-social-sharing {
	text-align: right;
}

.post-social-sharing ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.post-social-sharing ul li {
	display: inline-block;
	margin-right: 10px;
}

.post-social-sharing ul li:last-child {
	margin-right: 0;
}

.post-social-sharing ul li a {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: var(--accent-color);
	color: var(--white-color);
	border-radius: 0;
	width: 36px;
	height: 36px;
	transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a {
	background: var(--primary-color);
}

.post-social-sharing ul li a i {
	font-size: 18px;
	color: inherit;
}

/************************************/
/***     20. Project Page css 	  ***/
/************************************/

.page-project {
	padding: 100px 0 70px;
}

/************************************/
/***    21. Project Single css 	  ***/
/************************************/

.page-project-single {
	padding: 100px 0;
}

.project-single-sidebar {
	position: sticky;
	top: 30px;
	margin-right: 30px;
}

.project-detail-list {
	border: 1px solid var(--divider-color);
	padding: 30px;
	margin-bottom: 60px;
}

.project-detail-item {
	display: flex;
	align-items: center;
	margin-bottom: 30px;
}

.project-detail-item:last-child {
	margin-bottom: 0;
}

.project-detail-item .icon-box {
	position: relative;
	background-color: var(--divider-color);
	border-radius: 50%;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	transition: all 0.3s ease-in-out;
}

.project-detail-item .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: var(--accent-color);
	border-radius: 50%;
	height: 100%;
	width: 100%;
	transform: scale(0);
	transition: all 0.3s ease-in-out;
}

.project-detail-item:hover .icon-box::before {
	transform: scale(1);
}

.project-detail-item .icon-box i {
	font-size: 22px;
	color: var(--accent-color);
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.project-detail-item:hover .icon-box i {
	color: var(--white-color);
}

.project-detail-content {
	width: calc(100% - 70px);
}

.project-detail-content h3 {
	font-size: 16px;
	font-weight: 500;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.project-detail-content p {
	color: var(--accent-color);
	text-transform: capitalize;
	margin-bottom: 0;
}

.project-single-image {
	margin-bottom: 40px;
}

.project-single-image figure {
	display: block;
}

.project-single-image img {
	width: 100%;
	aspect-ratio: 1 / 0.6;
	object-fit: cover;
}

.project-info,
.project-design-info {
	margin-bottom: 60px;
}

.project-entry h2 {
	font-size: 46px;
	font-weight: 700;
	letter-spacing: -0.02em;
	margin-bottom: 30px;
}

.project-entry p {
	margin-bottom: 20px;
}

.project-entry p:last-child {
	margin-bottom: 0;
}

.project-entry ul {
	list-style: none;
	margin-bottom: 20px;
	padding: 0;
}

.project-entry ul li {
	position: relative;
	font-weight: 500;
	color: var(--text-color);
	padding-left: 30px;
	margin-bottom: 15px;
}

.project-entry ul li:last-child {
	margin-bottom: 0;
}

.project-entry ul li::before {
	content: '\f058';
	position: absolute;
	font-family: 'FontAwesome';
	font-size: 20px;
	font-weight: 900;
	line-height: normal;
	color: var(--accent-color);
	display: inline-block;
	top: 2px;
	left: 0;
}

.project-gallery-images {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.project-gallery-img {
	width: calc(25% - 22.5px);
}

.project-gallery-img a,
.project-gallery-img figure {
	display: block;
	cursor: auto;
}

.project-gallery-img figure img {
	width: 100%;
	aspect-ratio: 1 / 0.99;
	object-fit: cover;
}

/************************************/
/***    22. Image Gallery css 	  ***/
/************************************/

.page-gallery {
	padding: 100px 0 70px;
}

.page-gallery-box .photo-gallery {
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.page-gallery-box .photo-gallery a {
	cursor: auto;
}

.page-gallery-box .photo-gallery figure {
	display: block;
}

.page-gallery-box .photo-gallery img {
	width: 100%;
	aspect-ratio: 1 / 0.85;
	object-fit: cover;
}

/************************************/
/***    	23. FAQs Page css 	  ***/
/************************************/

.page-faqs {
	padding: 100px 0;
}

.faq-sidebar {
	position: sticky;
	top: 30px;
	margin-right: 30px;
}

.faq-catagery-list {
	border: 1px solid var(--divider-color);
	padding: 30px;
	margin-bottom: 60px;
}

.faq-catagery-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.faq-catagery-list ul li {
	margin-bottom: 20px;
	transition: all 0.3s ease-in-out;
}

.faq-catagery-list ul li:last-child {
	margin-bottom: 0;
}

.faq-catagery-list ul li a {
	position: relative;
	display: block;
	font-weight: 500;
	text-transform: capitalize;
	color: var(--accent-color);
	padding-right: 25px;
	transition: all 0.3s ease-in-out;
}

.faq-catagery-list ul li:hover a {
	color: var(--primary-color);
}

.faq-catagery-list ul li a::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	width: 18px;
	height: 18px;
	transform: translateY(-50%) rotate(-45deg);
	background-image: url(../images/arrow-accent.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	transition: all 0.3s ease-in-out;
}

.faq-catagery-list ul li:hover a::before {
	transform: translateY(-50%) rotate(0);
	filter: brightness(0) invert(0);
}

.our-faq-section.page-faq-accordion {
	margin-bottom: 60px;
}

.our-faq-section.page-faq-accordion:last-child {
	margin-bottom: 0;
}

/************************************/
/***   24. Contact Us Page css 	  ***/
/************************************/

.page-contact-us {
	padding: 100px 0 50px;
	background-color: white;
}

.contact-us-image {
	height: 100%;
}

.contact-us-image figure {
	height: 100%;
	display: block;
}

.contact-us-image img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	aspect-ratio: 1 / 0.962;
}


.contact-form .form-control {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.2em;
	background-color: var(--white-color);
	color: var(--text-color);
	/*border: 1px solid var(--divider-color);*/
	border: 1px solid #b197772b;
	border-radius: 0;
	outline: none;
	box-shadow: none;
	padding: 14px 15px;
}

.contact-us-form .contact-form {
	padding: 20px;
	background-color: #b197772e;
	border-radius: 10px;
}

.contact-form .form-control::placeholder {
	font-weight: 400;
}

.google-map {
	padding: 50px 0 100px;
}

.google-map .section-title {
	width: 100%;
	max-width: 560px;
	margin: 0 auto 30px;
	text-align: center;
}

.google-map-iframe,
.google-map-iframe iframe {
	width: 100%;
	height: 500px;
}

.contact-info-box {
	display: inline-block;
	flex-wrap: wrap;
	gap: 30px;
	/*margin-top: 60px;*/
	border-radius: 10px;
	background-color: #b197772e;
}

.contact-info-item {
	/*width: calc(33.33% - 20px);*/
	display: flex;
	padding: 25px;
}

.contact-info-item .icon-box {
	position: relative;
	height: 60px;
	width: 60px;
	background-color: white;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 20px;
}

.contact-info-item .icon-box:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	background: var(--primary-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.contact-info-item:hover .icon-box:before {
	transform: scale(1);
}

.contact-info-item .icon-box i {
	position: relative;
	font-size: 20px;
	color: var(--highlight);
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.contact-info-item:hover .icon-box i {
	color: var(--white-color);
}

.contact-info-content {
	width: calc(100% - 80px);
}

.contact-info-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.contact-info-content p {
	margin-bottom: 0;
	font-weight: 600;
}

/************************************/
/***    25. 404 Error Page css 	  ***/
/************************************/

.error-page {
	background-image: url(../images/error-page-bg.svg);
	background-repeat: no-repeat;
	background-position: top -100px center;
	background-size: auto;
	padding: 100px 0;
}

.error-page-image {
	text-align: center;
	margin-bottom: 30px;
}

.error-page-image img {
	width: 100%;
	max-width: 50%;
}

.error-page-content {
	width: 100%;
	max-width: 500px;
	margin: 0 auto;
	text-align: center;
}

.error-page-content .section-title {
	margin-bottom: 20px;
}

.error-page-content-body p {
	font-weight: 500;
	margin-bottom: 20px;
}

/************************************/
/***      26. Responsive css      ***/
/************************************/

@media only screen and (max-width: 1366px) {

	.our-testimonial-content {
		padding: 100px 50px;
	}
}

@media only screen and (max-width: 1024px) {

	.main-menu ul li {
		margin: 0;
	}

	.our-testimonial-content {
		padding: 50px 20px;
	}
}

@media only screen and (max-width: 991px) {

	.navbar {
		/* padding: 20px 0; */
	}

	.slicknav_nav li,
	.slicknav_nav ul {
		display: block;
	}

	.responsive-menu,
	.navbar-toggle {
		display: block;
	}

	.header-btn {
		display: none;
	}

	.btn-default {
		padding: 14px 42px 14px 16px;
	}

	.section-row {
		margin-bottom: 40px;
	}

	.section-row .section-title {
		margin-bottom: 0;
		margin-right: 0px;
	}

	.section-title-content {
		margin-left: 0;
		margin-top: 15px;
	}

	.section-btn {
		text-align: left;
		margin-top: 15px;
	}

	.section-title {
		margin-bottom: 30px;
	}

	.section-title h3 {
		margin-bottom: 10px;
	}

	.section-title h1 {
		font-size: 50px;
	}

	.section-title h2 {
		font-size: 36px;
	}

	.section-title p {
		margin-top: 15px;
	}

	.hero {
		min-height: auto;
		padding: 180px 0 140px;
		margin-top: -131px;
		overflow: hidden;
	}

	/* .hero {
		min-height: auto;
		padding: 180px 0 140px;
		margin-top: -92px;
	} */

	.hero.hero-slider-layout .hero-slide {
		padding: 180px 0 140px;
		min-height: auto;
	}

	.hero.hero-slider-layout .hero-pagination {
		padding-left: 15px;
		bottom: 30px;
	}

	.hero-content .section-title p {
		font-size: 20px;
	}

	.about-us {
		padding: 50px 0;
	}

	.about-us-images {
		margin: 0 0 30px 0;
	}

	.experience-counter {
		height: 137px;
		width: 137px;
	}

	.experience-counter h3 {
		font-size: 28px;
	}

	.about-us-content-list {
		margin-bottom: 30px;
	}

	.about-contact-item {
		margin-bottom: 30px;
	}

	.why-choose-us {
		padding: 50px 0;
	}

	.why-choose-content {
		margin-bottom: 30px;
	}

	.why-choose-item .icon-box {
		margin-right: 10px;
	}

	.why-choose-item-content {
		width: calc(100% - 70px);
	}

	.why-choose-images {
		margin-left: 0;
		margin-top: 20px;
	}

	.our-services {
		padding: 20px 15px;
	}

	.service-image img {
		aspect-ratio: 1 / 1.2;
	}

	.service-btn {
		top: 20px;
		right: 20px;
	}

	.service-btn a {
		height: 50px;
		width: 50px;
	}

	.service-content {
		bottom: 20px;
		left: 20px;
		right: 20px;
	}

	.all-services-btn {
		margin-top: 10px;
	}

	.video-play-button a {
		width: 80px;
		height: 80px;
	}

	.our-project {
		padding: 50px 0 20px;
	}

	.our-Project-nav {
		margin-bottom: 50px;
	}

	.project-featured-image img {
		aspect-ratio: 1 / 0.89;
	}

	.project-btn a {
		width: 80px;
		height: 80px;
	}

	.project-content {
		left: 20px;
		bottom: 20px;
		right: 20px;
	}

	.how-we-work {
		padding: 50px 0;
	}

	.how-we-work-item {
		width: calc(50% - 15px);
	}

	.how-we-work-item .icon-box {
		margin-bottom: 20px;
	}

	.how-work-company-slider {
		margin-top: 40px;
		padding-top: 40px;
	}

	.our-skill {
		padding: 50px 0;
	}

	.our-skill-content {
		margin-bottom: 30px;
	}

	.skills-progress-bar {
		margin-bottom: 30px;
	}

	.our-skill-image {
		max-width: 555px;
		margin: 0 auto;
	}

	.our-testimonials-image {
		height: auto;
	}

	.our-testimonials-image figure,
	.our-testimonials-image figure img {
		height: auto;
		aspect-ratio: 1 / 0.65;
	}

	.our-testimonial-content {
		padding: 50px 15px;
	}

	.our-testimonial-content .section-title {
		background-size: contain;
	}

	.testimonial-slider {
		max-width: 100%;
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.testimonial-rating {
		margin-bottom: 15px;
	}

	.testimonial-content {
		margin-bottom: 30px;
	}

	.testimonial-content p {
		font-size: 18px;
	}

	.testimonial-rating-counter .rating-counter h2 {
		font-size: 48px;
	}

	.our-blog {
		padding: 50px 0;
	}

	.our-blog .section-title {
		margin-right: 0;
	}

	.post-featured-image img {
		aspect-ratio: 1 / 0.75;
	}

	.our-blog-footer {
		margin-top: 10px;
	}

	.main-footer {
		padding: 40px 0 0;
	}

	.main-footer .footer-header {
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.footer-links {
		padding-right: 0;
		
		margin-bottom: 10px;
        margin-top: 20px;
	}

	.footer-newsletter-form p {
		margin-bottom: 20px;
	}

	.footer-copyright {
		margin-top: 0px;
		padding: 20px 0;
	}

	.page-header {
		padding: 180px 0 100px !important;
		margin-top: -150px;
	}

	.page-header-box h1 {
		font-size: 50px;
	}

	.page-header-box ol li.breadcrumb-item {
		font-size: 18px;
	}

	.page-header-box ol .breadcrumb-item+.breadcrumb-item::before {
		font-size: 16px;
	}

	.about-facility-list {
		margin-top: 50px;
		gap: 20px;
	}

	.about-facility-item {
		width: calc(33.33% - 13.33px);
	}

	.about-facility-item .icon-box {
		height: 45px;
		width: 45px;
		margin-right: 10px;
	}

	.about-facility-item .icon-box img {
		max-width: 20px;
	}

	.about-facility-content {
		width: calc(100% - 55px);
	}

	.about-facility-content h3 {
		font-size: 18px;
	}

	.vision-mission {
		padding: 50px 0 25px;
	}

	.vision-mission-box {
		padding: 30px 15px;
		gap: 30px 40px;
	}

	.vision-mission-item {
		width: calc(50% - 20px);
	}

	.vision-mission-item::before {
		right: -20px;
	}

	.vision-mission-item .icon-box {
		width: 70px;
		height: 70px;
	}

	.vision-mission-item .icon-box img {
		max-width: 30px;
	}

	.vision-mission-content h3 {
		margin-bottom: 15px;
	}

	.best-selling {
		padding: 25px 0 50px;
	}

	.best-selling-content {
		margin-bottom: 20px;
	}

	.best-selling-content-img {
		margin-bottom: 20px;
	}

	.our-team {
		padding: 50px 0 20px;
	}

	.team-readmore-btn {
		top: 20px;
		right: 20px;
	}

	.team-readmore-btn a {
		width: 50px;
		height: 50px;
	}

	.team-content {
		margin-bottom: 15px;
	}

	.our-faqs {
		padding: 50px 0;
	}

	.our-faqs-content {
		margin-right: 0;
		margin-bottom: 30px;
	}

	.faq-accordion .accordion-item {
		margin-bottom: 20px;
	}

	.our-faqs-image {
		text-align: center;
		margin-left: 0px;
	}

	.our-faqs-image img {
		aspect-ratio: 1 / 0.8;
	}

	.our-clients {
		padding: 50px 0;
	}

	.our-clients .our-clients-box {
		max-width: 100%;
	}

	.page-services {
		padding: 20px 0 20px;
	}

	.page-service-single {
		padding: 20px 0;
	}
	.dream-section{
    padding: 20px 0 !important ;}

	.service-sidebar {
		position: initial;
		margin-right: 0;
		margin-bottom: 30px;
	}

	.service-catagery-list {
		padding: 20px;
		margin-bottom: 30px;
	}

	.service-catagery-list h3 {
		padding-bottom: 15px;
		margin-bottom: 15px;
	}

	.service-catagery-list ul li {
		margin-bottom: 10px;
	}

	.service-catagery-list ul li a::before {
		width: 16px;
		height: 16px;
	}

	.sidebar-cta-Body {
		padding: 20px;
	}

	.sidebar-cta-content {
		margin-bottom: 15px;
	}

	.sidebar-cta-contact-item {
		margin-bottom: 15px;
	}

	.service-feature-image {
		margin-bottom: 30px;
	}

	.service-entry {
		margin-bottom: 30px;
	}

	.service-entry ul li {
		font-size: 14px;
		padding-left: 25px;
		margin-bottom: 10px;
	}

	.service-entry ul li::before {
		font-size: 18px;
	}

	.why-choose-content.service-single-why-choose {
		margin-bottom: 30px;
	}

	.page-blog {
		padding: 50px 0;
	}

	.page-pagination {
		margin-top: 10px;
	}

	.page-single-post {
		padding: 50px 0;
	}

	.post-image {
		margin-bottom: 20px;
	}

	.post-entry blockquote {
		background-position: 25px 25px;
		background-size: 50px;
		padding: 25px 25px 25px 90px;
		margin-bottom: 20px;
	}

	.post-entry blockquote p {
		font-size: 18px;
	}

	.post-entry h2 {
		font-size: 38px;
	}

	.post-entry ul li {
		font-size: 16px;
	}

	.post-tags {
		margin-bottom: 20px;
	}

	.post-social-sharing ul {
		text-align: left;
	}

	.post-tags .tag-links a {
		padding: 6px 15px;
	}

	.page-project {
		padding: 50px 0 20px;
	}

	.page-project-single {
		padding: 50px 0;
	}

	.project-single-sidebar {
		position: initial;
		margin-right: 0px;
		margin-bottom: 30px
	}

	.project-detail-list {
		padding: 20px;
		margin-bottom: 30px;
	}

	.project-single-image {
		margin-bottom: 30px;
	}

	.project-info,
	.project-design-info {
		margin-bottom: 30px;
	}

	.project-entry h2 {
		font-size: 36px;
		margin-bottom: 20px;
	}

	.page-gallery {
		padding: 50px 0 20px;
	}

	.page-gallery-box .photo-gallery img {
		aspect-ratio: 1 / 0.85;
	}

	.page-faqs {
		padding: 50px 0;
	}

	.faq-sidebar {
		position: initial;
		margin-right: 0;
		margin-bottom: 30px;
	}

	.faq-catagery-list {
		padding: 20px;
		margin-bottom: 30px;
	}

	.faq-catagery-list ul li {
		margin-bottom: 15px;
	}

	.faq-catagery-list ul li a::before {
		width: 16px;
		height: 16px;
	}

	.our-faq-section.page-faq-accordion {
		margin-bottom: 40px;
	}

	.page-contact-us {
		padding: 30px 0 25px;
	}

	.contact-us-image {
		height: auto;
		margin-bottom: 30px;
	}

	.contact-us-image img {
		aspect-ratio: 1 / 0.6;
	}

	.contact-us-form {
		margin-left: 0;
	}

	.contact-form .form-control {
		padding: 12px 15px;
	}

	.google-map {
		padding: 25px 0 50px;
	}

	.google-map-iframe,
	.google-map-iframe iframe {
		height: 400px;
	}

	.contact-info-box {
		gap: 20px;
		margin-top: 40px;
	}

	.contact-info-item {
		width: calc(33.33% - 13.33px);
	}

	.contact-info-item .icon-box {
		height: 50px;
		width: 50px;
		margin-right: 10px;
	}

	.contact-info-item .icon-box i {
		font-size: 16px;
	}

	.contact-info-content {
		width: calc(100% - 60px);
	}

	.contact-info-content h3 {
		font-size: 18px;
	}

	.error-page {
		padding: 50px 0;
	}

	.error-page-image img {
		max-width: 80%;
	}
}

@media only screen and (max-width: 767px) {

	.section-row {
		margin-bottom: 30px;
	}

	.section-title {
		margin-bottom: 30px;
	}

	.section-title h1 {
		font-size: 28px;
	}

	.section-title h2 {
		font-size: 26px;
	}

	.hero-content .section-title p {
		font-size: 18px;
	}

	.hero-content .btn-default {
		margin-right: 40px;
		margin-bottom: 10px;
	}

	.hero-content .btn-default.btn-highlighted {
		margin: 0;
	}

	.about-us-images {
		background-position: left 10px bottom 10px;
		background-size: 20% auto;
		padding: 10px 45px 100px 0;
	}

	.feedback-counter {
		transform: rotate(-180deg) translate(0, 0);
	}

	.feedback-counter p {
		font-size: 12px;
		height: 38px;
		width: 38px;
		margin: 0 0 6px 0;
	}

	.feedback-counter h3 {
		font-size: 12px;
		width: calc(100% - 40px);
	}

	.about-img-2 {
		max-width: 240px;
	}

	.experience-counter {
		height: 102px;
		width: 102px;
	}

	.experience-counter h3 {
		font-size: 22px;
	}

	.experience-counter p {
		font-size: 12px;
		line-height: 1.1em;
	}

	.about-us-content-body {
		gap: 0px;
	}

	.about-us-content-body::before {
		display: none;
	}

	.about-us-content-info {
		width: 100%;
		border-bottom: 1px solid var(--divider-color);
		padding-bottom: 15px;
		margin-bottom: 15px;
	}

	.about-us-content-list {
		margin-bottom: 20px;
	}

	.about-us-contact-list {
		width: 100%;
	}

	.about-us-content-list ul li {
		margin-bottom: 10px;
	}

	.about-us-content-list ul li::before {
		font-size: 18px;
		top: 3px;
	}

	.about-contact-item {
		margin-bottom: 20px;
	}

	.about-contact-content h3 {
		font-size: 18px;
	}

	.why-choose-item-content h3 {
		font-size: 18px;
		margin-bottom: 5px;
	}

	.why-choose-img-2 img {
		aspect-ratio: 1 / 1.02;
	}

	.why-choose-img-4 img {
		aspect-ratio: 1 / 1.588;
	}

	.service-content h3 {
		font-size: 18px;
	}

	.intro-video-image img {
		aspect-ratio: 1 / 0.7;
	}

	.project-btn a {
		width: 60px;
		height: 60px;
	}

	.project-btn img {
		max-width: 20px;
	}

	.project-content h2 {
		font-size: 18px;
	}

	.how-we-work-item {
		width: 100%;
	}

	.how-we-work-item .icon-box img {
		max-width: 50px;
	}

	.how-we-work-content h3 {
		font-size: 18px;
	}

	.how-work-company-slider {
		margin-top: 30px;
		padding-top: 30px;
	}

	.our-skill-image {
		padding-bottom: 10px;
	}

	.our-skill-img-1 {
		width: 200px;
		padding: 20px 0 0 20px;
	}

	.our-skill-img-2 {
		width: 130px;
		top: 20px;
	}

	.our-skill-img-3 {
		width: 200px;
	}

	.testimonial-rating {
		margin-bottom: 10px;
	}

	.testimonial-rating i {
		font-size: 16px;
	}

	.testimonial-content {
		margin-bottom: 20px;
	}

	.testimonial-content p {
		font-size: 16px;
	}

	.testimonial-body .author-content h3 {
		font-size: 18px;
	}

	.testimonial-rating-counter .rating-counter h2 {
		font-size: 38px;
	}

	.post-featured-image {
		margin-bottom: 15px;
	}

	.post-item-content {
		margin-bottom: 10px;
	}

	.post-item-content h3 {
		font-size: 18px;
	}

	.footer-logo {
		margin-bottom: 20px;
	}


	.footer-social-links {
		justify-content: start;
		gap: 20px;
	}

	.footer-social-link-title h3 {
		font-size: 18px;
	}

	.footer-links h3 {
		margin-bottom: 15px;
	}

	.footer-links ul li {
		margin-bottom: 5px;
	}

	.footer-copyright {
		padding: 15px 0;
	}

	.page-header-box h1 {
		font-size: 28px;
		margin-bottom: 5px;
	}

	.page-header-box ol li.breadcrumb-item {
		font-size: 16px;
	}

	.page-header-box ol .breadcrumb-item+.breadcrumb-item::before {
		font-size: 14px;
	}

	.about-facility-item {
		width: 100%;
	}

	.vision-mission {
		background: linear-gradient(180deg, var(--primary-color) 40%, var(--white-color) 40%);
	}

	.vision-mission-box {
		padding: 20px;
		gap: 40px;
	}

	.vision-mission-item {
		width: 100%;
	}

	.vision-mission-item::before {
		height: 1px;
		width: 100%;
		top: auto;
		right: 0;
		bottom: -20px;
	}

	.vision-mission-item:nth-child(2n + 2)::before {
		display: block;
	}

	.vision-mission-item:last-child::before {
		display: none;
	}

	.vision-mission-content h3 {
		font-size: 18px;
	}

	.team-content h3 {
		font-size: 18px;
		margin-bottom: 5px;
	}

	.faq-accordion .accordion-header .accordion-button {
		font-size: 18px;
		padding-right: 30px;
	}

	.faq-accordion .accordion-item .accordion-button::after,
	.faq-accordion .accordion-item .accordion-button.collapsed::after {
		top: 2px;
	}

	.faq-accordion .accordion-body {
		padding-right: 0;
	}

	.our-faqs-image img {
		aspect-ratio: 1 / 1.26;
	}

	.service-catagery-list h3 {
		font-size: 18px;
	}

	.sidebar-cta-content h3 {
		font-size: 18px;
	}

	.service-entry p {
		margin-bottom: 15px;
	}

	.service-feature-image {
		margin-bottom: 20px;
	}

	.service-feature-image img {
		aspect-ratio: 1 / 0.7;
	}

	.service-entry-list-image {
		gap: 20px;
	}

	.service-entry-image,
	.service-entry-list {
		width: 100%;
	}

	.post-image figure,
	.post-image img {
		aspect-ratio: 1 / 0.70;
	}

	.post-entry blockquote {
		background-position: 20px 20px;
		padding: 70px 20px 20px 20px;
	}

	.post-entry h2 {
		font-size: 26px;
	}

	.project-single-image {
		margin-bottom: 20px;
	}

	.project-single-image img {
		aspect-ratio: 1 / 0.7;
	}

	.project-info,
	.project-design-highlight {
		margin-bottom: 20px;
	}

	.project-entry h2 {
		font-size: 26px;
		margin-bottom: 15px;
	}

	.project-entry p {
		margin-bottom: 15px;
	}

	.project-entry ul li {
		margin-bottom: 10px;
	}

	.project-entry ul li::before {
		font-size: 18px;
		top: 5px;
	}

	.project-gallery-images {
		gap: 20px;
	}

	.project-gallery-img {
		width: calc(50% - 10px);
	}

	.contact-us-image img {
		aspect-ratio: 1 / 0.75;
	}

	.google-map-iframe,
	.google-map-iframe iframe {
		height: 350px;
	}

	.contact-info-item {
		width: 100%;
	}

	.error-page-image img {
		max-width: 100%;
	}
}

/* new counter */
.counter {
	min-width: max-content;
}

.counter-inner-rts {
	flex-basis: 288px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.counter-inner-rts {
		flex-basis: auto;
	}
}

@media only screen and (max-width: 767px) {
	.counter-inner-rts {
		flex-basis: auto;
	}


}

.counter-wrapper-one {
	display: flex;
	align-items: center;
	gap: 45px;
	position: relative;
	flex-wrap: wrap;
	align-items: flex-start;
}

.counter-wrapper-two {
	display: flex;
	align-items: center;
	gap: 45px;
	position: relative;
	flex-wrap: nowrap;
	align-items: flex-start;
}

@media only screen and (max-width: 767px) {


	.counter-wrapper-one {
		display: flex;
		align-items: center;
		gap: 18px !important;
		position: relative;
		flex-wrap: wrap;
		/* align-items: flex-start; */
		justify-content: space-between;
	}

	.counter-wrapper-two {
		display: flex;
		align-items: center;
		gap: 18px !important;
		position: relative;
		flex-wrap: nowrap;
		/* align-items: flex-start; */
		justify-content: space-between;
	}


}

/* .counter-wrapper-one::after {
	position: absolute;
	content: "";
	height: 1px;
	background: #f1f1f1;
	width: 100%;
	top: 50%;
	left: 0;
} */

/* .counter-wrapper-one::before {
	position: absolute;
	content: "";
	height: 100%;
	background: #f1f1f1;
	width: 1px;
	top: 0;
	left: 43%;
} */

.single-counter {
	flex-basis: 45%;
	border: solid 1px #d7d7d7;
	padding: 6px;
	background: #ffffffc7;
	text-align: center;
}

.single-counter .counter-main {
	display: flex;
	align-items: center;
}

.single-counter .counter-main span {
	font-size: 26px;
	color: #30373E;
}

.counter-area-main-wrapper-rts {
	gap: 41px;
	justify-content: space-between;
}

.single-counter p {

	padding-top: 5px;
	font-size: 15px;
	margin: 0;
	font-weight: 700;
	color: #737373;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.counter-area-main-wrapper-rts {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media only screen and (max-width: 767px) {
	.counter-area-main-wrapper-rts {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media only screen and (max-width: 1199px) {
	.counter-area-main-wrapper-rts .title-style-left {
		max-width: 31%;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.counter-area-main-wrapper-rts .title-style-left {
		max-width: 80%;
	}
}

@media only screen and (max-width: 767px) {
	.counter-area-main-wrapper-rts .title-style-left {
		max-width: 80%;
	}
}

.counter-area-main-wrapper-rts .title {
	color: #30373E;
	font-size: 34px;
	font-style: normal;
	font-weight: 600;
	line-height: 44px;
	/* 129.412% */
}

@media only screen and (max-width: 575px) {
	.counter-area-main-wrapper-rts .title {
		color: #30373E;
		font-size: 22px;
		font-style: normal;
		font-weight: 600;
		line-height: 36px;
	}
}

@media only screen and (max-width: 1199px) {
	.counter-area-main-wrapper-rts .title br {
		display: none;
	}
}

.counter-area-main-wrapper-rts p {
	min-width: max-content;
}

.counter-area-main-wrapper-rts .counter-inner-rts .counter-wrapper-one {
	flex-wrap: wrap;
	flex-basis: 340px;
}

.counter-area-main-wrapper-rts .last-counter-section {
	margin-right: 236px;
}

@media only screen and (max-width: 575px) {
	.counter-area-main-wrapper-rts .last-counter-section {
		display: none;
	}
}

.counter-main-wrapper-two {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 100px 0;
	border-bottom: 1px solid #E3E3E3;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.counter-main-wrapper-two {
		flex-wrap: wrap;
		gap: 50px;
		justify-content: center;
	}
}

@media only screen and (max-width: 767px) {
	.counter-main-wrapper-two {
		flex-wrap: wrap;
		gap: 50px;
		justify-content: center;
	}
}

@media only screen and (max-width: 575px) {
	.counter-main-wrapper-two {
		flex-direction: column;
		align-items: center;
	}
}

.counter-main-wrapper-two .inner .title {
	margin-bottom: 0;
	font-family: var(--font-primary);
	font-size: 80px;
	font-style: normal;
	font-weight: 600;
	line-height: 44px;
	/* 55% */
	-webkit-text-stroke: 1px;
	-webkit-text-stroke-color: #30373E;
	color: transparent;
	display: block;
}

@media only screen and (max-width: 575px) {
	.counter-main-wrapper-two .inner .title {
		font-size: 70px;
		line-height: 18px;
	}
}

.counter-main-wrapper-two .inner .title span.counter {
	color: transparent;
}

.counter-main-wrapper-two .inner p {
	color: #7D7D7D;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 26px;
	letter-spacing: -0.36px;
	margin-top: 35px;
	display: block;
}

/* new counter end */

.looking-for {
	background-color: var(--rosegold);
	padding: 0px 37px;
}

.after-patch {
	position: relative;
}

.after-patch::after {
	content: "";
	position: absolute;
	width: 401px;
	height: 100%;
	z-index: -1;
	clip-path: polygon(50% 0%, 100% 0%, 50% 100%, 0% 100%);
	right: 20%;
	transition: 0.4s;
	background: #b99755;

}

.looking-for:hover .after-patch::after {
	width: 500px;
	clip-path: polygon(44% 0%, 100% 0%, 62% 100%, 0% 100%);
}

/* interior nos apartments */
.nos-apartments {
	background: url(../images/property/Consultation.png) no-repeat;
	background-position: 50%;
	background-size: cover;
	border-radius: 10px;
	overflow: hidden;
	padding: 50px 50px;
	position: relative;
	z-index: 1;
	text-align: center;
}

.nos-apartments:before {
	background: rgb(0 0 0 / 46%);
	bottom: 0;
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -1;
}

.nos-apartments h4 {
	color: #fff;
	font-size: 46px;
	font-weight: 500;

	font-family: auto;

	width: 100%;

	line-height: 64px;


}

.nos-apartments h4 span {
	font-style: italic;
}


@media only screen and (max-width: 767px) {
	.nos-apartments h4 {
		font-size: 20px;
		line-height: 28px;
	}

	.nos-apartments {
		padding: 45px 24px;
	}
}



/* interior nos apartments */

/* dream start*/
.dream-section {
	background: #f9f9f9;
	padding: 50px 0;
}


/* dream end */

/* construction page start*/
.service-card-wrap2 {
	margin-top: 150px;
	/* Large devices */
}

@media (max-width: 1199px) {
	.service-card-wrap2 {
		margin-top: 30px;
	}
}

.service-card-list .service-item {
	height: inherit;
}

.service-card-list .service-item .service-content h3 {
	font-size: 18px;
}

.service-card-list .service-item .service-image a figure::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: linear-gradient(360deg, rgba(0, 0, 0, 1.6) 0%, rgba(0, 0, 0, 0) 105%);
	height: 100%;
	width: 100%;
	z-index: 1;
	transition: all 0.3s ease-in-out;
}


.service-card-list .service-item .service-content {
	left: 20px;
	right: 20px;
}

.service-we-provide {
	padding: 50px 0;
	padding-top: 100px;
	background: url(../images/service-we-provide-bg.avif);
	background-repeat: no-repeat;
	background-position: top center;
	background-size: contain;
}


.service-card-list {
	--step-gap: -135px;
	/* Medium Large devices */
	/* Large devices */
}

.service-card-list:nth-child(6),
.service-card-list:nth-child(2) {
	margin-top: var(--step-gap);
}

.service-card-list:nth-child(7),
.service-card-list:nth-child(3) {
	margin-top: calc(var(--step-gap) * 1.5);
}

.service-card-list:nth-child(8),
.service-card-list:nth-child(4) {
	margin-top: calc(var(--step-gap) * 2.5);
}

@media (max-width: 1399px) {
	.service-card-list {
		--step-gap: -130px;
	}
}

@media (max-width: 1199px) {
	.service-card-list {
		--step-gap: 0px;
	}
}

/* CTA Area 2 ---------------------------------- */
.cta-wrap2 {
	background: var(--highlight);
	padding: 50px;
	display: inline-flex;
	gap: 123px;
	text-align: start;
	position: relative;
	/* Large devices */
	/* Medium devices */
	/* Extra small devices */
}

.cta-wrap2:after {
	content: "";
	position: absolute;
	background: linear-gradient(270deg, #FFFFFF -1.27%, rgba(255, 255, 255, 0.23) -1.26%, rgba(255, 255, 255, 0) 100%);
	width: 39.5px;
	height: 100%;
	clip-path: polygon(100% 50%, 0 0, 0 100%);
	top: 0;
	left: 45%;
	transform: translate(-50%, 0);
}

.cta-wrap2 .cta-title {
	font-size: 32px;
	font-weight: 600;
	color: var(--white-color);
	margin-bottom: 8px;
}

.cta-wrap2 .cta-text {
	color: var(--white-color);
	margin-bottom: 0;
}

.cta-wrap2 .cta-contact-grid {
	display: flex;
	gap: 30px;
	align-items: center;
}

.cta-wrap2 .cta-contact-grid .icon-btn {
	--btn-size: 56px;
	flex: none;
	background: var(--white-color);
	color: var(--highlight);
}

.cta-wrap2 .cta-contact-grid .icon-btn i {
	font-size: 24px;
}

.cta-wrap2 .cta-contact-grid .cta-contact-grid-details .link {
	font-size: 32px;
	font-weight: 600;
	font-family: var(--title-font);
	color: var(--white-color);
	margin-bottom: 18px;
	display: block;
	position: relative;
}

.cta-wrap2 .cta-contact-grid .cta-contact-grid-details .link:after {
	content: "";
	position: absolute;
	bottom: -3px;
	left: 0;
	height: 1px;
	width: 0;
	background: var(--white-color);
	transition: 0.4s;
}

.cta-wrap2 .cta-contact-grid .cta-contact-grid-details .link:hover:after {
	width: 100%;
}

.cta-wrap2 .cta-contact-grid .cta-contact-grid-details .title {
	font-size: 16px;
	font-weight: 400;
	color: var(--white-color);
	opacity: 0.9;
	margin-bottom: 0;
}

@media (max-width: 1199px) {
	.cta-wrap2 {
		display: flex;
		margin-top: 80px;
	}

	.cta-wrap2:after {
		left: 40%;
	}
}

@media (max-width: 991px) {
	.cta-wrap2 {
		flex-wrap: wrap;
		gap: 30px;
	}

	.cta-wrap2:after {
		display: none;
	}
}

@media (max-width: 575px) {
	.cta-wrap2 {
		padding: 30px;
	}

	.cta-wrap2 .cta-title {
		font-size: 28px;
	}

	.cta-wrap2 .cta-contact-grid {
		gap: 20px;
		flex-wrap: wrap;
	}

	.cta-wrap2 .cta-contact-grid .cta-contact-grid-details .link {
		font-size: 24px;
	}
}

.cta-grid-wrap {
	display: flex;
	gap: 20px;
	align-items: center;
	flex-wrap: wrap;
}

.cta-grid-wrap .icon-btn {
	flex: none;
	--btn-size: 60px;
	background: var(--highlight);
	color: var(--white-color);
}

.cta-grid-wrap .icon-btn i {
	font-size: 24px;
}

.cta-grid-wrap .media-body .link {
	font-size: 24px;
	font-weight: 600;
	font-family: var(--title-font);
	color: var(--title-color);
}

.cta-grid-wrap .media-body .title {
	font-size: 16px;
	font-weight: 400;
	color: var(--body-color);
	margin-bottom: 0;
}

/* construction page end */





.highlights-point ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.highlights-point ul li {
	display: flex;
}

.highlights-point ul li i {
	color: #797978;
	margin-right: 10px;
	font-size: 21px;
	margin-top: 3px;
	width: 33px;
}

.highlights-point ul li p {
	font-weight: 500;
	margin-bottom: .5rem;
	font-size: 18px;
	padding-left: 15px;
}

.overlay::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	top: 0;
	background-color: rgba(0, 0, 0, .3);
}

.plus-captcha {
	display: flex;
}

.plus-captcha .plus-text {
	margin: 5px 5px;
	font-weight: 600;
}

.plus-captcha span {
	margin-top: 7px;
	margin: 6px 6px;
}

.header-area {
	position: relative;
	/* height: 100vh; */
	background: #5bc0de;
	background-attachment: fixed;
	background-position: center center;
	background-repeat: no-repear;
	background-size: cover;
	z-index: 9999;
}

.overviewText article {
	padding: 0px;
}

.contact .info-wrap {
	box-shadow: 0px 2px 15px rgb(0 0 0 / 10%);
	padding: 30px;
	background: #fff;
}

.info-wrap {
	height: 100%;
}

.sitepla-img img {
	border: 1px dotted #b19777;
	border-radius: 10px;
}

.contact .info i {
	font-size: 28px;
	color: #fff;
	float: left;
	width: 44px;
	height: 44px;
	background: #b19777;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50px;
	transition: all 0.3s ease-in-out;
}

.contact .info h4 {
	padding: 0 0 0 60px;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 5px;
	color: #000000;
}

.footer-form .form-group {
	margin-bottom: 0.7rem;
}

.footer-form .form-group .form-control {
	margin-bottom: 0.7rem;
	border-radius: 0;
}

.footer-form .form-group .form-control:focus {
	box-shadow: none;
}

.copyright {
	background-color: #4d4d4d;
	padding: 15px 0;
}

.copyright p {
	color: #c1c1c1;
	margin: 0;
	text-align: center;
	font-size: 0.7rem;
}

.copyright a {
	color: #f7ad01;
	text-decoration: none;
}

.Payment-Plan .desktop {
	display: block;
}

.Payment-Plan .mob {
	display: none;
}

.footer-form #submit {
	color: #fff;
	background-color: #b19777;
	outline: none;
	border: none;
	padding: 0.4rem 1rem;
	margin-top: 0.3rem;
	font-weight: 600;
}

.footer-form .plus-captcha .plus-text {
	color: #b19777;
}

.contact {
	padding: 40px 0;
	background-color: #e3e3e3;
	z-index: 999;
	position: relative;

}

.footer-form h2 {
	text-align: center;
	font-size: 25px;
	font-weight: 600;
}

.footer-form {
	background-color: #fff;
	border-radius: 20px;
	padding: 1rem 2rem 1rem;
}

.contact .info p {
	padding: 0 0 0 60px;
	margin-bottom: 0;
	font-size: 17px;
	font-weight: 600;
	color: #4d4d4d;
}

.contact .info p a {
	font-weight: 600;
	color: #4d4d4d;
	text-decoration: none;
}

/*section {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}*/


.pricing-boxes .price-box {
	text-align: center;
	position: relative;
	margin-bottom: 20px;
}

.framed {
	border: 2px solid #b19777;
	padding: 25px;
}

.amen_list i {
	color: #b19777;
	font-size: 2rem;
	margin-bottom: 0.3rem;
	margin-top: 11px;
}

.amen_list p {
	font-weight: 600;
}

.pricing-boxes .price-box h3 {
	font-size: 18px;
	/* min-height: 40px; */
	margin: 0;
	background-color: #b19777;
	color: #fff;
	padding: 9px;
	border-radius: 6px;
}

.pricing-boxes .price-box .values {
	margin: 20px 0;
	font-size: 20px;
}

.pricing-boxes .price-box .values figure {
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	padding: 4px 0;
}

.pricing-boxes .price-box .values figure.not-available {
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
	opacity: 0.5;
}

.pricing-boxes .price-box .values figure:last-child {
	border-bottom: none;
}

.pricing-boxes .price-box.framed .price-box-footer {
	background-color: rgba(0, 0, 0, 0.05);
	margin: 20px -25px -25px -25px;
}

.pricing-boxes .price-box .price-box-footer {
	padding-top: 25px;
	padding-bottom: 10px;
}

.pricing-boxes .price-box .promotion-title span {
	font-size: 11px;
	color: #fff;
	background-color: #50aa8d;
	padding: 8px 10px;
}

.pricing-boxes .price-box .promotion-title {
	position: absolute;
	top: -10px;
	left: 0;
	width: 100%;
}

.price-box-footer .btn-primary {
	background-color: #4d4d4d;
	outline: none;
	border: none;
}


.content {
	padding: 120px 0;
}

.ml-auto {
	margin-left: auto !important;
}



.banner-section {
	height: 100vh;
	background-image: url("../images/emaar/banner-1.jpg");
	background-size: cover;
	background-position: center;
	z-index: 999;
}

.banner-text-box {
	padding: 25px;
	background-color: #000000a8;
	border-radius: 1rem;
}

.banner-main {
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	/*    background-color: rgba(0, 0, 0, .5);*/
	background-color: rgba(0, 0, 0, 0);
}

.gallery {}

.banner-section .tagline {
	color: #ffffff;
	font-weight: 600;
	background-color: #b19777;
	padding: 5px;
	font-size: 18px;
	border-radius: 5px;
}

.banner-section h1 {
	color: #fff;
	font-weight: 700;
	font-size: 31px;
	margin-top: 1rem;
	text-shadow: 1px 1px 1px #000;
}

.banner-section h3 {
	color: #ffffff;
	text-shadow: 1px 1px 1px #000;
	font-weight: 600;
	/* color: #f0e081; */
	font-size: 23px;
}

.banner-section h1 span {
	color: #fff;
	font-weight: 600;
	font-size: 21px;
	color: #f0e081;
	text-shadow: 1px 1px 1px #000;
}

.banner-section h2 {
	color: #fff;
	font-weight: 600;
	font-size: 20px;
	text-shadow: 1px 1px 1px #000;
}

#filled {
	border-radius: 4px;
	background-color: #b19777;
	color: #fff;
	font-weight: 500;
	margin-right: 7px;
}

#outlined {
	border-radius: 30px;
	background-color: transparent;
	border: 1px solid #b19777;
	color: #b19777;
}

#filled:hover {
	background-color: #fff;
	color: #b19777;
}

#outlined:hover {
	background-color: #b19777;
	color: #fff;
}

.banner-form-logo {
	width: 160px;
}

.enquiry-form {
	background-color: #ffffff9c;
	padding: 20px;
	z-index: 99;
	border-radius: 20px;
	border: 10px solid #ffffff1c;
	box-shadow: rgb(0 0 0 / 25%) 0px 54px 55px, rgb(0 0 0 / 12%) 0px -12px 30px, rgb(0 0 0 / 12%) 0px 4px 6px, rgb(0 0 0 / 17%) 0px 12px 13px, rgb(0 0 0 / 9%) 0px -3px 5px;
}

.enquiry-form .form-check-input {
	border-radius: 0.25em;
	border: 2px solid #b19777;
}

.enquiry-form .form-check .form-check-input:checked~.form-check-label::before {
	background-color: red;
}

.custom-checkbox .custom-control-input:checked~.custom-control-label::before {
	background-color: red;
}

.enquiry-form h4 {
	background-color: #b19777;
	margin: -20px -20px 10px -20px;
	border-radius: 10px 10px 0 0;
	padding: 10px;
	text-align: center;
	font-weight: 700;
	color: #ffffff;
	font-size: 17px;
	-webkit-border-radius: 10px 10px 0 0;
	-moz-border-radius: 10px 10px 0 0;
	-ms-border-radius: 10px 10px 0 0;
	-o-border-radius: 10px 10px 0 0;
}

.enquiry-form .form-control {
	border: none;
	border-bottom: 1px solid #b19777;
	box-shadow: none;
	outline: 0;
	margin-bottom: 1rem;
	color: #000000;
	font-weight: 600;
	font-size: 14px;
	border-radius: 0;
}

.enquiry-form .form-control::placeholder {
	color: #000;
}


.form-submit {
	text-align: center;
	margin: 0.3rem 0;
}

.line_1 {
	width: 200px;
	margin-top: 3px;
	height: 3px;
	background: #b19777;
	position: relative;
}

.line_2 {
	width: 150px;
	margin-top: 5px;
	margin-bottom: 8px;
	height: 1px;
	background: #7f046c;
	position: relative;
}

.form-submit .btn-primary {
	background-color: #b19777;
	padding: 8px 20px;
	box-shadow: none;
	border: none;
	outline: 0;
	color: #ffffff;
	font-weight: 600;
	border-radius: 16px;
}

.heading h3 {

	color: #b19777;

	text-transform: capitalize;
	font-weight: 500;
	font-size: 20px;

}


.about-sec article p {
	text-align: justify;
}

.overview-box {
	text-align: center;
	justify-content: center;
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	box-shadow: 0 0 1px #fff;
	background: #b19777;
}

.overview-box img {
	width: 82px;
	margin: 10px auto;
	filter: invert(.91);
}

.overview-con {
	width: 100%;
	min-height: 99px;
}

.overview-box h3 {
	font-size: 17px;
	color: #fff;
}

.advantages li {
	align-items: center;
	/* justify-content: center; */
}

.advantages .heading h3 {
	margin-bottom: 0rem;
}

#advantages .icon img {
	/* filter: invert(1); */
	max-width: 28px;
}

#advantages .icon {
	height: 48px;
	width: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	border: 3px solid rgba(255 255 255 / 50%);
}

.amen_list {
	text-align: center;
	padding: 0rem;
	border: 1px dotted rgb(127 4 108);
	margin-bottom: 2rem;
	min-height: 110px;
	border-radius: 0px;
}

.amen_list:hover {
	box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.gallery a {
	margin: 7px 0;
	display: block;
	/* border: 2px solid #fff5df; */
	border-radius: 0px;
	overflow: hidden;
	padding: 0;
	position: relative;
}

.gallery a img {
	height: 300px;
	object-fit: cover;
}

.advantages {
	padding: 50px 0;
}

#Pricing {
	text-align: center;
	background-color: #ffffff3b;
	padding: 4% 0;
}

#Pricing table {
	font-size: 17px;
	margin-top: 2.5rem;
	border: none;
}

.table-striped tbody tr:nth-of-type(odd) {
	background-color: rgb(211 220 255);
}

.advantages ul {
	margin: 0;
	padding: 0;
	list-style: none;
	margin-top: 1rem;
}

.advantages ul li {
	display: flex;
}

.advantages ul li i {
	color: #e7d12d;
	padding-right: 0.5rem;
	font-size: 1.1rem;
}

.advantages ul li p {
	font-weight: 500;
	margin-bottom: .6rem;
}

.site-plan {
	padding: 50px 0;
	background-color: #fefbf6;
}

#Pricing .heading h3 {
	text-align: center;
	margin-bottom: 2rem;
}

.footer-cta {
	display: flex;
	position: relative;
	justify-content: center;
	width: 100%;
	padding: 1.9em 0;
	overflow: hidden;
	background: #fff7e9;
	text-align: center;
}

.footer-cta .plug-left,
.footer-cta .plug-right {
	z-index: 1;
	top: 50%;
	width: auto;
	height: 16px;
	margin-top: -8px;
	transition: all 0.1s ease-in-out;
	fill: #b19777;
}

.footer-cta .plug-left {
	position: absolute;
	right: 50%;
	margin-right: 200px;
	transition: all 0.1s ease-in-out;
}

.footer-cta .plug-right {
	position: absolute;
	left: 50%;
	margin-left: 200px;
}

.footer-cta .wrapper,
.footer-cta .divider {
	width: 92%;
	max-width: 1104px;
	overflow: hidden;
}

.footer-cta .btn-primary {
	position: relative;
	z-index: 100 !important;
	min-width: 300px;
	padding: 1rem 2.5rem;
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
	font-weight: 600;
	line-height: 1.5;
	background-color: #b19777;
	border: none;
}

.footer-cta:hover .plug-left {
	margin-right: 127px;
}

.footer-cta:hover .plug-right {
	margin-left: 127px;
}

.floor-plan .heading h3 {
	text-align: center;
	margin-bottom: 2rem;
}

.highlights {
	padding: 40px 0;
	background-color: #d7d7fa3b;
}

#Pricing tr th {
	font-weight: 700;
}

.floor-plan a img {

	/* height: 400px; */
	object-fit: cover;
}

.floor-title {
	text-align: center;
	background: #4d4d4d;
	color: #fff;
	text-decoration: none;
	padding: 5px;
	margin: 0;
}

.highlights .heading h3 {
	margin-top: 1rem;
	/* text-align: center; */
}

.floor-plan a {
	margin: 0;
	border-radius: 6px;
	/* filter: blur(2px); */
	text-decoration: none;
	display: block;
	border: 1px solid #b19777;
	margin-bottom: 1rem;
}

.siteplan {
	padding: 40px 0;
	text-align: center;

}

.siteplan .heading h3 {
	text-align: center;
}

#Pricing tr td button {
	font-weight: 500;
	background-color: #b19777;
	color: #fff;
}

button.floor-enq-btn {
	background-image: linear-gradient(to right, #b19777, #4fffff);
	width: 97%;
	margin: 0 7px;
	outline: none;
	border: none;
	font-weight: 600;
	padding: 9px;
	margin-bottom: 1rem;
	color: #fff;
}

#form-logo {
	padding: 20px;
	width: 162px;
}

.fixed-form p {
	margin-bottom: 7px !important;
	text-align: center;
	color: #b19777;
	/* border-top: 1px dotted; */
	padding-top: 4px;
	font-weight: 500;
}

.fixed-form.fixed {
	text-align: center;
	display: block;
	padding: 0 30px;
}

h5.modal-title {
	text-align: center;
	background-color: #b19777;
	border-radius: 0px;
	padding: 5px;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	-ms-border-radius: 0px;
	-o-border-radius: 0px;
	color: #fff;
}

.modal .modal-body {
	padding: 0;
	border-bottom: 0.3rem solid #b19777;
}

.fixed-form .formFooter {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.modal .btn-close {
	position: absolute;
	right: 0;
	top: 0;
	background-color: white;
	opacity: 1;
	padding: 5px;
	border-radius: 0;
	font-size: 15px;
}

.fixed-form .form-control,
.fixed-form .form-control:focus {
	margin-bottom: .8rem;
	border-radius: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-ms-border-radius: 0;
	-o-border-radius: 0;
	box-shadow: none;
	border: 1px solid #d3dcff;
}

.fixed-form .formFooter button {
	text-align: center;
	background: #b19777;
	color: #fff;
	border: none;
	padding: 10px 15px;
	border-radius: 0;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 12px;
	transition: all 300ms ease-in-out;
	outline: none;
	margin-bottom: 1rem;
	width: 126px;
}

.highlights tr td a {
	color: #b19777;
	text-decoration: none;
}

.advantage-image {
	border-radius: 15px;
	box-shadow: rgb(14 30 37 / 12%) 0px 2px 4px 0px, rgb(14 30 37 / 32%) 0px 2px 16px 0px;
	border: 2px solid #d5d5d5;
	padding: 2px;
	background-color: transparent;
	height: 100%;
	object-fit: cover;
}

.floor-plan {
	padding: 50px 0;
}

.gallery {
	padding: 50px 0;
}

.gallery .heading h3 {
	text-align: center;
}

.site-plan .heading h3 {
	text-align: center;
}

.sec_3 {
	padding: 50px 0;
	background-color: #d7d7fa3b;
}

.amen_list svg {
	width: 2rem;
	padding-bottom: 0.5rem;
	color: #b19777;
	text-align: center;
}

.sec_3 .heading h3 {
	text-align: center;
	margin-bottom: 2rem;
}

.amen_list span {
	overflow: hidden;
	display: block;
	font-weight: 500;
}

.readmore a {
	background: #fff;
	padding: 5px 12px;
	margin-top: 16px;
	border: 1px solid #fff;
	display: block;
	color: #b19777;
	text-decoration: none;
	font-weight: 600;
}

.readmore a:hover {
	text-decoration: none;
}

.about-image {
	border-radius: 15px;
	box-shadow: rgb(14 30 37 / 12%) 0px 2px 4px 0px, rgb(14 30 37 / 32%) 0px 2px 16px 0px;
	border: 2px solid #d5d5d5;
	padding: 2px;
	background-color: transparent;
}

.spanoverview {
	background: #ffffff;
	padding: 2px;
	color: #000;
}

.highlights .advantage-image {
	max-height: 436px;
}

.about-sec {
	padding: 50px 0;
}

.enquiry-form label.custom-control-label {
	font-size: 14px;
}

.enquiry-form .second-check label {
	font-size: 11.7px;
	margin-top: -2px;
	margin-left: 2px;
}

.custom-control.custom-checkbox.second-check {
	display: flex;
}

.banner-btns {
	margin-top: 1.5rem;
}

.navbar .navbar-toggler .menu-icon-bar {
	background-color: #b19777;
}

#fixed-social {
	position: fixed;
	top: 40%;
	z-index: 9999;
}

#fixed-social a {
	color: #fff;
	display: block;
	height: 40px;
	position: relative;
	text-align: center;
	line-height: 40px;
	width: 40px;
	margin-bottom: 1px;
	z-index: 2;
}

#fixed-social a:hover>span {
	visibility: visible;
	left: 41px;
	opacity: 1;
}

#fixed-social a span {
	line-height: 40px;
	left: 60px;
	position: absolute;
	text-align: center;
	width: 120px;
	visibility: hidden;
	transition-duration: 0.5s;
	z-index: 1;
	opacity: 0;
}

.fixed-facebook {
	background-color: #00AAE5;
}

.fixed-facebook span {
	background-color: #00AAE5;
}

.fixed-twitter {
	background-color: #7D3895;

}

.fixed-twitter span {
	background-color: #7D3895;
}

.fixed-gplus {
	background-color: #00AF54;

}

.fixed-gplus span {
	background-color: #00AF54;
}


.contact .info-wrap {
	border-radius: 20px;
	padding: 19px;
	align-items: center;
	display: flex;
	position: relative;

}

.fix-footer {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: #fff;
	padding: 5px 0;
	z-index: 999;
	width: 100%;
	border-top: 1px solid #000000;
}

.fix-footer p {
	float: left;
	width: 25%;
	text-align: center;
	margin-left: 30px;
	padding: 0;
	margin-bottom: 0;
}

.fix-footer .meeting {
	position: unset;
	background: #fff;
	animation: unset;
	display: inline;
}

.fix-footer p a {
	float: left;
	margin: 0;
	padding: 0;
}

.fix-footer p a img {
	width: 32px;
	margin: 0 auto;
}

.fix-footer p a span {
	float: left;
	width: 100%;
	color: #000;
	font-weight: 500;
	font-size: 16px;
}

.fix-footer {
	display: none;
}

.thanksyou-section {
	text-align: center;
	padding: 228px 0 100px;
	min-height: 90vh;
	font-size: 15px;
	color: #757474;
}

.thanksyou-section .thanks {
	clear: both;
	width: 100%;
	font-size: 60px;
	color: #4caf50;
	font-weight: 900;
	padding-bottom: 30px;
	margin: 0;
	text-transform: uppercase;
}

.thanksyou-section i {
	clear: both;
	width: 100%;
	font-size: 72px;
	color: #4caf50;
	text-align: center;
	font-weight: 700;
	padding-bottom: 35px;
}

.Payment-Plan h3 {
	text-align: center;
}

@media (max-width:767px) {
	#fixed-social {
		display: none;
	}

	.whtsap-btn img {
		/*display: none;*/
	}

	.banner-section {
		height: 116vh;
	}

	.about-sec .heading h3 {
		font-size: 23px;
		margin-top: 2rem;
	}

	.banner-text-box {
		margin-top: 6rem;
	}

	.modal.instant {
		/*    display: none!important;*/
	}

	.footer-form {
		margin-top: 1rem;
	}

	.copyright {
		padding-bottom: 5rem;
	}

	.advantages .heading h3 {
		margin-top: 2rem;
	}

	.floor-plan a {
		margin-bottom: 1rem;
	}

	.fixed-form.fixed {
		padding: 0 20px;
	}

	#form-logo {
		padding: 6px;
	}

	.navbar-brand .logo {
		width: 121px;
		padding: 0px 0px;
	}

	.footer-cta .btn-primary {
		padding: 1rem 1.7rem;
	}

	.fixed-form p {
		font-size: 15px;
	}

	.Payment-Plan .desktop {
		display: none;
	}

	.Payment-Plan .mob {
		display: block;
	}

	.fix-footer {
		display: block;
	}

	.fix-footer p a span {
		font-weight: 500;
		font-size: 16px;
	}


	.banner-section h1 {
		font-size: 28px;
		font-size: 21px;
		margin-top: 0.5rem;
	}

	.banner-section h3 {
		font-size: 20px;
	}

	.banner-section h1 span {
		font-size: 17px;
	}

	.banner-section h2 {
		font-size: 20px;
	}

	.banner-btns {
		margin-top: .9rem;
	}

	.enquiry-form {
		margin-top: 4rem;
		margin-bottom: 1rem;
		padding: 9px;
	}

	.enquiry-form .form-control {
		margin-bottom: 0.8rem;
	}

	.form-submit {
		margin-bottom: 0;
	}

	.heading h3 {
		font-size: 23px;
	}

	.overview-box img {
		width: 40px;
	}
}

.banner-text-box span {
	font-size: 40px;
	color: #f0e081;
}

.heading p {
	/* text-align: center; */
	color: #000000;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 30px;

	padding-bottom: 20px;

}



.disclaimer {
	padding: 110px 20px;
}

.disclaimer h1,
h2 {
	font-size: 23px;
	font-weight: 600;
}


#faq {
	padding: 50px 0;
}

#accordionExample button.accordion-button {
	color: #b19777;
	font-size: 18px;
	font-weight: 600;
}

.pricing-boxes .price-box:hover .btn-primary {

	background: #b19777;
	color: #fff;
}


.sticky-btn {
	position: fixed;
	/* bottom: 20px; */
	top: 50%;
	right: -89px;
	background-color: var(--btn);
	color: white !important;
	padding: 6px 18px;
	font-size: 18px;
	border: none;
	rotate: 90deg;
	/* border-radius: 50px; */
	text-decoration: none;
	cursor: auto;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	z-index: 999;
}

/* team */



.team-style-three {
	position: relative;
	overflow: hidden;
}

.team-style-three .thumbnail img {
	width: 100%;
}

.team-style-three .bottom-content {
	margin-top: 25px;
}

.team-style-three .bottom-content .name {
	padding: 6px 14px;
	background: #F6F6F6;
	display: block;
	color: #30373E;
	max-width: max-content;
	font-size: 20px;
	font-weight: 700;
}

.team-style-three .bottom-content .title {
	background: #30373E;
	padding: 14px 14px;
	text-align: left;
	/*max-width: 160px;*/
	color: #fff;
	transition: 0.3s;
}

.team-style-three .bottom-content .title:hover {
	background: var(--btn);
}

.team-style-three .social-style-team-h {
	position: absolute;
	right: -30px;
	top: 20px;
	transition: 0.3s;
}

.team-style-three .social-style-team-h ul {
	list-style: none;
	display: flex;
	align-items: center;
	flex-direction: column;
	padding: 0;
	margin: 0;
}

.team-style-three .social-style-team-h ul li {
	margin: 5px 0;
	padding: 0;
}

.team-style-three .social-style-team-h ul li a {
	width: 30px;
	height: 30px;
	background: #F6F6F6;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.3s;
}

.team-style-three .social-style-team-h ul li a i {
	color: #30373E;
	font-size: 14px;
	transition: 0.3s;
}

.team-style-three .social-style-team-h ul li a:hover {
	background: var(--color-primary);
}

.team-style-three .social-style-team-h ul li a:hover i {
	color: #fff;
}

.team-style-three:hover .social-style-team-h {
	right: 20px;
}

.godrej-header {
	background-image: url("../images/godrej/godrej.jpeg");
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
}

.service__card a {
	color: #b19777;
}

.gallery-swiper.swiper {
	padding-top: 50px;
	padding-bottom: 40px;
}

.gallery-swiper .swiper-wrapper {
	align-items: center !important;
}

.gallery-swiper .swiper-slide {
	background-position: center;
	background-size: cover;
	width: 400px;
	height: 300px;
	border-radius: 10px;
	overflow: hidden;
	position: relative;
	transition: transform 0.3s ease, box-shadow 0.3s ease;

}

.gallery-swiper .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	filter: brightness(0.8);
	transition: 0.5s ease;
}

.gallery-swiper .swiper-slide-active {
	box-shadow: -20px 0px 93px rgb(0 0 0 / 5%);
	transform: scale(1.2) !important;
}

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

.gallery-swiper .swiper-slide-active img {
	filter: brightness(1);
}

.gallery-swiper .swiper-pagination {
	left: 50% !important;
	bottom: 10px;
	display: flex;
	gap: 10px;
	transform: translate(-50%, -50%);
	justify-content: center;
}

/*
.marquee {
  width: 100%;
  overflow: hidden;
  background: #111;
  padding: 12px 0;
  background: linear-gradient(90deg, rgb(10 10 10) 0%, rgb(142 95 43) 50%, rgb(0 0 0) 100%);
}*/

.project-slide .marquee {
	overflow: hidden;
	position: relative;
	width: 100%;
	white-space: nowrap;
	background: #111;
	padding: 12px 0;
	background: var(--btn);
	/*background: linear-gradient(90deg, rgb(10 10 10) 0%, rgb(142 95 43) 50%, rgb(0 0 0) 100%);*/
}

.project-slide .marquee-content {
	display: inline-flex;
	gap: 40px;
	padding-right: 40px;
	animation: scroll 100s linear infinite;
}

.project-slide .marquee-content span {
	color: white;
	font-size: 22px;
	white-space: nowrap;
	font-weight: bold;
	position: relative;
}

.project-slide .marquee-content span::before {
	position: absolute;
	content: '';
	top: 50%;
	left: -20px;
	transform: translateY(-50%);
	width: 10px;
	height: 10px;
	background: white;
	border-radius: 50%;
}

@keyframes scroll {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
		/* scroll half (because we duplicated) */
	}
}




.hero-details {
	background: url('banner.jpg') no-repeat center/cover;
	min-height: 70vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.hero-details::after {
	content: '';
	position: absolute;
	inset: 0;
	background: #0007;
}

.hero-details h1 {
	position: relative;
	font-size: 56px;
	font-weight: 700;
	color: #fff;
	text-align: center;
}

.hero-details h1 span {
	color: #f5b02a;
}

/* Section heading */
.section-header {
	text-align: center;
	padding: 50px 0 50px;
	background-color: #f3f3f3;
}

.section-header h2 {
	font-size: 48px;
	font-weight: 700;
}

.section-header span {
	color: #c99a39;
}

.section-header p {
	color: #666;
	max-width: 600px;
	margin: auto;
	font-size: 16px;
}

/* Layout */


/* Slider */
.property-slider {
	margin: 40px 0 60px;
}

.property-slider .swiper-slide {
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 0 12px rgba(0, 0, 0, 0.08);
	overflow: hidden;
	border: 1px solid #80808024;
}

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

.card-body {
	padding: 18px;
}

.card-title {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 5px;
}

.card-meta {
	font-size: 15px;
	color: #666;
	margin-bottom: 4px;
	/*font-weight: 600;*/
font-weight: 500;
    font-family: sans-serif;
}



.hero-banner-details {
	background: url('../images/product/61.jpg') center/cover no-repeat;
	height: 90vh;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.hero-banner-details::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
}

.hero-content-details {
	position: relative;
	color: #fff;
	max-width: 850px;
	padding: 0 20px;
}

.hero-content-details h1 {
	font-size: 52px;
	font-weight: 700;
	line-height: 1.2;
	color: white;
}

.hero-content-details h1 span {
	color: #f5b02a;
}

.hero-content-details p {
	margin: 20px auto;
	font-size: 18px;
	max-width: 700px;
	color: #eee;
}

.hero-btns-details {
	margin-top: 30px;
	display: flex;
	gap: 15px;
	justify-content: center;
}

.btn {
	padding: 16px 28px;
	border-radius: 6px;
	font-weight: 600;
	text-decoration: none;
	font-size: 15px;
}

.btn.primary {
	background: #f5b02a;
	color: #000;
}

.btn.outline {
	border: 2px solid #fff;
	color: #fff;
}

.btn.outline:hover {
	background: #fff;
	color: #000;
}


.swiper-wrapper {
	position: relative;
}

.swiper-wrapper .status {
	position: absolute;
	left: 15px;
	top: 6px;
}

.status {
	color: white;
	background-color: #c99a39;
	padding: 5px 10px;
	border-radius: 10px;
}

.status p {
	margin: 0px;
	font-size: 14px;
	font-weight: 600;

}



/*.project-banner .swiper {
      width: 100%;
      height: 100%;
    }*/

.project-banner .swiper-slide {
	text-align: center;
	font-size: 18px;
	background: #444;
	display: flex;
	justify-content: center;
	align-items: center;
}

.project-banner .swiper-slide img {
	display: block;
	width: 100%;
	height: 600px;
	/*object-fit: fill;*/
	object-fit: cover;

}



.project-banner .swiper {
	width: 100%;
	max-height: 700px;
	margin-left: auto;
	margin-right: auto;
}

.project-banner .thumbnail-slider {
	height: 100px;
}

.project-banner .swiper-slide {
	background-size: cover;
	background-position: center;
}

.mySwiper2 {
	height: 80%;
	width: 100%;
}

.mySwiper {
	height: 20%;
	box-sizing: border-box;
	padding: 10px 0;
}

.mySwiper .swiper-slide {
	width: 25%;
	height: 100%;
	opacity: 0.4;
}

.mySwiper .swiper-slide-thumb-active {
	opacity: 1;
}

/*.project-banner .swiper-slide img {
      display: block;
      width: 100%;
      height: 100%;
	  object-fit: fill;
      
    }*/

.project-banner .swiper-button-next:after,
.project-banner .swiper-rtl .swiper-button-prev:after {
	display: none !important;

}

.project-banner .swiper-button-prev:after,
.project-banner .swiper-rtl .swiper-button-next:after {
	display: none !important;
}

.project-banner .swiper-button-next i,
.project-banner .swiper-button-prev i {
	font-size: 20px;
}


.project-banner .swiper-button-next,
.project-banner .swiper-button-prev {
	width: 60px;
	height: 60px;
	background: rgba(0, 0, 0, 0.5);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}



.property-wrapper {
	display: flex;
	gap: 40px;
	padding: 50px 80px;
}

.property-left {
	width: 70%;
}

.property-header h2 {
	font-size: 30px;
	font-weight: 600;
}

.location {
	color: gray;
	font-size: 15px;
}

.price {
	margin-top: 10px;
	color: #c8901c;
	font-weight: 700;
	font-size: 26px;
}

.badge {
	background: #f5b02a;
	padding: 5px 12px;
	border-radius: 4px;
	font-size: 13px;
	color: #000;
	font-weight: 600;
}

.property-desc {
	margin: 30px 0;
}

.property-desc p {
	line-height: 1.7;
}

.readmore {
	display: block;
	margin-top: 10px;
	color: #c8901c;
}

.property-highlights {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	border: 1px solid #eee;
	border-radius: 6px;
	padding: 20px;
	margin-bottom: 40px;
}

.property-highlights .box {
	width: 23%;
}

.property-highlights h4 {
	color: gray;
	font-size: 14px;
}

.property-highlights p {
	font-weight: 600;
}

.property-amenities ul {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	padding: 0;
	margin: 30px 0;
}

.property-amenities ul li {
	list-style: none;
	font-size: 16px;
}

.property-map iframe {
	border: 0;
}

/* Right Sticky Form */
.property-form {
	width: 30%;
	position: relative;
}

.form-card {
	position: sticky;
	top: 30px;
	background: #fff;
	padding: 30px;
	border-radius: 8px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.form-logo {
	width: 120px;
	margin-bottom: 10px;
}

form input,
form textarea {
	width: 100%;
	padding: 13px;
	border: 1px solid #ddd;
	margin-bottom: 12px;
	border-radius: 6px;
	font-size: 15px;
}

.captcha-box {
	margin: 15px 0;
	font-size: 15px;
}

.btn {
	width: 100%;
	padding: 15px;
	background: #000;
	color: #fff;
	text-transform: uppercase;
	border: none;
	border-radius: 6px;
	cursor: auto;
	font-weight: 600;
}

.contact-info {
	font-size: 14px;
	color: gray;
	margin-top: 30px;
}

.Property-section .sticky-top {
	z-index: 11;
	top: 135px;

}

.sticky-top .card {
	background-color: #ba842f42;
}

.price-card {
	border: 1px solid #e2e2e2;
	border-radius: 12px;
	position: relative;
	transition: 0.3s;
}

.price-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 26px rgba(0, 0, 0, 0.1);
}

.amenities-section h2 {
	font-size: 32px;
}

.amenity-box {


	background: #fff;
	border-radius: 12px;
	border: 1px solid #e3e3e3;
	transition: .3s;
	height: 140px;
	align-items: center;
	margin-bottom: 10px;
}

.amenity-box h6 {
	color: var(--text-color);
	font-size: 14px;
	line-height: 20px;
	padding-top: 10px;
}

.amenity-box:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.amenity-icon {
	height: 40px;
	width: 40px;
	object-fit: contain;
}

.amenity-box i {
	font-size: 40px;
	color: #b19777;
	padding-bottom: 20px;
}

.advantages-list {
	list-style: none;
	padding: 0;
}

.advantages-list span {
	/*padding-left: 10px;*/
	padding-bottom: 5px;
}

.location-advantages .advantages-list li {
	display: flex;
	align-items: baseline;
}

.advantages-list li i {
	color: #b19777;
	padding-right: 10px;
}

.swiper-slide .banner-img {
	height: 200px;
}

.property-details {
	padding: 10px;
}

.btn:hover {
	color: var(--bs-btn-hover-color);
	background-color: #b19777;
	border-color: #b19777;
}


.whtsap-btn:hover {
	color: #fff;
	text-decoration: none;
}

.whtsap-btn {
	position: fixed;
	bottom: 90px;
	right: 30px;
	z-index: 999;
	font-size: 31px;
	color: #fff;
	padding: 0;
	margin: 0;
	height: 50px;
	width: 50px;
	border-radius: 50%;
	background-color: #248e4f;
	text-align: center;
	justify-content: center;
	align-items: center;
	display: flex;
}

.whtsap-btn span {
	font-size: 32px;
}

.whtsap-btn img {
	height: 50px;
	width: 50px;
}

#whtsap {
	bottom: 30px;
}


.lux-testimonial-section {
	padding: 50px 0;
	background: #b197771c;
	position: relative;
}

/*.section-title .sub-heading {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #b48c5b;
  font-weight: 500;
}*/

.section-title .main-heading {
	font-size: 38px;
	font-weight: 700;
	margin-bottom: 50px;
	color: #2d2d2d;
}

.section-title span {
	color: #b48c5b;
}

.testimonial-card {
	max-width: 900px;
	margin: auto;
	background: #ffffff;
	padding: 45px 40px;
	border-radius: 22px;
	/*box-shadow: 0 12px 45px rgba(0, 0, 0, 0.08);*/
	text-align: center;
	/*height: 100%;*/
}

.rating i {
	color: #e0b168;
	margin: 0 2px;
	font-size: 16px;
}

.message {
	font-size: 18px;
	line-height: 32px;
	color: #555;
	margin-top: 20px;
	font-style: italic;
}

.author {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 14px;
	margin-top: 30px;
}

.author img {
	width: 65px;
	height: 65px;
	border-radius: 50%;
	object-fit: cover;
}

.author h4 {
	font-size: 20px;
	margin: 0;
}

.author span {
	font-size: 13px;
	color: #8c8c8c;
}

/* Swiper pagination */
.swiper-pagination-bullet {
	background: #d2c3b1;
}

.swiper-pagination-bullet-active {
	background: #b48c5b;
}


.footer-logo .marquee {
	overflow: hidden;
	white-space: nowrap;
	width: 240px;
}

.footer-logo .marquee-track {
	display: inline-flex;
	animation: scroll 10s linear infinite;


}

.footer-logo .marquee-track p {
	margin-right: 40px;
	word-spacing: 5px;
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 3px;
}

@keyframes scroll {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
	}
}

.architecture {
	background-color: #2b2b2b;
}


.architecture .swiper {
	width: 100%;
	height: 260px;
}

.architecture .swiper-wrapper {
	align-items: stretch;
}

.architecture .swiper-slide {
	position: relative;
	overflow: hidden;
	border-radius: 18px;
	cursor: auto;
	transition: transform 0.4s ease;
}

/* IMAGE */
.architecture .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

/* ===== HOVER EXPAND (DESKTOP ONLY) ===== */
@media (hover: hover) {
	.architecture .swiper:hover .swiper-slide {
		transform: scaleX(0.9);
	}

	.architecture .swiper-slide:hover {
		transform: scaleX(1.2);
		z-index: 5;
	}

	.architecture .swiper-slide:hover img {
		transform: scale(1.05);
	}
}

/* ===== OVERLAY ===== */
.architecture .swiper-slide::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, .55), transparent);
	opacity: 0;
	transition: 0.4s;
}

.architecture .swiper-slide:hover::after {
	opacity: 1;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
	.hero-slider-layout .swiper {
		height: 520px;
	}

	.single-counter {
		flex-basis: 47%;
		padding: 5px;
	}

	.single-counter p {
		font-size: 11px;
	}

	.counter-wrapper-one {
		display: flex;
		align-items: center;
		gap: 18px !important;
		position: relative;

		justify-content: center;
	}

	.vision-mission-box {
		display: block;
	}

	.mySwiperpro .swiper-slide {
		font-size: 15px !important;
		padding: 10px !important;
	}

	.hero-content-details h1 {
		font-size: 30px;
	}

	.hero-content-details p {
		font-size: 14px;
	}

	.btn {
		font-size: 12px;
	}

	.hero-banner-details {
		height: 50vh;
	}

	.section-header h2 {
		font-size: 26px;
	}

	.project-banner .swiper-slide img {
		height: 305px;
	}

	.crafting p {
		font-size: 14px !important;
	}

	.message {
		font-size: 15px;
		line-height: 30px;
	}

	.testimonial-card {
		padding: 20px 10px;
		margin: 10px;
	}
	.portfolio-counter .counter-wrapper-two .single-counter h2{
		font-size: 25px  !important;
	}
	.our-services .text-anime-style-2 {
padding-top: 20px;
}



}

.architecture .section-title {
	background-color: #1c1b1b;
	text-align: center;
	padding: 50px;

}

.project-name .swiper {
	/*width: 100%;*/
	/*max-width: 900px;*/
	padding: 20px 0;
}

/*.mySwiperpro .swiper-wrapper {
	width: 400px;
	height: 200px;

}*/

.mySwiperpro .swiper-slide {
	/*min-height: 90px;*/
	color: #ffffff;
		    /*width: auto !important;*/
	padding: 20px;
	background: #b19777;
	/*display: flex;
	justify-content: center;
	align-items: center;*/
	font-size: 1.1rem;
	text-align: center;
	font-weight: 600;
	border-radius: 10px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	text-transform: uppercase;
}

.project-name .mySwiperpro .swiper-slide{
	    /*width: auto !important;*/
    white-space: nowrap;
    font-size: 16px;
    font-weight: 500;
    text-wrap: wrap;
    /*min-height: 80px;*/
    text-align: center;
    vertical-align: middle;
    /*display: flex;*/
    align-items: center;
	text-align: center;
}

.swiper-pagination-bullet-active {
	background: #007bff;
}

.swiper-button-next,
.swiper-button-prev {
	color: #007bff;
}

.crafting p {
	margin: 20px auto;
	font-size: 20px;
	/* max-width: 700px; */
	color: #eee !important;
	/*font-weight: 500;*/
}

.portfolio-section {
	background-color: #f7f4ef;
}

.portfolio-subtitle {
	max-width: 750px;
	font-size: 16px;
	color: #333;
}

.portfolio-card {
	background-color: #000;
	color: #fff;
	overflow: hidden;
}

.portfolio-card img {
	height: 260px;
	width: 100%;
	object-fit: cover;
}

.portfolio-content {
	padding: 25px;
}

.portfolio-content h4 {
	margin-bottom: 15px;
	color: #b19777;
}

.portfolio-content h6 {
	margin-top: 15px;
	font-weight: 600;
	color: #b19777;
}

.portfolio-content p {
	/*font-size: 14px;*/
	line-height: 1.6;
}

.portfolio-content ul {
	padding-left: 18px;
	margin: 10px 0;
}

.portfolio-content ul li {
	/*font-size: 14px;*/
	margin-bottom: 6px;
}

.small-text {
	/*font-size: 13px;*/
	opacity: 0.85;
}

.counter-wrapper-two .single-counter img {

	width: 70px;
	height: 70px;
	background-color: #efd6b7;
	/*background-color: var(--divider-color);*/
	border-radius: 50%;
	justify-content: center;
	align-items: center;
	margin-bottom: 10px;
	transition: all 0.4s ease-in-out;
	padding: 8px;
}

.portfolio-counter .counter-wrapper-two .single-counter h2 {
	font-size: 32px;

}

.why-choose-about {
	list-style: none;
	padding: 0px;
}

.why-choose-about .projects i {
	color: #ffffff;
	background-color: #b19777;
	padding: 6px;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	align-items: center;
	text-align: center;
	font-size: 25px;
}

.why-choose-about .projects .about-facility {
	display: flex;
	align-items: center;
	gap: 15px;
}

.swiper-vertical-left,
.swiper-vertical-right {
	height: 700px;
}

.swiper-wrapper {
	transition-timing-function: linear !important;
	/* 🔑 smooth flow */
}

.single-product-one a img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	overflow: hidden;
}

.achieved ul li i {
	color: #b19777;
	padding-right: 10px;

}

.achieved ul li {
	padding-bottom: 10px;
}

#floor-plans img {
	height: 400px;
	object-fit: cover;
	overflow: hidden;
}

.location-advantages img {
	max-height: 500px;
	object-fit: cover;
	overflow: hidden;
}

/* ADDITIVE animation layer */
/* Smooth, premium animation */
.hero-animate {
	opacity: 0;
	transform: translateY(30px);
	transition:
		opacity 1s cubic-bezier(0.25, 0.8, 0.25, 1),
		transform 1s cubic-bezier(0.25, 0.8, 0.25, 1);
	will-change: opacity, transform;
}

.hero-animate.is-active {
	opacity: 1;
	transform: translateY(0);
}

/* smoother stagger */
.delay-1 {
	transition-delay: 0.25s;
}

.delay-2 {
	transition-delay: 0.45s;
}

.delay-3 {
	transition-delay: 0.65s;
}

.amenities-section h5 {
	padding-bottom: 20px;
	padding-top: 10px;
}

.Property-section h4,
.Property-section h3,
.Property-section h5 {
	padding-bottom: 10px;

}


.main-header.active-sticky-header {
	background: transparent;
}

.main-header.active-sticky-header.menu-open {
	background: var(--highlight);
}

.main-header.menu-open {
	background: var(--highlight);
	/* change your color */
}



.gallery-swiper {
  overflow: hidden;
}

.gallery-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}

.gallery-swiper .swiper-slide {
/*  width: 300px;*/
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translate3d(0,0,0);
  will-change: transform;
}

.gallery-swiper .swiper-slide img {
/*  width: 100%;*/
  display: block;
  pointer-events: none;
  user-select: none;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.mySwiperpro {
    overflow: hidden;
}

.mySwiperpro .swiper-wrapper {
    transition-timing-function: linear !important;
	display: inline-flex !important;
}

.mySwiperpro .swiper-slide {
    width: auto;
    white-space: nowrap;
    font-size: 18px;
    font-weight: 500;
}

.marquee-wrapper {
    overflow: hidden;
    width: 100%;
    padding: 20px 0;
	margin: 20px 0;

}

.marquee-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: marqueeScroll 40s linear infinite;
}

.marquee-item {
    background: #b59a74;  /* brown shade */
    color: #fff;
    padding: 18px 40px;
    border-radius: 12px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.5s ease;
	text-transform: uppercase;
}

/*.marquee-item:hover {
    transform: translateY(-5px);
}*/

/* Continuous smooth movement */
@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}