/* fonts */
@font-face {
  font-family: PPMori;
  src: url('/fonts/PPMori-Extralight.woff2');
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: PPMori;
  src: url('/fonts/PPMori-SemiBold.woff2');
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: 'TT Ramillas';
  src: url('/fonts/TT-Ramillas-ExtraLight.woff2');
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: 'TT Ramillas';
  src: url('/fonts/TT-Ramillas-ExtraLight-Italic.woff2');
  font-weight: 200;
  font-style: italic;
}
@font-face {
  font-family: 'TT Ramillas';
  src: url('/fonts/TT-Ramillas-Light.woff2');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'TT Ramillas';
  src: url('/fonts/TT-Ramillas-Light-Italic.woff2');
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: 'TT Ramillas';
  src: url('/fonts/TT-Ramillas-Regular.woff2');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'TT Ramillas';
  src: url('/fonts/TT-Ramillas-Italic.woff2');
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: 'TT Ramillas';
  src: url('/fonts/TT-Ramillas-Bold.woff2');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'TT Ramillas';
  src: url('/fonts/TT-Ramillas-BoldItalic.woff2');
  font-weight: 700;
  font-style: italic;
}


:root {
  --red: #FE646F;
  --green: #389274;
  --white: #fff;
  --black: #000;
  --brown: #A85021;
  --darkblue: #14123B;
  --cream: #FCF7EF;
  --grey: #D1CCC2;
  --bluegrey: #758F96;
  --font-title: 'TT Ramillas', serif;
  --font-body: 'PPMori', sans-serif;
}

html, body{
  margin: 0;
  padding: 0 !important;
  font-family: var(--font-body);
  font-weight: 200;
  font-style: normal;
  font-size: 16px;
  line-height: 1.1;
  overflow-x: hidden !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smooth: never;
  background: var(--cream);
  color: var(--darkblue);
}

