@import url("https://fonts.googleapis.com/css2?family=Poppins: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");

@font-face {
  font-family: Eina01 semibold;
  src: url(../assets/font/Eina01-SemiBold.ttf);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary-color: #000000;
  --secondary-color: #ffffff;
  --fourth-color: #f3efe6;
  --tertary-color: #e7a837;
  --fivth-color: #e7a83766;
  --sixth-color: #ffffff1a;
  --text-color: #555;
  --footer-btm-color: #f5e5c7;
}
a {
  text-decoration: none;
  display: inline-block;
}
ul {
  list-style-type: none;
}
body {
  font-family: "Poppins", sans-serif;
}
body,
html {
  overflow-x: hidden;
}
.nav-container {
  max-width: 1890px;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
}
.container {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.col-50 {
  padding: 0 15px;
  width: 50%;
}
.col-60 {
  padding: 0 15px;
  width: 60%;
}
.col-25 {
  padding: 0 15px;
  width: 25%;
}
.col-5 {
  padding: 0 15px;
  width: 50%;
}
.col-7 {
  padding: 0 15px;
  width: 70%;
}
.col-4 {
  padding: 0 15px;
  width: 40%;
}
.col-6 {
  padding: 0 15px;
  width: 60%;
}
.col-33 {
  padding: 0 15px;
  width: 33.33%;
}
.col-3 {
  padding: 0 15px;
  width: 50%;
}
.col-2 {
  padding: 0 15px;
  width: 50%;
}
.col-14 {
  padding: 0 15px;
  width: 40%;
}
.col-16 {
  padding: 0 15px;
  width: 60%;
}
.col-12 {
  padding: 0 15px;
  width: 40%;
}
.col-13 {
  padding: 0 15px;
  width: 60%;
}
.col-17 {
  padding: 0 15px;
  width: 20%;
}
.col-18 {
  padding: 0 15px;
  width: 30%;
}
.col-19 {
  padding: 0 15px;
  width: 50%;
}

/* ========loading====== */

/* PRELOADER FULL SCREEN */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--footer-btm-color);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999;
}

/* LOADING TEXT + DOT WRAPPER */
.loading-box {
  text-align: center;
}

/* LOADING TEXT */
.loading-text {
  font-size: 30px;
  letter-spacing: 2px;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 15px;
  animation: fade 1.2s infinite ease-in-out;
}

/* TEXT FADE EFFECT */
@keyframes fade {
  0% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}

/* DOT CONTAINER */
.dots {
  display: flex;
  gap: 12px;
  justify-content: center;
}

/* DOTS */
.dots span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  animation: bounce 0.6s infinite alternate;
}

/* DOT COLORS + DELAYS */
.dots span:nth-child(1) {
  background: #ff4d4d;
  animation-delay: 0s;
}
.dots span:nth-child(2) {
  background: #ffcc00;
  animation-delay: 0.15s;
}
.dots span:nth-child(3) {
  background: #2ecc71;
  animation-delay: 0.3s;
}
.dots span:nth-child(4) {
  background: #3498db;
  animation-delay: 0.45s;
}
.dots span:nth-child(5) {
  background: #9b59b6;
  animation-delay: 0.6s;
}

/* DOT BOUNCE ANIMATION */
@keyframes bounce {
  from {
    transform: translateY(0);
    opacity: 0.5;
  }
  to {
    transform: translateY(-14px);
    opacity: 1;
  }
}

/* header-section */
.header-sec {
  padding: 10px 10px;
}
.header-top-wrpr {
  width: 100%;
  background: var(--primary-color);
  padding: 5px 73px;
  border-radius: 40px;
}
.header-top-wrpr-iner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.header-top-list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.header-top-left > ul > li {
  margin-right: 24px;
}
.contact-number {
  display: flex;
  align-items: center;
  text-align: center;
}
.contact-number > img {
  width: 24px;
  height: 23px;
  object-fit: contain;
}
.contact-number > span {
  font-size: 20px;
  font-weight: 400;
  color: var(--secondary-color);
  padding-left: 10px;
}
.contact-email {
  display: flex;
  align-items: center;
  text-align: center;
}
.contact-email > img {
  width: 24px;
  height: 24px;
  object-fit: cover;
}
.contact-email > span {
  font-size: 20px;
  font-weight: 400;
  color: var(--secondary-color);
  padding-left: 10px;
}
.language {
  display: flex;
  align-items: center;
}
.language > span {
  font-size: 20px;
  font-weight: 400;
  color: var(--secondary-color);
  padding-left: 10px;
}
.language > img {
  width: 24px;
  height: 24px;
  object-fit: cover;
}
.header-btm-wrpr {
  padding: 5px 0px;
  width: 90%;
  background: var(--primary-color);
  border-radius: 40px;
}
.header-btm-wrpr-inr {
}
.nav-logo {
  max-width: 210px;
}
.nav-logo > a {
  width: 100%;
}
.nav-logo > a > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.header-btm-wrpr-inr,
.navbar-collesped,
.navbar-collesped > ul,
.navbar-btn,
.header-sub-btm-wrpr {
  display: flex;
  align-items: center;
}
.header-main-btm {
  display: flex;
  align-items: center;
}
.header-sub-btm-wrpr {
  padding-top: 5px;
  padding-left: 5px;
}
.navbar-btn-1 {
  padding-left: 5px;
}
.navbar-collesped {
  flex-grow: 1;
}
.navbar-collesped > ul {
  margin: 0 auto;
}
.navbar-collesped > ul > li {
  margin-left: 30px;
}
.nav-links {
  font-size: 20px;
  font-weight: 400;
  color: var(--secondary-color);
  transition: 0.5s linear;
  position: relative;
}
.active {
  font-size: 20px;
  font-weight: 400;
  color: var(--secondary-color);
  /* margin-right: 10px; */
}
.nav-links::after {
  content: " ";
  position: absolute;
  width: 0px;
  height: 2px;
  bottom: -5px;
  background: linear-gradient(90deg, var(--tertary-color), var(--text-color));
  top: 100%;
  left: 50%;
  transition: all 0.3s linear;
  transform: scaleX(0);
  display: block;
}
.nav-links:hover {
  color: var(--tertary-color);
}
.nav-links:hover::after {
  width: 100%;
  left: 0;
  transform: scaleX(1);
}
.navbar-btn {
  margin-left: auto;
  display: none;
}
.primary-btn {
  width: 213px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--primary-color);
  border-radius: 64px;
  border: 1px solid var(--tertary-color);
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.primary-btn:hover {
  background: linear-gradient(
    to left,
    var(--tertary-color),
    var(--primary-color)
  );
}
.primary-btn:hover > span {
  color: var(--secondary-color);
}
.primary-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to left,
    var(--tertary-color),
    var(--secondary-color)
  );
  transform: skewX(-25deg);
}
.primary-btn:hover::before {
  animation: shine 0.8s;
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
.primary-btn:hover > img {
  transform: rotate(90deg);
  transition: 0.5s linear;
}
.primary-btn > span {
  font-size: 18px;
  font-weight: 400;
  color: var(--tertary-color);
  margin-left: 29px;
}
.primary-btn > img {
  width: 56px;
  height: 56px;
  background: var(--secondary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-left: auto;
}
.close-btn {
  display: none;
}
.active {
  border-top: 1px solid var(--tertary-color) !important;
  border-bottom: 1px solid var(--tertary-color);
  padding: 5px 18px;
  border-radius: 40px;
}
/* .nav-links:hover {
  border-top: 1px solid var(--tertary-color) !important;
  border-bottom: 1px solid var(--tertary-color);
  padding: 5px 18px;
  border-radius: 40px;
  color: var(--tertary-color);
} */

/* .over-lay{
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    filter: blur(10px);
    display: none;
} */

/* banner-section */

.banner-sec {
  background: url(../assets/banner-bg.png) no-repeat center/cover;
  margin-top: 5px;
  margin-inline: 10px;
  min-height: 100vh;
  border-radius: 40px;
  padding: 60px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.banner-top-wrpr {
  /* display: flex;
  justify-content: center;
  align-items: center; */
}
.banner-top-cntn > h1 {
  max-width: 854px;
  font-size: 79px;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 50px;
}
.banner-top-cntn > h1 > span {
  color: var(--tertary-color);
}
.banner-top-cntn > p {
  max-width: 854px;
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 80px;
  color: var(--secondary-color);
}
.banner-btn {
  width: 214px;
  height: 63px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--secondary-color);
  border-radius: 72px;
  border: 1px solid var(--tertary-color);
  cursor: pointer;
  overflow: hidden;
  transition: all o.5s linear;
  position: relative;
}
.banner-btn-1 {
  width: 56px;
  height: 56px;
  background: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-left: auto;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.banner-btn:hover {
  background: linear-gradient(
    90deg,
    var(--tertary-color),
    var(--primary-color)
  );
}
.banner-btn:hover > span {
  color: var(--secondary-color);
}
.banner-btn:hover > img {
  transform: rotate(90deg);
  transition: 0.5s linear;
}
.banner-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to left,
    var(--tertary-color),
    var(--secondary-color)
  );
  transform: skewX(-25deg);
}
.banner-btn:hover::before {
  animation: shine 1s;
  transition: 0.5s linear;
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
/* .banner-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75px;
  width: 50px;
  height: 100%;
  background: linear-gradient(
    to left,
    var(--primary-color),
    var(--tertary-color)
  );
  transform: skewX(-20deg);
  transition: 0.5s;
} */
/* .banner-btn:hover::before {
  left: 125%;
} */
.banner-btn > span {
  font-size: 20px;
  font-weight: 400;
  color: var(--tertary-color);
  margin-left: 29px;
}
.banner-btn > img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  margin-left: auto;
}
.banner-btm-wrpr {
  background: var(--sixth-color);
  backdrop-filter: blur(10px);
  padding: 20px 46px;
  border-radius: 40px;
  margin-top: 100px;
}
.banner-btm-top-cntn {
  margin-bottom: 20px;
}
.banner-btm-top-cntn {
  display: flex;
  align-items: center;
  margin-left: 13px;
}
.banner-btm-top-cntn > p {
  font-size: 30px;
  font-weight: 600;
  color: var(--tertary-color);
  margin-right: 40px;
  position: relative;
}
.banner-btm-top-cntn > p::after {
  content: "";
  width: 48px;
  height: 1px;
  background: var(--tertary-color);
  position: absolute;
  top: 100%;
  left: 0;
}
.banner-btm-top-cntn > span {
  font-size: 30px;
  font-weight: 600;
  color: var(--tertary-color);
}
.banner-btm-sub-cntn-1 > p {
  font-size: 25px;
  font-weight: 400;
  color: var(--tertary-color);
  font-family: "Eina01-semibold", sans-serif;
  margin-bottom: 15px;
  margin-left: 12px;
  position: relative;
}
.banner-btm-sub-cntn-1 > p::after {
  content: "";
  width: 53px;
  height: 1px;
  background: var(--tertary-color);
  position: absolute;
  top: 100%;
  left: 0;
}
.banner-btm-cntn-1 {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
.banner-btm-cntn-2 {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
.banner-btm-cntn-2 > h5 {
  font-size: 27px;
  font-weight: 500;
  color: var(--secondary-color);
  margin-right: 11px;
  margin-left: 8px;
}
.banner-btm-cntn-1 > h5 {
  font-size: 27px;
  font-weight: 500;
  color: var(--secondary-color);
  margin-left: -10px;
}
.workout-dropdown {
  position: relative;
  cursor: pointer;
}
.workout-dropdown > ul {
  /* position: absolute;
  top: 100%;
  left: 0%;
  right: 0;
  width: 100%;
  display: none; */
   position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--primary-color);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s ease;
  z-index: 10;
}
.workout-dropdown:hover > ul {
  /* display: block; */
   opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.workout-dropdown > ul > li > a {
  font-size: 18px;
  font-weight: 500;
  color: var(--secondary-color);
  text-align: center;
  border-bottom: 1px solid var(--text-color);
  padding: 5px;
  width: 100%;
}
/* .workout-dropdown > ul > li > a::before {
  content: "";
  width: 14px;
  height: 14px;
  border: 1px solid var(--secondary-color);
  position: absolute;
  top: 30%;
  left: 15%;
} */
.workout-dropdown > ul > li > a:hover::before {
  background: var(--tertary-color) !important;
}

.search-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to left,
    var(--tertary-color),
    var(--secondary-color)
  );
  transform: skewX(-25deg);
}
.search-wrapper:hover::before {
  animation: shine 1s;
  transition: 0.5s linear;
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
/* .banner-btm-btn::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  top: 50%;
  left: 50%;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--tertary-color)
  );
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: 0.5s;
}
.banner-btm-btn:hover::after {
  width: 300px;
  height: 300px;
  opacity: 0;
} */
 .search-wrapper:hover>.search-icon>img{
  transform: rotate(90deg);
  transition: 0.5s linear;
 }
.search-wrapper {
  width: 180px;
  height: 63px;
  background: #000;
  border-radius: 72px;
  border: 1px solid var(--fivth-color);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
   overflow: hidden;
  transition: all 0.5s linear;
}

.search-wrapper input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-size: 20px;
  color: var(--tertary-color);
  font-weight: 400;
  margin-left: 120px;
}

.search-wrapper input::placeholder {
  color: var(--fivth-color);
}

.search-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  position: absolute;
 right: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.search-icon img {
  width: 48px;
  height: 48px;
  object-fit:cover;
  margin-left: auto;
}






/* dream-house-section */
.dream-sec {
  padding: 50px 0px;
}
.dream-house-left-hdr > h2 {
  font-size: 65px;
  font-weight: 600;
  color: var(--primary-color);
}
.dream-house-left-hdr > h2 > span {
  font-size: 75px;
  color: var(--tertary-color);
}
.dream-house-rhgt-hdr > p {
  font-size: 20px;
  font-weight: 400;
  color: var(--primary-color);
  margin-bottom: 50px;
}
.dream-house-sub-btm-hdr {
  max-width: 648px;
  padding: 19px 11px;
  border-radius: 40px;
  border: 1px solid var(--tertary-color);
  margin-bottom: 24px;
  cursor: pointer;
}
.dream-house-sub-btm-hdr:hover {
  transform: translateY(-15px);
  transition: 0.5s linear;
  box-shadow: 0px 0px 60px var(--tertary-color);
}
.dream-house-btm-img {
  max-width: 617px;
  height: 346px;
}
.dream-house-btm-img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 40px;
}
.dream-house-btm-cntn-1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.dream-house-btm-cntn-1 > h5 {
  font-size: 37px;
  font-weight: 500;
  color: var(--primary-color);
  margin-top: 20px;
  position: relative;
}
.dream-house-btm-cntn-1 > h5::after {
  content: "";
  width: 437px;
  height: 1px;
  background: var(--tertary-color);
  position: absolute;
  top: 100%;
  left: 0;
}
.dream-house-btm-cntn-1 > p {
  max-width: 500px;
  font-size: 20px;
  font-weight: 400;
}
.dream-house-btm-cntn-2 {
  width: 104px;
  height: 104px;
  background: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-left: auto;
  cursor: pointer;
}
.dream-house-btm-cntn-2:hover > img {
  transform: rotate(90deg);
  transition: 0.5s linear;
}
.dream-house-btm-cntn-2:hover {
  background: var(--fivth-color) !important;
}
.dream-house-btm-cntn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.dream-house-btm-cntn > h5 {
  font-size: 37px;
  font-weight: 500;
  color: var(--primary-color);
  margin-top: 20px;
  position: relative;
}
.dream-house-btm-cntn > h5::after {
  content: "";
  width: 437px;
  height: 1px;
  background: var(--tertary-color);
  position: absolute;
  top: 100%;
  left: 0;
}
.dream-house-btm-cntn > p {
  max-width: 500px;
  font-size: 20px;
  font-weight: 400;
}
.dream-house-btm-cntn > img {
  width: 104px;
  height: 104px;
  object-fit: cover;
  margin-left: auto;
}
.dream-house-btm-cntn > img:hover {
  transform: rotate(90deg);
  transition: 0.5s linear;
}

