:root {
  --red: #FE646F;
  --green: #508E8B;
  --white: #fff;
  --black: #000;
  --darkgrey: #4C4C4C;
  --leite: #FDFAF6;
  --areia: #ECD3C1;
  --mar: #508E8B;
}

@font-face {
  font-family: "GothamHTF";
  src: url("/fonts/GothamHTF-Thin.otf") format("opentype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "GothamHTF";
  src: url("/fonts/GothamHTF-XLight.otf") format("opentype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "GothamHTF";
  src: url("/fonts/GothamHTF-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "GothamHTF";
  src: url("/fonts/GothamHTF-Book.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "GothamHTF";
  src: url("/fonts/GothamHTF-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "GothamHTF";
  src: url("/fonts/GothamHTF-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "GothamHTF";
  src: url("/fonts/GothamHTF-Black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "GothamHTF";
  src: url("/fonts/GothamHTF-Ultra.otf") format("opentype");
  font-weight: 950;
  font-style: normal;
  font-display: swap;
}

html,
body {
  margin: 0;
  padding: 0 !important;
  font-family: "GothamHTF";
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.1;
  overflow-x: hidden !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a:hover {
  color: #000000;
}

.col-12.fade-in {
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.col-12.fade-in.in-view {
  opacity: 1;
}

/* header */
.navPlaceholder {
  height: 96px;
  width: 100%;
  margin-top: -30px;
}

.nav {
  margin: auto;
  max-width: 1380px;
  color: var(--white);
  font-weight: 500;
  position: relative;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.50);
  font-weight: 500;
  transition:
  transform 0.1s ease,
  opacity 1.8s ease,
  bottom 0.1s ease,
  background-color 1.5s ease,
  border-color 0.5s ease,
  border-radius 1.5s ease,
  width 0.1s ease,
  max-width 0.1s ease,
  padding 0.1s ease,
  backdrop-filter 2.5s ease,
  -webkit-backdrop-filter 2.5s ease;
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}

.nav .container {
  transition: all 0.9s ease;
}

.nav p {
  margin: 0 10px;
  font-weight: 400;
  cursor: pointer;
  font-size: 18px;
}

.nav img {
  max-width: 145px;
  height: 40px;
  margin: 30px 0 25px;
}

.nav.scrolled {
  position: fixed;
  left: 50%;
  bottom: -100px;
  transform: translateX(-50%) translateY(100%);
  z-index: 10000;
  width: 90%;
  max-width: 700px;
  padding: 0 10px;
  border-radius: 15px;
  background-color: #a2a9a9d8;
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.1);
  opacity: 0;
  top: unset;
}

.nav.scrolled.show {
  bottom: 20px;
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.nav.scrolled p {
  color: #fff;
}

.nav.scrolled img {
  filter: brightness(0) invert(1);
}

.header {
  position: relative;
  padding: 0;
  background: url(/img/header_bg.png);
  aspect-ratio: 1440/720;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.header h1 {
  font-size: 50px;
  color: var(--leite);
  font-weight: 500;
  letter-spacing: 5px;
  max-width: 700px;
  text-transform: uppercase;
  margin: 0;
}

.header hr {
  color: #FDFAF680;
  opacity: 1;
  max-width: 390px;
  margin: 25px 0 30px;
  height: 1px;
}

.header h3 {
  font-size: 20px;
  font-weight: 400;
  text-wrap: balance;
  margin: 0;
  color: var(--leite);
}

/* form */
.form-step {
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  opacity: 0;
  animation: stepFadeIn 0.8s ease-out forwards;
}
.form-step.active {
  display: flex;
}
@keyframes stepFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.form {
  max-width: 380px;
  margin: 45px 0 0 auto;
  background: #F9F8F7CC;
  border-radius: 15px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 30px;
  position: relative;
  z-index: 99;
}
.form hr {
  margin: 10px auto 20px auto;
  width: 90%;
  height: 1px;
  background: var(--darkgrey);
  opacity: 1;
  border: none;
}
.form-step h3 {
  font-size: 24px;
  font-weight: 400;
  color: var(--darkgrey);
  line-height: 1.1;
  text-wrap: balance;
  margin-bottom: 25px;
}
/* radio inputs */
.radio-buttons {
  width: 280px;
  max-width: 100%;
}
.radio-buton input[type="radio"] {
  position: absolute; 
  opacity: 0; 
  width: 0;
  height: 0;
}
.radio-buton label {
  background: var(--white);
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s, border-color 0.3s;
  width: 100%;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--green);
  font-size: 16px;
  font-weight: 400;
  padding: 0 20px;
  margin: 10px 0;
}
.radio-buton label:last-of-type {
  margin-bottom: 0;
}
.radio-buton label:hover, .radio-buton input[type="radio"]:checked + label {
  background: var(--green);
  color: var(--white);
}

.header {
  aspect-ratio: unset;
  padding: 0 0 60px;
  min-height: 700px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.ty-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.ty-header h3 {
  margin-bottom: 50px;
  text-align: center;
}

.ty-header hr {
  margin: 5px auto 10px;
}

.ty-header h1 {
  margin-top: 30px;
  text-align: center;
  text-wrap: balance;
  font-size: 45px;
  max-width: 100%;
}

.message-box h4 {
  font-size: 32px;
}

.message-box h5 {
  font-size: 22px;
  font-weight: 400;
  text-wrap: balance;
  line-height: 1.1;
  color: var(--darkgrey);
  margin: 0;
}

.message-box span {
  font-size: 14px;
  font-weight: 700;
  color: var(--darkgrey);
}


.message-box {
  max-width: 700px;
  width: 100%;
  background: #F9F8F7CC;
  color: var(--darkgrey);
  padding: 45px;
  border-radius: 9.143px;
  border: transparent;
  backdrop-filter: blur(2.7428572177886963px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  text-wrap: balance;
  text-align: center;
}

.arrow-header {
  display: none;
}

.form h2 {
  font-size: 30px;
  font-weight: 400;
  text-wrap: balance;
  line-height: 1;
  color: var(--darkgrey);
}

.form h6 {
  font-size: 14px;
  font-style: italic;
  font-weight: 700;
  line-height: 1.1;
  color: var(--darkgrey);
  margin: 5px 0 20px 0;
}

.form-step img {
  margin-bottom: 20px;
}

.iti {
  width: 100%;
}

.form-input {
  width: 100%;
  margin: 5px 0;
}

.form select,
.select2-container {
  width: 100% !important;
}

.select2-container {
  text-align: left;
}

.select2-container--default .select2-selection--single {
  margin-top: 10px;
  background-color: transparent;
  border: none;
  appearance: none;
  border-bottom: 1px solid var(--darkgrey);
  border-radius: 0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  display: none;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: var(--darkgrey);

}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 1.5;
}

.form-input input {
  width: 100%;
  border: none;
  outline: none !important;
  background-color: transparent;
  height: 30px;
  padding: 0 8px;
  border-bottom: 0.8px solid var(--darkgrey);
  font-size: 16px;
  color: var(--darkgrey) !important;
  font-weight: 400 !important;
  -webkit-appearance: none;
  text-align: left !important;
  line-height: 1;
}

.form-input textarea {
  margin-top: 10px;
  width: 100%;
  background-color: transparent;
  padding: 0 0 0 8px;
  border: none;
  height: 50px;
  outline: none;
  border-bottom: 1px solid var(--darkgrey);

}

.form-input input:focus-visible {
  outline: none !important;
}

::-webkit-input-placeholder {
  color: var(--darkgrey);
}

:-moz-placeholder {
  color: var(--darkgrey);
  opacity: 1;
}

::-moz-placeholder {
  color: var(--darkgrey);
  opacity: 1;
}

:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
}

::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
}

::placeholder {
  color: var(--darkgrey);
}


.form-check {
  text-align: center;
  padding: 0;
  margin-top: 5px;
}

.form-check label {
  margin: 0;
  position: relative;
  padding-left: 18px;
  cursor: pointer;
  line-height: 1;
  color: var(--black);
  font-size: 11px;
  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(--darkgrey);
  border-radius: 3px;
  padding-right: 5px;
  color: var(--darkgrey);
}

.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(--black);
  text-decoration: none;
}

.politica-link:hover {
  color: var(--mar);
  text-decoration: underline;
}

label.error,
#terms-error {
  width: 100%;
  text-align: center;
  font-size: 10px;
  color: var(--red);
  font-weight: 400;
  padding: 0;
  margin: 0;
  line-height: 1;
}

.form-button {
  width: 140px;
  max-width: 100%;
  height: 40px;
  border-radius: 10px;
  font-size: 18px;
  line-height: 1;
  font-weight: 400;
  border: none;
  color: var(--white);
  background: var(--green);
  transition: all 0.4s ease;
  margin-top: 10px;
}

.form-button:hover {
  color: var(--mar);
  background: var(--white);
}

.error-button {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  max-width: 200px;
  width: 100%;
}

.header .row.position-absolute {
  left: 50%;
  bottom: 0;
  width: 35px;
  padding: 0;
  transform: translate(-50%, 0%);
  margin: 0;
}

/* Section 1 */
section.slider-1 .row.position-absolute {
  left: 50%;
  top: 0;
  width: 1px;
  height: 66px;
  padding: 0;
  transform: translate(-50%, 0%);
  margin: 0;
  z-index: 5;
}

section.slider-1 {
  padding: 130px 0 90px;
  position: relative;
  z-index: 1;
}

.section_1_content h1 {
  color: var(--darkgrey);
  font-size: 40px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.section_1_content p {
  margin: 10px 0 0 0;
  font-size: 16px;
  text-align: right;
  color: var(--darkgrey);
  font-weight: 400;
}

.section_1_content .slider-container img {
  display: block;
  margin-top: auto;
  max-height: 205px;
  max-width: 370px;
  object-fit: contain;
  transition: all 0.3s ease;
}

.section_1_content .slider-container {
  min-height: 230px;
  display: flex;
  justify-content: center;
}

.select2-container .slick-current img {
  height: 100%;
  width: 410px;
  max-height: 100%;
  max-width: 100%;
}

.section_1_slider {
  margin-top: 30px;
}

.section_1_slider img {
  border-radius: 10px;
}

.slider-1 .section_1_slider {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.slider-1 .section_1_slider::before,
.slider-1 .section_1_slider::after {
  content: '';
  position: absolute;
  top: 0;
  height: 100%;
  width: 40px;
  z-index: 2;
  pointer-events: none;
}

.slick-list {
  overflow: hidden;
}

.slider-1 .section_1_slider::before {
  left: -3px;
  background: linear-gradient(270deg,
      transparent 40%, white 80%,
      var(--white) 100%);
}

.slider-1 .section_1_slider::after {
  right: -3px;
  background: linear-gradient(90deg,
      transparent 40%,
      white 80%,
      white 100%);
}

/* Development */
section.development {
  background-color: var(--areia);
  padding: 65px 0 0;
}

.development .right {
  max-width: 465px;
}

.development h1 {
  font-size: 40px;
  font-weight: 500;
  color: var(--darkgrey);
  text-transform: uppercase;
  letter-spacing: 4px;
  line-height: 1;
  margin-bottom: 45px;
}

.development p {
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 40px;
  line-height: 1.2;
}

.redirect-form {
  width: 100%;
  color: var(--darkgrey);
  font-weight: 400;
  border-radius: 10px;
  background-color: #fff;
  max-width: 250px;
  height: 45px;
  border: transparent;
  font-size: 20px;
  margin-bottom: 55px;
}

.arrow-container {
  width: 140px;
  display: flex;
  justify-content: space-between;
}

.arrow-container img {
  height: 20px;
  cursor: pointer;
}

#dev_right {
  transform: rotate(180deg);
}

.development .row {
  --bs-gutter-x: 0;
}

.slider-dev-container {
  display: flex;
  flex-direction: column;
}

.slider-dev-container img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.left_img {
  padding-right: 10px !important;
}

.left_img img {
  height: 100%;
}

.right_top_img {
  margin-bottom: auto;
}

.slider-dev-container .mb {
  margin-bottom: 10px;
}

/* Divisoria praia */
.beach {
  aspect-ratio: 1440 / 760;
  background-image:
    linear-gradient(180deg, var(--areia) 0%, transparent 50%, transparent 50%, var(--mar)),
    url(/img/beach_divisory.png);
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat;
}

/* Invest */
.invest {
  background-color: var(--mar);
  color: var(--white);
  margin-top: -1px;
  padding-bottom: 80px;
}

.invest h1 {
  font-size: 40px;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.invest_left {
  max-width: 510px;
}

.invest_left .row {
  gap: 10px;
}

.invest_left p {
  margin: 0;
  font-size: 16px;
  font-weight: 300;
  text-wrap: pretty;
  line-height: 1.2;
}

.invest .img-fluid {
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
  object-position: center;
}

.invest h2 {
  font-size: 16px;
  font-weight: 400;
  text-align: right;
  margin-bottom: 35px;
}

.invest .card img {
  height: 22px;
  width: 22px;
  margin-bottom: 10px;
}

.invest .card {
  background-color: #FFFFFF40;
  color: var(--white);
  font-size: 16px;
  padding: 25px;
  max-width: 245px;
}

/* Residence */
.residences {
  padding: 70px 0;
}

.residences h1 {
  font-size: 40px;
  color: var(--darkgrey);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 500;
}

.residences p.col-md-auto {
  font-size: 16px;
  color: var(--darkgrey);
  font-weight: 300;
  line-height: 1.2;
  text-align: right;
  margin: 0 0 0 auto;
  max-width: 500px;
}

.residence-slider {
  margin-top: 75px;
  margin-bottom: 60px;
  position: relative;
}

.residence-slider img {
  width: 100%;
  border-radius: 10px;
}

.residence-slider::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.8) 0%,
      rgba(0, 0, 0, 0.5) 40%,
      transparent 100%);
  border-radius: 0 0 10px 10px;
  pointer-events: none;
  z-index: 1;
}

.residences .arrow-container {
  position: absolute;
  right: 0;
  transform: translate(-50%, -50%);
  bottom: 90px;
  z-index: 5;
}

.residences .redirect-form {
  background-color: var(--mar);
  color: var(--white);
  margin: 55px auto 0;
  width: auto;
  padding: 0 20px;
}

.residences .arrow-container img {
  filter: brightness(0) invert(1);
  width: 60px;
  cursor: pointer;
}

#res_right {
  transform: rotate(180deg);
}

.residences .icon-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 180px;
  text-align: center;
  padding: 0;
  gap: 22px;
}

.residences .icon-card p {
  font-size: 16px;
  color: var(--darkgrey);
  font-weight: 300;
  line-height: 1.06;
  text-wrap: pretty;
  margin: 0;
}

/* Pricing */
.pricing {
  background-color: var(--areia);
  padding: 80px 0;
}

.pricing h1 {
  font-size: 40px;
  color: var(--darkgrey);
  font-weight: 500;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.pricing-slider * {
  height: 100%;
}

.pricing .img-fluid {
  height: 100%;
  border-radius: 15px;
  object-fit: cover;
  object-position: center;

}

.pricing h2 {
  font-size: 16px;
  font-weight: 400;
  text-align: right;
  margin-bottom: 30px;
  color: var(--darkgrey);
  line-height: 1.25;
}

.pricing .card img {
  height: 22px;
  width: 22px;
  margin-bottom: 10px;
  filter: brightness(0) saturate(100%) invert(29%) sepia(4%) saturate(2%) hue-rotate(316deg) brightness(95%) contrast(92%);
}

.pricing .card {
  background-color: #FFFFFF40;
  color: var(--darkgrey);
  border: none;
  font-size: 16px;
  padding: 25px;
  max-width: 245px;
}

.pricing .card p {
  line-height: 1.3;
}

.pricing .card b {
  font-size: 28px;
  font-weight: 400;
}

/* 'smart' Map */

.map {
  padding: 60px 0 125px;
  background: url('/img/sand.png');
  background-size: 100% 50%;
  background-position: bottom center;
  background-repeat: no-repeat;
}

.map-container {
  padding: 40px 30px 35px;
  position: relative;
  background: url('/img/map.png');
  background-size: cover;
  aspect-ratio: 1240/700;
}

.map-container h1 {
  font-size: 40px;
  color: var(--white);
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  max-width: 590px;
}

.liquid-card {
  padding: 17px 20px;
  width: 180px;
  border-radius: 9.143px;
  border: transparent;
  background: rgba(255, 255, 255, 0.20);
  backdrop-filter: blur(2.7428572177886963px);
}

.liquid-card h3 {
  color: var(--white);
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  margin-bottom: 10px;
  line-height: 1.3;
}

.liquid-card h4 {
  font-size: 13px;
  font-weight: 400;
  color: var(--white);
  margin-top: 5px;
}

.liquid-card h5 {
  color: var(--white);
  font-size: 14px;
  font-weight: 250;
  width: auto;
  margin: 0;
}

.liquid-card p {
  color: var(--white);
  font-size: 9px;
  font-style: normal;
  font-weight: 400;
  margin: 0;
  line-height: 1.8;
}

.liquid-card h2 {
  color: #FFF;
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 300;
}

.small-icon {
  width: 33%;
  padding: 8px 5px;
  align-content: center;
  border-right: 1px solid var(--white);
}

.small-icon:last-child {
  border: none;
}

.small-icon p {
  font-size: 12px;
  font-weight: 350;
  text-align: center;
}

.small-icon img {
  width: 20px;
  padding: 0;
  filter: brightness(0) invert(1);
}

.small-icon h3 {
  width: auto;
}

.deslocation img {
  width: 15px;
  padding: 0;
}

.deslocation p {
  width: auto;
  padding-left: 3px;
  font-size: 12px;
  font-weight: 300;
}

#card-1 {
  position: absolute;
  right: 270px;
  height: 150px;
  transform: translate(-35%, 0);
}

#card-2 {
  position: absolute;
  padding: 18px 26px;
  right: 0;
  transform: translate(-15%, 0);
}

#card-3 {
  position: absolute;
  top: 150px;
  left: 240px;
  transform: translate(5%, 5%);
}

