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

/* Basic typography */
body {
	font-family: "Mulish", sans-serif;
	line-height: 1.6;
	color: #1b1b1b;
	letter-spacing: 0.5px;
	;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none !important;
}

/* Container */

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Cormorant Garamond", serif;
	margin: 0;

}

a {
	text-decoration: none;
	color: #0a044b;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
}

p {
	color: #242c35;
	font-family: "Mulish", sans-serif;
}
span{
		font-family: "Mulish", sans-serif;
}
.lp_header {
	padding: 35px 0;
	width: 100%;
	transition: 0.4s all ease;
	z-index: 1;
	-webkit-transition: 0.4s all ease;
	-moz-transition: 0.4s all ease;
	-ms-transition: 0.4s all ease;
	-o-transition: 0.4s all ease;
	position: absolute;
	top: 0;
	left: 0;
}

.button_a {
	background: #F15922;
	color: #fff;
	height: 48px;
	display: flex;
	width: 153px;
	align-items: center;
	justify-content: center;
	padding: 10px;
	border-radius: 8px;
	font-size: 17px;
}

.button_a img {
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	margin: 0 0 0 5px;
}

.button_a:hover img {
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
}

.banner_content {
	position: absolute;
	width: 100%;
	top: 0;
	display: flex;
	align-items: center;
	height: 100%;
	background: rgba(0, 0, 0, 0.36);
}

.banner_content_box {
	padding-left: 25px;
}

.banner_content_box h1 {
	font-size: 40px;
	color: #fff;
	line-height: 1.2;
	position: relative;
}

.banner_content_box h1::before {
	content: "";
	width: 5px;
	position: absolute;
	height: 100%;
	left: -25px;
	background: #be9b37;
}

.banner_content_box h1 span {
	color: #be9b37;
}

.banner_content_box p {
	color: #fff;
	font-size: 18px;
	margin: 20px 0 0 0;
}

#mainNavbar ul li a {
	color: #fff;
	font-size: 14px;
	text-transform: uppercase;
	margin: 0 27px;
	padding: 16px 0;
	font-weight: 500;
}
#mainNavbar ul li a::after {
	content: "";
	display: block;
	width: 0%;
	height: 1px;
	background: transparent;
	margin: 5px 0 0 0;
	transition: all 0.4s ease;
}
#mainNavbar ul li a:hover::after {
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	background: white;
	
}
.banner_form {
	padding: 25px;
	background: rgba(255, 255, 255, 0.96);
	border-radius: 15px;
	max-width: 392px;
	margin-left: auto;
}

.banner_form h2 {
	font-size: 30px;
	margin: 0 0 15px 0;
	font-weight: 600;
}

.banner_form .form-group .form-control {
	border-bottom: 1px solid rgba(51, 51, 51, 0.34) !important;
	border-radius: 0;
	border: none;
	padding: 9px 10px;
	outline: none;
	box-shadow: none;
	font-size: 16px;
	color: #000;
	background: transparent;
}

.banner_form .form-group select.form-control {
	background: url(../images/faq_close.svg) no-repeat right center;
	background-size: 12px;
}

.banner_form .form-group select.form-control option {
	letter-spacing: 1px;
}

.banner_form button {
	width: 100%;
	padding: 10px 0;
	font-size: 17px;
	margin: 15px 0 0 0;
	color: #fff;
	border: none;
	background: #be9b37;
}

.banner_form button img {
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	margin: 0 0 0 5px;
}

.banner_form button:hover img {
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
}

.banner_form button:hover {
	background: #000;
}

#btn_style_a {
	width: auto;
	padding: 10px 20px;
	font-size: 16px;
	margin: 20px 0 0 0;
	color: #fff;
	border: none;
	background: #be9b37;
	display: inline-flex;
	border-radius: 5px;
}

#btn_style_a img {
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	margin: 0 0 0 5px;
}

#btn_style_a:hover img {
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
}

#btn_style_a:hover {
	background: #000;
}