/* nature-living-section */
.nature-sec {
  padding: 50px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.nature-living-left-hdr > h2 {
  font-size: 65px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 50px;
}
.nature-living-left-hdr > h2 > span {
  color: var(--tertary-color);
}
.nature-living-left-hdr > p {
  font-size: 20px;
  font-weight: 400;
  color: var(--primary-color);
  margin-bottom: 50px;
}
.nature-living-card {
  max-width: 424px;
  padding: 46px 54px;
  border-radius: 40px;
  border: 1px solid var(--primary-color);
}
.nature-living-card-cntn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.nature-living-card-cntn-2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.nature-living-card-cntn-2 > span {
  font-size: 20px;
  font-weight: 400;
  color: var(--primary-color);
}
.nature-living-card-cntn-2 > p {
  font-size: 20px;
  font-weight: 400;
  color: var(--primary-color);
  margin-right: 68px;
}
.nature-living-card-cntn > span {
  font-size: 20px;
  font-weight: 400;
  color: var(--primary-color);
}
.nature-living-card-cntn > P {
  font-size: 20px;
  font-weight: 400;
  color: var(--primary-color);
  margin-right: 38px;
}
.nature-living-card-cntn-1 > span {
  font-size: 20px;
  font-weight: 400;
  color: var(--primary-color);
}
.nature-living-card-cntn-1 > p {
  font-size: 20px;
  font-weight: 400;
  color: var(--primary-color);
}
.nature-living-card-cntn-1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nature-btn {
  width: 240px;
  height: 63px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 72px;
  border: 1px solid var(--tertary-color);
  margin-top: 50px;
  transition: 0.5s linear;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.nature-btn > img {
  width: 56px;
  height: 56px;
  background: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-left: auto;
}
.nature-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to left,
    var(--tertary-color),
    var(--secondary-color)
  );
  transform: skewX(-25deg);
}
.nature-btn:hover::before {
  animation: shine 1s;
  transition: 0.5s linear;
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
/* .nature-btn:hover {
  box-shadow: 0 0 15px var(--tertary-color), 0 0 40px var(--tertary-color);
  transform: scale(1.1);
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--tertary-color)
  );
} */
.nature-btn:hover > span {
  color: var(--primary-color);
}
.nature-btn:hover > img {
  transform: rotate(90deg);
  transition: 0.5s linear;
}
.nature-btn > span {
  font-size: 20px;
  font-weight: 400;
  color: var(--tertary-color);
  margin-left: 29px;
}

.nature-living-rhgt-hdr {
  display: flex;
  align-items: center;
}
.nature-living-rhgt-img-1 {
  max-width: 368px;
  margin-right: 25px;
}
.nature-living-rhgt-img-1 > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nature-living-rhgt-img-2 {
  max-width: 368px;
  align-self: flex-start;
}
.nature-living-rhgt-img-2 > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nature-living-rhgt-cntn > p {
  font-size: 20px;
  font-weight: 400;
  color: var(--primary-color);
  margin-top: 30px;
  margin-bottom: 30px;
}
.nature-living-rhgt-cntn > span {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-color);
}

/* your-needs-section */
.your-need-sec {
  padding: 50px 0px;
}
.your-need-left-hdr > h2 {
  font-size: 65px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 50px;
}
.your-need-left-hdr > h2 > span {
  color: var(--tertary-color);
}
.your-need-left-card {
  background: var(--fourth-color);
  border-radius: 40px;
  max-width: 410px;
  padding: 32px 40px;
  cursor: pointer;
}

.your-left-card-cntn > h2 {
  font-size: 75px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 26px;
  opacity: 30%;
  text-align: end;
}
.your-left-card-cntn > p {
  font-size: 37px;
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 20px;
}
.your-left-card-cntn > span {
  font-size: 21px;
  font-weight: 400;
  color: var(--primary-color);
}
.your-need-mid-card {
  background: var(--fivth-color);
  border-radius: 40px;
  padding: 32px 40px;
  max-width: 410px;
  height: 640px;
  cursor: pointer;
}

.your-need-mid-card-cntn > h2 {
  font-size: 75px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 260px;
  opacity: 30%;
  text-align: end;
}
.your-need-mid-card-cntn > p {
  font-size: 37px;
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 20px;
}
.your-need-mid-card-cntn > span {
  font-size: 21px;
  font-weight: 400;
  color: var(--primary-color);
}
.your-need-rhgt-wrpr {
  position: relative;
  top: 102px;
}
.your-need-rhgt-card {
  background: var(--fourth-color);
  border-radius: 40px;
  max-width: 410px;
  padding: 32px 40px;
  margin-bottom: 50px;

  cursor: pointer;
}
.your-need-rhgt-card :hover {
}
/* .circle-reveal{
  position:relative;
  overflow:hidden;
  z-index:0;
}
.circle-reveal::before{
  content:"";
  position:absolute;
  width:0;
  height:0;
  top:50%;
  left:50%;
  background:linear-gradient(45deg,var(--tertary-color),var(--primary-color));
  border-radius:50%;
  transform:translate(-50%,-50%);
  transition:all .6s ease;
  z-index:-1;
}
.circle-reveal:hover::before{
  width:300%;
  height:300%;
}
.circle-reveal:hover{
  transform:translateY(-5px);
} */
.your-rhgt-card-cntn > h2 {
  font-size: 75px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 26px;
  opacity: 30%;
  text-align: end;
}
.your-rhgt-card-cntn > p {
  font-size: 37px;
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 20px;
}
.your-rhgt-card-cntn > span {
  font-size: 21px;
  font-weight: 400;
  color: var(--primary-color);
}
.need-btn {
  width: 214px;
  height: 63px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--secondary-color);
  border-radius: 72px;
  border: 1px solid var(--tertary-color);
  margin-left: auto;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
/* .need-btn::before{
content:"";
  position:absolute;
  inset:0;
  border-radius:12px;
  background:linear-gradient(to right, var(--primary-color), var(--fivth-color));
  transform:translateX(-100%);
  transition:transform .5s ease;
  z-index:0;
} */
/* .need-btn:hover{
 transform: scale(1);
} */
.need-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to left,
    var(--tertary-color),
    var(--secondary-color)
  );
  transform: skewX(-25deg);
}
.need-btn:hover::before {
  animation: shine 1s;
  transition: 0.5s linear;
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
.need-btn:hover > img {
  transform: rotate(90deg);
  transition: 0.5s linear;
}
.need-btn:hover::before {
  transform: translateX(0);
}
.need-btn:hover > span {
  color: var(--primary-color);
}
.need-btn > img {
  width: 56px;
  height: 56px;
  background: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-left: auto;
}

.need-btn > span {
  font-size: 20px;
  font-weight: 400;
  color: var(--tertary-color);
  margin-left: 29px;
}
.need-btn > img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin-left: auto;
}

/* galary-section */

.galary-sec {
  padding: 100px 0px;
  margin-inline: 10px;
  background: var(--primary-color);
  border-radius: 40px;
  /* position: relative; */
}
.gallary-left-hdr > h2 {
  font-size: 65px;
  font-weight: 600;
  color: var(--tertary-color);
  opacity: 30%;
  margin-bottom: 70px;
}
.gallery-left-img {
  max-width: 648px;
}
.gallery-left-img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.galary-rhgt-hdr > h2 {
  max-width: 578px;
  font-size: 60px;
  font-weight: 600;
  color: var(--secondary-color);

  margin-bottom: 30px;
  position: relative;
  top: -84px;
}
.galary-rhgt-main-img {
  display: flex;
  align-items: center;
  /* position: absolute;
  top: 34%; */
}
.galary-rhgt-img {
  max-width: 312px;
  margin-right: 20px;
}
.galary-rhgt-img-1 {
  max-width: 312px;
  margin-right: 20px;
}
.galary-rhgt-img-1 > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 40px;
}
.galary-rhgt-img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 40px;
}
.galary-rhgt-cntn {
  position: relative;
  bottom: -20%;
}
.galary-rhgt-cntn > h5 {
  font-size: 37px;
  font-weight: 600;
  color: var(--secondary-color);
  margin-top: 30px;
}
.galary-rhgt-cntn > p {
  max-width: 300px;
  font-size: 20px;
  font-weight: 400;
  color: var(--secondary-color);
  margin-top: 12px;
}
.galary {
  display: flex;
  justify-content: space-between;
}
.galary-rhgt-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  bottom: -50px;
  right: 10px;
}
.galary-btn {
  width: 50px;
  height: 50px;
  background: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 40px;
  border: none;
  outline: none;
}
.galary-btn:hover {
  background: linear-gradient(
    to left,
    var(--footer-btm-color),
    var(--text-color)
  ) !important;
}

