@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    outline: none;
    text-decoration: none;
    border: none;
    scroll-behavior: smooth;
    font-family: 'Montserrat', sans-serif;
}

:root {
    --main-color: #bda589;
    --bg-color: #fff;
    --bg-black: #000;
    --bg-second-color: #f7f8f9;
    --bg-third-color: #f4f4f4;
    --bg-transparent-main: rgb(172 134 59 / 70%);
    --bg--green: #18a800;
    
    --text-dark: #888;
    --text-color-dark-heading: #3a3d45;
    --text-color-light: #fff;
    --text-color-dark: #1b1c1f;
    --text-color-main: var(--main-color);

    --star-color: #ffb600;
	
    --border-green-color: .1rem solid rgb(18 141 125 / 45%);
    --border-main-color: .1rem solid var(--main-color);
    --border-white: 0.1rem solid var(--bg-color);
    --border: .1rem solid #ccc;

    --box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
    --box-shadow-whatsapp: 1px 1px 4px rgba(60, 60, 60, 0.4);
    --box-shadow-project: -1px 2px 10px 1px rgba(0, 0, 0, 0.15);
    --box-shadow-drop-down: 0 3px 4px rgba(0, 0, 0, .2);
    --box-shadow-green: 0 3px 5px rgb(24 168 0);

    --swiper-navigation-size: 1.5rem !important;
	--swiper-navigation-top-offset: 45% !important;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
}
body {
    overflow-x: hidden;
	font-size: 1.4rem;
}
section {
    padding: 5rem 3% 5rem;
}
footer {
    padding: 2rem 3%;
}
a {
    cursor: pointer;
    color: var(--bg-black);
}
a:active {
    color: var(--bg-black);
}
a.btn:active {
    color: var(--bg-black);
}
a.btn.reverse:active {
    color: var(--main-color)
}
.error-message {
    color: red;
    font-size: 12px;
}

input,
select,
textarea {
    font-size: 1.4rem;
    font-weight: 500;
    padding: 1.5rem;
    width: 100%;
    border: var(--border-main-color);
    border-radius: .6rem;
    user-select: none;
    color: var(--text-color-dark);
}
select {
     -webkit-appearance: none;
     -moz-appearance: none;
     text-indent: 1px;
     text-overflow: '';
     color: #909090;
     /*background: transparent;*/
     cursor: pointer;
}
.btn {
    padding: 1.5rem 4rem;
    background-color: var(--main-color);
    color: var(--bg-color);
	border: var(--border-main-color);
    font-size: 1.6rem;
    font-weight: 600;
    border-radius: 50rem;
    width: max-content;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.btn:hover {
    background-color: var(--bg-color);
    color: var(--main-color);
}
.text-white{
	color: var(--bg-color);
}
.color-main{
    color: var(--main-color);
}
.text-center{
	text-align: center;
	text-align: -webkit-center;
}
.text-left {
    text-align: left;
	text-align: -webkit-left;
}
.text-right{
	text-align: right;
	text-align: -webkit-right;
}
.d-flex{
    display:flex;
}
.gap1{
    gap: 1rem;
}
.d-grid{
    display:grid;
}
.uppercase{
    text-transform: uppercase;
}
.align-center{
	align-items: center;
}
h2{
	font-size: 3rem;
}
h3{
	font-size: 2rem;
}
h4{
	font-size: 1.6rem;
}
p{
	font-size: 1.5rem;
}
.w-100{
	width: 100%;
}
.w-90{
	width: 90%;
	margin: 0 auto;
}
.p-0 {
    padding: 0!important;
}
.pb {
    padding-bottom: 0!important;
}
.bg-fixed {
    width: 100%;
/*    height: 100vh;*/
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.7) 100%), url("../img/fixed-background.jpg") no-repeat center center;
    background-size: cover;
    z-index: -1; 
	background-attachment: fixed;
    background-position: 50%;
    background-repeat: repeat;
    background-size: cover;
    -webkit-background-size: cover;
}

