html {
  scroll-behavior: smooth;
}

.realestate-demo-page {
  --ink: #191817;
  --deep: #2d3238;
  --green: #53616c;
  --mint: #e7e2da;
  --cream: #f6f1e9;
  --paper: #ffffff;
  --gold: #a9784d;
  --clay: #8f6f61;
  --muted: #706b65;
  background: var(--cream);
  color: var(--ink);
  font-family: "DM Sans", "Google Sans", "Quicksand", sans-serif;
  overflow-x: hidden;
}

.realestate-demo-page *,
.realestate-demo-page *::before,
.realestate-demo-page *::after {
  box-sizing: border-box;
}

.realestate-demo-page .row {
  margin: 0;
}

.realestate-demo-page img {
  display: block;
  max-width: 100%;
}

.realestate-demo-page a {
  text-decoration: none;
}

#main-header {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  background: transparent;
  transition: top .28s ease;
}

.realestate-demo-page.scrolled #main-header {
  top: 8px;
}

#main-header .container {
  width: min(94%, 1320px);
  max-width: 1320px;
  padding: 12px 16px;
  border: 1px solid rgba(45, 50, 56, .12);
  border-radius: 8px;
  background: rgba(248, 243, 234, .88);
  box-shadow: 0 18px 46px rgba(16, 24, 23, .12);
  backdrop-filter: blur(18px);
}

#main-header .row {
  align-items: center;
}

#main-header .col-lg-2:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#main-header .header-left-side img {
  width: 126px;
  height: auto;
}

#main-header .col-lg-8 {
  display: flex;
  align-items: center;
  justify-content: center;
}

#main-header .header-ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.4vw, 24px);
  padding: 0;
  margin: 0;
  list-style: none;
}

#main-header .nav-link {
  position: relative;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0;
  color: var(--ink);
  font-family: "Quicksand", sans-serif;
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
}

#main-header .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--gold));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

#main-header .nav-link:hover,
#main-header .nav-link:focus,
#main-header .actives .nav-link {
  color: var(--green);
}

#main-header .nav-link:hover::after,
#main-header .nav-link:focus::after,
#main-header .actives .nav-link::after {
  transform: scaleX(1);
  transform-origin: left;
}

#main-header .btn-appointment {
  min-height: 44px;
  padding: 0 16px;
  border-radius: 8px;
  background: var(--deep);
  color: #fff !important;
  box-shadow: 0 14px 28px rgba(45, 50, 56, .2);
}

#main-header .btn-appointment::after {
  display: none;
}

#main-header .btn-appointment:hover {
  background: var(--gold);
  color: var(--ink) !important;
}

#main-header .col-last {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

#main-header .col-last a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--deep);
  font-family: "Quicksand", sans-serif;
  font-size: 14px;
  font-weight: 900;
}

#main-header .col-last img {
  width: 20px !important;
  filter: sepia(1) saturate(2) hue-rotate(95deg) brightness(.7);
}

.mobile-menu-bar {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--deep);
  color: #fff;
  cursor: pointer;
}

#section1 {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(169, 120, 77, .2), transparent 28%),
    linear-gradient(135deg, #f6f1e9 0%, #e6e0d6 52%, #d7dde2 100%);
}

#section1::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(45, 50, 56, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 50, 56, .055) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, .85), transparent 82%);
  pointer-events: none;
}

#section1 .container {
  position: relative;
  z-index: 1;
  width: min(94%, 1320px);
  max-width: 1320px;
  padding: 140px 0 70px;
}

#section1 .row-section1 {
  min-height: calc(100vh - 210px);
  align-items: center;
}

#section1 .col-lg-8,
#section1 .col-lg-4 {
  padding: 0 12px;
}

#section1 .wrapper-col-textt {
  max-width: 760px;
}

#section1 .col-wrpre-dsff {
  position: relative;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--green);
  font-family: "Quicksand", sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero-eyebrow::before {
  content: "";
  width: 46px;
  height: 1px;
  background: var(--gold);
}

#section1 h1 {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-family: "Playfair Display", serif;
  font-size: clamp(48px, 6.2vw, 94px);
  font-weight: 850;
  line-height: .94;
  letter-spacing: 0;
  text-wrap: balance;
}

#section1 .col-wrpre-dsff p {
  max-width: 700px;
  margin: 24px 0 0;
  color: #3f4d49;
  font-size: clamp(16px, 1.3vw, 19px);
  font-weight: 600;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