.custom-checkbox {
	appearance: none;
	width: 20px;
	height: 20px;
	border: 1px solid #F15922;
	border-radius: 4px;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.custom-checkbox:checked::before {
	content: "✔️";
	height: 20px;
	width: 20px;
	background-color: #EEE;
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 9px;
	color: #fff !important;
	border-radius: 4px;
	left: 0;
}

.banner_form .form-group label {
	display: flex;
	align-items: center;
	gap: 10px;
	width: 100%;
	font-size: 13px;
	color: #6E6D6D;
}

.title_h2 {
	font-size: 35px;
	color: #be9b37;
	line-height: 1.2;
	font-weight: 700;
}

.title_h6 {
	color: #504F4E;
	font-size: 22px;
	font-family: "Cormorant Garamond", serif;
}

.title_sub {
	color: #504F4E;
	font-size: 15px;
}

.who_we_box {
	gap: 50px;
	max-width: 1080px;
	margin: 0 auto;
	width: 100%;
}
.who_img_border {
	margin: 0;
	padding: 10px;
	border: 1px solid #dfdfdf;
	border-radius: 15px;
	margin-right: 47px;
}
.who_round {
	position: absolute;
	bottom: -45px;
	right: -64px;
	width: 200px;
	height: 200px;
	border-radius: 50%;
	overflow: hidden;
	border: 10px solid #be9b3778;
	display: flex;
	align-items: center;
	justify-content: center;
}
.who_round img {
	height: 100%;
}
.who_we_box figure,
.who_we_box figcaption {
	flex: 1;
	width: 50%;
}

.who_we_box figure img {
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}

.who_we_wre_sec_home {
	background: #FBFBFB;
}

.floting_contact {
	position: fixed;
	right: 0;
	z-index: 999;
	background: #be9b37;
	color: #fff;
	padding: 7px 17px;
	transform: rotate(-90deg);
	right: -48px;
	top: 50%;
	border-radius: 10px 10px 0 0;
}

.swiper_two img {
	width: 100%;
}

.plus_minus::before {
	content: '+';
	font-size: 24px;
	cursor: pointer;
}

.plus_minus.active::before {
	content: '−';
}

.our_featured_project_box {
	padding: 15px;
	background: #fff;
	box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.fea_title {
	display: flex;
	justify-content: space-between;
	margin: 0;
	border-bottom: 1px solid #e4e4e4;
	padding: 15px 0;
}
.fea_title h2 {
	font-size: 23px;
}
.feat_price p {
	margin: 0;
	background: #FBFBFB;
	padding: 10px;
	font-size: 15px;
}

.fea_list ul {
	display: flex;
	align-items: center;
	margin: 20px 0;
}

.fea_list ul li .icon_fea img {
	width: 22px;
	margin: 0 4px 0 0;
}

.fea_list ul li {
	font-size: 13px;
	margin: 0 9px 0 0;
}

.details_and_location {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.details_and_location p {
	display: flex;
	margin: 0;
	gap: 10px;
	font-size: 14px;
}

.details_and_location p span {
	width: 30px;
	min-width: 30px;
	max-width: 30px;
	background: #be9b37;
	display: flex;
	height: 30px;
	min-height: 30px;
	max-height: 30px;
	border-radius: 50%;
	justify-content: center;
	align-items: center;
	padding: 5px;
}

.details_and_location p span img {
	height: 18px;
}

.details_and_location a {
	width: 140px;
	max-width: 140px;
	min-width: 140px;
	display: flex;
	justify-content: center;
	background: #be9b37;
	height: 40px;
	align-items: center;
	color: #fff;
	font-size: 15px;
	border-radius: 5px;
}

.live_where_feel {
	background-size: cover !important;
	background-position: center center !important;
	padding: 117px 0;
	background-attachment: fixed !important;
	position: relative;
}
.live_where_feel::after {
	width: 35%;
	content: "";
	height: 100%;
	position: absolute;
	right: 0;
	background: rgba(0, 0, 0, 0.67);
	top: 0;
}
.live_where_feel_overleay {
	position: relative;
	z-index: 3;
}
.live_where_feel_box {
	background: #555;
	padding: 25px;
	border-radius: 15px;
}

.why_choose_us_boxes {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.why_choose_box {
	width: 48%;
	border: 1px solid #d7d7d7;
	padding: 20px;
	border-radius: 15px;
	transition: all 0.4s ease;
}
.why_choose_box:hover{
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.why_choose_box h3 {
	font-size: 24px;
	font-weight: 600;
	margin: 20px 0 8px 0;
}

.why_choose_box p {
	margin: 0;
	font-size: 14px;
}

.why_chose_img {
/*	height: 767px;*/
/*	overflow: hidden;*/
	padding: 0;
	border-radius: 15px;
	padding-right: 65px;
}
.why_chose_img img{
	border-radius: 15px;
	height: 100%;
}
.why_chose_round_1 {
	position: absolute;
	bottom: -16px;
	width: 200px;
	height: 200px;
	overflow: hidden;
	border-radius: 50%;
	border: 8px solid #fff;
	right: -30px;
}
.what_we_offer {
	background: #FBFBFB;
}

.small_heading {
	display: flex;
	text-transform: uppercase;
	font-size: 17px;
	font-weight: 700;
	margin: 0 0px 10px 0;
}

#offerAccordion .accordion-item {
	background: transparent;
	border-radius: 0;
}

#offerAccordion .accordion-item .accordion-header {
	border: none;
}

#offerAccordion .accordion-item {
	background: transparent;
	border-radius: 0;
	border: none;
	border-bottom: 1px solid #bdbdbd;
}

#offerAccordion .accordion-item .accordion-header button {
	background: transparent;
	border-radius: 0;
	border: none;
	outline: none !important;
	box-shadow: none !important;
	padding: 15px 0;
	font-size: 19px;
	color: #000;
	font-weight: 600;
}

#offerAccordion .accordion-body {
	padding: 12px 0;
}