/*Swiper*/
.swiper {
    width: 100%;
    height: 100%;
	z-index: 0 !important;
}
.swiper-slide {
    font-size: 1.8rem;
    background: #ffffff00;
    display: flex;
    justify-content: center;
    align-items: center;
}
.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    user-select: none;
}
.swiper-button-next, 
.swiper-button-prev {
    background-color: var(--main-color);
    text-align: center;
    color: var(--bg-color) !important;
    border-radius: 50rem;
    padding: 2rem;
    transition: background-color .5s ease;
    font-weight: 800;
}

/*Fixed Btn*/
.fixed-btns {
    position: fixed;
    bottom: 1rem;
    right: 2rem;
    z-index: 0;
    flex-direction: column;
    gap: 1.5rem;
}
.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}
.top a {
     background-color: var(--main-color);
     border-radius: 50%;
	 top: var(--swiper-navigation-top-offset, 50%) !important;
     padding: 0.5rem;
     transition: background-color .3s, opacity .5s, visibility .5s;
     opacity: 0;
     visibility: hidden;
     cursor: pointer;
}
.top a i {
     font-size: 3rem;
     color: var(--bg-color);
}
.top #back-to-top.show {
  opacity: 1;
  visibility: visible;
}
a.float {
    width: 6.2rem;
    height: 6.2rem;
	font-size: 1rem;
    color: var(--text-color-light);
	background: var(--bg--green);
    border-radius: 50%;
    box-shadow: var(--box-shadow-whatsapp);
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
}


/*=====Banner hero=====*/
.hero {
    padding: 0;
    position: relative;
	background: #000;
}
.hero .hero-wrapper{
	line-height: 0;
}
.hero .hero-wrapper img {
	max-height: 90vh;
    height: 90vh;
	width: 100%;
	object-fit: cover;
    object-position: center;
	opacity: 0.5;
}
.hero-hed{
    position: absolute;
    top: 50%;
	left: 50%;
	gap: 2rem;
	width: 80%;
/*    z-index: 1;*/
    transform: translate(-50%, -50%);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
	color: var(--bg-color);
}
.hero-hed h2 {
    font-size: 4rem;
}
.hero-hed p {
    font-size: 1.8rem;
}