#book-now,
.hero-link-secondary,
#section5 .input-type-btn,
#section-appointment .input-type-btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 0;
  border-radius: 8px;
  font-family: "Quicksand", sans-serif;
  font-size: 15px;
  font-weight: 900;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}

#book-now,
#section5 .input-type-btn,
#section-appointment .input-type-btn {
  background: var(--deep);
  color: #fff;
  box-shadow: 0 16px 34px rgba(45, 50, 56, .23);
  cursor: pointer;
}

#book-now:hover,
#section5 .input-type-btn:hover,
#section-appointment .input-type-btn:hover {
  background: var(--gold);
  color: var(--ink);
  transform: translateY(-2px);
}

.hero-link-secondary {
  border: 1px solid rgba(45, 50, 56, .22);
  background: rgba(255, 255, 255, .55);
  color: var(--deep);
}

.hero-link-secondary:hover {
  background: #fff;
  color: var(--green);
  transform: translateY(-2px);
}

.hero-search-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 760px;
  margin-top: 36px;
  overflow: hidden;
  border: 1px solid rgba(45, 50, 56, .12);
  border-radius: 8px;
  background: rgba(45, 50, 56, .12);
  box-shadow: 0 22px 54px rgba(16, 24, 23, .1);
}

.hero-search-panel div {
  padding: 20px;
  background: rgba(255, 255, 255, .72);
  backdrop-filter: blur(12px);
}

.hero-search-panel span,
.hero-trust-row span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.hero-search-panel strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-family: "Playfair Display", serif;
  font-size: 21px;
  line-height: 1.1;
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-trust-row span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  padding: 0 13px;
  border: 1px solid rgba(45, 50, 56, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .58);
  text-transform: none;
  letter-spacing: 0;
}

.hero-trust-row strong {
  color: var(--deep);
  font-family: "Playfair Display", serif;
  font-size: 24px;
  line-height: 1;
}

#section1 .wrapper-section1 {
  position: relative;
  margin-left: -70px;
  padding: 18px;
  border: 1px solid rgba(45, 50, 56, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .52);
  box-shadow: 0 30px 90px rgba(16, 24, 23, .18);
  backdrop-filter: blur(14px);
}

#section1 .wrapper-section1::before,
#section1 .wrapper-section1::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 8px;
}

#section1 .wrapper-section1::before {
  right: -26px;
  top: 44px;
  width: 110px;
  height: 220px;
  background: var(--gold);
  opacity: .45;
}

#section1 .wrapper-section1::after {
  left: -24px;
  bottom: -24px;
  width: 220px;
  height: 110px;
  border: 1px solid rgba(45, 50, 56, .2);
}

#section1 #owl-demo {
  overflow: hidden;
  border-radius: 8px;
}

#section1 .item {
  height: min(72vh, 660px);
  min-height: 520px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#section1 .owl-item.active .item {
  animation: estateZoom 7s ease forwards;
}

#section1 #owl-demo .owl-nav,
#section1 #owl-demo .owl-dots {
  display: none;
}

#section2,
#section3,
#section4,
#testimonials,
#section5 {
  position: relative;
  background: var(--cream);
}

#section2 {
  padding: 105px 0 90px;
}

#section2 .container,
#section3 .container,
#section4 .container,
#testimonials .container,
#section5 .container {
  width: min(90%, 1220px);
  max-width: 1220px;
}

#section2 .row-section2 {
  align-items: center;
  padding: 38px;
  border: 1px solid rgba(45, 50, 56, .1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(16, 24, 23, .08);
}

#section2 .wrapper-col-textts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

#section2 .col-wrpre-sa {
  padding: 28px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(219, 238, 231, .9), rgba(248, 243, 234, .9)),
    #fff;
}

#section2 .col-wrpre-sa h3 {
  margin: 0;
  color: var(--deep);
  font-family: "Playfair Display", serif;
  font-size: clamp(52px, 6vw, 84px);
  font-weight: 850;
  line-height: .9;
}

#section2 .col-wrpre-sa p,
#section2 .wrapper-section2 p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.7;
}

#section2 .wrapper-section2 {
  padding-left: 42px;
}

#section2 .wrapper-section2 p {
  margin: 0;
  color: #3f4d49;
  font-size: clamp(19px, 2vw, 26px);
  line-height: 1.55;
}

#section3 {
  padding: 80px 0 105px;
  background:
    linear-gradient(180deg, var(--cream), #ece7df);
}

.title-wrper-sevice,
.wrapper-titel-testimonial,
.title-wrper-contact {
  position: relative;
}