a:hover {
  color: #000000;
}
b {
  font-weight: 700;
}
/* general */
.container {
  max-width: 90%;
  margin: 0 auto;
}
.title {
  color: var(--brown);
  font-family: var(--font-title);
  font-size: clamp(24px, 6vw, 40px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.1;
  text-transform: uppercase;
  text-wrap: balance;
}
.txt {
  font-size: clamp(14px, 3vw, 20px);
  font-weight: 200;
  color: var(--darkblue);
  line-height: 1.2;
  text-wrap: balance;
}
.cta {
  min-width: 200px;
  height: 50px;
  padding: 0 25px;
  border-radius: 15px;
  background: var(--brown);
  color: var(--cream);
  font-weight: 200;
  font-size: 22px;
  line-height: 51px;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  transition: all 0.6s ease;
}
.cta:hover {
  background: var(--darkblue);
}
.sec-txt {
  width: 450px;
  max-width: 100%;
  margin: 0 0 0 20%;
}
section {
  transition: filter 0.6s ease;
}
/* floating icons */
.floating-icon {
  position: fixed;
  right: 10%;
  bottom: 10%;
  background: var(--brown);
  min-width: 65px;
  min-height: 65px;
  width: 65px;
  height: 65px;
  border-radius: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.6s ease;
  cursor: pointer;
}
.floating-icon.iconON {
  opacity: 1;
  transform: translateY(0);
}
.floating-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 10px rgba(168, 80, 33, 0.7), 0 0 0 20px rgba(168, 80, 33, 0.30);
  opacity: 0;
  transform: scale(1);
  pointer-events: none;
}
.floating-icon.iconON::before {
  animation: haloPulse 1.8s ease-out infinite;
}
@keyframes haloPulse {
  0% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(168, 80, 33, 0.7), 0 0 0 0 rgba(168, 80, 33, 0.3);
  }
  70% {
    opacity: 1;
    box-shadow: 0 0 0 8px rgba(168, 80, 33, 0.7), 0 0 0 18px rgba(168, 80, 33, 0.3);
  }
  100% {
    opacity: 1;
    box-shadow: 0 0 0 18px rgba(168, 80, 33, 0), 0 0 0 28px rgba(168, 80, 33, 0);
  }
}
/* navbar */
.nav {
  border-top: 10px solid var(--white);
  text-align: center;
  position: fixed;
  width: 100%;
  z-index: 999;
  transition: all 0.6s ease;
}
.logo {
  width: 205px;
  height: 64px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -10px;
  position: relative;
}
.logo svg {
  width: 100%;
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}
.logo svg .st0 {
  fill: var(--white);
  transition: all 0.6s ease;
}
.logo img {
  position: relative;
  z-index: 33;
  height: 35px;
  transition: all 0.6s ease;
}
.nav.scrolling {
  border-top: 10px solid var(--brown);
}
.nav.scrolling .logo svg .st0 {
  fill: var(--brown);
}
.nav.scrolling .logo img {
  filter: brightness(0) invert(1);
}
/* header */
.header {
  padding: 120px 0;
  min-height: 850px;
  position: relative;
}
.header::before {
  content: '';
  position: absolute;
  background: url('/img/bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 11;
}
.header video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  z-index: 0;
}
.header .container {
  position: relative;
  z-index: 44;
}
.header-content {
  width: 600px;
  max-width: 100%;
  margin: 0 0 0 20%;
}
.header-content h1 {
  font-family: var(--font-title);
  font-size: clamp(22px, 5vw, 40px);
  font-style: italic;
  font-weight: 400;
  color: var(--white);
  text-transform: uppercase;
}
.price {
  margin-top: 30px;
  width: 300px;
  height: 60px;
  color: var(--cream);
  background: var(--darkblue);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
}
/* form */
#progressBar {
  width: 100%;
  background-color: #f1f1f1;
  margin-bottom: 30px;
}
#progressBar div {
  height: 4px;
  width: 0;
  background-color: var(--brown);
}
.forms {
  width: 430px;
  margin: 0 0 0 auto;
  background: var(--white);
  border-radius: 25px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 30px;
  position: relative;
  z-index: 99;
}
#contactform {
  margin-top: 20%;
}
.form-step h3 {
  color: var(--darkblue);
  font-size: 22px;
  line-height: 1.2;
  font-weight: 400;
  text-wrap: balance;
  margin-bottom: 30px;
}
.form-step {
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
}
.form-step.active {
  display: flex;
}
/* custom radio */
.radio-opt {
  width: 100%;
  max-width: 340px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: column;
  gap: 15px 0;
}
.radio-button {
  width: 100%;
}
.radio-button input[type="radio"] {
  position: absolute; 
  opacity: 0; 
  width: 0;
  height: 0;
}
.radio-button label {
  background: var(--white);
  border: 1px solid var(--brown);
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  height: 50px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--brown);
  font-size: 18px;
  font-weight: 300;
}
.radio-opt-normal .radio-button label {
  width: 100%;
  margin: 0 auto;
  padding: 0 0 0 10px;
}
.radio-button label:hover, .radio-button input[type="radio"]:checked + label {
  background: var(--darkblue);
  border: 1px solid var(--darkblue);
  color: var(--white);
}
.radio-button label:hover {
  transform: scale(1.05);
}
/* custom select */
.form-input .dropdown-toggle {
  background: var(--white);
  width: 100%;
  height: 40px;
  border-radius: 0px;
  border: none;
  border-bottom: 1px solid var(--darkblue);
  color: var(--darkblue);
  text-align: left;
  font-size: 16px;
  font-weight: 400;
  padding: 0px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.dropdown-toggle::after {
  display: none;
}
.form-option:hover, .form-option.selected, .form-input .dropdown-toggle:active {
  background: var(--brown) !important;
  color: var(--white) !important;
}
.form-input .dropdown-toggle:hover img {
  filter: brightness(0) invert(1);
}
.form-input .dropdown-toggle:focus-visible, .form-input .dropdown-toggle:focus {
  box-shadow: none;
  background: var(--white);
  color: var(--darkblue);
}
.form-input .dropdown-menu {
  width: 100%;
  overflow-y: auto;
  max-height: 200px;
  cursor: pointer;
  border-radius: 0px;
  padding: 0;
  border: none;
}
.form-option {
  padding: 10px 20px;
}
/* inputs */
.form-input {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px 0;
}
.form-input > div {
  width: 100%;
}
.form-input input {
  width: 100%;
  max-width: 340px;
  height: 45px;
  border-radius: 0px;
  border: none;
  border-bottom: 1px solid var(--darkblue);
  font-size: 16px;
  color: var(--darkblue) !important;
  font-weight: 400 !important;
  padding: 0 15px;
  -webkit-appearance: none;
  text-align: left !important;
  line-height: 1;
  margin: 0 auto;
}
.form-input input:focus-visible {
  outline: none !important;
}
::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
}
:-moz-placeholder {
  color: rgba(0, 0, 0, 0.4);
  opacity: 1;
}
::-moz-placeholder {
  color: rgba(0, 0, 0, 0.4);
  opacity: 1;
}
:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
}
::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
}
::placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.iti {
  width: 100%;
  max-width: 340px;
}
.iti__selected-country {
  height: 44px !important;
}
.form-input input.error {
  border-bottom: 1px solid var(--red);
  background-image: url('/img/icons/error.svg');
  background-position: 96% center;
  background-size: 20px;
  background-repeat: no-repeat;
  margin: 0 auto;
}
.form-input input.valid {
  border-bottom: 1px solid var(--brown);
  background-image: url('/img/icons/check.svg');
  background-position: 96% center;
  background-size: 20px;
  background-repeat: no-repeat;
  margin: 0 auto;
}
.form-check {
  text-align: center;
  padding: 0;
  margin-top: 20px;
}
.form-check label {
  margin: 0;
  position: relative;
  padding-left: 18px;
  cursor: pointer;
  line-height: 1;
  color: var(--darkblue);
  font-size: 13px;
  font-weight: 400;
}
.form-check input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.checkmark {
  position: absolute;
  top: -1px;
  left: 0;
  height: 12px;
  width: 12px;
  background-color: transparent;
  border: 1px solid var(--brown);
  border-radius: 3px;
  padding-right: 5px;
  color: var(--brown);
}
.form-check input[type=checkbox]:checked + .checkmark::after {
  content: "\2713";
  display: block;
  text-align: center;
  line-height: 12px;
  margin-left: 0px;
  margin-top: 0px;
  font-size: 14px;
}
#politica-link {
  color: var(--darkblue);
  text-decoration: none;
}
#politica-link:hover {
  color: var(--brown);
  text-decoration: underline;
}
label.error, #terms-error {
  width: 100%;
  text-align: center;
  font-size: 12px;
  color: var(--red);
  font-weight: 400;
  padding: 0;
  margin: 0 0 10px 0;
  line-height: 1;
}
.form-button {
  width: 200px;
  height: 45px;
  border-radius: 15px;
  background: var(--brown);
  color: var(--cream);
  font-size: 22px;
  font-weight: 400;
  line-height: 25px;
  text-transform: uppercase;
  border: none;
  transition: all 0.4s ease;
}
.form-button:hover {
  background: var(--darkblue);
  color: var(--white);
}
#contactform_step-5 .form-button {
  margin-top: 10px;
}
/* pop-up form */
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.popup-content {
  background-color: var(--brown);
  width: 90%;
  max-width: 800px;
  border-radius: 15px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.popup-content .forms {
  border-radius: 0;
  width: 100%;
  min-height: 480px;
}
.popup-content .forms .form-step h3 {
  font-size: 22px;
}
#popForm_step-5 .form-button {
  margin-top: 10px;
}
.popup-content .right {
  padding: 0 20px 0 0;
}
.popup-content .right h6 {
  font-size: clamp(16px, 3vw, 28px);
  font-family: var(--font-title);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 30px;
  text-wrap: balance;
}
.popup-content .right img {
  width: 90%;
  margin: 0 auto;
}
.close-btn {
  width: 25px;
  height: 25px;
  aspect-ratio: 1;
  background: var(--white);
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  transition: all 0.6s ease;
  z-index: 99999;
}
.close-btn img {
  width: 50%;
}
.close-btn:hover {
  transform: scale(1.1);
}
/* section1 */
.section1 {
  padding: 60px 0;
  height: 750px;
  background: url('/img/curve.svg');
  background-size: 50%;
  background-position: left center;
  background-repeat: no-repeat;
}
.section1 h3 {
  margin-bottom: 50px;
}
.image-text .txt {
  opacity: 0;
  transition: opacity 0.6s ease;
}
.image-text .txt.active {
  opacity: 1;
}
.slider-box {
  position: relative;
  height: 600px;
  overflow: hidden;
  padding: 50px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.slider-box::before, .slider-box::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 80px;
  right: 0;
  left: 0;
  z-index: 4;
}
.slider-box::before {
  top: 0;
  background: linear-gradient(0deg, rgba(252, 247, 239,0) 8%, rgba(252, 247, 239,1) 37%, rgba(252, 247, 239,1) 100%);
}
.slider-box::after {
  bottom: 0;
  background: linear-gradient(180deg, rgba(252, 247, 239,0) 8%, rgba(252, 247, 239,1) 37%, rgba(252, 247, 239,1) 100%);;
}
.slider1 {
  width: 90%;
  height: 100%;
  overflow-y: auto;
  scrollbar-width: none;
  overscroll-behavior: contain;
}
.slider1::-webkit-scrollbar {
  display: none;
}
.section1 .slider1 img {
  width: 100%;
  border-radius: 30px;
  margin: 15px auto;
}
.scrollbar {
  width: 8px;
  height: 70%;
  background: #F4EBE4;
  position: relative;
  z-index: 33;
  flex-shrink: 0;
  cursor: pointer;
}
.scrollbar-thumb {
  position: absolute;
  width: 100%;
  height: 200px;
  background: var(--darkblue);
  top: 0;
  left: 0;
  cursor: default;
}
/* section2 */
.section2 {
  text-align: center;
  padding: 40px 0 0;
  min-height: 800px;
  background: url('/img/section2.png');
  background-size: 100%;
  background-position: center -10%;
  background-repeat: no-repeat;
}
.section2 h3 {
  width: 500px;
  max-width: 100%;
  margin: 0 auto;
}
.icon-row {
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
  padding-top: 80px;
}
.icon {
  max-width: 16%;
  text-align: center;
}
.icon img {
  height: 50px;
  margin-bottom: 20px;
}
.sec6-cta {
  text-align: center;
  margin: 40px auto 0 auto;
}
.sec6-cta button {
  margin: 0 auto;
}
/* section3 */
.section3 {
  padding: 50px 0;
  min-height: 750px;
  background: url('/img/curve2.svg');
  background-size: 50%;
  background-position: left center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section3 h3 {
  margin-bottom: 50px;
}
.section3 .cta {
  margin-top: 60px;
}
.slider-box-horizontal {
  width: 100%;
  overflow: hidden;
  position: relative;
  cursor: grab;
}
.slider2 {
  display: flex;
  align-items: center;
  gap: 30px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: auto;
  padding: 20px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.slider2::-webkit-scrollbar {
  display: none;
}
.slider-box-horizontal.dragging {
  cursor: grabbing;
}
.slider-box-horizontal.dragging .slider2 {
  user-select: none;
  pointer-events: none;
}
.slider2 img {
  flex: 0 0 auto;
  height: 450px;
  width: auto;
  display: block;
  border-radius: 12px;
}
.scrollbar2 {
  width: 80%;
  height: 8px;
  background: #F4EBE4;
  position: relative;
  z-index: 33;
  cursor: pointer;
  margin: 20px 0 0 20px;
  overflow: hidden;
}
.scrollbar-thumb2 {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  min-width: 60px;
  max-width: 270px;
  background: var(--darkblue);
  cursor: grab;
}
.scrollbar-thumb2:active {
  cursor: grabbing;
}
/* section 4 */
.section4 {
  padding: 50px 0;
}
.section4 .title {
  margin-bottom: 40px;
}
.building {
  position: relative;
  background: url('/img/building/building.png');
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  height: 750px;
  margin-right: -15%;
}
.building img {
  height: 115px;
  position: absolute;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.badge_beach {
  top: 17%;
  left: 56%;
}
.badge_bridge {
  top: 32%;
  left: 21%;
}
.badge_park {
  top: 28%;
  left: 75%;
}
.building img.active {
  opacity: 1;
}
.building-crtl {
  margin-top: 50px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0 20px;
}
.building-crtl button {
  width: 160px;
  height: 50px;
  padding: 10px;
  background: var(--cream);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  transition: all 0.6s ease;
}
.building-crtl button img {
  height: 28px;
}
.building-crtl button:hover img, .building-crtl button.active img {
  filter: brightness(0) invert(1);
}
.bridge-cta {
  border: 2px solid var(--brown);
}
.bridge-cta:hover, .bridge-cta.active {
  background: var(--brown);
}
.beach-cta {
  border: 2px solid var(--grey);
}
.beach-cta:hover, .beach-cta.active{
  background: var(--grey);
}
.park-cta  {
  border: 2px solid var(--bluegrey);
}
.park-cta:hover, .park-cta.active {
  background: var(--bluegrey);
}
/* section 5 */
.section5 {
  padding: 50px 0;
  text-align: center;
  position: relative;
}
.section5 h3 {
  margin-bottom: 30px;
}
.residences-slider-outer {
  position: relative;
  min-height: 680px;
  overflow-x: auto;
  overflow-y: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
  cursor: none;
  margin-top: 60px;
}
.residences-slider-outer::-webkit-scrollbar {
  display: none;
}
#cursor {
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 71%;
  transform: translate(-50%, -50%);
  z-index: 999;
}
#cursor #circle1 {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--darkblue);
  text-align: center;
  color: var(--white);
  font-size: clamp(12px, 5vw, 16px);
  font-family: var(--font-title);
  font-style: italic;
  font-weight: 600;
  text-transform: uppercase;
  align-content: center;
  user-select: none;
  transition: transform 0.2s ease;
}
.residences-slider {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 20px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 40px;
  padding: 0 40px 0 0;
}
.residences-inner {
  width: 95%;
  min-height: 650px;
  margin: 0 auto;
  padding: 20px 20px 0px 20px;
  background: var(--white);
  border-radius: 20px;
}
.residences-img {
  border-radius: 15px;
  width: 100%;
}
.residences-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}
.blueprint, .residences-txt {
  width: 48%;
}
.residences-txt {
  text-align: left;
}
.residences-txt h5 {
  font-family: var(--font-title);
  font-size: clamp(16px, 10vw, 26px);
  font-style: italic;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0;
}
.blueprint img {
  width: 90%;
  max-height: 250px;
  margin: 0 auto;
}
.residences-txt ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 20px 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  gap: 10px 0;
}
.residences-txt ul li {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 0.5px solid var(--darkblue);
  padding: 5px;
  font-size: clamp(11px, 4vw, 14px);
  line-height: 1.2;
}
.residences-txt p {
  font-size: clamp(11px, 4vw, 14px);
  line-height: 1.2;
  margin: 0;
}
.residences-txt h6 {
  font-family: var(--font-title);
  font-style: italic;
  font-size: clamp(19px, 4vw, 26px);
  font-weight: 700;
}
.residences-btn {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 0.5px solid var(--darkblue);
}
.residences-btn button {
  width: 50%;
  height: 50px;
  border: none;
  background: transparent;
  font-size: clamp(12px, 1.3vw, 18px);
  transition: all 0.6s ease;
  color: var(--darkblue);
}
.residences-btn button:first-of-type {
  border-right: 0.5px solid var(--darkblue);
}
.residences-btn button:hover {
  transform: scale(1.04);
}
.residences-btn,
.residences-btn * {
  cursor: auto !important;
}
.residences-btn button {
  cursor: pointer !important;
}
.gallery-controls {
  margin-top: 30px;
}
.custom-dots {
  min-width: 130px;
}
.custom-dots ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 10px;
  list-style: none;
  margin: 0;
  padding: 0;
  transition: all 0.6s ease;
}
.custom-dots ul:hover {
  background: var(--white);
}
.custom-dots ul li button {
  display: none;
}
.custom-dots ul li {
  width: 20px;
  height: 5px;
  aspect-ratio: 1;
  border-radius: 0px;
  background: rgba(0, 0, 0, 0.15);
  transition: all 0.6s ease;
}
.custom-dots .slick-active {
  width: 55px;
  background: var(--brown);
}
/* sectio5 */
.section6 {
  padding: 70px 0;
}
.list-outer {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 25px 0;
  margin-top: 40px;
}
.list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0 15px;
}
.list p {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
}
.map img {
  width: 90%;
  position: relative;
  right: -10%;
}
/* footer */
.footer {
  min-height: 450px;
  background: url('/img/footer.png');
  background-size: 60%;
  background-position: center right;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.footer::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(90deg,rgba(252, 247, 239, 1) 50%, rgba(252, 247, 239, 0) 75%);;
}
.footer .container {
  position: relative;
  z-index: 33;
}
.footer button {
  margin-top: 40px;
}
/* Adstrategy */
#section-ads {
  text-align: center;
  padding: 30px 0;
}
/* Media Queries */
@media only screen and (min-width: 1920px) {
    .residences-slider-outer, .residences-inner {
        min-height: 760px;
    }
}
@media only screen and (max-width: 1440px) {
  .sec-txt, .header-content {
    margin: 0;
  } 
  .section2 {
    background-position: center bottom;
  }
}
@media only screen and (max-width: 1240px) {
  .forms {
    width: 430px;
  }
  .slider2 img {
    height: 350px;
  }
  .scrollbar-thumb2 {
    max-width: 200px;
  }
  .building-crtl button {
    transform: scale(0.85);
  }
  .building-crtl {
    gap: 0;
  }
  .residences-txt h5 {
    font-size: clamp(18px, 2vw, 20px);
  }
  .residences-slider-outer {
    min-height: 580px;
  }
  .residences-inner {
    min-height: 540px;
  }
}
@media only screen and (max-width: 1080px) {
  .header-content {
    width: 400px;
  }
  .residences-slider-outer {
    min-height: 600px;
  }
  .residences-inner {
    min-height: 560px;
  }
  .list img {
    width: 25px;
    height: 25px;
  }
  .list p {
    font-size: 16px;
  }
  .footer .title {
    font-size: clamp(24px, 4vw, 36px);
  }
}
@media only screen and (max-width: 991px) {
  .forms {
    margin: 0 0 0 -10px;
    width: 390px;
    padding: 50px 30px;
  }
  .icon img {
    height: 40px;
  }
  .icon p {
    font-size: 14px;
  }
  .section2 {
    min-height: 660px;
  }
  .section3 {
    min-height: 550px;
  }
  .section4 {
    text-align: center;
  }
  .section4 .sec-txt {
    width: 100%;
  }
  .building-crtl {
    gap: 0 20px;
    margin: 30px auto 50px auto;
    justify-content: center;
  }
  .building-crtl button {
    transform: unset;
  }
  .building {
    height: 650px;
  }
  .building img {
    height: 90px;
  }
  .footer {
    min-height: 350px;
    background-size: 70%;
  }
  .scrollbar-thumb {
    max-height: 200px;
  }
  .slider-box {
    height: 450px;
  }
  .section1 {
    height: 600px;
  }
  .section1 .slider1 img {
    height: 240px;
  }
  .section1 .txt {
    font-size: clamp(14px, 2vw, 16px);
  }
  .map img {
    width: 125%;
    right: 15%;
  }
}
@media only screen and (max-width: 768px) {
  .header, .section3 {
    text-align: center;
  }
  .sec-txt, .header-content {
    margin: 0 auto;
  }
  .header-content {
    width: 100%;
    text-wrap: balance;
  }
  .price {
    margin: 30px auto 50px auto;
  }
  .forms {
    width: 470px;
    margin: 0 auto;
  }
  #contactform {
    margin-top: 0;
  }
  .section1 {
    text-align: center;
    height: auto;
  }
  .section1 h3, .section3 h3 {
    margin-bottom: 20px;
  }
  .sec1-img {
    margin: 35px 0;
    text-wrap: balance;
    text-align: center;
  }
  .sec1-img img {
    width: 380px;
    border-radius: 10px;
    margin: 0 auto;
  }
  .sec1-img .txt {
    font-size: 17px;
    margin-top: 20px;
    max-width: 75%;
    margin: 20px auto 0 auto;
  }
  /*.sec1-img1 {
    text-align: left;
  }
  .sec1-img2 {
    text-align: right;
  }
  .sec1-img2 p {
    margin: 0 0 0 auto;
  }*/
  .icon-row {
    flex-wrap: wrap;
    gap: 25px 10px;
    padding-top: 60px;
  }
  .icon {
    width: 31%;
    max-width: 31%;
  }
  .section3 .cta {
    margin: 30px auto;
  }
  .residences-slider {
    left: 0;
    padding: 0;
  }
  .residences-inner {
    width: 75%;
  }
  .residences-slider-outer {
    min-height: 635px;
  }
  .section6 {
    text-align: center;
    padding: 40px 0 60px 0;
  }
  .list-outer {
    flex-wrap: wrap;
    flex-direction: row;
    gap: 20px;
  }
  .list {
    max-width: 45%;
    text-align: left;
  }
  .map img {
    width: 105%;
    right: 0%;
  }
  .map img {
    min-height: 275px;
  }
  .building-crtl button {
    width: 140px;
    height: 40px;
  }
  .building-crtl button img {
    height: 22px;
  }
  .building {
    height: 450px;
  }
  .building img {
    height: 80px;
  }
  .popup-content .forms {
    min-height: auto;
    padding: 40px 50px;
  }
  .popup-content .right {
    padding: 30px;
  }
  .popup-content .right img {
    width: auto;
    height: 180px;
  }
  .popup {
    padding: 30px 0;
  }
  #popForm .radio-button label {
    height: 45px;
  }
  .popup-content .forms {
    padding: 40px 30px 30px 30px;
  }
  #popForm .form-step h3 {
    margin-bottom: 20px;
  }
  .floating-icon {
    bottom: 5%;
  }
}
@media only screen and (max-width: 680px) {
  .footer {
    text-align: center;
    background-size: cover;
    background-position: center bottom;
    min-height: auto;
    padding: 0 0 250px 0;
  }
  .footer .cta {
    margin: 30px auto 0 auto;
  }
  .footer::before {
    background: linear-gradient(-180deg,rgba(252, 247, 239, 1) 30%, rgba(252, 247, 239, 0) 85%);
  }
}
@media only screen and (max-width: 550px) {
  .sec1-img .txt {
    max-width: 100%;
  }
  .residences-inner {
    width: 85%;
  }
  .residences-slider-outer {
    min-height: 580px;
  }
  .forms {
    width: 100%;
  }
  .sec6-cta {
    margin: 30px auto 0 auto;
  }
}
@media only screen and (max-width: 475px) {
  .forms {
    padding: 40px 20px;
  }
  .form-input .dropdown-toggle {
    font-size: 15px;
  }
  .price {
    width: 240px;
    font-size: 24px;
  }
  .section2 {
    background-size: 155%;
  }
  .residences-inner {
    width: 95%;
  }
  .sec1-img img {
    width: 320px;
  }
  .sec1-img .txt {
    font-size: 16px;
  }
  .form-input .dropdown-toggle {
    font-size: 14px;
  }
  #cursor {
    display: none !important;
  }
  .residences-slider-outer {
    cursor: grabbing;
  }
  .residences-slider-outer, .residences-inner {
    min-height: 555px;
  }
  .popup-content .right img {
    display: none;
  }
  .popup-content .right h6 {
    font-size: 22px;
    margin: 0;
  }
  .popup-content .forms .form-step h3 {
    font-size: 20px;
  }
  #popForm #progressBar {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 390px) {
  .container {
    max-width: 95%;
  }
  .building {
    height: 380px;
  }
  .building img {
    height: 60px;
  }
  .building-crtl {
    gap: 0 10px;
    margin: 20px auto 30px auto;
  }
  .building-crtl button {
    width: 120px;
  }
  .building-crtl button img {
    height: 20px;
  }
  .section5 {
    padding: 0 0 50px 0;
  }
  .residences-slider-outer {
    margin-top: 30px;
  }
  .blueprint img {
    width: 80%;
  }
  .list-outer {
    max-width: 75%;
    margin: 30px auto 0 auto;
  }
  .list  {
    max-width: 90%;
  }
  .list p {
    font-size: 14px;
  }
  .section4 .title {
    margin-bottom: 30px;
  }
  .building-crtl {
    flex-direction: column;
    gap: 20px 0;
    margin-top: 30px;
  }
  .building-crtl button {
    width: 130px;
    height: 40px;
  }
  .building-crtl button img {
    height: 20px;
  }
  .section1 {
    padding: 60px 0 0 0;
  }
  .sec1-img img {
    width: 280px;
  }
  .sec1-img .txt {
    font-size: 14px;
  }
  .section2 {
    min-height: 580px;
  }
  .slider2 img {
    height: 300px;
  }
  .scrollbar-thumb2 {
    max-width: 60px;
  }
  .residences-slider-outer, .residences-inner {
    min-height: 555px;
  }
}
@media only screen and (max-width: 375px) {
  .form-step h3 {
    font-size: 20px;
  }
  .sec1-img1 {
    margin-top: 0;
  }
  .sec1-img .txt {
    text-wrap: unset;
  }
  .sec1-img .txt {
    font-size: 13px;
  }
  .sec1-img img {
    width: 250px;
  }
  .slider2 img {
    height: 250px;
  }
  .building {
    height: 320px;
  }
  .list-outer {
    max-width: 85%;
  }
  .residences-slider-outer, .residences-inner {
    min-height: 515px;
  }
  .residences-txt p {
    font-size: 11px;
  }
  .residences-txt h6 {
    font-size: 26px;
  }
  .icon-row {
    gap: 15px;
  }
  .section2 {
    min-height: 680px;
  }
  .popup-content .right h6 {
    font-size: 20px;
  }
  .form-check label {
    font-size: 11px;
  }
  #popForm .radio-button label {
    font-size: 14px;
  }
}
@media only screen and (max-width: 345px) {
  .section2 {
    padding: 30px 0;
  }
  .residences-slider-outer, .residences-inner {
    min-height: 490px;
  }
  .residences-inner {
    padding: 10px 10px 0 10px;
  }
  .list p {
    font-size: 13px;
  }
}