/* client-section */
/* .border-swipe {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.border-swipe::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: linear-gradient(
    to right,
    var(--fivth-color),
    var(--primary-color)
  );
  transform: translateX(-100%);
  transition: transform 0.5s ease;
  z-index: 0;
}
.border-swipe:hover {
  transform: scale(1);
}
.border-swipe:hover::before {
  transform: translateX(0);
}
.border-swipe {
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}
.border-swipe-1 {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.border-swipe-1::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: linear-gradient(
    to right,
    var(--fivth-color),
    var(--footer-btm-color)
  );
  transform: translateX(-100%);
  transition: transform 0.5s ease;
  z-index: 0;
}
.border-swipe-1:hover {
  transform: scale(1);
}
.border-swipe-1:hover::before {
  transform: translateX(0);
}
.border-swipe-1 {
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}
.corner-light {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.corner-light::before {
  content: "";
  position: absolute;
  top: -60%;
  left: -60%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at top left,
    var(--text-color),
    var(--fivth-color)
  );
  transform: scale(0);
  transition: transform 0.5s ease;
}
.corner-light:hover::before {
  transform: scale(1);
}
.corner-light:hover {
  transform: translateY(-5px);
} */
.client-sec {
  padding: 50px 0px;
}
.client-top-hdr > h2 {
  max-width: 456px;
  font-size: 63px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 30px;
}
.client-top-hdr > h2 > span {
  color: var(--tertary-color);
}
.client-left-card {
  max-width: 760px;
  height: 333px;
  background: var(--fourth-color);
  border-radius: 40px;
  margin-bottom: 20px;
  padding: 30px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: 0.5s linear;
}

.client-img-1 {
  max-width: 500px;
  height: 333px;
}
.client-img-1 > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.client-cntn-1 > p {
  max-width: 372px;
  font-size: 17px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 17px;
  text-align: center;
  margin-left: auto;
}
.client-cntn-1 > h6 {
  font-size: 25px;
  font-weight: 700;
  color: var(--primary-color);
  opacity: 50%;
}
.client-img-2 {
  max-width: 357px;
  height: 320px;
}
.client-img-2 > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-left-sub-hdr {
  display: flex;
  align-items: center;
}
.client-left-card-1 {
  max-width: 368px;
  padding: 58px 54px 0px;
  background: var(--fourth-color);
  margin-right: 24px;
  border-radius: 40px;
}
.client-cntn-2 > h5 {
  font-size: 37px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 20px;
}
.client-cntn-2 > p {
  font-size: 25px;
  font-weight: 700;
  text-align: center;
  color: var(--primary-color);
  opacity: 50%;
  margin-bottom: 20px;
}
.client-img-3 {
  max-width: 540px;
}
.client-img-3 > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-left-card-2 {
  max-width: 368px;
  height: 500px;
  padding: 58px 54px;
  background: var(--fourth-color);
  border-radius: 40px;
}
.client-left-card-2 > p {
  max-width: 285px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0 auto;
}
.client-left-card-2 > h5 {
  margin-top: 60px;
  font-size: 25px;
  font-weight: 700;
  color: var(--primary-color);
  opacity: 50%;
}
.client-rhgt-card {
  /* max-width: 540px; */
  max-width: 100%;
  width: 100%;
  background: var(--fourth-color);
  border-radius: 40px;
  padding: 100px 55px 0px;
  margin-bottom: 20px;
}
.client-rhgt-cntn > h2 {
  font-size: 65px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 20px;
}
.client-rhgt-cntn > p {
  font-size: 25px;
  font-weight: 700;
  text-align: center;
  color: var(--primary-color);
  opacity: 50%;
}
.client-rhgt-img {
  max-width: 500px;
}
.client-rhgt-img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.client-rhgt-card-1 {
  /* max-width: 536px; */
  max-width: 100%;
  width: 100%;
  padding: 100px;
  background: var(--primary-color);
  border-radius: 42px;
}
.client-rhgt-cntn-1 > h2 {
  font-size: 65px;
  font-weight: 500;
  color: var(--tertary-color);
  margin-bottom: 20px;
}
.client-rhgt-cntn-1 > p {
  font-size: 25px;
  font-weight: 700;
  text-align: center;
  color: var(--tertary-color);
  opacity: 50%;
}
.client-rhgt-card-2 {
  /* max-width: 536px; */
  max-width: 100%;
  width: 100%;
  height: 156px;
  padding: 8px 0px 8px 60px;
  background: var(--fourth-color);
  border-radius: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  position: relative;
}
.client-rhgt-cntn-2 > h2 {
  font-size: 65px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 10px;
}
.client-rhgt-cntn-2 > h2 > span {
  color: var(--primary-color);
}
.client-rhgt-cntn-2 > p {
  font-size: 25px;
  font-weight: 700;
  color: var(--primary-color);
  opacity: 50%;
}
.clirnt-rhgt-img-1 {
  position: absolute;
  top: 10px;
  right: 10px;
}
.client-arrow{
  width: 54px;
  height: 54px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.client-arrow>img{
  width: 16px;
  height: 16px;
  object-fit: cover;
}

/* client-trust-section */
.client-sec {
  padding: 50px 0px;
}
.client-trust-top-hdr > h2 {
  max-width: 657px;
  font-size: 60px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 50px;
}
.client-trust-top-hdr > h2 > span {
  color: var(--tertary-color);
}
.client-trust-btm-card {
  max-width: 380px;
  border-radius: 40px;
  background: var(--primary-color);
  padding: 58px 40px;
  margin-bottom: 70px;
}
.client-trust-cntn > h5 {
  max-width: 240px;
  font-size: 37px;
  font-weight: 500;
  color: var(--tertary-color);
  margin-bottom: 25px;
}
.client-trust-cntn > p {
  max-width: 300px;
  font-size: 20px;
  font-weight: 400;
  color: var(--tertary-color);
  margin-bottom: 25px;
}
.client-trust-img {
  width: 124px;
  height: 124px;
}
.client-trust-img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.client-trust-btn {
  width: 240px;
  height: 63px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 72px;
  border: 1px solid var(--tertary-color);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.4s;
}
.client-trust-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to left,
    var(--tertary-color),
    var(--secondary-color)
  );
  transform: skewX(-25deg);
}
.client-trust-btn:hover::before {
  animation: shine 0.8s;
  transition: 0.5s linear;
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
.client-trust-btn:hover {
  background: linear-gradient(
    to left,
    var(--primary-color),
    var(--tertary-color)
  );
}
.client-trust-btn:hover > span {
  color: var(--secondary-color);
}
.client-trust-btn:hover > img {
  transform: rotate(90deg);
  transition: 0.5s linear;
}
/* .client-trust-btn::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary-color), var(--fivth-color));
  transition: bottom 0.4s;
  z-index: -1;
}
.client-trust-btn:hover::before {
  bottom: 0;
} */
.client-trust-btn > img {
  width: 56px;
  height: 56px;
  background: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-left: auto;
}
.client-trust-btn > span {
  font-size: 20px;
  font-weight: 400;
  color: var(--tertary-color);
  margin-left: 29px;
}

.faq-que-1 {
  font-size: 30px !important;
  font-weight: 600 !important;
  color: var(--primary-color) !important;
}
.faq-item-1 {
  border-bottom: 1px solid var(--tertary-color) !important;
  /* padding: 40px 0px !important; */
  padding-bottom: 70px !important;
  cursor: pointer !important;
  position: relative;
}

.faq-question {
  font-size: 25px;
  font-weight: 500;
  color: var(--text-color);
  padding-right: 40px;
  user-select: none;
  cursor: default;
  transition: color 0.3s ease;
}
.faq-item.active .faq-question {
  color: #d39b31;
}
/* arrow as image */
.faq-arrow {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  /* width: 24px;
  height: 24px; */
  cursor: pointer;
  transition: transform 0.3s ease;
}
.faq-arrow > img {
  width: 30px;
  height: 30px;
  object-fit: cover;
}
/* rotate arrow on open */
.faq-arrow.open {
  transform: rotate(-90deg);
}

/* content box */
.faq-content {
  max-width: 871px;
  font-size: 20px;
  font-weight: 400;
  display: none;
  color: var(--primary-color);
  margin-top: 10px;
  padding-right: 40px;
  line-height: 1.6;
}
.faq-sub-cntn {
  max-width: 600px !important;
  font-size: 15px !important;
}

/* Optional hover effect (no movement) */
/* .trust-header:hover h3 {
      color: #d8b344;
    } */

/* property-section */

.property-sec {
  padding: 50px 0px;
}
.property-top-hdr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.property-top-hdr > h2 {
  max-width: 607px;
  font-size: 65px;
  font-weight: 600;
  color: var(--primary-color);
}
.property-top-hdr > h2 > span {
  color: var(--tertary-color);
}
.property-top-hdr > p {
  font-size: 65px;
  font-weight: 600;
  color: var(--primary-color);
  opacity: 30%;
}

.property-card {
  max-width: 417px;
  padding: 10px;
  border: 1px solid var(--tertary-color);
  border-radius: 40px;
}
.property-img {
  max-width: 397px;
}
.property-img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 38px;
}
.property-cntn {
  display: flex;
  align-items: center;
  position: relative;
}
.property-cntn-1 > h5 {
  max-width: 260px;
  font-size: 35px;
  font-weight: 600;
  color: var(--primary-color);
  text-align: start;
  margin-bottom: 15px;
}
.property-line {
  max-width: 260px;
  height: 1px;
  background: var(--tertary-color);
  margin-bottom: 15px;
}
.property-cntn-1 > p {
  max-width: 260px;
  font-size: 20px;
  font-weight: 400;
  color: var(--primary-color);
  text-align: start;
}
.property-cntn-2 {
  width: 56px;
  height: 56px;
  background: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 38px;
  position: absolute;
  right: 15px;
}
.property-cntn-2 >a> img {
  width: 16px;
  height: 16px;
  object-fit: cover;
}
.slider-container {
  position: relative;
  width: 100%;
}

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

/* .swiper-slide {
  background: white;
  border-radius: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  font-size: 20px;
  padding: 50px 0;
} */

.swiper-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary-color) !important;
  border: none;
  border-radius: 50%;
  width: 54px;
  height: 54px;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper-button > img {
  margin: 0 auto;
}
.swiper-button:hover {
  box-shadow: 0px 0px 20px var(--fivth-color) !important;
  background: linear-gradient(
    90deg,
    var(--fivth-color),
    var(--primary-color)
  ) !important;
}

.prev-btn {
  left: -60px;
}

.next-btn {
  right: -60px;
}