#section3 .title-wrper-sevice,
#section4 .title-wrper-sevice,
#testimonials .wrapper-titel-testimonial {
  max-width: 820px;
  margin: 0 auto 48px;
  text-align: center;
}

#section3 .title-wrper-sevice h2,
#section4 .title-wrper-sevice h2,
#testimonials .wrapper-titel-testimonial h2,
#section5 .title-wrper-contact h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 4.4vw, 58px);
  font-weight: 850;
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}

#section3 .row-section3s {
  row-gap: 24px;
}

#section3 .row-section3s > [class*="col-"],
#section4 .row-section4s > [class*="col-"] {
  padding: 12px;
}

#section3 .wrapper-box-sd {
  position: relative;
  height: 100%;
  min-height: 360px;
  overflow: hidden;
  padding: 32px;
  border: 1px solid rgba(45, 50, 56, .1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(16, 24, 23, .07);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

#section3 .wrapper-box-sd::after {
  content: "";
  position: absolute;
  right: -50px;
  top: -50px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(169, 120, 77, .14);
}

#section3 .wrapper-box-sd:hover {
  border-color: rgba(83, 97, 108, .24);
  box-shadow: 0 28px 70px rgba(16, 24, 23, .12);
  transform: translateY(-8px);
}

#section3 .iamge-rpe {
  display: inline-flex;
  width: 68px;
  height: 68px;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  border-radius: 8px;
  background: var(--deep);
}

#section3 .iamge-rpe img {
  width: 34px;
  filter: brightness(0) invert(1);
}

#section3 .contentt-rpe h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-family: "Playfair Display", serif;
  font-size: 30px;
  font-weight: 850;
}

#section3 .contentt-rpe b {
  display: block;
  margin-bottom: 16px;
  color: var(--green);
  font-family: "Quicksand", sans-serif;
}

#section3 .contentt-rpe p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.7;
}

#section4 {
  padding: 105px 0;
  background: #fff;
}

#section4 .row-section4s {
  row-gap: 24px;
}

#section4 .wrapper-box-sds {
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(45, 50, 56, .1);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 20px 52px rgba(16, 24, 23, .08);
  transition: transform .32s ease, box-shadow .32s ease;
}

#section4 .wrapper-box-sds:hover {
  box-shadow: 0 30px 82px rgba(16, 24, 23, .14);
  transform: translateY(-8px);
}

#section4 .imamge-room {
  position: relative;
  aspect-ratio: 16 / 10.8;
  overflow: hidden;
  background: var(--deep);
}

#section4 .imamge-room::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(16, 24, 23, .06) 20%, rgba(16, 24, 23, .82) 100%);
}

#section4 .imamge-room img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}

#section4 .wrapper-box-sds:hover .imamge-room > img {
  transform: scale(1.07);
}

#section4 .wrapper-tdt-pp {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
}

#section4 .wrapper-tdt-pp h4 {
  display: grid;
  gap: 4px;
  margin: 0;
  color: #fff;
  font-family: "Playfair Display", serif;
  font-size: 27px;
  font-weight: 850;
  line-height: 1.05;
}

#section4 .wrapper-tdt-pp span {
  color: var(--gold);
  font-family: "Quicksand", sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

#section4 .contentt-room {
  padding: 20px;
}

#section4 .wrapp-erds-bed {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

#section4 .wrpf-bedd {
  display: grid;
  min-height: 72px;
  place-items: center;
  gap: 6px;
  padding: 8px;
  border-radius: 8px;
  background: #f3f0eb;
  text-align: center;
}

#section4 .wrpf-bedd img {
  width: 20px;
  opacity: .72;
}

#section4 .wrpf-bedd p {
  margin: 0;
  color: #42504b;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.15;
}

#testimonials {
  padding: 105px 0;
  background:
    radial-gradient(circle at 80% 18%, rgba(169, 120, 77, .16), transparent 28%),
    linear-gradient(135deg, #191817, #32373e);
  color: #fff;
}

#testimonials .wrapper-titel-testimonial span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--gold);
  font-family: "Quicksand", sans-serif;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

#testimonials .wrapper-titel-testimonial h2 {
  color: #fff;
}

#testimonials .testimonial-wrapper {
  max-width: 950px;
  margin: 0 auto;
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .2);
  backdrop-filter: blur(16px);
}

#testimonials #carouselExampleIndicators img {
  width: 76px !important;
  height: 76px;
  margin: 0 auto 28px;
  border: 3px solid rgba(169, 120, 77, .78);
  border-radius: 50%;
  object-fit: contain;
  padding: 10px;
}