#card-4 {
  position: absolute;
  right: 30px;
  bottom: 200px;
}

#card-5 {
  position: absolute;
  left: 50px;
  bottom: 20px;
}

#card-6 {
  position: absolute;
  bottom: 20px;
  right: 310px;
}

#card-6 h3 {
  margin-bottom: 5px;
}

#card-7 {
  position: absolute;
  right: 30px;
  bottom: 20px;
}

#card-7 h3 {
  margin-bottom: 15px;
}

#card-7 h4 {
  margin-bottom: 6px;
  margin-top: 0;
  padding-left: 16px;
  font-size: 13px;
}

#card-7 .deslocation p {
  padding-left: 5px;
}

#card-2,
#card-4,
#card-7 {
  width: 270px;

}

.map .footer h2 {
  text-align: center;
  font-size: 30px;
  font-weight: 300;
  color: var(--darkgrey);
  margin-top: 75px;
}

.map .footer h1 {
  color: var(--darkgrey);
  font-size: 40px;
  font-weight: 450;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-align: center;
}

.map .redirect-form {
  margin: 35px auto 0;
  display: block;
  color: var(--white);
  width: 175px;
  background-color: var(--green);
}

.redirect-form {
  transition: all 0.3s ease;
  cursor: pointer;
}

.redirect-form:hover {
  background-color: var(--leite);
  color: var(--mar);
}