.what_ofr_right {
	display: flex;
	flex-wrap: wrap;
	gap: 25px;
}

.what_ofr_right_box_1,
.what_ofr_right_box_2 {
	width: 47%;
	position: relative;
}
.why_chose_round_2 {
	width: 150px;
	height: 150px;
	position: absolute;
	right: 0;
	bottom: 194px;
	border: 8px solid #fff;
	overflow: hidden;
	border-radius: 50%;
}

.what_ofr_right_box_1,
.what_ofr_right_box_2 {
	background: #be9b37;
	padding: 0;
	border-radius: 15px;
	overflow: hidden;
}

.what_ofr_right_box_1_show,
.what_ofr_right_box_1_hide,
.what_ofr_right_box_2_show,
.what_ofr_right_box_2_hide {
	padding: 30px;
	height: 100%;
}

.what_ofr_right_box_1_show figure img,
.what_ofr_right_box_2_show figure img {
	height: 36px;
}

.what_ofr_right_box_1 h3,
.what_ofr_right_box_2 h3 {
	color: #fff;
}

.what_ofr_right_box_1 p,
.what_ofr_right_box_2 p {
	color: #fff;
	margin: 15px 0 0 0;
	font-size: 15px;
}

.what_ofr_right_box_1_hide,
.what_ofr_right_box_2_hide {
	text-align: center;
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	height: 100%;
	background: #be9b37;
	border-radius: 15px;
	align-items: center;
	transform: translateX(-100%);
	transition: all 0.4s ease-in-out;
}

.what_ofr_right a {
	background: #fff;
	padding: 6px 15px;
	display: inline-flex;
	margin: 15px 0 0 0;
	border-radius: 5px;
	font-size: 14px;
	text-transform: uppercase;
}

.what_ofr_right_box_1:hover .what_ofr_right_box_1_hide {
	transform: translateX(0%);
}

.what_ofr_right_box_2:hover .what_ofr_right_box_2_hide {
	transform: translateX(0%);
}

