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

:root {
  --color-primary: #104c48;
  --color-secondary: #10837A;
  --font-body: "Inter", sans-serif;
}

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

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  line-height: 26px;
}

ul {
  padding: 0px;
}

ul li {
  list-style: none;
}

a {
  text-decoration: none;
  display: block;
}

img {
  max-width: 100%;
}

/*Reset ends*/

/*Basic Items*/
.base-padding {
  padding: 49px 0;
}

.title-button-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 30px;
}

.gray-bg {
  background: #f7f7f7;
}

.text-center {
  text-align: center;
}

h2 {
  font-size: 27px;
  font-weight: 500;
}

.rounded-15 {
  border-radius: 15px;
}

/*Basic Items ends*/

.swiper-pagination-bullet-active {
    background: #FFF !important;
    border: 1px solid #000;
}
.swiper-pagination-bullet {
    width: 13px;
    height: 13px;
    background: #808080;
    opacity: 1;
}
/*Header*/
header {
  padding: 15px 0;
  background: #FFF;
}

.main-logo {
  width: 100%;
  margin-top: 7px;
}

.right-menu-area {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 0px 0 0;
}

.top-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
}

.top-buttons {}

.top-buttons li {}

.two-button {
  border: 1px solid #000000;
  padding: 3px;
  border-radius: 5px;
}

.two-button button {
  padding: 10px;
  border: none;
  cursor: pointer;
  color: #000;
}

.two-button button:hover {
  background-color: #f2faf3;

}

.two-button button.active {
  background-color: #dff6e3;
}

/*Header ends*/


/*Language Select*/
.language-dropdown .flag-option,
.language-select-container .flag-option {
  display: flex;
  gap: 7px;
}

.language-dropdown .flag-option img,
.language-select-container .flag-option img {
  width: 20px;
}

.language-dropdown .select2-results {
  width: 130px;

}

.language-select-container .select2 {
  width: 130px !important;
}

.language-select-container .select2-selection {
  height: 43px;
  display: flex;
  align-items: center;
  border: 1px solid #000000;
}

.language-select-container .select2-selection__rendered {
  padding-right: 0 !important;
}

.language-select-container .select2-selection__arrow {
  top: 8px !important;
  right: 4px !important;
}

.select2-results__option.select2-results__option--selectable {}

.language-dropdown .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: var(--color-secondary) !important;
}

/*Language Select ends*/

/*Currency Select*/
.currency-select-container .select2 {
  width: 70px !important;
}

.currency-select-container .select2-selection {
  height: 43px;
  display: flex;
  align-items: center;
  border: 1px solid #000000;
}

.currency-select-container .select2-selection__rendered {
  padding-right: 0 !important;
}

.currency-select-container .select2-selection__arrow {
  top: 8px !important;
  right: 4px !important;
}

.currency-dropdown .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: var(--color-secondary) !important;
}

/*Currency Select ends*/


/*Menu Items*/
/* Base Styles */
.main-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-end;
}

.main-menu li {
  position: relative;
}
.project-slider .swiper-slide {
  padding: 0;
}
.broder {
  border: 2px solid #9f9f9f;
}
.main-menu>li>a {
  color: #000;
  border: 2px solid #474747;
  padding: 3px 12px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 500;
}

.main-menu>li>a:hover {
  border: 2px solid var(--color-secondary);
  background: var(--color-secondary);
  color: #FFF;
}

.main-menu .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  opacity: 0;
  background: var(--color-secondary);
  padding: 10px 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 999;
  width: 220px;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
  border-radius: 11px;
  margin: 6px 0 0;
  padding: 0;
}

.main-menu .dropdown li {
  display: block;
  padding: 9px 20px;
  border-bottom: 1px solid #4ba09a;
}

.main-menu .dropdown li:hover {
  border-bottom: 1px solid #6de0d8;
}

.main-menu .dropdown li:last-child {
  border-bottom: none;
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}

.has-dropdown>.dropdown>li>a {
  color: #ffffff;
  font-size: 14px;
  font-weight: 200;
  line-height: 19px;
}

/* Mobile Styles */
#nav-button {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  margin-bottom: 10px;
}

#nav-button svg {
  width: 20px;
  height: 20px;
  fill: var(--color-secondary);
}