.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: var(--green)
}

.select2-container--default .select2-results__option--selected,
.select2-dropdown {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(3px);
}

.select2-container--default .select2-results__option--selected {
  background-color: var(--areia);
}

/* form pop-up */
.popupform, .calendar-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popupform .forms {
  background: var(--white);
  min-height: 410px;
}

.popup-content-form {
  background-color: white;
  width: 850px;
  height: 475px;
  max-width: 90%;
  background: var(--brown);
  border-radius: 0px;
  text-align: center;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
}

.popup-content-form .form {
  height: 475px;
  border-radius: 15px 0 0 15px;
  margin-top: 0;
}
.form-content {
  width: 45%;
}
.brochure {
  width: 55%;
  height: 100%;
  padding: 0;
}
#popup-form #contactform {
  max-width: 100%;
}
.brochure h3 {
  font-family: 'theseasons';
  font-weight: 700;
  color: var(--white);
  font-size: 22px;
  line-height: 1.1;
  margin-bottom: 40px;
  text-wrap: balance;
  text-transform: uppercase;
}

.brochure img {
  width: 100%;
  height: 100%;
}

.close-form {
  position: absolute;
  top: 10px;
  right: 15px;
  padding: 8px;
  border-radius: 10px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  background-color: var(--green);
}

.close-form img {
    max-width: 100%;
    height: 15px;
}