.crafticg_space_overleay {
	text-align: center;
	background: rgba(0, 0, 0, 0.57);
	padding: 150px 0;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.crafticg_space {
	background-size: cover !important;
	background-position: center center !important;
	background-attachment: fixed !important;
	position: relative;
}
.crafticg_space .hero_bnr_video{
height: 500px;
}

.crafticg_space_three_box_inr {
	background-size: cover !important;
	/* padding: 25px; */
	border-radius: 15px;
	overflow: hidden;
	text-align: center;
	background-position: center center !important;
	flex: 1;
   transition: transform 0.6s ease;
}
.crafticg_space_three_box_inr:hover{
	 transform: scale(1.05);
}
.crafticg_space_three_box_inr .title_h2 {
	font-size: 27px;
}

.crafticg_space_three_box_inr p {
	min-height: 105px;
}

.crafticg_space_three_box {
	position: relative;
	top: -65px;
}

.crafticg_space_three_box_inr_over_lay {
	padding: 25px;
	background: rgba(0, 0, 0, 0.73);
	height: 100%;
}

.crafticg_space_three_box_flex {
	gap: 25px;
	padding: 15px;
	background: #fff;
	border-radius: 15px;
}

.why_invest_dubai_overlay {
	background: rgba(0, 0, 0, 0.54);
}

.why_invest_icon_box figure img {
	height: 65px;
}

.why_invest_icon_box {
	text-align: center;
	margin-top: 30px;
	background: rgba(255, 255, 255, 0.91);
	border: 1px solid #ddd;
	padding: 30px;
	border-radius: 15px;
	transition: all 0.4s ease;
}
.why_invest_icon_box:hover {
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.why_invest_icon_box h3 {
	font-size: 24px;
	margin: 0 0 12px 0;
}
.why_invest_icon_box figure img {
    transition: transform 0.5s ease, filter 0.5s ease;
}

/* On hover: zoom and slightly rotate */
.why_invest_icon_box:hover figure img {
    transform: scale(1.1) rotate(5deg);
    filter: brightness(1.1);
}
.home_testimonial {
	background-size: cover !important;
	background-position: center center !important;

}

.home_testimonial_overlay {
	background: rgba(0, 0, 0, 0.47);
	padding: 120px 0;
}

.tst_box {
	width: 50%;
}

.home_testimonial_flex {
	gap: 20px;
}

.tst_caption_title figure {
	width: 80px;
	min-width: 80px;
	max-width: 80px;
	height: 80px;
	min-height: 80px;
	max-height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	border-radius: 50%;
	overflow: hidden;
}

.tst_caption_title {
	display: flex;
	align-items: center;
	gap: 20px;
	margin: 20px 0 0 0;
}

.tst_caption_title figure img {
	width: 100%;
}

.tst_caption {
	padding: 15px;
	background: #fff;
	border-radius: 15px;
	position: relative;
	min-height: 240px;
}

.tst_caption::after {
	background-color: #f9fafa;
	border-width: 0;
	box-sizing: content-box;
	content: "";
	display: block;
	height: 14px;
	position: absolute;
	transform: scaleX(.75) rotate(45deg);
	width: 14px;
	bottom: -5px;
	z-index: -4;
	left: 31px;
}

.tst_caption p {
	margin: 0;
}

.tst_caption_title h6 {
	font-size: 21px;
	color: #fff;
}

.tst_caption_title span {
	display: block;
	color: #fff;
}

.get_advice_box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.get_advice_box_left {
	display: flex;
	align-items: center;
	gap: 20px;
}

.get_advice_box_left_img {
	width: 30%;
	min-width: 30%;
	max-width: 30%;
}

.get_advice_box_left_content {
	width: 65%;
	min-width: 65%;
	max-width: 65%;
	background: #fff;
	padding: 25px;
	border-radius: 15px;
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.get_advice_box_left_img figure {
	width: 150px;
	height: 150px;
	overflow: hidden;
	border-radius: 50%;
	margin: 0 auto 20px;
}

.get_advice_box_left_img figure img {
	width: 100%;
}

.get_advice_box_left_img h6 {
	text-align: center;
	font-size: 25px;
	font-weight: 600;
}

.get_advice_box_left_img span {
	display: block;
	text-align: center;
	font-size: 15px;
	margin: 5px 0 0 0;
}

.get_advice_box_left {
	width: 57%;
	min-width: 57%;
	max-width: 57%;
	margin: 0 auto;
}

.get_advice_box_right {
	width: 40%;
	min-width: 40%;
	max-width: 40%;
	border-radius: 10px;
	overflow: hidden;
}
/*
.get_advice_box_right img {
	width: 100%;
}*/
.get_advice_box_right .banner_form {
	box-shadow: rgba(100, 100, 111, 0.15) 0px 7px 29px 0px;
	margin: 15px auto;
}

.get_advice_box_left_content #btn_style_a {
	margin: 0;
}

.market_trends_box {
	padding: 15px;
	background: #fff;
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
	border-radius: 5px;
}

.market_trends_box a {
	display: block;
}

.market_trends_box h3 {
	font-size: 21px;
	font-weight: 600;
	margin: 0 0 10px 0;
}

.market_trends_box span {
	display: block;
	font-size: 14px;
	color: #6c6b6b;
}

.contact_us_home {
	background-size: cover !important;
	background-position: center center !important;
	background-attachment: fixed !important;
}

.contact_us_home_overlay {
	background: rgba(0, 0, 0, 0.47);
	padding: 60px 0;
}

.contact_us_home_box_main {
	background: rgba(255, 255, 255, 0.6);
	padding: 40px;
	border-radius: 15px;

}
.contact_us_home_box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
}

.contact_us_home_left {
	width: 60%;
	min-width: 60%;
	max-width: 60%;
	padding: 25px;
	background: #ffffffd9;
	border-radius: 15px;
}
.contact_us_home_right {
	width: 37%;
	min-width: 37%;
	max-width: 37%;
}

.contact_us_home_right .banner_form {
	max-width: 100%;
	background: #fff;
}

.contact_map iframe {
	width: 100%;
	height: 170px;
	border-radius: 15px;
}

.contact_home_detail li img {
	height: 19px;
	margin: 0 10px 0 0;
}

.contact_home_detail li {
	margin: 10px 0;
	font-size: 16px;
	font-weight: 500;
}

.contact_us_home_left h6 {
	font-size: 23px;
	margin: 15px 0 0 0;
	border-bottom: 1px solid #828282;
}

footer {
	background: #000;
	padding: 50px 0 20px 0;
}
.ftr_logo img {
	width: 50%;
}
.ftr_logo p{
	color: #fff;
}
.menus_ftr h3 {
	color: #fff;
	font-size: 24px;
	margin: 0 0 22px 0;
}
.menus_ftr .ftr_ul li a {
	color: #fff;
	display: block;
	margin: 10px 0;
}
.menus_ftr .contact_home_detail li a {
	color: #fff;
}
.menus_ftr .contact_home_detail li span {
	width: 30px;
	min-width: 30px;
	max-width: 30px;
	height: 30px;
	min-height: 30px;
	max-height: 30px;
	background: #fff;
	display: flex;
	align-items: center;
	text-align: center;
	padding: 7px;
	border-radius: 50%;
	justify-content: center;
}
.menus_ftr .contact_home_detail li span img {
	width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
}
.menus_ftr .contact_home_detail li {
	display: flex;
	align-items: center;
	gap: 15px;
}
.ftr_copy {
	text-align: center;
	color: #fff;
	font-size: 14px;
	padding: 15px 0 0 0;
	border-top: 1px solid #353535;
	margin: 25px 0 0 0;
}
.ftr_copy a {
	color: #fff;
	font-size: 14px;
	margin: 0 10px;
}

/*contact-page*/
.contact_banner {
	height: 580px;
	overflow: hidden;
	background-position: right top !important;
}
.contact_banner.single_project_banner {
	height: 767px;
}
#desktop_banner_contact{
	position: unset;
}
.contact_form_box {
	display: flex;
	gap: 90px;
}
.contact_form_box_left {
	padding: 35px;
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
	border-radius: 15px;
	flex: 1;
}
.contact_form_box_right {
	flex: 1;
}
.contact_form_box_right ul {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}
.contact_form_box_right ul li {
	width: 47%;
}
.contact_form_box_left h2 {
	margin: 0 0 10px 0;
}
.contact_form_box_left .form-control {
	padding: 10px;
	border-radius: 0;
	font-size: 14px;
	color: #000;
}
.contact_form_box_left .form-group {
	margin: 0 0 10px 0;
}
.contact_form_box_left .form-group label {
	display: block;
	margin: 0 0 3px 0;
	font-size: 15px;
	font-weight: 600;
}
.form_sbmt_btn {
	width: 100%;
	background: #be9b37;
	border: none;
	color: #fff;
	padding: 11px 0;
	margin: 15px 0 0 0;
	border-radius: 0;
}
.contact_form_box_right h6 {
	text-transform: uppercase;
	font-size: 17px;
	color: #be9b37;
}
.contact_form_box_right h2 {
	font-size: 30px;
	margin: 15px 0;
}
.contact_form_box_right ul li span {
	display: block;
	width: 50px;
	height: 50px;
	background: #be9b37;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px;
	border-radius: 50%;
	margin: 0 0 11px 0;
}
.contact_form_box_right ul li span img{
	width: 100%;
}
.details h5 {
	font-size: 19px;
	color: #be9b37;
}
.contact_map iframe {
	width: 100%;
	height: 450px;
}
/*contact-page*/