/* Submenu toggle in mobile */
.main-menu li.open>.dropdown {
  display: block;
}

.project-list .swiper-slide {
  border-radius: 10px;
  background-size: cover;
  background-repeat: no-repeat;
}

/* Responsive */

@media (max-width: 992px) {
 #nav-button {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    padding-top: 18px;
  }
  .main-menu {
    display: none;
    flex-direction: column;
  }
  }



/*Menu Items ends*/


/*Main Slider*/
/*.main-slider .swiper-slide {
  min-height: 600px;
  display: flex;
  position: relative;
  background-size: cover;
  background-position: center center;
}

.main-slider .swiper-slide::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #0000007d;
}*/

.main-slider .swiper-slide {
  min-height: 600px;
  display: flex;
  position: relative;
  background-size: 150%;
  background-position: center center;
}

.main-slider .swiper-slide::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #0000003b;
}

.main-slider .slider-contents {
  position: relative;
  z-index: 9;
	padding-top:100px;
}

.main-slider .slider-contents h2 {
  color: #FFF;
  font-size: 22px;
	font-weight:500;
  margin: 0 0 11px;
	text-transform:uppercase;
}

.main-slider .slider-contents h3 {
  color: #FFF;
  font-size: 17px;
  font-weight: 200;
  margin: 0 0 10px;
}

.main-slider .slider-contents h4 {
  color: #FFF;
  font-size: 16px;
  font-weight: 400;
  margin: 0 0 15px;
}

/*Main Slider ends*/

/*Buttons*/
.btn-s2 {
  background-color: #FFF;
  display: inline-block;
  color: #000;
  padding: 16px 23px;
  border-radius: 7px;
}

.btn-s2:hover {
  background-color: var(--color-secondary);
  color: #ffffff;
}

.btn-s1 {
  background-color: var(--color-primary);
  color: #ffffff;
  display: inline-flex;
  gap: 10px;
  padding: 9px 19px;
  border-radius: 7px;
}

.btn-s1:hover {
  background-color: var(--color-secondary);
}

.btn-s1 svg {
  width: 11px;
  height: 20px;
  fill: #FFF;
}

/*Buttons Ends*/

/*Area Box*/
.area-box {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  background: #fff;
  transition: transform 0.3s ease;
  text-align: center;
  margin: 0 0 20px;
}

.area-box:hover {
  transform: scale(1.02);
}

.area-box img {
  object-fit: cover;
  border: none;
  border-radius: 0;
  box-shadow: none;
  height: auto;
  max-width: 100%;
}

.area-title {
  padding: 15px;
  font-weight: bold;
  font-size: 1.1em;
  color: #333;
}

/*Area Box ends*/


/*Why us*/
.whyus-list {
  color: #333;
  margin: 0 auto;
  padding: 0 0 0 4px;
}

.whyus-list li {
  position: relative;
  padding-left: 23px;
  margin-bottom: 13px;
}

.whyus-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-secondary);
  /* Bootstrap primary color */
  font-weight: bold;
}

.image-twosize {
  display: flex;
  gap: 30px;
  width: 100%;
}

.image-twosize img {
  width: 100%;
}

.img-tz-c1,
.img-tz-c2 {
  width: 50%;
}

.img-tz-c1 {}

.img-tz-c2 {}

/*Why us ends*/


/*Testimonials*/
.testimonials-bx {
  background-color: #F1F1F1;
  padding: 24px;
  border-radius: 20px;
  margin: 0 0 24px;
}

.testimonial-name {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0 0;
}

.testimonial-name img {
  width: 51px;
  border-radius: 50%;
}

.testimonial-name h4 {
  font-weight: 600;
}

#readBtn {
  color: var(--color-secondary);
  font-weight: 600;
}

/*Testimonials ends*/

/*Blog*/
.blog-box {
  text-align: center;
  color: #000;
  font-size: 14px;
}

.blog-box img {
  border-radius: 10px;
}

.blog-box h3 {
  font-weight: 300;
}

/*Blog ends*/

/*Footer*/
footer {
  background-color: var(--color-secondary);
  padding: 60px 0 30px;
  color: #FFF;
  font-size: 13px;
}

.contacts {
  margin: 15px 0 25px;
}