.close-form:hover {
  color: #000;
}

/* calendar-popup */
.calendar-popup .calendar-popup-content {
  width: 100%;
}
.close-calendar {
  position: absolute;
  bottom: 0%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 33;
}
.close-calendar button, .calendar-button {
  width: 180px;
  height: 45px;
  border: none;
  padding: 8px;
  border-radius: 10px;
  color: var(--darkgrey);
  background-color: #fff;
  cursor: pointer;
  font-size: 20px;
  font-weight: 400;
  transition: all 0.4s ease;
}
.close-calendar button:hover, .calendar-button:hover {
  color: var(--green);
}
/* Adstrategy */
#section-ads {
  display: none;
  text-align: center;
  padding: 30px 0;
}

/* Media Queries */
@media only screen and (min-width: 1440px) {
  .beach {
    aspect-ratio: unset;
    height: 500px;
    width: 100%;
  }
}

@media(max-width: 1440px) {
  .beach {
    max-height: 550px;
    width: 100%;
  }
}

@media(max-width: 1400px) {
  .section_1_content h1 {
    font-size: 34px;
  }

  .section_1_content p,
  .development p,
  .invest h2,
  .residences p.col-md-auto {
    text-wrap: balance;
  }

  .pricing .row {
    align-items: flex-end;
  }
}