#testimonials blockquote {
  max-width: 790px;
  margin: 0 auto;
  color: rgba(255, 255, 255, .86);
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: clamp(22px, 2.3vw, 32px);
  font-style: italic;
  font-weight: 650;
  line-height: 1.45;
}

#testimonials .clinet-namde {
  margin-top: 30px;
  text-align: center;
}

#testimonials .clinet-namde h4 {
  margin: 0;
  color: #fff;
  font-family: "Quicksand", sans-serif;
  font-weight: 900;
}

#testimonials .clinet-namde p {
  margin: 4px 0 0;
  color: var(--gold);
  font-weight: 800;
}

#testimonials .carousel-indicators {
  bottom: -58px;
}

#testimonials .carousel-indicators button {
  width: 28px;
  height: 4px;
  border: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, .5) !important;
}

#testimonials .carousel-indicators .active {
  background: var(--gold) !important;
}

#testimonials .carousel-control-prev,
#testimonials .carousel-control-next {
  display: none;
}

#section5 {
  padding: 110px 0 120px;
  background:
    linear-gradient(180deg, var(--cream), #fff);
}

#section5 .row-section5 {
  align-items: center;
}

#section5 .row-section5 > .col-lg-7,
#section5 .row-section5 > .col-lg-5 {
  padding: 12px;
}

#section5 .wrapper-title-lefdt,
#section5 .form-wrper-contact {
  border-radius: 8px;
}

#section5 .wrapper-title-lefdt {
  height: 100%;
}

#section5 .wrapper-title-lefdt {
  padding: 42px;
  background:
    linear-gradient(rgba(25, 24, 23, .76), rgba(45, 50, 56, .9)),
    url("../../../img/demo/real-estate/property4.png") center / cover no-repeat;
  color: #fff;
}

#section5 .title-wrper-contact h2 {
  color: #fff;
}

#section5 .ul-wrper-contact ul {
  display: grid;
  gap: 18px;
  padding: 0;
  margin: 36px 0 0;
  list-style: none;
}

#section5 .wrapper-info-ul {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(12px);
}

#section5 .info-img {
  display: inline-flex;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(169, 120, 77, .2);
}

#section5 .info-img img {
  width: 21px;
  filter: brightness(0) invert(1);
}

#section5 .info-text h4 {
  margin: 0 0 6px;
  color: #fff;
  font-family: "Quicksand", sans-serif;
  font-size: 20px;
  font-weight: 900;
}

#section5 .info-text p {
  margin: 0;
  color: rgba(255, 255, 255, .74);
  font-weight: 600;
  line-height: 1.55;
}

#section5 .form-wrper-contact {
  position: relative;
  overflow: hidden;
  align-self: center;
  padding: 32px;
  border: 1px solid rgba(45, 50, 56, .1);
  background:
    linear-gradient(135deg, rgba(169, 120, 77, .08), transparent 38%),
    #fff;
  box-shadow: 0 24px 68px rgba(16, 24, 23, .11);
}

#section5 .form-wrper-contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 32px;
  right: 32px;
  height: 4px;
  border-radius: 0 0 99px 99px;
  background: linear-gradient(90deg, var(--gold), var(--green));
}

#section5 .form-wrper-contact::after {
  content: "";
  position: absolute;
  right: -54px;
  bottom: -54px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(83, 97, 108, .08);
  pointer-events: none;
}

#section5 .form-wrper-contact form {
  position: relative;
  z-index: 1;
}

#section5 .row-sd-form {
  margin-left: -8px;
  margin-right: -8px;
}

#section5 .row-sd-form > [class*="col-"] {
  padding-left: 8px;
  padding-right: 8px;
}

#section5 .form-group-i {
  margin-bottom: 16px;
}

#section5 .input-type,
#section5 .textarea-type,
#section-appointment .input-type,
#section-appointment select {
  width: 100%;
  border: 1px solid rgba(45, 50, 56, .15);
  border-radius: 8px;
  background: #f8fbf8;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  transition: border-color .22s ease, box-shadow .22s ease, background .22s ease;
}

#section5 .input-type,
#section-appointment .input-type,
#section-appointment select {
  height: 50px;
  padding: 0 15px;
}

#section5 .textarea-type {
  min-height: 122px;
  padding: 14px 15px;
  resize: vertical;
}

#section5 .input-type:focus,
#section5 .textarea-type:focus,
#section-appointment .input-type:focus,
#section-appointment select:focus {
  border-color: var(--green);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(83, 97, 108, .14);
  outline: 0;
}