/* =====Tab section===== */
.tab-content{
    box-shadow: var(--box-shadow-project);
    margin: 3rem auto 0;
	padding: 2% 2%;
	border-radius: 2rem;
}
.sub-tab-content {
	display: none;
}
.sub-tab-content.active{
	display: block;
}
.sub-tab::after {
    content: "";
    position: absolute;
    top: 0;
    right: -2.8rem;
    height: 100%;
    width: 0.2rem;
    background-color: var(--main-color);
}
.sub-tab:last-child::after {
    display: none;
}
.tab-offplan .swiper-slide img{
	border-radius: 1.5rem;
    cursor: pointer;
}
.property-section {
	display: grid;
	grid-template-columns: 1.8fr 1fr;
	gap: 3rem;
}
.property-tab{
	display: grid;
    grid-template-columns: 1fr;
	gap: 2rem;
}
.property-details {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 2rem;
}
.property-highlights {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.property-highlights ul li, .property-highlights p {
    padding-bottom: 1rem;
	font-size: 1.5rem;
}
.property-highlights ul li:last-child {
    padding: 0;
}
.property-highlights ul {
    padding-left: 2rem;
    /*line-height: 2.2rem;*/
}
.sub-tabs {
	display: flex;
	justify-content: center;
	gap: 5rem;
	margin-bottom: 2rem;
	padding: 0;
	list-style: none;
	text-transform: uppercase;
}
.sub-tabs li {
	cursor: pointer;
    padding: 1rem 1.8rem;
    font-size: 1.5rem;
    border: none;
    background-color: rgb(248 249 251);
    font-weight: 600;
    color: var(--bg-black);
    text-align: center;
	position: relative;
}
.sub-tabs li.active {
    color: var(--bg-color);
    background-color: var(--main-color);
    border-radius: 0.6rem;
}
.tab-hed{
	display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: center;
}
.tabhed-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.buttons-tab {
    display: flex;
    justify-content: center;
    align-items: center;
	gap: 3rem;
}
.floorplans-btn {
    background-color: #e7eef3;
    border-color: #e7eef3;
    color: var(--main-color);
    width: 100%;
    padding: 0.5rem 2rem;
	justify-content: center;
    align-items: center;
    display: flex;
    border-radius: 1rem;
	box-shadow: var(--box-shadow-drop-down);
}
.floorplans-btn i {
    font-size: 4rem;
}

/*==========Tab Slider Popup==========*/
.slider-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
.slider-popup.active {
    display: flex;
}
.slider-popup .swiper {
    width: 75%;
    height: 80%;
}
.slider-popup .swiper-slide img {
    width: 100%;
    border-radius: 1rem;
    transition: transform 0.3s ease;
}
.close-btn-slide {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 5rem;
    line-height: 0.5;
    color: var(--bg-color);
    cursor: pointer;
    z-index: 1010;
}



/* =====project section===== */
.project {
    padding-top: 0;
}
.project-carosel {
    padding:  0rem 0rem 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
}
.project-card {
    display: none;
    border-radius: 1rem;
    box-shadow: var(--box-shadow-project);
}
.project-card a{
	position: relative;
	overflow: hidden;
	display: flex;
}
.card-img-top {
    aspect-ratio: 1 / 0.8;
    border-radius: 1rem 1rem 0 0rem;
    width: 100%;
    object-fit: cover;
}
.projectcard-body {
    padding: 2rem;
}
.propmore{
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: 1rem;
    /*z-index: 99;*/
    color: var(--bg-black);
    background: var(--bg-color);
    width: fit-content;
    padding: 0.5rem;
    border-radius: 0.3rem;
}
.propList {
    display: flex;
	flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    background: var(--bg-color);
    padding: 0.5rem;
	border-radius: 0.5rem;
	 gap: 0.5rem;
}
.propListSmall {
    list-style: none;
    display: flex;
    align-items: center;
	font-size: 1.5rem;
}
.propList i {
    font-size: 2rem;
    margin-right: 0.5rem;
}
.propListSmall li {
    display: flex;
    align-items: center;
}
.propList-list{
	display: flex;
    align-items: center;
	justify-content: space-between;
	gap: 1rem;
}
.propList-list .btn {
    padding: .9rem 1.2rem;
    gap: 0.3rem;
    align-items: center;
	font-size: 1.5rem;
}
.propList-list .btn:first-child {
    background: #179f00;
    border-color: #179f00;
}
.propList-list .btn:hover:first-child {
    background: #ffffff;
    border-color: #179f00;
    color: #179f00;
}
.propList-list .btn i {
    font-size: 2rem;
}
.propListSmall li+li:before {
    padding: 0 1rem;
    color: #ddd;
    content: "|";
    font-size: 2rem;
    font-family: 'boxicons';
}
.projectcard-body {
    display: flex;
    flex-direction: column;
    gap: 2rem;  
}
.projectcard-body h3 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 1.8rem;
}
.project-card .slider-popup .swiper-slide img {
    width: auto;
    margin: 0 auto;
}



/* =====Our Partners section===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}
.form-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    background: #ffffffd9;
    padding: 2rem;
    border-radius: 1rem;
	justify-content: center;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  justify-content: center;
}
.form-column {
  display: flex;
  flex-direction: column;
  /*gap: 1rem;*/
  width: 100%;
}
textarea.form-control {
  resize: vertical;
}
.contact-info img{
	border-radius: 1rem;
	object-fit: cover;
}

/*Invest Dubai*/
.invest-icon {
	display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    justify-content: space-between;
    border-bottom: var(--border);
    gap: 0rem;
    text-align: center;
    margin: 3% auto 0;
	background: var(--bg-color);
	border-radius: 1rem;
}
.icon-hed {
	padding: 3rem 3.5rem;
	border-right: var(--border);
	display: flex;
	gap:  3rem;
    flex-direction: column;
    justify-content: start;
    align-items: center;
}
.icon-hed img {
	width: 6rem;
	height: 6rem;
	filter: brightness(0) saturate(100%) invert(95%) sepia(88%) saturate(592%) hue-rotate(306deg) brightness(80%) contrast(80%);
}
.icon-hed p {
	font-size: 1.8rem;
	font-weight: 600;
}
.icon-hed:last-child {
	border-right: none;
}