@media(max-width: 1200px) {
  .development p {
    max-width: 400px;
  }

  .invest .card,
  .pricing .card {
    max-width: 225px;
  }

  .pricing h2 {
    text-align: left;
  }

  .residences p.col-md-auto {
    max-width: 270px;
  }

  .residences .icon-card {
    max-width: 240px;
  }

  .residences .row.d-md-flex.justify-content-between.d-none {
    row-gap: 30px;
  }

  .map {
    padding-top: 120px;
  }

  .liquid-card {
    padding: 10px;
  }

  .map-container {
    max-width: 95%;
  }

  #card-1 {
    position: absolute;
    left: 490px;
    top: 10px;
    right: unset;
    transform: translate(0%, 0);
    width: 120px;
  }

  #card-4 {
    right: 20px;
    bottom: 170px;
  }

  #card-7 {
    right: 20px;
  }

  #card-6 {
    right: 300px;
  }

  .liquid-card h4 {
    margin-top: 0;
  }

  .liquid-card .mt-3 {
    margin-top: 0px !important;
  }

  #card-2 {
    top: 10px;
    right: 20px;
    transform: unset;

  }

  #card-3,
  #card-5 {
    left: 0;
    transform: translate(5%, 5%);
  }

  .map-container h1 {
    font-size: 30px;
    text-wrap: balance;
  }

  .map .footer h1 {
    text-wrap: balance;
  }

  .residences .icon-card {
    margin-bottom: 30px;
  }
}