.hero_bnr_video {
      position: relative;
      height: 100vh; /* full viewport height */
      overflow: hidden;
    }

    /* Style for the video */
    .hero_bnr_video video {
      position: absolute;
      top: 50%;
      left: 50%;
      min-width: 100%;
      min-height: 100%;
      width: auto;
      height: auto;
      z-index: -1;
      transform: translate(-50%, -50%);
      object-fit: cover;
    }

.evelate_box {
	display: flex;
	align-items: center;
	gap: 15px;
}
.evelate_box_one {
	flex: 1;
}
.evelate_box_one img, .evelate_box_one video {
	width: 100%;
	border-radius: 15px;
}
.play_eve_video {
	position: absolute;
	bottom: 15px;
	left: 9px;
}
.play_eve_video img {
	width: 40px;
	cursor: pointer;
}


/*single-project*/
.banner_location {
	display: flex;
	align-items: center;
	color: #fff;
	font-size: 19px;
	font-weight: 600;
	gap: 10px;
	margin: 25px 0;
}
.banner_location img {
	height: 30px;
}
.banner_possesion {
	display: flex;
	justify-content: space-between;
	gap: 30px;
}
.gallery_slider .swiper-slide {
	height: 400px;
	overflow: hidden;
	border-radius: 15px;
}
.banner_possesion_box {
	flex: 1;
	text-align: left;
}
.banner_possesion_box h3 {
	font-size: 33px;
	color: #fff;
	font-size: ;
	font-family: "Mulish", sans-serif;
	font-weight: 700;
	margin: 15px 0 0 0;
}
.button_project a {
	background: #be9b37;
	padding: 11px 29px;
	display: inline-flex;
	border-radius: 5px;
	font-size: 17px;
	font-weight: 500;
	color: #fff;
}
.button_project{
	margin: 35px 0 0 0;
	display: flex;
	align-items: center;
	gap: 20px;
}
.banner_possesion_box span {
	color: #dbdbdb;
	font-size: 15px;
	text-transform: uppercase;
}