/* =====Choose Us Section===== */
/*Choose Dubai*/
.choose-p{
    padding-top: 0;
    padding-bottom: 0;
}
.chose-icon {
	display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: space-between;
    border-bottom: var(--border);
    gap: 0rem;
    text-align: center;
    margin: 3% auto 3rem;
    width: 80%;
	background: var(--bg-color);
	border-radius: 1rem;
}

.icons-hed p {
    padding: 1.5rem 3.5rem;
    font-size: 1.6rem;
    font-weight: 500;
}


/* =====Testimonial Section===== */
#testimonial-swiper {
   margin: 3% 0rem 0;
   text-align: center;
   position: relative; 
}
.testimonial-item {
   background: rgb(248 249 251);
   padding: 2rem;
   border-radius: 1rem;
   box-shadow: var(--box-shadow-project);
   display: flex;
   gap: 2rem;
   flex-direction: column;
   text-align: left;
}
.testimonial-item img {
   width: 6rem;
}
.testimonial-item p{
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.testimonial-hed {
   display: flex;
   gap: 1rem;
   justify-content: space-between;
   align-items: center;
}
#testimonial-swiper .swiper-btns {
    margin-top: 4rem;
}
#testimonial-swiper .swiper-button-next, 
#testimonial-swiper .swiper-button-prev {
    display: contents !important;
}
#testimonial-swiper .swiper-button-next::after, 
#testimonial-swiper .swiper-button-prev::after {
    background-color: var(--main-color);
    text-align: center;
    color: var(--bg-color) !important;
    border-radius: 50rem;
    width: 4.5rem;
    height: 4.5rem;
    transition: background-color .5s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.testi-hed{
	display: flex;
	align-items: center;
	gap: 1rem;
}
.stari {
    display: flex;
    gap: 0.3rem;
    font-size: 2rem;
    color: #f8a206;
}



/* =====Our Partners section===== */
.partners{
	display: grid;
	grid-template-columns: 0.5fr 2fr;
	gap: 1rem;
	align-items: center;
    background: #f8f9fb;
}
#partners-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}
#partners-swiper .swiper-slide img {
    width: 100%;
    height: 11.5rem;
    object-fit: contain;
}

/* ======Footer section =====*/
.footer{
	text-align: center;
	color: var(--text-color-light);
	padding: 2rem 0;
	display: flex;
    justify-content: space-around;
	background: var(--bg-black);
}
.footer a{
    color: var(--text-color-light);
}

/* ======Popup Overlay =====*/
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 84%);  /* Dark semi-transparent background */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
/* Popup Content Box */
.popup-content {
    background: #fff;
    padding: 2rem;
    width: 100%;
    max-width: 50%;
    border-radius: 1rem;
	z-index: 99;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
/* Close Button */
.close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 5rem;
    line-height: 0.5;
    color: #555;
    cursor: pointer;
}
.close-btn:hover {
    color: var(--bg-black);
}
/* Show Popup when Active */
.popup-overlay.active {
    opacity: 1;
    pointer-events: auto;
}
#poupformcont .form-column.slect,
.contact-info .form-column.slect{
	position: relative;
}
#poupformcont .form-column.slect::after,
.contact-info .form-column.slect::after{
	content: "\ed35";
    font-size: 2rem;
    font-family: 'boxicons';
    color: #000;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}
.input-text {
    font-size: 1.6rem;
    font-weight: bold;
    padding: 1rem;
    align-items: center;
    display: flex;
    border-radius: .6rem;
    color: var(--text-color-dark);
    background: var(--main-color);
}
.swiper-counter {
    position: absolute;
    bottom: 0rem;
    right: 0;
    color: #000000;
    font-size: 1.6rem;
    background: rgb(255 255 255);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
}
.alert {
    position: absolute;
    top: 1rem;
    /*z-index: 9;*/
    background: var(--bg-color);
    padding: 2rem;
    right: 1rem;
    border-radius: 0.5rem;
}
.bt-text { 
    margin-top: 2rem;
}

/*info-circle*/
h4.info-circle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.info-circle i {
    color: #ffcf40;
    line-height: 0;
    font-size: 2rem;
} 
.info-circle i svg {
    width: 2rem;
    line-height: 0;
}
/* Modal background */
#Priceinfo {
    overflow-y: hidden;
}
.custom-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