/* insight-section */
.insight-sec {
  padding: 50px 0px;
}
.insight-top-hdr > h2 {
  font-size: 65px;
  font-weight: 600;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 60px;
}
.insight-img {
  max-width: 536px;
}
.insight-img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 40px;
}
.insight-left-hdr > h6 {
  max-width: 536px;
  font-size: 36px;
  font-weight: 500;
  color: var(--primary-color);
  margin-top: 42px;
  margin-bottom: 25px;
}
.insight-left-hdr > p {
  max-width: 536px;
  font-size: 20px;
  font-weight: 400;
  color: var(--primary-color);
  margin-bottom: 40px;
}
.insight-btn {
  width: 220px;
  height: 63px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 72px;
  border: 1px solid var(--tertary-color);
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.insight-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to left,
    var(--tertary-color),
    var(--secondary-color)
  );
  transform: skewX(-25deg);
}
.insight-btn:hover::before {
  animation: shine 0.8s;
  transition: 0.5s linear;
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
/* .insight-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75px;
  width: 50px;
  height: 100%;
  background: linear-gradient(
    to left,
    var(--fivth-color),
    var(--primary-color)
  );
  transform: skewX(-25deg);
  transition: left 0.6s;
}
.insight-btn:hover::after {
  left: 120%;
} */
.insight-btn:hover {
  background: linear-gradient(
    to left,
    var(--fivth-color),
    var(--footer-btm-color)
  );
}
.insight-btn:hover > img {
  transform: rotate(90deg);
  transition: 0.5s linear;
}
.insight-btn > img {
  width: 56px;
  height: 56px;
  background: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-left: auto;
}
.insight-btn > span {
  font-size: 20px;
  font-weight: 400;
  color: var(--tertary-color);
  margin-left: 29px;
}

.insight-rhgt-hdr {
  margin-top: 60px;
}
.insight-rhgt-cntn > h5 {
  max-width: 610px;
  font-size: 30px;
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 26px;
}
.insight-rhgt-cntn > p {
  font-size: 20px;
  font-weight: 400;
  color: var(--primary-color);
  margin-bottom: 45px;
}
.insight-line {
  max-width: 711px;
  height: 1px;
  background: var(--tertary-color);
  margin-bottom: 40px !important;
}

/* faq-section */
.faq-top-hdr > h2 {
  font-size: 65px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 50px;
  text-align: center;
}
.faq-top-hdr {
  margin-bottom: 50px;
}
.faq-top-hdr > h2 > span {
  color: var(--tertary-color);
}
.faq-top-hdr > p {
  max-width: 1096px;
  color: var(--primary-color);
  font-size: 20px;
  font-weight: 400;
  margin: 0 auto;
  text-align: center;
}
.faq-item {
  border-bottom: 1px solid var(--tertary-color);
  padding: 24px 0;
  position: relative;
  cursor: pointer;
}

.faq-question {
  font-size: 25px;
  font-weight: 500;
  color: var(--text-color);
  padding-right: 40px;
  user-select: none;
  cursor: default;
  transition: color 0.3s ease;
}
.faq-item.active .faq-question {
  color: #d39b31;
}
/* arrow as image */
/* .faq-arrow {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  transition: transform 0.3s ease;
} */
.faq-arrow img {
  transition: 0.3s;
}

.faq-arrow img.open {
  transform: rotate(-90deg);
}

.faq-arrow {
  transition: 0.3s;
  display: inline-block;
}
.faq-arrow > img {
  width: 30px;
  height: 30px;
  object-fit: cover;
}
/* rotate arrow on open */
/* .faq-arrow.open {
  transform: rotate(-90deg);
} */

/* content box */
.faq-content {
  max-width: 871px;
  font-size: 20px;
  font-weight: 400;
  display: none;
  color: var(--primary-color);
  margin-top: 10px;
  padding-right: 40px;
  line-height: 1.6;
}

/* remove all focus/active borders and highlights */
.faq-arrow,
.faq-arrow:focus,
.faq-arrow:active,
.faq-arrow:focus-visible {
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
  background: none !important;
  -webkit-tap-highlight-color: transparent !important;
}

* {
  -webkit-tap-highlight-color: transparent !important;
  outline: none !important;
}
.faq-btm-hdr {
  margin-bottom: 50px;
}
.faq-btn {
  margin-top: 50px;
}
.btn-1 {
  margin: 0px auto;
}
/* footer-section */
.footer-sec {
  padding: 50px 0px;
  background: var(--primary-color);
 margin-inline: 10px;
 margin-bottom: 10px;
  border-radius: 40px;
}
.footer-logo {
  max-width: 210px;
  margin-bottom: 50px;
}
.footer-logo > a {
  width: 100%;
}
.footer-logo > a > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.footer-sub-menu {
  font-size: 20px;
  font-weight: 400;
  color: var(--secondary-color);
  margin-bottom: 45px;
}
.footer-links {
  font-size: 20px;
  font-weight: 400;
  color: var(--secondary-color);
  margin-bottom: 15px;
  position: relative;
}
.footer-links:hover {
  color: var(--tertary-color);
}
.footer-links:after {
  content: "";
  position: absolute;
  /* bottom: -5px; */
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to left, var(--tertary-color), var(--text-color));
  transition: width 0.3s linear;
}
.footer-links:hover::after {
  width: 100%;
}
.footer-sub-write {
  font-size: 24px;
  font-weight: 500;
  color: var(--secondary-color);
  margin-bottom: 47px;
}
.footer-write-us > p {
  max-width: 336px;
  font-size: 20px;
  font-weight: 400;
  color: var(--secondary-color);
  margin-bottom: 30px;
}
.footer-mid-btn {
  width: 226px;
  height: 57px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--secondary-color);
  border-radius: 115px;
  border: 1px solid var(--tertary-color);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.footer-mid-btn:hover {
  background: linear-gradient(
    to left,
    var(--fivth-color),
    var(--primary-color)
  );
}
.footer-mid-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to left,
    var(--tertary-color),
    var(--secondary-color)
  );
  transform: skewX(-25deg);
}
.footer-mid-btn:hover::before {
  animation: shine 0.8s;
  transition: 0.5s linear;
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
.footer-mid-btn:hover > span {
  color: var(--text-color);
}
.footer-mid-btn:hover > img {
  transform: rotate(90deg);
  transition: 0.5s linear ;
}
.footer-mid-btn > span {
  font-size: 20px;
  font-weight: 400;
  margin-left: 26px;
  color: var(--primary-color);
}
.footer-mid-btn > img {
  width: 52px;
  height: 52px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--primary-color);
  border-radius: 50%;
  margin-left: auto;
}

.footer-sub-contact {
  width: 190px;
  height: 54px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--footer-btm-color);
  border-radius: 115px;
  font-size: 25px;
  font-weight: 400;
  color: var(--primary-color);
  margin-bottom: 43px;
}
.footer-form {
  display: flex;
  flex-direction: column;
}
#name {
  padding: 16px 32px;
  border-radius: 40px;
  background: var(--secondary-color);
  border: 1px solid var(--fivth-color);
  max-width: 560px;
  margin-bottom: 15px;
  font-size: 25px;
  font-weight: 400;
  color: var(--primary-color);
  outline: none;
}
#email {
  padding: 16px 32px;
  border-radius: 40px;
  background: var(--secondary-color);
  border: 1px solid var(--fivth-color);
  max-width: 560px;
  margin-bottom: 15px;
  font-size: 25px;
  font-weight: 400;
  color: var(--primary-color);
  outline: none;
}
#msg {
  padding: 16px 32px;
  border-radius: 40px;
  background: var(--secondary-color);
  border: 1px solid var(--fivth-color);
  margin-bottom: 15px;
  max-width: 560px;
  height: 180px;
  font-size: 25px;
  font-weight: 400;
  color: var(--primary-color);
  outline: none;
}
.send-btn {
  width: 170px;
  height: 57px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--secondary-color);
  border-radius: 115px;
  border: 1px solid var(--tertary-color);
  margin: 0 auto;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.send-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to left,
    var(--tertary-color),
    var(--secondary-color)
  );
  transform: skewX(-25deg);
}
.send-btn:hover::before {
  animation: shine 0.8s;
  transition: 0.5s linear;
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
.send-btn:hover {
  background: linear-gradient(
    to left,
    var(--fivth-color),
    var(--primary-color)
  );
  transition: 0.5s linear;
}
.send-btn:hover > span {
  color: var(--text-color);
}
.send-btn:hover > img {
  transform: rotate(90deg);
  transition: 0.5s linear;
}
.send-btn > span {
  font-size: 20px;
  font-weight: 400;
  margin-left: 26px;
  color: var(--primary-color);
}
.send-btn > img {
  width: 52px;
  height: 52px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--primary-color);
  border-radius: 50%;
  margin-left: auto;
}
.footer-sub-mid-hdr > ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-sub-mid-img {
  width: 52px;
  height: 52px;
  background: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 20px;
  transition: 0.5s linear;
}
.footer-sub-mid-img:hover {
  background: linear-gradient(
    to top,
    var(--primary-color),
    var(--tertary-color)
  );
}
.footer-sub-mid-img:hover > img {
  transform: translateY(-10px);
  transition: 0.5s linear;
}
.footer-btm-term {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.footer-btm-left > p {
  font-size: 15px;
  font-weight: 400;
  color: var(--secondary-color);
}
.footer-btm-left > p > a {
  font-size: 15px;
  font-weight: 400;
  color: var(--secondary-color);
}
.footer-btm-left > p > a:hover {
  color: var(--fivth-color);
}
.footer-btm-rhgt > ul {
  display: flex;
  align-items: center;
}
.footer-btm-rhgt > ul > li > a {
  font-size: 15px;
  font-weight: 400;
  color: var(--secondary-color);
  margin-right: 43px;
}
#error-msg{
  color: var(--tertary-color);
  margin-top: 10px;
}