.amenitis_sec.pt-5.pb-5 {
	background: #f9f9f9;
}
.amenitis_sec_inner {
	display: flex;
	align-items: center;
	gap: 30px;
}
.ame_text {
	width: 20%;
	max-width: 20%;
	min-width: 20%;
	text-align: center;
	padding: 10px;
	background: #be9b37;
	border-radius: 15px;
	color: #fff;
}
.amenitis_sec_slider{
	width: 77%;
	max-width: 77%;
	min-width: 77%;
}

.ame_slider_inside {
	text-align: center;
	margin: 15px 0;
}
.ame_slider_inside p{
	margin: 0;
}
.prime_location_list ul li {
	margin: 13px 0;
	background: #f9f9f9;
	padding: 10px;
	border-radius: 10px;
}
.prime_location_map iframe {
	width: 100%;
	border-radius: 15px;
	height: 380px;
}
.gallery_slider {
	max-width: 760px;
	margin: 0 auto;
}
.tabs_unit_box {
	display: flex;
	align-items: center;
	gap: 30px;
	max-width: 790px;
  margin: 0 auto;
}
#myTab {
	margin: 0;
	border: none;
	min-width: 30%;
	max-width: 30%;
	width: 30%;
	display: block;
}

#myTab li button {
	width: 100%;
	border: none;
	background: transparent;
	border-radius: 5px;
	margin: 10px 0;
	padding: 17px 0;
	font-size: 18px;
	color: #be9b37;
	border: 1px solid #be9b37;
}
#myTab li button.active {
	background: #be9b37;
	color: #fff;
}
#myTabContent {
	padding: 0 !important;
	border: none !important;
}

.blog-post.blog_box figure img {
	width: 100%;
	height: auto;
}
.blog-post.blog_box {
	padding: 15px;
	background: white;
	box-shadow: rgba(100, 100, 111, 0.11) 0px 7px 29px 0px;
}
.blog-post.blog_box h2 a {
	display: block;
	font-size: 26px;
	line-height: 1.3;
}
.post-thumbnail img {
	width: 100%;
	margin: 0 0 30px 0;
}
.post-meta {
	margin: 15px 0;
	color: #939393;
}
.mb{
	display: none;
}
.privacy_terms h2 {
	font-size: 25px;
	color: #be9b37;
	line-height: 1.2;
	font-weight: 700;
	margin: 0 0 15px 0;
}
.privacy_terms p a {
	color: #be9b37;
}
/* media */
/* media */
/* media */
/* media */