.contacts li {}

.contacts li a {
  color: #FFF;
  display: flex;
  gap: 10px;
  align-items: center;
}

.contacts li a svg {
  width: 13px;
  height: 14px;
  fill: #FFF;
}

.hr-links {
  display: flex;
  gap: 18px;
  margin: 0 0 15px;
}

.hr-links li {
  position: relative;
  padding-left: 18px;
}

.hr-links li svg {
  content: '';
  width: 12px;
  height: 12px;
  display: block;
  fill: #FFF;
  position: absolute;
  left: 0px;
  top: 7px;
  border-radius: 50%;
}

.hr-links li:last-child::after {
  display: none;
}

.hr-links li a {
  color: #FFF;
}

.socialmedia {
  display: flex;
  gap: 17px;
  margin: 15px 0 0;
  align-items: center;
}

.socialmedia li {}

.socialmedia li a {
  line-height: 11px;
}

.socialmedia li a svg {
  fill: #FFF;
  width: 21px;
  height: 24px;
}

footer h3 {
  margin: 0 0 15px;
}

.quick-links {
  display: flex;
  gap: 6px;
  flex-direction: column;
}

.quick-links li {
  position: relative;
  padding: 0 0 0 17px;
}

.quick-links li svg {
  fill: #FFF;
  width: 9px;
  height: 9px;
  position: absolute;
  left: 0px;
  top: 9px;
}

.quick-links li a {
  color: #FFF;
}

.quick-links li a:hover {
  color: #5ac2bb;
}

.base-footer {
  text-align: center;
  border-top: 1px solid #FFF;
  padding: 25px 0 0;
  margin: 38px 0 0;
}

.floatingwhatsapp {
  position: fixed;
  bottom: 70px;
  right: 10px;
  z-index: 9999;
  background: #4dc247;
  display: flex;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  box-shadow: -4px 4px 7px 0px rgb(0 0 0 / 20%);
  justify-content: center;
  align-items: center;
}

.floatingwhatsapp svg {
  width: 27px;
  height: 27px;
  fill: #FFF;
}

.floatingphone {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 9999;
  background: var(--color-secondary);
  display: flex;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  box-shadow: -4px 4px 7px 0px rgb(0 0 0 / 20%);
  justify-content: center;
  align-items: center;
}

.floatingphone svg {
  width: 27px;
  height: 27px;
  fill: #FFF;
}




/* new*/



.project-list .swiper-slide {
	
	
  
  border-radius: 10px;
  background-size: cover;
  background-repeat: no-repeat;

}


.handover{padding: 0 21px;margin: 0 0 10px;}
.project-list .swiper-slide a{

	
  color: #000000;

}

.displydispl
{
    padding: 0 21px;
    display: flex;
    gap: 11px;
}

.project-list
{
	position:relative;
}
.project-list .swiper-button-prev
{
	position:absolute;
}

.project-list .swiper-button-next
{
	position:absolute;
}










#react-properties-swiper {
  position: relative;
  margin: 0 0 30px;
}

#react-properties-swiper .swiper-button-prev,
#react-properties-swiper .swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
  background-color: #000000;
  border-radius: 5px;
  width: 35px;
  height: 35px;
}

#react-properties-swiper .swiper-button-prev:hover,
#react-properties-swiper .swiper-button-next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

#react-properties-swiper .swiper-button-prev {
  left: 10px;
}

#react-properties-swiper .swiper-button-next {
  right: 10px;
}

/* Optional: hide default background icons if using your own SVGs/icons later */
#react-properties-swiper .swiper-button-prev::after,
#react-properties-swiper .swiper-button-next::after {
  font-size: 16px;
}




#react-projects-swiper {
  position: relative;
  margin: 0 0 30px;
}

#react-projects-swiper .swiper-button-prev,
#react-projects-swiper .swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.5); /* Dark semi-transparent */
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
  background-color: #000000;
  border-radius: 5px;
  width: 35px;
  height: 35px;
}

#react-projects-swiper .swiper-button-prev:hover,
#react-projects-swiper .swiper-button-next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

#react-projects-swiper .swiper-button-prev {
  left: 10px;
}

#react-projects-swiper .swiper-button-next {
  right: 10px;
}