@media(max-width: 992px) {
  .form {
    margin: 0px 0 0 auto;
  }
  .navPlaceholder {
    margin-top: 0;
  }
  .nav {
    position: unset;
    top: unset;
    left: unset;
    transform: unset;
  }

  #card-1,
  #card-3,
  #card-5,
  #card-6 {
    display: none;
  }

  #card-7 {
    right: unset;
  }

  #card-4 {
    bottom: 20px;
  }

  .residences p.col-md-auto {
    max-width: 600px;
    margin: auto;
  }

  .residences h1 {
    margin: 0 auto 20px;
  }

  .invest .card,
  .pricing .card {
    max-width: 245px;
  }

  .pricing h2,
  .residences p.col-md-auto {
    text-align: center;
    text-wrap: balance;
  }


  .invest h2,
  .invest h1,
  .slider-1 p,
  .slider-1 h1,
  .pricing h1 {
    text-align: center;
  }

  .section_1_content h1 {
    font-size: 35px;
    text-wrap: balance;
  }

  .development p {
    max-width: 100%;
  }

  .development .right {
    max-width: 100%;
    text-align: center;
  }

  .arrow-container {
    margin: 0 auto 40px;
  }

  .section_1_content .slider-container img {
    width: 90%;
  }

  .header {
    aspect-ratio: unset;
    padding: 0 0 60px;
  }

  .header h3 {
    text-align: center;
  }

  .header hr {
    margin: 5px auto 10px;
  }

  .header h1 {
    margin-top: 30px;
    text-align: center;
    text-wrap: balance;
    font-size: 45px;
  }

  .form {
    margin-right: auto;
    margin-top: 30px;
  }

  .header .row.position-absolute {
    display: none;
  }

  .slider-1 .row.position-absolute {
    display: none;
  }

  section.slider-1 {
    padding: 60px 0;
  }

  .development h1 {
    margin-bottom: 20px;
  }

  .beach {
    max-height: 280px;
  }

  .residences .arrow-container {
    margin-bottom: 0;
  }

  .brochure img {
    border-radius: 0 15px 15px 0;
  }

}