@media (min-width: 992px) {
	.navbar .navbar-nav.left-menu {
		margin-right: auto;
	}

	.navbar .navbar-nav.right-menu {
		margin-left: auto;
	}

	.navbar .navbar-brand {
		position: absolute;
		left: 50%;
		transform: translateX(-50%) translateY(-50%);
	}
}

@media (max-width: 992px) {
#lpHeader {
	position: unset;
	padding: 5px 0;
}
.logo_box_mobile {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}
.logo_box_mobile .navbar-brand {
	display: block !important;
	margin: 0 !important;
}
.logo_box_mobile .navbar-brand img {
	width: 94px;
	height: auto;
}
#for_mobile {
	display: block !important;
}
#desktop_banner {
	position: unset;
}
#for_dektop .hero_bnr_video {
	display: none;
}
#for_dektop .col-md-7 {
	display: none;
}
#for_dektop .col-md-5 {
	width: 100%;
}
#desktop_banner .banner_form {
	max-width: 100%;
}
#for_dektop .banner_content {
	background: transparent;
}
#mainNavbar .navbar-brand {
	display: none;
}
#mainNavbar ul li a {
	color: #fff;
	font-size: 14px;
	margin: 0;
	padding: 10px 0;
	line-height: 1.5;
}
.who_we_box figure, .who_we_box figcaption {
	flex: unset;
	width: 100%;
}
.who_we_box {
	flex-wrap: wrap;
	gap: 28px;
}
.who_round {
	bottom: 27px;
}
.our_featured_project .col-md-4 {
	width: 50%;
}
.fea_title h2 {
	font-size: 19px;
}
.our_featured_project_box {
	margin: 10px 0;
}
.why_choose_us .col-md-6 {
	width: 100%;
}
.why_chose_img {
	padding-right: 0;
	margin: 30px 0 0 0;
}
.why_chose_round_1 {
	right: -79px;
}
.why_chose_round_2 {
	right: -54px;
}
.what_we_offer .col-md-6 {
	width: 100%;
}
.what_ofr_right {
	justify-content: space-between;
	margin: 25px 0 0 0;
}
.crafticg_space_three_box_flex {
	display: block !important;
	padding: 40px 0;
}
.crafticg_space_three_box {
	top: 0;
}
.crafticg_space_three_box_inr {
	margin: 15px 0;
}
.why_invest_dubai .row{
	justify-content: center;
}
.why_invest_dubai .col-md-4 {
	width: 50%;
}
.evelate_box {
	margin: 25px 0 0 0;
}
.home_testimonial .col-md-5 {
	width: 100%;
}
.home_testimonial .col-md-7{
	width: 100%;
}
.get_advice_box {
	display: block;
}
.get_advice_box_left {
	width: 100%;
	min-width: 100%;
	max-width: 100%;
	margin: 0;
}
.get_advice_box_right {
	width: 100%;
	min-width: 100%;
	max-width: 100%;
	margin: 25px 0 0 0;
}
.market_trends_sec .col-md-3 {
	width: 50%;
}
.market_trends_box {
	margin: 10px 0;
}
.contact_us_home_box {
	display: block;
}
.contact_us_home_left {
	width: 100%;
	min-width: 100%;
	max-width: 100%;
	margin: 0 0 25px 0;
}
.contact_us_home_right {
	width: 100%;
	min-width: 100%;
	max-width: 100%;
}
.contact_form_box {
	display: block !important;
}
.contact_form_box_left {
	padding: 20px;
	margin: 0 0 35px 0;
}
.contact_form_box_right h2 {
	font-size: 22px;
	margin: 15px 0;
}
.contact_form_box_right ul {
	display: block;
}
.contact_form_box_right ul li {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 15px;
}
#mainNavbar {
	background: #be9b37;
	padding: 0 16px;
}
.dk{
	display: none;
}
.mb{
	display: block;
}
}