/* Optional: adjust default icon size or hide if replacing with custom icon */
#react-projects-swiper .swiper-button-prev::after,
#react-projects-swiper .swiper-button-next::after {
  font-size: 16px;
}



.swiper-horizontal {
    overflow: hidden;
}

.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    width: 95%;
}




.project-list .swiper-slide a img
{
    height: 229px !important;
    object-fit: cover;
    width: 100%;
    padding: 8px 8px 0px 8px !important;
}
.project-list .swiper-slide {
    padding-bottom: 5px !important;;
}
.project-list .swiper-slide .homePrice
{padding: 0 21px;color: #000;}
.displydispl .aedPr
{
}
.displydispl .usdPr
{
}
.displydispl .eurPr
{
}
.project-list .swiper-slide .title_add.balck
{
    padding: 0 21px;
    color: #000;
    font-size: 18px;
}
.convertprice {
    display: none;
}
.elementor-icon-list-items
{
    display: flex;
    padding: 0 21px;
    gap: 19px;
    margin: 8px 0 10px;
}
.elementor-icon-list-icon
{
	width: 11px;
	height: 19px;
	background-image: url('https://www.hausandestates.com/wp-content/uploads/2025/08/map.svg');
	background-repeat: no-repeat;
	background-position: center center;
	margin-right: 7px;
}
.elementor-icon-list-item
{
	display: flex;
	align-items: center;
}

.elementor-icon-list-item span
{
	margin-top: 0 !important;
}

.elementor-icon-list-item span img
{
	margin-left: 0 !important;
}


.subsc-form
{
	border: 3px solid #10837A;
	border-radius: 12px 12px 12px 12px;
	padding: 30px;
}

.subsc-form {
    border: 3px solid #10837A;
    border-radius: 12px;
    padding: 30px;
}

.subsc-form .elementor-widget-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.subsc-form .elementor-widget-container strong{
	font-weight: 600;
	font-size: 18px;
}
/* SVG icon */
.subsc-form svg.icon {
    width: 60px;
    height: 60px;
    fill: #10837A;
    flex-shrink: 0;
}

/* Container for all form content */
.subsc-form .newsform {
    flex: 1;
    width: calc(100% - 100px);
    display: flex;
    flex-direction: column;
}

/* Form input rows */
.subsc-form .elementor-form-fields-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* Text fields styling */
.subsc-form .elementor-field-type-text input,
.subsc-form .elementor-field-type-email input {
    background-color: #217C7569;
    border: 1px solid #10837A4A;
    border-radius: 4px;
    padding: 10px 15px;
    width: 100%;
    color: #000;
}

/* Make each input field take 48% width in two columns */
.subsc-form .elementor-field-group-name,
.subsc-form .elementor-field-group-email {
    width: 48%;
}

.subsc-form .elementor-field-label
{
	display:none;
}

/* Checkboxes full width */
.subsc-form .elementor-field-type-checkbox {
    width: 100%;
}

.subsc-form .elementor-field-option
{
	display:block;
	
}
/* Subscribe button */
.subsc-form .elementor-field-type-submit {
    width: 100%;
    display: flex;
    justify-content: flex-start;
}

.subsc-form .elementor-button {
    background-color: #10837A;
    border-radius: 10px;
    padding: 15px 20px;
    color: white;
    font-weight: bold;
    border: none;
    transition: background-color 0.3s ease;
    font-weight: 500;
    font-size: 16px;
}

.subsc-form .elementor-button:hover {
    background-color: #0a5c54;
    cursor: pointer;
}

.subsc-form .e-con-inner .has_eae_slider
{/* position: relative; */display: flex;align-items: flex-start;gap: 20px;}
.subsc-form .e-con-inner .has_eae_slider .elementor-element
{
	/* position: absolute; */
	/* left: 0px; */
	display: flex;
}


/*Footer ends*/

.slider-area
{
	position: relative;
}
.banner-search-box
{
	position: absolute;
	z-index: 999;
	width: 100%;
	bottom: 60px;
	text-align: center;
}
.banner-search-box-container
{
	padding: 20px;
	text-align: center;
	color: white;
	background: #0905056b;
	width: 54%;
	display: inline-block;
	padding: 23px 10px 10px;
	border-radius: 12px;
}
.banner-search-buttons
{
	display: flex;
	justify-content: center;
	gap: 10px;
	padding-top: 11px;
}


        .search-container form{
         display: flex;
         align-items: center;
         justify-content: center;
         gap: 10px;
        }

.banner-search-buttons a
{
	display: inline-block;
	background: #FFF;
	padding: 6px 20px;
	color: #000;
	border-radius: 30px;
}
.banner-search-buttons a.active
{
	background: var(--color-secondary);
	color: #FFF;
	
}
.search-btn
{
	border: none;
	background: #FFF;
	width: 59px;
	height: 53px;
	border-radius: 50px;
	background-image: url('https://hausandestates.s3.eu-north-1.amazonaws.com/wp-content/uploads/2025/08/search.svg');
	background-repeat: no-repeat;
	background-position: center center;
	cursor: pointer;
}
#project-search
{
	border: none;
}

.top-buttons .toggle-wrapper
{border: 1px solid #000000;border-radius: 5px;height: 34px;display: flex;align-items: center;font-size: 13px;font-weight: 500;}

.top-buttons .toggle-wrapper .toggle-option {
    padding: 3px 12px;
    cursor: pointer;
}

#to_currency
{
	    border: 1px solid #000000;
	    border-radius: 5px;
	    height: 34px;
	    display: flex;
	    align-items: center;
	    font-size: 13px;
	    font-weight: 500;
	    background-color: #FFF;
	    color: #000;
}

.subsc-form
{
	background-image: url('https://www.hausandestates.com/wp-content/uploads/2025/08/email.svg');
	background-repeat: no-repeat;
	padding-left: 100px;
	background-position: left 25px top 36px;
}
.subsc-form .hidden-fields-container
{
	display:none;
}
.subsc-form h2
{font-size: 18px;font-weight: 600;margin: 0 0 12px;}
.subsc-form .hidden-fields-container h2
{
	
}
.footer-form-fields
{
	display: flex;
	gap: 10px;
}
.footer-form-fields p
{
	width: 50%;
}
.footer-form-fields input
{
	width: 100%;
	background-color: #217C7569;
	border-color: #10837A4A;
	border-width: 1px 1px 1px 1px;
	border-radius: 4px 4px 4px 4px;
	height: 40px;
	padding: 0 19px;
}
.subsc-form .wpcf7-list-item label
{
	display: flex;
	gap: 11px;
	align-items: flex-start;
	padding-top: 10px;
}
.subsc-form .wpcf7-list-item label input
{
	margin-top: 6px;
}
.subsc-form .wpcf7-submit
{
	border: none;
	background: var(--color-secondary);
	color: #FFF;
	padding: 14px 32px;
	border-radius: 9px;
	font-size: 15px;
	cursor: pointer;
}
#gt_float_wrapper
{
	position: unset !important;
}

.gt_float_switcher .gt-selected .gt-current-lang {
    padding: 3px 8px !important;
    color: #333;
    font-weight: bold !important;
    box-shadow: none !important;
    font-size: 13px;
    border-radius: 50px;
    background-color: transparent;
}
.gt_float_switcher .gt-selected
{
    background-color: transparent;
	
}
.gt_float_switcher img
{
	vertical-align: middle !important;
	display: inline-block !important;
	width: 22px !important;
	height: auto !important;
	margin: 0 5px 0 0 !important;
	border-radius: 3px !important;
}
.gt_float_switcher
{
	box-shadow: none !important;
	border: 1px solid #000000;
	border-radius: 5px !important;
	height: 34px;
	display: flex;
	align-items: center;
	font-size: 13px;
	font-weight: 500;
	position: relative;
	overflow: visible !important;
}
.gt_float_switcher .gt_options
{
	position: absolute !important;
	z-index: 9999 !important;
	height: 120px;
	background: #FFF;
	width: 140px;
	right: 0 !important;
	top: 31px;
	border-radius: 7px;
	border: 1px solid #000;
}
.gt_float_switcher .gt_options a
{
	padding: 4px 12px !important;
	display: flex !important;
	font-size: 14px;
}
.gt_float_switcher .gt-selected
{
	    background-color: transparent !important;
}
.swiper-pagination {
    bottom: 21px !important;
    top: auto !important;
}
.menu-row
{display: flex;justify-content: space-between;}
.main-logo-container
{width: 300px;display: flex;align-items: center;}
.menu-mobile-button
{}
.cright-menu-container
{
}
.homevideo {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.main-menu .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  opacity: 0;
  visibility: hidden;    
  background: var(--color-secondary);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 999;
  width: 220px;
  border-radius: 11px;
  margin: 6px 0 0;
  transition: opacity 300ms ease-out, visibility 300ms ease-out;
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;   
}
/*Responsive starts here*/
@media(max-width:1200px)
{
	
	.main-menu {
    gap: 10px;
    justify-content: center;
}
	
	.main-menu>li>a {
    padding: 3px 6px;
}
}



@media (max-width: 992px) {
	.swiper-slideP{
		background-size:cover;
	}
  /* Toggle Menu in Mobile */

  .main-menu.mobile-menu-active {
    display: block !important;
    flex-direction: column;
  }


 

  .main-menu {
    flex-direction: column;
  }

  .main-menu li {
    width: 100%;
  }

  .main-menu .dropdown {
    position: relative;
    top: auto;
    left: auto;
    box-shadow: none;
    display: none;
    opacity: 1;
    width: 100%;
  }

  .has-dropdown:hover .dropdown {
    display: none;
  }

  .main-menu>li>a {
    color: #000;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid #474747;
    padding: 5px 14px;
    border-radius: 0px;
  }
	
}
@media (max-width:992px) {
  .top-buttons {
    justify-content: center;
    display: flex;
  }

  .title-button-row {
    align-items: center;
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .image-twosize {
    margin-top: 30px;
  }
	.main-slider .swiper-slide {
   align-items: start;
		background-size: cover !important
}
	.main-slider .slider-contents {
		padding-top: 52px;
}
	.banner-search-box-container {
    width: 100%;
}
	.banner-search-box-container h2{
		font-size: 16px;
}
	#project-search {
    border: none;
    width: 80%;
}
	.subsc-form {
    background-image: url(https://www.hausandestates.com/wp-content/uploads/2025/08/email.svg);
    background-repeat: no-repeat;
    padding: 60px 20px 10px;
    background-position: center top 20px;
		margin-left:0;
		margin-right:0;
}
	header {
    padding: 5px 0 15px;;
}
	
.main-slider .slider-contents h2 {
  font-size: 17px;
}
.main-slider .slider-contents h4 {
  font-size: 15px;
}
.btn-s2 {
    padding: 9px 15px;
}
	
h2 {
  font-size: 19px;
  font-weight: 500;
}
	.menu-row {
    flex-direction: column;
}
	.main-logo-container {
    width: 100%;
    justify-content: center;
    margin: 0 0 10px;
    display: flex;
}
	.main-logo{
    width: 300px;
}
	
		.main-logo-container {
    justify-content: space-between;
}    #nav-button {
        display: flex;
        justify-content: flex-end;
    }
	

	
	}
@media (max-width:992px) {
	
	    .main-logo-container {
        justify-content: space-between;
    }
	    .top-buttons {
        justify-content: space-between;
    }
	    .main-logo {
        width: 240px;
    }
	    header {
        padding: 1px 0 6px;
    }
	
	
}


#react-projects-swiper .swiper-button-prev {
    right: 50px;
    left: inherit;
    top: -8%;
}
#react-projects-swiper .swiper-button-next {
    right: 10px;
    left: inherit;
    top: -8%;
}
.swiper-more {
    margin-right: 100px;
}


#react-projects-swiper .swiper-button-prev, #react-properties-swiper .swiper-button-prev {
    right: 50px;
    left: inherit;
    top: -8%;
}
#react-projects-swiper .swiper-button-next, #react-properties-swiper  .swiper-button-next{
    right: 10px;
    left: inherit;
    top: -8%;
}
#react-projects-swiper .swiper-button-prev, #react-properties-swiper .swiper-button-prev {
    right: 170px;
    left: inherit;
    top: -8%;
}
#react-projects-swiper .swiper-button-next, #react-properties-swiper  .swiper-button-next{
    right: 130px;
    left: inherit;
    top: -8%;
}
.swiper-more {
    margin-right: 0;
}