#section5 .input-type-btn,
#section-appointment .input-type-btn {
  width: 100%;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.appoint-open {
  overflow: hidden;
}

.appoint-open::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(8, 18, 17, .72);
  backdrop-filter: blur(6px);
}

#section-appointment .container {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 1300;
  display: none;
  width: min(92%, 760px);
  max-width: 760px;
  max-height: min(88vh, 820px);
  overflow-y: auto;
  padding: 34px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 32px 90px rgba(0, 0, 0, .26);
  transform: translate(-50%, -50%);
}

.appoint-open #section-appointment .container {
  display: block;
  animation: modalIn .26s ease both;
}

#section-appointment .pop-close-appointment {
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 2;
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #f2f6f3;
  cursor: pointer;
}

#section-appointment .pop-close-appointment img {
  width: 16px !important;
}

#section-appointment .title-wrapper-plkint h2 {
  margin: 0 0 26px;
  color: var(--ink);
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 850;
}

#section-appointment label {
  display: block;
  margin: 0 0 8px;
  color: var(--deep);
  font-family: "Quicksand", sans-serif;
  font-weight: 900;
}

#section-appointment .row-sd-form,
#section-appointment .row-sds-form {
  margin-left: -8px;
  margin-right: -8px;
}

#section-appointment .row-sd-form > [class*="col-"],
#section-appointment .row-sds-form > [class*="col-"] {
  padding-left: 8px;
  padding-right: 8px;
}

#section-appointment .form-group-i {
  margin-bottom: 16px;
}

footer#footer {
  padding: 24px 0;
  background: #0b1513;
}

#footer .footer-copyright p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  text-align: center;
  font-size: 14px;
}

.estate-reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .72s ease, transform .72s ease;
}

.estate-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes estateZoom {
  from {
    transform: scale(1.06);
  }
  to {
    transform: scale(1);
  }
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translate(-50%, -47%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

@media (max-width: 1199px) {
  #main-header .container {
    width: calc(100% - 24px);
  }

  #main-header .header-ul {
    gap: 12px;
  }

  #main-header .nav-link {
    font-size: 14px;
  }

  #main-header .col-last {
    display: none;
  }
}

@media (max-width: 991px) {
  #main-header {
    top: 10px;
  }

  #main-header .container {
    padding: 12px;
  }

  #main-header .col-lg-8,
  #main-header .col-last {
    display: none;
  }

  .mobile-menu-bar {
    display: inline-flex;
  }

  .realestate-menu-open #main-header .col-lg-8,
  .realestate-menu-open #main-header .col-last {
    display: block;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .realestate-menu-open #main-header .header-ul {
    display: grid;
    gap: 4px;
    justify-content: stretch;
    padding: 16px 0 6px;
  }

  .realestate-menu-open #main-header .nav-link {
    display: flex;
    width: 100%;
    padding: 10px 4px;
  }

  .realestate-menu-open #main-header .btn-appointment {
    justify-content: center;
    padding: 0 16px;
  }

  .realestate-menu-open #main-header .col-last {
    padding-top: 8px;
  }

  #section1 .container {
    padding-top: 120px;
  }

  #section1 .row-section1 {
    gap: 36px;
  }

  #section1 .wrapper-section1 {
    margin-left: 0;
  }

  #section2 .wrapper-section2 {
    padding: 28px 0 0;
  }

  #section4 .wrapp-erds-bed {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  #section1 .container,
  #section2,
  #section3,
  #section4,
  #testimonials,
  #section5 {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  #section1 h1 {
    font-size: clamp(42px, 12vw, 60px);
    line-height: 1;
  }

  .hero-search-panel {
    grid-template-columns: 1fr;
  }

  #section1 .item {
    min-height: 420px;
    height: 58vh;
  }

  #section2 .row-section2,
  #testimonials .testimonial-wrapper,
  #section5 .wrapper-title-lefdt,
  #section5 .form-wrper-contact,
  #section-appointment .container {
    padding: 24px;
  }

  #section2 .wrapper-col-textts {
    grid-template-columns: 1fr;
  }

  #section3 .row-section3s > [class*="col-"],
  #section4 .row-section4s > [class*="col-"],
  #section5 .row-section5 > .col-lg-7,
  #section5 .row-section5 > .col-lg-5 {
    padding: 8px 0;
  }

  #section4 .wrapp-erds-bed {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #testimonials blockquote {
    font-size: 21px;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    display: grid;
  }

  #book-now,
  .hero-link-secondary {
    width: 100%;
  }

  .hero-trust-row span {
    width: 100%;
  }
}