/* Modal content box */
.custom-modal-content {
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 1.5rem;
    border-radius: 1rem;
    width: 33rem;
    position: relative;
    height: 30rem;
    overflow-y: scroll;
}
/* Close button */
.custom-modal .close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 4.5rem;
    border-radius: 0.8rem;
    line-height: 0.5;
    padding: .5rem;
    cursor: pointer;
    background: #f7f7f7;
    border: 1px solid #dee2e6;
}
/* Table Styling */
.custom-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #dee2e6;
    border-bottom: none;
}
.custom-table td {
    padding: 1rem;
    border-bottom: 1px solid #ddd;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.6rem;
}
.custom-table td span {
    font-size: 2rem;
    font-weight: 600;
}


/*=====responsive breakpoints less than 5200px Queries=====*/
@media (width<=5200px) {
    html {
        font-size: 220%;
    }
}

@media (width<=5000px) {
    html {
        font-size: 200%;
    }
}

@media (width<=4500px) {
    html {
        font-size: 180%;
    }
}

@media (width<=4000px) {
    html {
        font-size: 160%;
    }
}

@media (width<=3500px) {
    html {
        font-size: 140%;
    }
}

@media (width<=3000px) {
    html {
        font-size: 120%;
    }
}

@media (width<=2500px) {
    html {
        font-size: 100%;
    }
}

@media (width<=2000px) {
    html {
        font-size: 80%;
    }
}

@media screen and (max-width: 1920px) and (min-width: 1500px) {
    html {
        font-size: 68%;
    }
    .property-tab .swiper-slide img {
        height: 55rem;
    }
    .property-tab .fullscreenSwiper .swiper-slide img {
        height: inherit;
    }
    .contact-info img {
        aspect-ratio: 1 / 0.9;
    }

}

@media (width<=1500px) {
    html {
        font-size: 60%;
    }
}

@media (width<=1200px) {
    html {
        font-size: 53%;
    }
}

@media (width<=1024px) {
    html {
        font-size: 51%;
    }
}

@media (width<992px) {
    html {
        font-size: 50%;
    }
}

@media (width<900px) {
	
}

@media (width<=768px) {
    
}

@media (width<601px) {
    html {
        font-size: 48%;
    }
    .hero .hero-wrapper img {
        max-height: 65vh;
        height: 65vh;
    }
    .project-carosel {
        grid-template-columns: 1fr;
    }

	.property-section, .contact-grid {
    	grid-template-columns: 1fr;
		gap: 3rem;
	}
	.sub-tabs {
        display: grid;
        gap: 1rem;
    }
	.sub-tab::after{
		display: none;
	}
	.tab-hed {
    	grid-template-columns: 1fr;
		gap: 1rem;
	}
	.tab-hed .btn {
		width: auto;
	}
	.tab-content {
		padding: 4% 3%;
		border-radius: 1rem;
	}
	.w-90 {
    	width: 100%;
	}
	.invest-icon {
    	grid-template-columns: 1fr 1fr;
	}
	.icon-hed {
    	padding: 2rem 2.5rem;
	}
	.icon-hed:last-child {
		grid-column: 1 / 3;
	}
	.floorplans-btn i {
		font-size: 5rem;
		padding: 1rem;
	}
	h2 {
		font-size: 2.5rem;
	}
	h3 {
		font-size: 2rem;
	}
	.partners {
    	grid-template-columns: 1fr;
	}
	.hero-hed h2 {
		font-size: 3rem;
	}
	.hero-hed p {
		font-size: 1.6rem;
	}
	.hero-hed {
    	width: 95%;
	}
	.popup-content {
    	max-width: 90%;
		padding: 0rem;
	}
	.popup-content .d-flex.gap1 {
		display: grid;
	}
	.footer {
        padding: 2rem;
        display: grid;
        gap: 1rem;
	}
	#partners-swiper .swiper-slide img {
        height: 14rem;
	}
	.chose-icon {
         width: 100%;
	}
	.icons-hed p {
        padding: 1rem 1rem;
	}
}

@media only screen and (max-width: 480px) {
    
}

@media only screen and (max-width: 414px) {
    
}

@media only screen and (max-width: 380px) {

}

@media only screen and (max-width: 330px) {
	
}

@media only screen and (max-width: 320px) {}