@media(max-width: 800px) {
  .map-container h1 {
    font-size: 24px;
  }

}

@media(max-width: 768px) {
  .nav p {
    margin: 0;
  }

  .residences h1 {
    text-align: center;
    font-size: 36px;
  }

  .residences .icon-card {
    max-width: unset;
  }

  .residence-slider {
    margin: 30px 0 40px;
  }

  .residences .arrow-container {
    bottom: 50px;
    right: 50%;
    transform: translate(50%, -50%);
  }

  .map {
    padding-top: 50px;
  }

  .map h1 {
    text-align: center;
    text-transform: uppercase;
    font-size: 34px;
    text-wrap: balance;
    letter-spacing: 3px;
    color: var(--darkgrey);
    margin-bottom: 20px;
  }

  #card-2 {
    right: 10px;
    transform: unset;
    bottom: 10px;
    top: unset;
  }

  #card-4,
  #card-7 {
    bottom: -170px;
  }

  #card-7 h3 {
    margin-bottom: 20px;
  }

  .liquid-card {
    background-color: #508e8bbd;
  }

  .map .footer h2 {
    margin-top: 195px;
  }

  .map .footer h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 0;
  }

  .nav,
  .nav.scrolled.show {
    padding: 10px 20px 10px;
    width: 90%;
    max-width: 500px;
  }

  .residences .icon-card p {
    text-wrap: balance;
    max-width: 300px;
  }

  .map {
    padding-bottom: 205px;
  }

  .nav.scrolled.show p {
    font-size: 14px;
    font-weight: 500;
  }

  #card-4 {
    right: 0;
  }

  #card-7 {
    left: 0;
  }

  .navPlaceholder {
    height: unset !important;
  }
  .form-content {
    width: 50%;
  }
  .brochure {
    width: 50%;
  }
  #popup-form .radio-buttons {
    width: 100%;
  }
  #popup-form #contactform {
    padding: 30px 20px;
  }
  #popup-form #contactform h3 {
    font-size: 20px;
  }
  #popup-form #contactform .radio-buton label {
    font-size: 14px;
  }
}
@media(max-width: 592px) {
  .form-content {
    width: 100%;
  }
  #popup-form #contactform h3 {
    font-size: 24px;
  }
  #popup-form #contactform .radio-buton label {
    font-size: 16px;
  }
  #popup-form .radio-buttons {
    width: 280px;
  }
  .radio-buton label:hover {
    background: var(--white);
    color: var(--green);
  }
  .radio-buton input[type="radio"]:checked + label {
    background: var(--green);
    color: var(--white);
  }
}