@media (max-width: 767px) {
p br{
	display: none;
}
.hero_bnr_video {
	height: 70vh;

}
.banner_content_box h1 {
	font-size: 28px;
}
.banner_form h2 {
	font-size: 23px;
}
.clien_one_logo.pt-3.pb-3{
	padding: 0 !important;
}
.navbar-toggler {
	border-radius: 0;
	outline: none !important;
	box-shadow: none !important;
}
.swiper_one_box {
	text-align: center;
}
.who_img_border {
	margin-right: 0;
}
.who_round {
	right: -1px;
	width: 100px;
	height: 100px;
}
.title_h2 {
	font-size: 26px;
}
p {
	font-size: 15px !important;
}
.our_featured_project .col-md-4 {
	width: 100%;
}
.live_where_feel {
	padding: 45px 0;
}
.live_where_feel::after {
	width: 50%;
}
.why_choose_box {
	width: 100%;
}
.why_choose_box h3 {
	font-size: 21px;
}
.why_chose_round_1 {
	right: 0;
	width: 100px;
	height: 100px;
	bottom: 8px;
}
.why_chose_round_2 {
	right: 15px;
	width: 80px;
	height: 80px;
	bottom: 116px;
}
#offerAccordion .accordion-item .accordion-header button {
	font-size: 18px;
}
.what_ofr_right_box_1, .what_ofr_right_box_2 {
	width: 100%;
}
.crafticg_space .hero_bnr_video {
	height: 415px;
}
.crafticg_space_overleay {
	background: rgba(0, 0, 0, 0.32);
	padding: 0;
	display: flex;
	align-items: center;
}
.crafticg_space_three_box_inr .title_h2 {
	font-size: 23px;
}
.why_invest_dubai .col-md-4 {
	width: 100%;
}
.why_invest_icon_box h3 {
	font-size: 21px;
}
.why_invest_icon_box p {
	margin: 0;
}
.evelate_box_one figure:last-child {
	margin: 0;
}
.home_testimonial_flex {
	gap: 20px;
	flex-wrap: wrap;
}
.tst_box {
	width: 100%;
}
.home_testimonial_overlay {
	background: rgba(0, 0, 0, 0.47);
	padding: 45px 0;
}
.get_advice_box_left_img, .get_advice_box_left_content {
	width: 100%;
	min-width: 100%;
	max-width: 100%;
	text-align: center;
}
.get_advice_box_left {
	flex-wrap: wrap;
}
.get_advice_box_left_img h6 {
	font-size: 19px;
}
.market_trends_sec .col-md-3 {
	width: 100%;
}
.market_trends_sec.pb-5 .title_h2.mb-5.text-center {
	margin: 0 0 30px 0 !important;
}
.contact_us_home_box_main {
	padding: 12px;
}
.contact_map iframe {
	height: 250px;
}
.contact_us_home_overlay {
	padding: 45px 0;
}
.contact_us_home_left h6 {
	margin: 0;
}
.menus_ftr {
	margin: 15px 0 0 0;
}
.menus_ftr h3 {
	font-size: 21px;
}
.menus_ftr .ftr_ul li a {
	font-size: 15px;
}
.menus_ftr .contact_home_detail li a {
	font-size: 15px;
}
.ftr_logo img {
	width: 30%;
}
footer {
	padding: 30px 0 20px 0;
}
.tst_caption {
	min-height: auto;
}
#desktop_banner .banner_form {
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
	margin: 25px 0;
}
.contact_banner {
	height: 335px;
}
.blog-post.blog_box h2 a {
	font-size: 19px;
}
.post-thumbnail img {
	margin: 0;
	height: auto;
}
#primary {
	padding-bottom: 0 !important;
}
.contact_banner.single_project_banner {
	height: auto;
}
.banner_possesion_box h3 {
	font-size: 22px;
}
.banner_location {
	font-size: 15px;
	margin: 10px 0;
}
.banner_location img {
	height: 24px;
	min-height: 24px;
	max-height: 24px;
	width: 24px;
	min-width: 24px;
	max-width: 24px;
}
.banner_content_box p {
	display: none;
}
#desktop_banner_contact {
	padding: 45px 0;
}
.button_project a {
	padding: 9px 17px;
	font-size: 15px;
}
.about_project_one .title_h2{
	margin: 15px 0 0 0;
}
.gallery_slider .swiper-slide {
	height: auto;
}
.tabs_unit_box {
	display: block;
}
#myTab {
	min-width: 100%;
	max-width: 100%;
	width: 100%;
	display: flex;
	align-items: center;
	gap: 5px;
	justify-content: center;
}
#myTab li button {
	width: 100%;
	margin: 0;
	padding: 10px;
	font-size: 14px;
}
.prime_location_map iframe {
	height: 250px;
}
}