@media screen and (max-width: 2570px) {
  .navbar-btn-1 {
    margin-left: 25px;
  }
  .nav-logo {
    padding-left: 50px;
  }
}
@media screen and (max-width: 1640px) {
  /* header-section */
  .header-sec {
    padding: 5px 5px;
  }
  .header-top-wrpr {
    padding: 8px 30px;
    margin-bottom: 5px;
  }
  .header-top-wrpr-iner {
    display: flex;
    flex-direction: row !important;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  .header-top-left > ul > li {
    margin-right: 10px;
  }
  .contact-number > span {
    font-size: 10px;
    padding-left: 5px;
  }
  .contact-email > span {
    font-size: 10px;
    padding-left: 5px;
  }
  .contact-email > span {
    font-size: 10px;
    padding-left: 5px;
  }
  .language > span {
    font-size: 10px;
    padding-left: 5px;
  }
  .contact-number > img {
    width: 12px;
    height: 12px;
    object-fit: cover;
  }
  .contact-email > img {
    width: 12px;
    height: 12px;
    object-fit: cover;
  }
  .language > img {
    width: 11px;
    height: 11px;
    object-fit: cover;
  }
  .header-btm-wrpr {
    padding: 2px 15px;
  }
  .nav-logo {
    max-width: 100px;
    padding-top: 7px;
    padding-left: 0px;
  }
  .nav-logo > a {
    width: 100%;
  }
  .nav-logo > a > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .navbar-collesped > ul > li {
    margin-right: 35px;
  }
  .nav-links {
    font-size: 12px;
    font-weight: 400;
    color: var(--secondary-color);
  }
  .active {
    font-size: 12px;
    font-weight: 400;
    color: var(--secondary-color);
  }
  .navbar-collesped > ul > li:nth-child(8) {
    margin-right: 0px;
  }
  .primary-btn {
    width: 160px;
    height: 40px;
  }
  .primary-btn > span {
    font-size: 15px;
    font-weight: 400;
    color: var(--tertary-color);
  }
  .primary-btn > img {
    width: 35px;
    height: 35px;
  }
  .navbar-btn-1 {
    margin-bottom: 5px;
  }
}

@media screen and (max-width: 1410px) {
  .navbar-collesped > ul > li {
    margin-right: 25px;
  }
  .nav-links {
    font-size: 12px;
  }
  .active {
    font-size: 12px;
  }
}
@media screen and (max-width: 1340px) {
  .banner-top-cntn > h1 {
    font-size: 68px;
    margin-bottom: 41px;
  }
  .banner-top-cntn > p {
    margin-bottom: 50px;
  }
  .banner-btm-cntn-1 > h5 {
    font-size: 23px;
  }
  .banner-btm-sub-cntn-1 > p {
    font-size: 21px;
    margin-bottom: 15px;
    margin-left: 26px;
  }
  .banner-btm-cntn-2 > h5 {
    font-size: 19px;
  }

  /* dream-house */
  .dream-house-btm-cntn > img {
    width: 72px;
    height: 72px;
    object-fit: cover;
  }
  .galary-rhgt-hdr > h2 {
    font-size: 58px;
    margin-bottom: 40px;
    top: 10px;
  }
  .dream-house-btm-cntn-1 > img {
    width: 72px;
    height: 72px;
    object-fit: cover;
  }
  .prev-btn {
    left: -37px;
  }
  .navbar-collesped > ul > li {
    margin-right: 12px;
  }
}
@media screen and (max-width: 1250px) {
  /* navbar-sec */
  .close-btn {
    display: block;
    margin-left: auto;
    position: relative;
    transition: all 0.5s linear;
    z-index: 999;
  }
  .navbar-collesped {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    height: 100vh;
    width: 50%;
    transition: all 0.5s linear;
    padding: 100px 0;
    z-index: 99;
    background: var(--primary-color);
  }
  .navbar-collesped,
  .navbar-collesped > ul,
  .navbar-btn {
    flex-direction: column;
  }
  .close-btn.open::after {
    display: none;
  }
  .close-btn.open::before {
    transform: rotate(-45deg) translateX(-5px);
  }
  .close-btn.open > span {
    transform: rotate(45deg) translateX(-5px);
  }
  .close-btn > span {
    display: inline-block;
    width: 30px;
    height: 2px;
    background: var(--tertary-color);
    transition: all 0.5s linear;
    margin: 6px 0px;
  }
  .close-btn::before {
    content: " ";
    width: 30px;
    height: 2px;
    background: var(--tertary-color);
    position: absolute;
    right: 0px;
    top: 5px;
    transition: all 0.5s linear;
    margin: -1px 0px;
  }
  .close-btn::after {
    content: " ";
    width: 30px;
    height: 2px;
    background: var(--tertary-color);
    position: absolute;
    right: 0px;
    bottom: -4px;
    transition: all 0.5s linear;
    margin: 10px 0px;
  }
  .navbar-collesped > ul > li {
    margin: 10px;
  }
  .active {
    margin-left: auto;
  }
  .navbar-btn {
    margin: 0 auto;
    /* display: block; */
  }
  .header-btm-wrpr-inr {
    align-items: center;
  }
  .nav-logo {
    padding-top: 5px;
  }
  .header-btm-wrpr {
    padding: 5px 15px;
  }
  .primary-btn {
    width: 160px;
    height: 45px;
  }
  .navbar-btn-1 {
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 1260px) {
  .banner-btm-sub-cntn-1 > p {
    margin-left: 19px;
  }
  .banner-btm-cntn-1 > h5 {
    font-size: 19px;
  }
  .dream-house-btm-cntn > img {
    width: 60px;
    height: 60px;
    object-fit: cover;
  }
  .dream-house-btm-cntn > h5::after {
    content: "";
    width: 381px;
  }
  .dream-house-btm-cntn > h5 {
    font-size: 34px;
    margin-top: 10px;
  }
  .dream-house-btm-cntn > p {
    max-width: 400px;
    font-size: 17px;
  }
  .dream-house-left-hdr > h2 {
    font-size: 60px;
  }
  .dream-house-btm-cntn-2 {
    width: 60px;
    height: 60px;
  }
  .dream-house-btm-cntn-1 > h5 {
    font-size: 34px;
    margin-top: 10px;
  }
  .dream-house-btm-cntn-1 > p {
    max-width: 400px;
    font-size: 17px;
  }
  .dream-house-btm-cntn-1 > h5::after {
    content: "";
    width: 381px;
  }
  .your-need-left-hdr > h2 {
    font-size: 55px;
  }
  .toggle-hdr ::after {
    content: "";
    width: 780px;
    position: absolute;
    top: 200%;
    left: 0;
  }
}

@media screen and (max-width: 1200px) {
  .col-6 {
    width: 100%;
  }
  .col-4 {
    width: 100%;
  }
  .nature-living-rhgt-img-1{
    max-width: 100%;
    width: 100%;
  }
  .nature-living-rhgt-img-2{
    max-width: 100%;
    width: 100%;
  }
  .nature-living-card {
    max-width: 100%;
  }
  .nature-living-left-hdr {
    margin: 15px auto;
  }
  .nature-btn{
    margin: 20px auto;
  }
  .col-33 {
    width: 50%;
  }
  .your-need-left-card{
    max-width: 100%;
    width: 100%;
  }
  .your-need-left-hdr{
    max-width: 100%;
    width: 100%;
  }
  .your-need-mid-card{
    max-width: 100% !important;
    width: 100% !important;
  }
  .your-need-rhgt-card{
    max-width: 100% !important;
   width: 100% !important;
  }
  .need-btn {
    margin-left: 160px;
  }
  .your-need-rhgt-card {
    margin-bottom: 20px;
  }
  .your-need-rhgt-wrpr {
    top: 5px;
  }
  .col-3 {
    width: 100%;
  }
  .gallery-left-img{
    max-width: 100%;
    width: 100%;
  }
  
   .galary-rhgt-img {
   max-width: 500px;
 /* margin-right: 30px; */
 margin: 0 auto;
  }
  .galary-rhgt-img>img{
    border-radius: 40px;
  }
  .galary-rhgt-img-1 {
    max-width: 500px;
    margin: 0 auto;
  }
  .galary-rhgt-img-1>img{
  border-radius: 40px;
  }
  .galary-rhgt-btn {
    position: relative;
    right: 172px;
  }
  .col-2 {
    width: 100%;
  }
  .client-left-hdr {
    margin-bottom: 20px;
  }
  .client-left-card{
    max-width: 100%;
    width: 100%;
  }
  .client-left-card-1{
    max-width: 100%;
    width: 100%;
    height: 623px;
  }
  .client-left-card-2{
    max-width: 100%;
    width: 100%;
    height: 623px;
  }
  .client-rhgt-card{
    max-width: 100%;
    width: 100%;
  }
  .client-rhgt-card-1{
    max-width: 100%;
    width: 100%;
    
  }
  .client-rhgt-card-2{
    max-width: 100%;
    width: 100%;
  }
  .client-rhgt-cntn > p{
    margin-left: -570px;
  }
  .client-rhgt-cntn-1 > p {
margin-left: -530px;

}
  .toggle-hdr ::after {
    content: "";
    width: 700px;
    position: absolute;
    top: 200%;
    left: 0;
  }
  .swiper-button {
    top: 110%;
  }
  .prev-btn {
    left: 30px;
  }
  .next-btn {
    right: 30px;
  }
  .faq-question-1 > h6 {
    font-size: 25px;
    margin-right: 40px;
  }
  
}
@media screen and (max-width: 1150px) {
  
 
  .send-btn {
    margin-left: 180px;
    margin-bottom: 20px;
  }
  /* .footer-row {
    justify-content: center;
  } */
}

@media screen and (max-width: 1100px) {
  .banner-btm-sub-cntn-1 > p {
    font-size: 16px;
  }
  .banner-btm-cntn-1 > h5 {
    font-size: 17px;
  }

  .banner-btm-cntn-2 > h5 {
    font-size: 16px;
  }

  .banner-top-cntn > h1 {
    font-size: 60px;
  }
  .toggle-hdr ::after {
    content: "";
    width: 650px;
    position: absolute;
    top: 200%;
    left: 0;
  }
  .col-13 {
    width: 100%;
  }
  .col-12 {
    width: 100%;
  }
  .insight-img{
    max-width: 100%;
    width: 100%;
  }
  .faq-question {
    font-size: 22px;
    font-weight: 500;
  }
}
@media screen {
}
@media screen and (max-width: 1060px) {
  .col-16 {
    width: 100%;
  }
  .col-14 {
    width: 100%;
  }
  .client-trust-btm-card {
    max-width: 100%;
    width: 100%;
  }

  .toggle-hdr-rhgt {
    margin-right: 248px;
  }
  .client-trust-btm-cntn > h2 {
    font-size: 50px;
    font-weight: 600;
    margin-top: 60px;
  }
  .property-cntn-2 {
    top: 20px;
  }
 
}
@media screen and (max-width: 1030px) {
  .dream-house-btm-cntn > h5 {
    font-size: 28px;
    margin-top: 10px;
  }
  .dream-house-btm-cntn > p {
    max-width: 300px;
    font-size: 15px;
  }
  .dream-house-btm-cntn-2 {
    width: 50px;
    height: 50px;
  }
  .dream-house-btm-cntn > h5::after {
    content: "";
    width: 300px;
  }
  .dream-house-left-hdr > h2 {
    font-size: 50px;
  }
  .dream-house-left-hdr > h2 > span {
    font-size: 50px;
  }
  .dream-house-top-hdr {
    margin-bottom: 20px;
  }
  /* .dream-house-btm-cntn-1 > img {
    width: 50px;
    height: 50px;
    object-fit: cover;
  } */
  .dream-house-btm-cntn-1 > h5 {
    font-size: 28px;
    margin-top: 10px;
  }
  .dream-house-btm-cntn-1 > p {
    max-width: 310px;
    font-size: 15px;
  }
  .dream-house-btm-cntn-1 > h5::after {
    content: "";
    width: 300px;
  }
 
  .your-need-mid-card-cntn > h2 {
    margin-bottom: 200px;
  }
  .galary-rhgt-sub-img {
    position: relative;
    right: 300px;
  }
  .toggle-hdr-rhgt {
    margin-right: 220px;
  }
  .faq-question {
    font-size: 21px;
    font-weight: 500;
  }
  .galary-rhgt-img {
   max-width: 400px;
 /* margin-right: 30px; */
 margin: 0 auto;
  }
  .galary-rhgt-img>img{
    border-radius: 40px;
  }
  .galary-rhgt-img-1 {
    max-width: 400px;
    margin: 0 auto;
  }
  .galary-rhgt-img-1>img{
    border-radius: 40px;
  }
}

@media screen and (max-width: 992px) {
  .col-25 {
    width: 33.33%;
  }
  .banner-btm-sub-cntn-1 {
    margin-bottom: 15px;
  }
  .banner-btm-cntn-1 > h5 {
    margin-left: -26px;
  }
  .banner-btm-cntn-2 > h5 {
    margin-left: -17px;
  }
  /* .nature-living-rhgt-hdr {
    justify-content: flex-start;
  } */
  .nature-row {
    justify-content: flex-start !important;
  }
  .toggle-hdr-rhgt {
    margin-right: 192px;
  }
  .toggle-hdr-left > h5 {
    font-size: 24px;
  }
  .faq-question-1 > h6 {
    font-size: 23px;
    margin-right: 50px;
  }
  
  .galary-rhgt-btn {
    position: relative;
    right: 200px;
  }
  .client-rhgt-card {
    max-width: 100%;
  }
  .client-rhgt-cntn > p {
    margin-left: -336px;
  }
  .client-rhgt-card-1 {
    max-width: 100%;
  }
  .client-rhgt-cntn-1 > p {
    margin-left: -330px;
  }
  .client-rhgt-card-2 {
    max-width: 100%;
  }
  .client-trust-btm-card {
    max-width: 100%;
  }
  .col-19{
    width: 100%;
  }
}
@media screen and (max-width: 940px) {
  .nature-living-card {
    max-width: 100%;
    padding: 29px 15px;
  }
  .toggle-hdr-rhgt {
    margin-right: 142px;
  }
  .galary-rhgt-btn {
    position: relative;
    right: 150px;
  }
}

@media screen and (max-width: 900px) {
  .galary-rhgt-sub-img {
    position: relative;
    right: 200px;
  }
  .toggle-hdr-left > h5 {
    font-size: 24px;
  }
  .toggle-hdr-rhgt {
    margin-right: 140px;
  }
  .property-top-hdr > h2 {
    max-width: 607px;
    font-size: 50px;
  }
  .property-top-hdr > p {
    max-width: 607px;
    font-size: 50px;
  }
  .faq-question {
    font-size: 18px;
    font-weight: 500;
  }
  .galary-rhgt-btn {
    position: relative;
    right: 100px;
  }
 
}
@media screen and (max-width: 870px) {
  .dream-house-left-hdr > h2 {
    font-size: 45px;
  }
  .dream-house-left-hdr > h2 > span {
    font-size: 45px;
  }
  /* .col-33 {
    width: 100%;
  } */
  .your-need-mid-card {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .toggle-hdr-rhgt {
    margin-right: 100px;
  }
  .faq-question-1 > h6 {
    font-size: 19px;
    margin-right: 50px;
  }
  .col-19 {
    width: 100%;
  }
  /* .send-btn{
    margin-left: 180px;
    margin-bottom: 20px;
  } */
  .footer-row {
    justify-content: start;
  }
  .client-rhgt-cntn-1 > p {
    margin-left: -280px;
  }
   .client-left-sub-hdr {
    flex-direction: column;
  }
  .client-cntn-2 > p {
    margin-right: 300px;
  }
  .client-left-card-1 {
    margin-right: 0;
    margin-bottom: 20px;
   height: 100%;
}
.client-left-card-2 {
        max-width: 100%;
        width: 100%;
        height: 423px;
}
.client-left-card-2 > p {
  margin-left: 30px;
}
.footer-write-us > p {
  margin-bottom: 10px;
}
.footer-sub-write{
  margin-bottom: 10px;
}
.footer-sub-contact {
  margin-bottom: 10px;
}
.footer-mid-btn{
  margin-bottom: 20px;
}
 .galary-rhgt-btn {
    position: relative;
    right: 100px;
  }
}
@media screen and (max-width: 830px) {
  .dream-house-btm-cntn > h5 {
    font-size: 24px;
  }
  .dream-house-btm-cntn > p {
    max-width: 180px;
    font-size: 13px;
  }
  .dream-house-btm-cntn-2 {
    width: 50px;
    height: 50px;
  }
  .dream-house-btm-cntn > h5::after {
    content: "";
    width: 260px;
  }

  .dream-house-btm-cntn > h5 {
    font-size: 24px;
    margin-top: 10px;
  }
  .dream-house-btm-cntn-1 > p {
    max-width: 210px;
    font-size: 13px;
  }
  .dream-house-btm-cntn-1 > h5::after {
    content: "";
    width: 240px;
  }
  .nature-living-rhgt-img-1 {
    max-width: 100%;
  }
  .nature-living-rhgt-img-2 {
    max-width: 100%;
  }
  .toggle-hdr-rhgt {
    margin-right: 80px;
  }
  .faq-question-1 > h6 {
    font-size: 18px;
    margin-right: 60px;
  }
  .client-rhgt-cntn > p {
    margin-left: -290px;
  }
  .galary-rhgt-img {
   max-width: 350px;
 /* margin-right: 30px; */
 margin: 0 auto;
  }
  .galary-rhgt-img>img{
    border-radius: 40px;
  }
  .galary-rhgt-img-1 {
    max-width: 350px;
    margin: 0 auto;
  }
  .galary-rhgt-img-1>img{
    border-radius: 40px;
  }
}
@media screen and (max-width: 800px) {
  .col-18 {
    width: 100%;
  }
  
  .footer-write-us {
    margin-bottom: 20px;
  }
  .footer-btm-hdr {
    margin-top: 20px;
  }
  .your-left-card-cntn > p {
    font-size: 29px;
  }
  .your-need-mid-card-cntn > p {
    font-size: 29px;
  }
  .your-rhgt-card-cntn > p {
    font-size: 29px;
  }
  .galary-rhgt-btn {
    position: relative;
    right: 100px;
  }
  .client-rhgt-cntn > p {
    margin-left: -250px;
  }
  .galary-rhgt-img {
   max-width: 320px;
 /* margin-right: 30px; */
 margin: 0 auto;
  }
  .galary-rhgt-img>img{
    border-radius: 40px;
  }
  .galary-rhgt-img-1 {
    max-width: 320px;
    margin: 0 auto;
  }
  .galary-rhgt-img-1>img{
    border-radius: 40px;
  }
}
@media screen and (max-width: 768px) {
  .banner-top-cntn > h1 {
    font-size: 41px;
    margin-bottom: 20px;
  }
  .banner-top-cntn > p {
    font-size: 15px;
    margin-bottom: 20px;
  }
  .banner-btn {
    width: 170px;
    height: 50px;
  }
  .banner-btn > img {
    width: 45px;
    height: 45px;
  }
  .banner-btn > span {
    font-size: 15px;
  }
  .banner-btm-btn {
    width: 170px;
    height: 55px;
  }
  .banner-btm-btn > img {
    width: 45px;
    height: 45px;
  }
  .col-25 {
    width: 50%;
  }
  .banner-btm-cntn-1 > h5 {
    margin-left: -47px;
  }
  .banner-btm-cntn-2 > h5 {
    margin-left: -36px;
  }
  .banner-btm-top-cntn > span {
    font-size: 25px;
  }
  .banner-btm-top-cntn > p {
    font-size: 25px;
  }
  .col-4 {
    width: 100%;
  }
  .nature-living-card {
    max-width: 100%;
  }
  .nature-living-card-cntn-2 {
    margin-bottom: 20px;
  }
  .nature-living-card-cntn {
    margin-bottom: 20px;
  }
  /* .nature-living-rhgt-img-1 {
    max-width: 180px;
  }
  .nature-living-rhgt-img-2 {
    max-width: 180px;
  } */
  .nature-living-rhgt-cntn > p {
    font-size: 13px;
    margin-top: 5px;
    margin-bottom: 10px;
  }
  .nature-living-rhgt-cntn > span {
    font-size: 15px;
  }
  .nature-living-left-hdr > h2 {
    font-size: 55px;
    margin: 0 auto;
  }

  .nature-living-card-cntn-2 > span {
    font-size: 16px;
  }
  .nature-living-card-cntn-2 > p {
    font-size: 16px;
  }
  .nature-living-card-cntn > p {
    font-size: 16px;
    margin-right: 44px;
  }
  .nature-living-card-cntn > span {
    font-size: 16px;
  }
  .nature-living-card-cntn-1 > p {
    font-size: 16px;
    margin-right: 10px;
  }
  .nature-living-card-cntn-1 > span {
    font-size: 14px;
  }
  .nature-btn {
    width: 180px;
    height: 50px;
    margin-left: 200px;
    margin-top: 10px;
  }
  .nature-btn > img {
    width: 40px;
    height: 40px;
  }
  .nature-btn > span {
    font-size: 16px;
  }
  /* .your-need-mid-card {
    height: 540px;
    max-width: 374px;
  } */
  /* .your-need-mid-card-cntn > h2 {
    margin-bottom: 100px;
  } */
  .galary-rhgt-sub-img {
    position: relative;
    right: 54px;
  }
  .toggle-hdr-rhgt {
    margin-right: 70px;
  }
  .client-trust-cntn > h5 {
    font-size: 27px;
    margin-bottom: 20px;
  }
  .client-trust-cntn > p {
    max-width: 300px;
    font-size: 16px;
    margin-bottom: 20px;
  }
  .client-trust-img {
    width: 80px;
    height: 80px;
  }
  .client-trust-top-hdr > h2 {
    font-size: 50px;
  }
  .faq-question-1 > h6 {
    font-size: 17px;
    margin-right: 60px;
  }
  .footer-btm-term {
    flex-direction: column;
  }
  .client-rhgt-cntn-1 > p {
    margin-left: -250px;
  }
}
@media screen and (max-width: 750px) {
  .form-box {
    flex-direction: column;
  }

  /* Popup Form */

  .form-left {
    display: none;
  }
  .col-33 {
    width: 100%;
  }
  .galary-rhgt-btn {
    position: relative;
    right: 100px;
  }
 
}
@media screen and (max-width: 700px) {
  .banner-btm-cntn-1 > h5 {
    margin-left: -30px;
  }
  .banner-btm-cntn-2 > h5 {
    margin-left: -22px;
  }
  .col-5 {
    width: 100%;
  }
  .col-50 {
    width: 100%;
  }
  .banner-btm-sub-cntn-1 {
    flex-direction: column;
  }
  .dream-house-btm-cntn > h5 {
    margin-right: 30px;
  }
  .dream-house-btm-img {
    margin-bottom: 10px;
  }

  .dream-house-btm-cntn-1 > h5 {
    margin-right: 70px;
  }

  .dream-house-btm-cntn-1 > h5::after {
    content: "";
    width: 200px;
  }
  .dream-house-btm-cntn > p {
    max-width: 377px;
    font-size: 12px;
  }
  .dream-house-btm-cntn-1 > p {
    max-width: 412px;
    font-size: 13px;
  }
  .toggle-hdr-rhgt {
    margin-right: 110px;
  }
  .toggle-hdr-left > h5 {
    font-size: 20px;
  }
  .client-trust-cntn > h5 {
    font-size: 24px;
  }
  .faq-que-1 {
    font-size: 25px !important;
    font-weight: 600 !important;
    color: var(--primary-color) !important;
  }
  /* .client-trust-btm-card {
    width: 300px;
    height: 400px;
  } */
  .client-trust-cntn > p {
    margin-bottom: 30px;
  }
  .faq-question {
    font-size: 16px;
    font-weight: 500;
  }
  /* .nature-living-card {
    width: 330px;
    height: 150px;
  } */
  .col-18 {
    width: 100%;
  }
  .col-36 {
    margin-left: auto;
  }
  .footer-sub-write {
    margin-bottom: 20px;
  }
  .footer-sub-menu {
    margin-bottom: 20px;
  }
  .galary-rhgt-btn {
    position: relative;
    right: 50px;
  }
  /* .galary-rhgt-img {
   max-width: 100%;
   width: 100%;
 margin-right: 30px;
  }
  .galary-rhgt-img>img{
    border-radius: 40px;
  }
  .galary-rhgt-img-1 {
    max-width: 100%;
    width: 100%;
    margin-left: 1px;
  }
  .galary-rhgt-img-1>img{
    border-radius: 40px;
  } */
  .client-rhgt-cntn-1 > p {
    margin-left: -220px;
  }
  .your-need-left-card {
    max-width: 100%;
  }
  .your-need-mid-card {
    max-width: 100%;
  }
  .your-need-rhgt-card {
    max-width: 100%;
  }
   .client-cntn-2 > p {
    margin-right: 150px;
  }
  .property-cntn-2{
    width: 40px;
    height: 40px;
  }
  .property-cntn-2>a>img{
    width: 12px;
    height:12px ;
  }
  .galary-rhgt-img {
   max-width: 300px;
 /* margin-right: 30px; */
 margin: 0 auto;
  }
  .galary-rhgt-img>img{
    border-radius: 40px;
  }
  .galary-rhgt-img-1 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 630px) {
  .banner-btm-cntn-1 > h5 {
    margin-left: -14px;
  }
  .banner-btm-cntn-2 > h5 {
    margin-left: -6px;
  }
  .dream-house-btm-cntn > h5::after {
    content: "";
    width: 263px;
  }
  .nature-living-rhgt-hdr {
    flex-direction: column;
  }
  .nature-living-rhgt-img-1 {
    max-width: 100% !important;
  }
  /* .client-trust-btm-card {
    padding: 27px 21px;
  } */
  .client-trust-img {
    width: 60px;
    height: 60px;
  }
  .toggle-hdr-rhgt {
    margin-right: 70px;
  }
  .property-top-hdr > h2 {
    font-size: 35px;
  }
  .property-top-hdr > p {
    font-size: 35px;
  }
  .faq-question-1 > h6 {
    font-size: 15px;
    margin-right: 80px;
  }
  .faq-question {
    font-size: 14px;
    font-weight: 500;
  }
  .faq-arrow > img {
    width: 25px;
    height: 25px;
    object-fit: cover;
  }
  .faq-que-1 {
    font-size: 22px !important;
    font-weight: 600 !important;
    color: var(--primary-color) !important;
  }
  .galary-rhgt-cntn > h5 {
    font-size: 25px;
    margin-top: 15px;
  }
  .galary-rhgt-cntn > p {
    max-width: 200px;
    font-size: 15px;
  }
  .galary-btn {
    width: 40px;
    height: 40px;
    object-fit: cover;
  }
  .galary-rhgt-btn {
    position: relative;
    right: 50px;
    bottom: -25px;
  }
 
  
  .galary-rhgt-hdr > h2 {
    font-size: 45px;
    margin-bottom: 30px;
  }
  .galary-rhgt-img {
   max-width: 250px;
 /* margin-right: 30px; */
 margin: 0 auto;
  }
  .galary-rhgt-img-1 {
    max-width: 250px;
    margin: 0 auto;
  }
  .client-rhgt-cntn-1 > p {
    margin-left: -180px;
  }
  .property-card {
    padding: 17px;
    max-width: 100%;
    width: 100%;
  }
  .property-img{
    max-width: 100%;
    width: 100%;
  }
}
@media screen and (max-width:600px) {
   .client-rhgt-cntn > p{
    margin-left: -50px;
  }
  .client-rhgt-cntn-1 > p {
margin-left: -50px;

}
}
@media screen and (max-width:650px) {
   .client-rhgt-cntn > p{
    margin-left: -50px;
  }
  .client-rhgt-cntn-1 > p {
margin-left: -50px;

}
}
@media screen and (max-width: 576px) {
  /* header-sec */
  .header-top-wrpr-iner {
    flex-direction: column !important;
  }
  .navbar-collesped {
    width: 70% !important;
  }
  .banner-btm-wrpr {
    margin-top: 50px;
  }
  .banner-btm-top-cntn > p {
    font-size: 18px;
  }
  .banner-btm-top-cntn > span {
    font-size: 18px;
  }
  .banner-btm-btn > span {
    font-size: 17px;
  }

  .dream-house-btm-cntn-2 {
    width: 40px;
    height: 40px;
  }

  .dream-house-btm-cntn-1 > p {
    max-width: 182px;
    font-size: 13px;
  }
  .dream-house-btm-cntn-1 > h5::after {
    content: "";
    width: 180px;
  }
  .nature-row {
    align-items: center;
  }
  .your-need-left-hdr > h2 {
    font-size: 42px;
    margin-bottom: 20px;
  }
  /* .nature-living-card {
    width: 300px;
    height: 150px;
  } */
  .nature-living-rhgt-img-1 {
    max-width: 100%;
    height: 500px;
    margin: 10px auto;
  }
  .nature-living-rhgt-img-1>img{
    border-radius: 40px;
  }
  .nature-living-rhgt-img-2{
     max-width: 100%;
    height: 400px;
    margin: 0px auto;
  }
  .nature-living-rhgt-img-2>img{
    border-radius: 40px;
  }
  .nature-living-card-cntn-2 > span {
    font-size: 14px;
  }
  .nature-living-card-cntn-2 > p {
    font-size: 14px;
  }
  .nature-living-card-cntn > span {
    font-size: 14px;
  }
  .nature-living-card-cntn > p {
    font-size: 14px;
  }
  .nature-living-card-cntn-1 > span {
    font-size: 14px;
  }
  .nature-living-card-cntn-1 > p {
    font-size: 14px;
    margin-right: 15px;
  }
  .nature-living-left-hdr > p {
    max-width: 200px;
    font-size: 13px;
    margin-bottom: 15px;
  }
  .nature-btn {
    margin: 5px auto;
  }

  .gallary-left-hdr > h2 {
    font-size: 57px;
    margin-bottom: 36px;
   /* padding-left: 40px; */
  }
  .client-top-hdr > h2 {
    font-size: 40px;
    margin-bottom: 20px;
  }
  .client-img-1 {
    max-width: 170px;
    height: 160px;
    margin-right: auto;
  }
  .client-cntn-1 > p {
    max-width: 150px;
    font-size: 11px;
  }
  .client-cntn-1 > h6 {
    font-size: 15px;
  }
  .client-left-card-2 {
    max-width: 100%;
    height: 300px;
    padding: 40px 20px;
  }
  .client-img-2 {
    max-width: 250px;
    height: 230px;
  }
  .client-cntn-2 > h5 {
    font-size: 30px;
    margin-bottom: 10px;
  }

  .client-cntn-2 > p {
    font-size: 20px;
    margin-left: -46px;
  }
  .client-img-3 {
    max-width: 240px;
  }
  .client-left-card {
    margin-bottom: 10px;
  }
  .client-left-card-1 {
    margin-bottom: 10px;
    max-width: 100%;
    margin-right: 0;
  }
  .client-rhgt-card {
    padding: 60px 50px 0px;
  }
  .client-rhgt-img {
    max-width: 300px;
  }
  .client-rhgt-cntn > h2 {
    font-size: 43px;
  }
  .client-rhgt-cntn > p {
    font-size: 20px;
    margin-left: -20px;
  }

  .client-rhgt-cntn-1 > h2 {
    font-size: 43px;
  }
  .client-rhgt-cntn-1 > p {
    font-size: 20px;
    margin-left: -45px;
  }
  .client-rhgt-card-2 {
    max-width: 100%;
    height: 156px;
    padding: 8px 0px 8px 30px;
  }
  .clirnt-rhgt-img-1 > img {
    width: 40px;
    height: 40px;
    object-fit: cover;
  }
  .client-rhgt-cntn-2 > h2 {
    font-size: 45px;
  }
  .client-rhgt-cntn-2 > h2 {
    font-size: 36px;
  }
  .client-rhgt-cntn-2 > p {
    font-size: 17px;
  }
  .client-trust-top-hdr > h2 {
    font-size: 40px;
    margin-bottom: 30px;
  }
  .client-trust-cntn > h5 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .client-trust-btn {
    width: 150px;
    height: 53px;
  }
  .client-trust-btn > img {
    width: 40px;
    height: 40px;
  }
  .client-trust-btn > span {
    font-size: 12px;
  }
  .client-trust-btm-card {
    margin-bottom: 20px;
    padding: 30px 20px;
  }
  .client-trust-cntn > p {
    margin-bottom: 15px;
  }
  .toggle-hdr-rhgt {
    margin-right: 60px;
  }
  .client-trust-btm-cntn > h2 {
    font-size: 38px;
    font-weight: 600;
    margin-top: 40px;
  }
  .insight-top-hdr > h2 {
    font-size: 40px;
    margin-bottom: 40px;
  }
  /* .insight-img {
    width: 250px;
    height: 250px;
  } */
  .insight-left-hdr > h6 {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 15px;
  }
  .insight-left-hdr > p {
    font-size: 12px;
    margin-bottom: 20px;
    max-width: none;
  }
  .insight-btn {
    width: 150px;
    height: 50px;
  }
  .insight-btn > img {
    width: 40px;
    height: 40px;
  }
  .insight-btn > span {
    font-size: 14px;
  }

  .insight-rhgt-cntn > h5 {
    font-size: 22px;
    margin-bottom: 10px;
  }
  .insight-rhgt-cntn > p {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .faq-top-hdr > h2 {
    font-size: 45px;
  }
  .faq-top-hdr > p {
    font-size: 15px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .faq-content {
    font-size: 10px;
  }
  .need-btn {
    width: 180px;
    height: 50px;
  }
  .need-btn > img {
    width: 40px;
    height: 40px;
  }
  .need-btn > span {
    font-size: 16px;
  }
  .footer-logo {
    max-width: 150px;
  }
  .footer-logo>a>img {
       /* padding-left: 40px; */
  }
  .footer-links {
    font-size: 13px;
  }
  .footer-sub-menu {
    font-size: 15px;
  }
  .footer-sub-write {
    font-size: 15px;
  }
  .footer-write-us > p {
    font-size: 15px;
  }
  .footer-mid-btn {
    width: 170px;
    height: 45px;
  }
  .footer-mid-btn > img {
    width: 40px;
    height: 40px;
  }
  .footer-mid-btn > span {
    font-size: 14px;
  }
  .footer-sub-contact {
    font-size: 20px;
  }
  #name {
    font-size: 20px;
  }
  #email {
    font-size: 20px;
  }
  #msg {
    font-size: 20px;
  }
  .footer-btm-left > p {
    font-size: 10px;
  }
  .footer-btm-left > p > a {
    font-size: 10px;
  }
  .footer-btm-rhgt > ul > li > a {
    font-size: 12px;
    margin-right: 0;
  }
  .property-card {
    padding: 17px;
    max-width: 100%;
    width: 100%;
  }
  .col-17 {
    width: 100%;
  }
  .galary-rhgt-btn {
    position: relative;
    right: 50px;
    bottom: -25px;
  }
  
  .your-need-mid-card{
    max-width: 100%;
    height: 500px;
    margin: 10px auto;
    border-radius: 40px;
  }
  .your-need-mid-card-cntn > h2 {
        margin-bottom: 100px;
  }
 
  .dots span {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    animation: bounce 0.6s infinite alternate;
  }
  .send-btn {
    margin: 0 auto;
  }
}

@media screen and (max-width: 557px) {
  .dream-house-btm-cntn > p {
    max-width: 430px;
    font-size: 9px;
  }
  .dream-house-btm-cntn-1 > p {
    max-width: 400px;
    font-size: 9px;
  }
   .client-rhgt-cntn > p{
    margin-left: -90px;
  }
  .client-rhgt-cntn-1 > p {
margin-left: -90px;

}
}
@media screen and (max-width: 534px) {
  .col-25 {
    width: 100%;
  }
  .banner-btm-sub-cntn-1 > p {
    margin-right: auto;
  }
  .banner-btm-cntn-1 > h5 {
    margin-left: -78px;
  }
  .banner-btm-cntn-2 > h5 {
    margin-left: -74px;
  }

  .banner-top-cntn > h1 {
    font-size: 35px;
    margin-bottom: 10px;
  }
  .banner-top-cntn > p {
    font-size: 12px;
    margin-bottom: 15px;
  }
  .banner-btn {
    width: 155px;
    height: 50px;
  }
  .banner-btn > img {
    width: 40px;
    height: 40px;
  }
  .dream-house-btm-cntn-1 > h5 {
    font-size: 20px;
  }
  .dream-house-btm-cntn > h5 {
    font-size: 20px;
    margin-right: 30px;
  }
  .dream-house-btm-cntn > p {
    max-width: 256px;
    font-size: 9px;
  }

  .toggle-hdr-rhgt {
    margin-right: 64px;
  }
  .toggle-hdr-left > h5 {
    font-size: 17px;
  }
  .client-trust-img {
    width: 40px;
    height: 40px;
  }
  .client-trust-cntn > p {
    max-width: 300px;
    font-size: 12px;
  }
  .client-trust-cntn > h5 {
    font-size: 15px;
    margin-bottom: 10px;
  }
  .faq-que-1 {
    font-size: 18px !important;
  }
  .faq-sub-cntn {
    max-width: 400px !important;
    font-size: 12px !important;
  }
  .faq-item-1 {
    padding-bottom: 25px !important;
  }
  /* .client-trust-btm-card {
    width: 200px;
    height: 250px;
  } */
  .property-top-hdr {
    flex-direction: column;
  }
  .faq-question {
    font-size: 12px;
    font-weight: 500;
  }
  .faq-arrow > img {
    width: 20px;
    height: 20px;
    object-fit: cover;
  }
  .client-left-card-2 > p {
  margin-left: auto;
}
.galary-rhgt-img {
   max-width: 100%;
 /* margin-right: 30px; */
 margin: 0 auto;
  }
  .galary-rhgt-img>img{
    border-radius: 40px;
  }
  .galary-rhgt-img-1 {
    max-width: 100%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 500px) {
  .galary-rhgt-btn {
    position: relative;
    right: 30px;
    bottom: -25px;
  }
  .galary-rhgt-hdr > h2 {
    font-size: 32px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 450px) {
  .header-top-wrpr {
    margin-bottom: 5px;
  }
  .banner-btm-cntn-1 > h5 {
    margin-left: -48px;
  }
  .banner-btm-cntn-2 > h5 {
    margin-left: -48px;
  }
  .nature-living-left-hdr > h2 {
    font-size: 50px;
  }
  /* .nature-living-card {
    width: 300px;
    height: 120px;
  } */
  .nature-living-card-cntn-2 {
    margin-bottom: 5px;
  }
  .nature-living-card-cntn {
    margin-bottom: 5px;
  }
  .nature-living-card-cntn-2 > span {
    font-size: 12px;
  }
  .nature-living-card-cntn-2 > p {
    font-size: 12px;
  }
  .nature-living-card-cntn > span {
    font-size: 12px;
  }
  .nature-living-card-cntn > p {
    font-size: 12px;
    margin-right: 50px;
  }
  .nature-living-card-cntn-1 > span {
    font-size: 12px;
  }
  .nature-living-card-cntn-1 > p {
    font-size: 12px;
    margin-right: 25px;
  }
  
  .galary-rhgt-hdr > h2 {
    font-size: 41px;
    margin-bottom: 20px;
  }
  .galary-rhgt-sub-img {
    display: flex;
    position: relative;
    bottom: 10px;
  }
  .galary-rhgt-cntn > p {
    max-width: 150px;
  }
  .dream-house-sub-btm-hdr {
    padding: 15px 15px;
  }
  .dream-house-btm-img {
    max-width: 417px;
    height: 200px;
  }
  .dream-house-btm-cntn > h5 {
    font-size: 17px;
  }
  .dream-house-btm-cntn > h5::after {
    content: "";
    width: 200px;
  }
  .dream-house-btm-cntn > p {
    max-width: 200px;
    font-size: 9px;
  }
  .dream-house-btm-cntn-1 > p {
    max-width: 210px;
    font-size: 9px;
  }
  .dream-house-btm-cntn-1 > h5::after {
    content: "";
    width: 156px;
  }

  .client-trust-img {
    width: 40px;
    height: 40px;
  }
  .client-trust-cntn > p {
    max-width: 300px;
    font-size: 12px;
  }
  .client-trust-cntn > h5 {
    font-size: 15px;
    margin-bottom: 10px;
  }
      .client-cntn-2 > p{
        font-size: 15px;
        margin-left: 1px;
      }
  .faq-que-1 {
    font-size: 15px !important;
  }
  /* .client-trust-btm-card {
    width: 200px;
    height: 200px;
  } */
  .property-top-hdr > h2 {
    font-size: 30px;
  }
  .property-top-hdr > p {
    font-size: 25px;
  }
  .faq-question-1 > h6 {
    font-size: 13px;
    margin-right: 80px;
  }
 
  .footer-btm-rhgt > ul {
    flex-direction: column;
  }
  .primary-btn {
    width: 130px;
    height: 40px;
  }
  .primary-btn > span {
    font-size: 11px;
  }
  .primary-btn > img {
    width: 35px;
    height: 35px;
  }
  .nav-logo {
    max-width: 90px;
  }
  .close-btn > span {
    display: inline-block;
    width: 20px;
    height: 2px;
    margin: 3px 0px;
  }
  .close-btn::before {
    content: " ";
    width: 20px;
    height: 2px;
    margin: 1px 0px;
  }
  .close-btn::after {
    content: " ";
    width: 20px;
    height: 2px;
    margin: 9px 0px;
  }
   .header-btm-wrpr {
        padding: 5px 5px;
}
  .dream-house-rhgt-hdr > p {
    font-size: 15px;
    margin-bottom: 20px;
  }
  .gallary-left-hdr > h2 {
    font-size: 39px;
    margin-bottom: 20px;
  }
  .search-wrapper{
    width: 155px;
    height: 50px;
  }
  .search-wrapper>input{
    font-size: 15px;
    margin-left: 70px;
  }
  .search-icon img {
  width: 40px;
  height: 40px;
  object-fit:cover;
  margin-left: auto;
}
 .footer-logo>a>img{
    margin-left: 10px;
  }
}
@media screen and (max-width: 417px) {
  .faq-arrow {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .faq-arrow.open {
    transform: rotate(-90deg);
  }
  .faq-arrow > img {
    width: 15px;
    height: 15px;
    object-fit: cover;
  }
      .client-cntn-2 > p{
        font-size: 15px;
        margin-right: 0px;
      }
}
@media screen and (max-width: 400px) {
  .galary-rhgt-btn {
    position: relative;
    right: 20px;
    bottom: -25px;
  }
  
  .galary-rhgt-img-1{
    max-width: 100%;
    width: 100%;
  }
  .galary-rhgt-img{
    max-width: 100%;
    width: 100%;
  }
  .galary-rhgt-img-1 > img {
    border-radius: 40px;
  }
  .galary-rhgt-hdr > h2 {
    font-size: 32px;
    margin-bottom: 30px;
  }
  .galary-rhgt-cntn > h5 {
    font-size: 20px;
  }
  .galary-rhgt-cntn > p {
    font-size: 13px;
  }
  .client-cntn-2 > p {
    margin-right: 0px;
  }
}
@media screen and (max-width: 380px) {
  .banner-btm-cntn-1 > h5 {
    margin-left: -31px;
  }
  .banner-btm-cntn-2 > h5 {
    margin-left: -32px;
  }

  .nature-living-left-hdr > h2 {
    font-size: 42px;
  }
  /* .nature-living-card {
    width: 230px;
    height: 100px;
    padding: 15px 15px;
  } */
  .nature-living-card-cntn-2 > span {
    font-size: 12px;
  }
  .nature-living-card-cntn-2 > p {
    font-size: 12px;
  }
  .nature-living-card-cntn > span {
    font-size: 12px;
  }
  .nature-living-card-cntn > p {
    font-size: 12px;
    margin-right: 50px;
  }
  .nature-living-card-cntn-1 > span {
    font-size: 12px;
  }
  .nature-living-card-cntn-1 > p {
    font-size: 12px;
    margin-right: 25px;
  }
  /* .your-need-left-card {
    width: 310px;
    height: 300px;
    padding: 22px 25px;
  } */
  .your-left-card-cntn > p {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .your-left-card-cntn > span {
    font-size: 19px;
  }
  /* .your-need-mid-card {
    max-width: 410px;
    height: 500px;
    padding: 22px 25px;
  } */
  .your-need-mid-card-cntn > p {
    font-size: 23px;
  }
  /* .your-need-mid-card-cntn > h2 {
    margin-bottom: 100px;
  } */
  /* .your-need-rhgt-card {
    width: 310px;
    height: 300px;
    padding: 22px 25px;
  } */
  .your-rhgt-card-cntn > p {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .your-rhgt-card-cntn > span {
    font-size: 19px;
  }
  .need-btn {
    margin-left: 10px;
  }
  
  .galary-rhgt-hdr > h2 {
    font-size: 35px;
  }
  .galary-rhgt-cntn > h5 {
    font-size: 20px;
    margin-top: 15px;
  }
  .galary-rhgt-cntn > p {
    font-size: 12px;
  }
  
  .galary-rhgt-sub-img-1 {
    margin-right: 20px;
  }
  .client-left-card {
    padding: 10px;
  }
  .client-img-1 {
    max-width: 150px;
    height: 142px;
  }
  .client-cntn-1 > p {
    max-width: 148px;
    font-size: 10px;
  }
  .client-cntn-1 > h6 {
    font-size: 14px;
  }
  .client-img-2 {
    max-width: 150px;
    height: 180px;
  }
  .client-cntn-2 > p {
    font-size: 15px;
    margin-left: -5px;
  }
  .client-rhgt-cntn > h2 {
    text-align: center;
    font-size: 34px;
  }
  .client-rhgt-cntn > p {
    font-size: 20px;
    margin-left: 14px;
  }
  .client-rhgt-card-1 {
  
    padding: 35px;
  }
  .client-rhgt-cntn-1 > h2 {
    text-align: center;
    font-size: 35px;
  }
  .client-rhgt-cntn-1 > p {
    font-size: 15px;
    margin-left: 0px;
  }
  .dream-house-btm-cntn-1 > p {
    max-width: 145px;
    font-size: 9px;
  }
  .dream-house-btm-cntn > p {
    max-width: 142px;
    font-size: 9px;
  }
  .toggle-hdr-left > h5 {
    font-size: 14px;
  }

  .toggle-hdr-rhgt {
    width: 15px;
    height: 15px;
  }
  .client-trust-top-hdr > h2 {
    font-size: 36px;
  }
  .client-trust-btm-cntn > h2 {
    font-size: 35px;
    margin-top: 20px;
  }
  /* .insight-img {
    width: 200px;
    height: 250px;
  } */
  .insight-top-hdr > h2 {
    font-size: 35px;
  }
  .insight-left-hdr > h6 {
    font-size: 14px;
  }
  .insight-left-hdr > p {
    font-size: 9px;
  }
  .insight-rhgt-cntn > h5 {
    font-size: 19px;
  }
  .property-cntn-1 > h5 {
    max-width: 260px;
    font-size: 16px;
    margin-bottom: 5px;
  }
  .property-line {
    max-width: 175px;
    margin-bottom: 5px;
  }
  .property-cntn-1 > p {
    max-width: 110px;
    font-size: 12px;
  }
  .property-cntn-2 {
    width: 40px;
    height: 40px;
  }
  .property-cntn-2 >a> img {
    width: 12px;
    height: 12px;
  }

  .property-cntn-2 {
    top: 20px;
    right: -5px;
  }

  .property-top-hdr > h2 {
    font-size: 24px;
  }
  .property-top-hdr > p {
    font-size: 22px;
  }
  .client-arrow {
    width: 40px;
    height: 40px;
  }
  .client-arrow>img {
    width: 12px;
    height: 12px;
  }
  .swiper-button {
    top: 115%;
  }
  .prev-btn {
    left: 30px;
  }
  .next-btn {
    right: 30px;
  }
  .faq-question-1 > h6 {
    font-size: 12px;
    margin-right: 60px;
  }
  .faq-top-hdr > h2 {
    font-size: 30px;
  }
  .faq-top-hdr > p {
    font-size: 12px;
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .faq-que-1 {
    font-size: 15px !important;
  }
  .faq-sub-cntn {
    max-width: 300px !important;
    font-size: 10px !important;
  }
  .galary-rhgt-hdr > h2 {
    font-size: 30px;
  }
  /* .nav-logo {
    max-width: 70px;
    padding-top: 5px;
  }
  .close-btn > span {
    display: inline-block;
    width: 20px;
    height: 2px;
    margin: 1px 0px;
  }
  .close-btn::before {
    content: " ";
    width: 20px;
    height: 2px;
    margin: 5px 0px;
  }
  .close-btn::after {
    content: " ";
    width: 20px;
    height: 2px;
    margin: 7px 0px;
  } */
}

@media screen and (max-width:350px) {
  .nav-logo {
    max-width: 70px;
   
  }
  .close-btn > span {
    display: inline-block;
    width: 20px;
    height: 2px;
    margin: 3px 0px;
  }
  .close-btn::before {
    content: " ";
    width: 20px;
    height: 2px;
    margin: 4px 0px;
  }
  .close-btn::after {
    content: " ";
    width: 20px;
    height: 2px;
    margin: 9px 0px;
  }
}
@media screen and (max-width: 330px) {
  .galary-rhgt-btn {
    position: relative;
    right: 20px;
    bottom: -60px;
  }
  .galary-rhgt-hdr > h2 {
    font-size: 29px;
  }
  .nav-logo {
    max-width: 70px;
   
  }
  .close-btn > span {
    display: inline-block;
    width: 20px;
    height: 2px;
    margin: 2px 0px;
  }
  .close-btn::before {
    content: " ";
    width: 20px;
    height: 2px;
    margin: 5px 0px;
  }
  .close-btn::after {
    content: " ";
    width: 20px;
    height: 2px;
    margin: 9px 0px;
  }
 
}
@media screen and (max-width: 320px) {
  .banner-btm-cntn-1 > h5 {
    margin-left: 0px;
  }
  .banner-btm-cntn-2 > h5 {
    margin-left: 0px;
  }

  /* .your-need-mid-card {
    max-width: 410px;
    height: 430px;
    padding: 22px 25px;
  } */
  /* .your-need-mid-card-cntn > h2 {
    margin-bottom: 70px;
  } */
  /* .your-need-left-card {
    width: 290px;
    height: 290px;
    margin: 0 auto;
  } */
  /* .your-need-rhgt-card {
    height: 290px;
    width: 290px;
  } */
  .client-rhgt-cntn > h2 {
    text-align: center;
    font-size: 31px;
  }
  .clirnt-rhgt-img-1 {
    position: absolute;
    top: 14px;
    right: 16px;
  }
  .dream-house-btm-cntn > p {
    max-width: 130px;
    font-size: 9px;
  }
  .toggle-hdr-left > h5 {
    font-size: 11px;
  }
  .toggle-hdr-rhgt {
    margin-right: 29px;
  }

  .client-trust-img {
    width: 40px;
    height: 40px;
  }
  .client-trust-cntn > p {
    max-width: 300px;
    font-size: 12px;
  }
  .client-trust-cntn > h5 {
    font-size: 15px;
    margin-bottom: 10px;
  }
  /* .client-trust-btm-card {
    width: 200px;
    height: 200px;
  } */
  .faq-question-1 > h6 {
    font-size: 10px;
    margin-right: 60px;
  }

  .faq-sub-cntn {
    max-width: 250px !important;
    font-size: 8px !important;
  }
}