@media(max-width: 576px) {
  .message-box {
    padding: 35px;
  }

  .message-box h5 {
    font-size: 18px;
  }

  .invest .card,
  .pricing .card {
    max-width: unset;
    width: 45%;
    margin: 0;
    height: 150px;
  }

  .invest_left p {
    font-size: 14px;
  }

  .pricing .card p {
    font-size: 14px;
  }

  .pricing .card b {
    font-size: 18px;
    font-weight: 700;
  }

  .pricing .card {
    height: 160px;
  }

  .card {
    margin: auto;
  }

  .nav .container {
    transition: all 0s ease;
  }

  .nav {
    display: block;
    position: fixed;
    opacity: 0;
    bottom: -50vh;
  }

  .nav.scrolled.show {
    display: flex;
    width: 300px;
    border-radius: 1000px;
    opacity: 1;
    background: #7f8a8ed2;
    padding: 5px 15px;
  }

  .nav.scrolled img {
    filter: brightness(0) invert(1);
    margin: 10px auto;
    height: 30px;
  }

  .nav.scrolled.show .row.d-flex {
    width: 100%;
    justify-content: space-evenly
  }

  .map .card-slider {
    width: 95%;
    margin: 0 auto;
  }

  .liquid-card h4,
  .liquid-card h3,
  .liquid-card h2 {
    text-wrap: balance;
    text-align: center;
  }

  .deslocation {
    margin-left: 5px;
  }

  .map .footer h2 {
    margin-top: 80px;
  }

  .map .liquid-card {
    min-height: 145px;
    align-content: center;
  }

  .residences .row.d-flex,
  .residence-slider-icons {
    padding: 0;
    justify-content: center;
  }

  .residence-slider img {
    height: 300px;
    width: 100%;
    object-fit: cover;
  }

  .residences .redirect-form {
    margin: 0 auto 0;
  }

  .card-slider .slick-arrow {
    font-size: 0;
    background-image: url('/img/icons/arrow_left.svg');
    height: 25px;
    background-repeat: no-repeat;
    background-size: contain;
    background-color: transparent;
    width: 45px;
    border: none;
    outline: none;
    position: absolute;
    z-index: 1000;
  }

  .nav img {
    height: 30px;
  }

  .card-slider .slick-prev {
    top: 50%;
    left: 20px;
    transform: translate(50%, -50%);
  }

  .card-slider .slick-next {
    top: 50%;
    right: 20px;
    transform: rotate(180deg) translate(50%, 50%);
  }

  .invest .card-slider .slick-arrow {
    filter: brightness(0) invert(1);
  }

  .map .card-slider .slick-arrow {
    top: 125%;
  }

  .map .card-slider .slick-next {
    right: -4%;
  }

  .brochure {
    display: none;
  }

  .popup-content-form .form {
    border-radius: 15px;
    max-width: 100%;
  }

  .close-form {
    z-index: 500;
  }

  .liquid-card h5 {
    padding: 0;
  }

  .small-icon {
    display: flex;
    justify-content: center;
  }

  .small-icon .row {
    width: 60px;
    justify-content: flex-start !important;
  }

  .small-icon p {
    width: auto;
    text-align: left;
  }

  .map .liquid-card {
    max-width: 95%;
  }

  .map .liquid-card .col-6 {
    width: 100%;
  }

  .map .liquid-card {
    min-height: 95px;
    width: 46.5%;
    margin: 0;
  }
}

@media(max-width: 470px) {

  .invest .card,
  .pricing .card {
    height: 150px;
  }

  .right_top_img {
    margin-bottom: 10px;
  }

  .deslocation img .left_img img {
    height: 100%;
    object-fit: cover;
  }

  .map {
    padding-bottom: 160px;
  }

  .row {
    justify-content: center;
  }

  .development h1,
  .section_1_content h1,
  .header h1,
  .invest h1,
  .pricing h1,
  .map h1 {
    font-size: 28px;
  }

  .card-slider .slick-next {
    top: 100%;
    transform: rotate(180deg) translate(50%, -50%);
  }

  .card-slider .slick-prev {
    top: 100%;
    transform: translate(50%, 50%);
  }

  .map .card-slider .slick-arrow {
    top: 105%;
  }

  .map .card-slider .slick-prev {
    right: unset;
    left: 20%;
  }

  .map .card-slider .slick-next {
    right: 20%;

  }

  .map .footer h2 {
    font-size: 24px;
  }
}

@media(max-width:430px) {

  .invest .card {
    height: 160px;
    padding: 15px;
  }
  .form-step h3 {
    font-size: 20px;
  }
}

@media(max-width: 350px) {
  .message-box h5 {
    font-size: 16px;
  }

  .card-slider .slick-arrow {
    height: 15px;
  }

  .nav.scrolled img {
    padding: 0;
    margin: 0 auto;
    width: 30px;
  }
  .radio-buttons {
    width: 100%;
  }
  .radio-buton label {
    font-size: 14px;
  }
  #popup-form .radio-buttons {
    width: 95%;
  }
  #popup-form #contactform .radio-buton label {
    font-size: 14px;
  }
}