/**
 * Consists of best CSS reset practices combined into one file.
 */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Tells the browser to account for any border and padding in the values you specify for an element's width and height
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  box-sizing: border-box;
  /* 3 */
  width: 100%;
}

/**
 * All elements inherit box model
 */
*,
*::before,
*::after {
  box-sizing: inherit;
}

/**
 * Reset elements in all browsers
 */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/**
 * Set core body defaults
 * 1. sets the behavior for a scrolling box when scrolling is triggered by the navigation or CSSOM scrolling APIs.
 * 2. The browser emphasizes rendering speed over legibility and geometric precision when drawing text.
 * 3. Disables the browser's inflation algorithm on some smart phones and tablets.
 * 4. Font smoothing
 */
body {
  scroll-behavior: smooth;
  /* 1 */
  text-rendering: optimizeSpeed;
  /* 2 */
  -webkit-text-size-adjust: none;
  /* 3 */
  -webkit-font-smoothing: antialiased;
  /* 4 */
  -moz-osx-font-smoothing: grayscale;
  /* 4 */
  width: 100%;
}

/**
 * Remove list style from lists
 */
ul {
  list-style: none;
}

/**
 * Make media easier to work with
 */
img,
iframe,
video,
object,
embed {
  display: block;
  max-width: 100%;
  height: auto;
}

/**
 * Remove outline from tabindex -1
 */
[tabindex="-1"] {
  outline: none !important;
}

/**
 * Add the correct height in Firefox.
 */
hr {
  height: 0;
}

/**
 * Add the correct text decoration in Chrome, Edge, and Safari.
 */
abbr[title] {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Edge and Safari.
 */
b,
strong {
  font-weight: bold;
}

/**
 * 1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
 * 2. Correct the odd 'em' font sizing in all browsers.
 */
code,
kbd,
samp,
pre {
  font-family: SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent 'sub' and 'sup' elements from affecting the line height in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

::-moz-placeholder {
  color: white;
  opacity: 1;
  /* Firefox */
}

:-ms-input-placeholder {
  color: white;
  opacity: 1;
  /* Firefox */
}

::placeholder {
  color: white;
  opacity: 1;
  /* Firefox */
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: white;
}

textarea:focus::-moz-placeholder {
  color: transparent;
}

textarea:focus:-ms-input-placeholder {
  color: transparent;
}

textarea:focus::placeholder {
  color: transparent;
}

/**
 * Remove the inheritance of text transform in Edge and Firefox.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  text-transform: none;
  /* 1 */
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Add the correct vertical alignment in Chrome and Firefox.
 */
progress {
  vertical-align: baseline;
}

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to 'inherit' in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/**
 * Add the correct display in Chrome and Safari.
 */
summary {
  display: list-item;
}

/**
 * Remove all animations and transitions for people that prefer not to see them
 */
@media (prefers-reduced-motion: reduce) {
  * {
    -webkit-animation-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/**
 * Browser specific form elements reset
 */
/**
 * Search input browser additions reset
 * 1. Clears the 'X' from Chrome
 * 2. Clears the 'X' from Internet Explorer
 */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  /* 1 */
  -webkit-appearance: none;
  display: none;
}

input[type="search"]::-ms-clear,
input[type="search"]::-ms-reveal {
  /* 2 */
  display: none;
  width: 0;
  height: 0;
}

/**
 * Remove arrows/spinners from number input
 * 1. Chrome, Safari, Edge, Opera
 * 2. Firefox
 */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  /* 1 */
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  /* 2 */
  -moz-appearance: textfield;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

button:focus {
  outline: 0;
}

/**
 * Remove Safari autocomplete additions
 * 1. Contacts fill button
 * 2. Password fill button
 * 3. Number input spinner
 */
input[autocomplete="off"]::-webkit-contacts-auto-fill-button,
input[autocomplete="off"]::-webkit-credentials-auto-fill-button {
  /* 1, 2, 3 */
  visibility: hidden;
  display: none !important;
  pointer-events: none;
  height: 0;
  width: 0;
  margin: 0;
}

/**
 * Remove select triangle on IE
 */
select::-ms-expand {
  display: none;
}

/**
 * Remove dotted outline from range input on Firefox
 */
input[type=range]::-moz-focus-outer {
  border: 0;
}

* {
  padding: 0;
  box-sizing: border-box;
  outline: none;
  list-style: none;
}

::-moz-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: black;
  opacity: 1;
  font-family: 'Gotham';
  font-weight: 300;
  font-style: normal;
  /* Firefox */
}

:-ms-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: black;
  opacity: 1;
  font-family: 'Gotham';
  font-weight: 300;
  font-style: normal;
  /* Firefox */
}

::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: white;
  opacity: 1;
  font-family: 'Proxima Nova Rg';
  font-weight: normal;
  font-style: normal;
  font-size: 1rem;
  /* Firefox */
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: black;
  font-family: 'Proxima Nova Rg';
  font-weight: normal;
  font-style: normal;
}

input:focus::-moz-placeholder {
  color: transparent;
}

input:focus:-ms-input-placeholder {
  color: transparent;
}

input:focus::placeholder {
  color: transparent;
}

text body {
  font-family: 'Proxima Nova Rg';
  font-weight: normal;
  font-style: normal;
  color: #212121;
  margin: 0;
  overflow: hidden;
  font-size: 16px;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  background: #e0dace;
}

header {
  position: relative;
  padding: 40px 0 0;
  padding-bottom: 3em;
}

.banner-img {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
}

.banner-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: bottom;
  object-position: bottom;
}

.logo-header img {
  width: 120px;
  margin: auto;
  margin-bottom: 1rem;
}

.form-banner_title {
  text-align: left;
}
.top_title{
  font-family: 'Optima BQ';
  font-weight: 500;
  color: #66c0b6;
  font-size: 1.2rem;
  line-height: 1;
margin-bottom: -4.5px;
}
.form-h1 {
  font-family: 'Optima';
  font-weight: 800;
  font-style: normal;
  font-size: 1.4rem;
  line-height: 1;
  text-transform: uppercase;
}

.form-banner_title strong {
  display: block;
  font-family: 'Optima';
  font-weight: 800;
  font-style: normal;
  margin-top: 10px;
}

.form-banner_form {
  background:rgb(79 166 158 / 60%);
  padding: 30px 0;
}

.header-bottom {
  background: #4fa69e;
  position: relative;
  padding: 10px 0;
}

.header-bottom ul li {
  font-family: 'Poppins';
  font-weight: normal;
  font-style: normal;
  color: white;
  font-size: 1rem
}

.header-bottom ul li strong {
  font-family: 'Poppins';
  font-weight: 500;
  font-style: normal;
}

.md-show {
  display: none;
}

/* section-projet */
.projet-h2 {
  font-family: 'Optima';
  font-weight: normal;
  font-style: normal;
  font-size: 1.6rem;
  width: 85%;
  position: relative;
  z-index: 2;
  color: white;
  line-height: 1.2;
  text-transform: uppercase;
  margin: auto;
}

.section-projet-banner::before {
  content: '';
  background:black;
  opacity: .27;
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.projet-h2 strong {
  font-family: 'Optima';
  font-weight: bold;
  font-style: normal;
}

.projet-h3 {
  font-family: 'Proxima Nova Rg';
  font-weight: normal;
  font-style: normal;
  text-align: left;
  text-transform: uppercase;
  font-size: 1.4rem;
}

.projet-p {
  font-family: 'Poppins';
  font-weight: normal;
  font-style: normal;
  font-size: 1.2rem;
  line-height: 1.2;
  color: white;
  width: 85%;
  margin: auto;
}

.projet-p strong {
  font-family: 'Poppins';
  font-weight: 600;
  font-style: normal;
}

.section-projet-banner {
  position: relative;
  padding: 11em 0;
}

/* section-residences */
.section-residences {
  position: relative;
}

.residences-h2 {
  font-family: 'Optima';
  font-weight: normal;
  font-style: normal;
  font-size: 1.3rem;
  color: white;
  text-align: center;
  width: 85%;
  line-height: 1.2;
  text-transform: uppercase;
  margin: auto;
}

.residences-h2 strong {
  font-family: 'Optima';
  font-weight: bold;
  font-style: normal;
}

.residences-p {
  text-align: center;
  font-family: 'Poppins';
  font-weight: normal;
  font-style: normal;
  font-size: 1.1rem;
  line-height: 1.2;
  text-align: center;
  color: white;
  width: 85%;
  margin: auto;
}
.slick-slide img {
    display: block;
    height: 430px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
}

#nom_input::placeholder {
  color: #fff !important;

}

#prenom_input::placeholder {
  color: #fff !important;

}


#ville_input::placeholder {
  color: #fff !important;

}
#tel_input::placeholder {
  color: #fff !important;

}
#email_input::placeholder {
  color: #fff !important;

}

#message_input::placeholder {
  color: #fff !important;

}

.residences-p strong {
  font-family: 'Poppins';
  font-weight: 600;
  font-style: normal;
}

.residences-slide {
  position: relative;
}

.residences-slider__top, .residences-slider__bottom {
  margin: 0;
  position: relative;
}



.residences-slide_title {
  text-align: left;
  position: absolute;
  top: 50%;
  width: 90%;
  left: 50%;
  background-color:  rgb(0 0 0 / 30%);
  padding: 20px;
  transform: translate(-50%, -50%);
}

.residences-slide_title .h3 {
  text-align: left;
  font-family: 'Optima';
  font-weight: bold;
  font-style: normal;
  font-size: 1.3rem;
  color: white;
  text-transform: uppercase;

  margin: 0;
}

.residences-slide__bottom p {
  text-align: center;
  font-family: 'Proxima Nova Rg';
  font-weight: normal;
  font-style: normal;
  font-size: 1rem;
  color: black;
}

/* section-emplacement */
.section-emplacement {
  position: relative;
  padding: 11em 0;
}

.emplacement-h2 {
  font-family: 'Optima';
  font-weight: normal;
  font-style: normal;
  font-size: 1.6rem;
  width: 85%;
  position: relative;
  z-index: 2;
  color: white;
  line-height: 1.2;
  text-transform: uppercase;
  margin: auto;
}

.section-emplacement::before {
  content: '';
  background:black;
  opacity: .27;
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.emplacement-h2 strong {
  font-family: 'Optima';
  font-weight: bold;
  font-style: normal;
}

/* section-content */
.p-content {
  text-align: center;
}

.p-content p {
  font-family: 'Poppins';
  font-weight: normal;
  font-style: normal;
  font-size: 1.2rem;
  line-height: 1.2;
  color: white;
  width: 85%;
  margin: auto;
  text-align: left;

}

.p-content p strong {
  font-family: 'Poppins';
  font-weight: 600;
  font-style: normal;
}

/* brochure-section */
.section-brochure {
  background-color: #4fa69e;
  padding-top: 150px;
  padding-bottom: 35px;
  position: relative;
  margin-top: 80px;
}

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

.row-img-brochure {
  position: absolute;
  top: -185px;
  width: 100%;
  left: 0;
  right: 0;
  margin: auto;
}

.brochure-warrp a {
  border: 1px solid #44a89e;
  color: black;
  background: #fff;
  padding: 6px 10px;
  font-family: 'Poppins';
  font-weight: 600;
  font-style: normal;
  font-size: 1rem;
  display: block;
  text-transform: uppercase;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.warrp-media {
  position: relative;
  height: 100%;
}

.pt-30 {
  padding-top: 30px;
}

/* contac me */
.section-contact {
  position: relative;
}

.form-conact_form_title {
  text-align: left
}

.form-h2 {
  font-family: 'Optima';
    font-weight: 800;
    font-style: normal;
    font-size: 1.4rem;
  text-transform: uppercase;
  color: white;
  position: relative;

}
.has-line::after{
  content: "";
    position: absolute;
    background-color: #08423e;
    width: 200px;
    height: 3px;
    bottom: -20px;
    left: 0px;
    display: none;
}
.-center.has-line::after{
  left: 50%;

      transform: translateX(-50%)
}
.form-contact_form {
  padding: 40px 0 0 0
}

.form-conact_form_title a {
  display: flex;
  align-items: center;
  justify-content: end;
  font-family: 'Poppins';
  font-weight: bold;
  font-style: normal;
  font-size: 1.4rem;
  color: white;
}

.form-conact_form_title a img {
  margin-right: 5px;
}

.form_warrp {
  padding: 25px 30px 0;
}

.row-from input,
.row-from textarea {
  display: block;
  background: none;
  padding: 0.125rem 0.125rem 0.0625rem;
  font-size: 1rem;
  border-width: 0;
  font-family: 'Poppins';
  font-weight: normal;
  font-style: normal;
  border-color: transparent;
  line-height: 1.9;
  width: 100%;
  color: white;
  transition: all 0.28s ease;
  box-shadow: none;
}



::placeholder {
  color: #000 !important;
  opacity: 1; /* Firefox */
}




.row-from .control-label {
  position: absolute;
  top: 0.25rem;
  pointer-events: none;
  padding-left: 0.125rem;
  z-index: 1;
  color: #fff;
  font-size: 1rem;
  font-weight: normal;
  transition: all 0.28s ease;
  font-family: 'Poppins';
  font-weight: 500;
  font-style: normal;
}

.row-from input:focus,
.row-from textarea:focus {
  outline: none;
  color: #FFF;
  background-color: transparent !important;
  border: 0;
  outline: 0;
  box-shadow: none;
}

.row-from input:focus~.control-label,
.row-from input:valid~.control-label,
.row-from input.has-value~.control-label {
  font-size: 0.8rem;
  color: white;
  top: -1rem;
  left: 0;
}

.row-from .bar {
  position: relative;
  border-bottom: 0.0625rem solid #fff;
  display: block;
}

.row-from input:focus,
.row-from input:valid,
.row-from input.has-value {
  color: #FFF;
  background-color: transparent;
  outline: 0
}

.row-from, .row-from>div {
  position: relative;
}

.form_warrp .row-from:not(:last-child), .col-1-rwo:first-child {
  margin-bottom: 20px;
}

.btn-submit button {
  border: 1px solid #44a89e;
  color: black;
  background: #fff;
  border-radius: 0px;
  font-family: 'Poppins';
  font-weight: 500;
  font-size: 1rem;
  width: 100%;
  cursor: pointer;
  padding: 6px 20px 5px;

  text-transform: uppercase;
}

.map-section {
  position: relative;
}

#map {
  position: relative;
  height: 300px;
  background-color: black;
}

.map-overflow {
  position: absolute;
  right: -20px;
  width: 90%;
  height: 85%;
  background: #00c6a5;
  top: -20px;
}

/* footer */
.footer-bottom {
  background: #08423E;
  padding: 40px;
  border: solid 1px #08423E;
}

.logo-fotter {
  width: 90px;
  text-align: center;
  margin: auto
}

.row-from.btn-submit {
  margin-top: 3rem;
}

.slick-prev, .slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  z-index: 3;
  display: block;
  width: 40px;
  height: 50px;
  margin-top: 0;
  padding: 0;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: 0;
  background: transparent;
}

.slick-next {
  transform: translate(0, -50%) rotate(0deg);
}

.slick-prev {
  transform: translate(0, -50%) rotate(-180deg);
  ;
}

.arrow {
  display: none;
  position: absolute;
  top: 50%;
  left: -4em;
  right: -4em;
  transform: translate(0, -50%);
}

.arrow_2 {
  transform: rotate(-180deg)
}

.arrow ul {
  display: flex;
  justify-content: space-between;
}

.arrow img {
  cursor: pointer;
  width: 25px
}

.slick-prev:before, .slick-next:before {
  font-family: 'slick';
  font-size: 40px;
  line-height: 1;
  opacity: .75;
  color: #ffffff00;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-size: cover;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHhtbG5zOnN2Z2pzPSJodHRwOi8vc3ZnanMuY29tL3N2Z2pzIiB3aWR0aD0iNTEyIiBoZWlnaHQ9IjUxMiIgeD0iMCIgeT0iMCIgdmlld0JveD0iMCAwIDUxMi4wMDIgNTEyLjAwMiIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNTEyIDUxMiIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgY2xhc3M9IiI+PGc+CjxnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+Cgk8Zz4KCQk8cGF0aCBkPSJNMzg4LjQyNSwyNDEuOTUxTDE1MS42MDksNS43OWMtNy43NTktNy43MzMtMjAuMzIxLTcuNzItMjguMDY3LDAuMDRjLTcuNzQsNy43NTktNy43MiwyMC4zMjgsMC4wNCwyOC4wNjdsMjIyLjcyLDIyMi4xMDUgICAgTDEyMy41NzQsNDc4LjEwNmMtNy43NTksNy43NC03Ljc3OSwyMC4zMDEtMC4wNCwyOC4wNjFjMy44ODMsMy44OSw4Ljk3LDUuODM1LDE0LjA1Nyw1LjgzNWM1LjA3NCwwLDEwLjE0MS0xLjkzMiwxNC4wMTctNS43OTUgICAgbDIzNi44MTctMjM2LjE1NWMzLjczNy0zLjcxOCw1LjgzNC04Ljc3OCw1LjgzNC0xNC4wNVMzOTIuMTU2LDI0NS42NzYsMzg4LjQyNSwyNDEuOTUxeiIgZmlsbD0iI2ZmZmZmZiIgZGF0YS1vcmlnaW5hbD0iIzAwMDAwMCIgc3R5bGU9IiIgY2xhc3M9IiI+PC9wYXRoPgoJPC9nPgo8L2c+CjxnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjwvZz4KPGcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPC9nPgo8ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8L2c+CjxnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjwvZz4KPGcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPC9nPgo8ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8L2c+CjxnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjwvZz4KPGcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPC9nPgo8ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8L2c+CjxnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjwvZz4KPGcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPC9nPgo8ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8L2c+CjxnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjwvZz4KPGcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPC9nPgo8ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8L2c+CjwvZz48L3N2Zz4=)
}

.slick-dots {
  position: static;
  bottom: 0;
  display: block;
  width: 100%;
  margin-top: 20px;
  padding: 0;
  list-style: none;
  text-align: center;
}

.slick-dots li button:before {
  font-family: 'slick';
  font-size: 50px;
  line-height: 15px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: '•';
  text-align: center;
  opacity: .25;
  color: white !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

label.error {
  position: absolute;
  pointer-events: none;
  bottom: -22px;
  padding-left: 0.125rem;
  z-index: 1;
  color: red;
  font-size: 13px;
  font-weight: normal;
  transition: all 0.28s ease;
  font-family: 'Poppins';
  font-weight: normal;
  font-style: normal;
}

#toasts {
  position: fixed;
  top: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.toast {
  background-color: #fff;
  border-radius: 5px;
  padding: 1rem 2rem;
  margin: 0.5rem;
}

.toast.success {
  color: white;
  background-color: #00C6A5;
}

.toast.error {
  color: white;
  background-color: red;
}

.gmnoprint, .gm-fullscreen-control {
  display: none;
}

.image-cover {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.btn-submit button span, .brochure-warrp a span {
  position: relative;
  z-index: 3;
}

.btn-submit button:before, .brochure-warrp a:before {
  content: '';
  top: 0;
  z-index: 1;
  left: auto;
  right: 0;
  content: "";
  background: #fff;
  height: 100%;
  width: 0;
  position: absolute;
  transition: 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.btn-submit button:hover:before, .brochure-warrp a:hover:before {
  width: 100%;
  right: auto;
  left: 0;
}

.btn-submit button:hover span, .brochure-warrp a:hover span {
  color: #000;
}

.downloadLink {
  padding: 15px 30px 0;
  text-align: center;
  color: white;
  font-family: 'Poppins';
  font-weight: normal;
  font-style: normal;
}

.downloadLink a {
  color: black;
}

.control-label {
  display: none;
}
.row-from input:focus::-moz-placeholder{
  opacity: 0;
  color: transparent
}
.row-from input:focus:-ms-input-placeholder{
  opacity: 0;
  color: transparent
}
.row-from input:focus::placeholder{
  opacity: 0;
  color: transparent
}

form .form-control::-moz-placeholder {
  color: white;
  font-family: 'Poppins';
  font-size: 1.1rem;
  opacity: .8;
}

form .form-control:-ms-input-placeholder {
  color: white;
  font-family: 'Poppins';
    font-size: 1.1rem;
  opacity: .8;
}

form .form-control::placeholder {
  color: white;
  font-family: 'Poppins';
  font-size: 1.1rem;
  opacity: .8;
}

.map-icon img {
  width: 35px
}
.map-icon .mail img {
  width: 45px
}

.map-icon .map_address, .map-icon .map_phone {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  position: relative;
  justify-content: flex-start;
}

.map-icon .icon {
  width: 50px;
  height: 50px;
  margin-right: 10px;
  display: flex;
  align-items: center;
}

.map-icon a {
  color: white;
  text-decoration: underline;
  font-size: 1rem;
  font-family: 'Poppins';
  font-weight: normal;
  width: calc(100% - 50px);
}
.bg-shape-bottom{
  position: relative;
  overflow: hidden;
}
.bg-shape-bottom::before,.bg-shape-bottom::after{
  content: '';
  position: absolute;
  height: 100%;
  width:50%;
  z-index: 0;
  top:0;
  pointer-events: none;
  background-size: contain;
  background-repeat: no-repeat;
}
.bg-shape-bottom::before{
  left: 0;
  background-image: url(../media/shape-left.png)
}
.bg-shape-bottom::after{
  right:  0;
  background-position: right;
  background-image: url(../media/shape-right.png)
}

.section-residences::before,.section-residences::after{
  content: '';
  position: absolute;
  height: 100%;
  width:50%;
  z-index: 0;
  top: 0;
  pointer-events: none;
  background-size: contain;
  background-repeat: no-repeat;
}

 .section-residences::before{
  left: 0;
  background-image: url(../media/shap-3.png)
}

.section-residences::after{
  right:  0;
  background-image: url(../media/shap-4.png);
  background-position: right;
}
.social {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-right: 0px;
    margin-top: 20px;
}
.social a {
    width: 35px;
    height: 35px;
    margin-right: 10px;
}
.social a:last-child {
    margin-right: 0px;
}
.social a svg {
    width: 100%;
    height: auto;
}
.social a:hover svg path {
  fill: #575656;
}
.section-residences,.bg-shape-2{
  position: relative;

}

.bg-shape-2::before,
 .bg-shape-2::after{
  content: '';
  position: absolute;
  height: 67%;
  width:50%;
  z-index: 0;
  top: 0;
  pointer-events: none;
  background-size: contain;
  background-repeat: no-repeat;
}


.bg-shape-2::before{
  left: 0;
  background-image: url(../media/shap-2.png)
}

.bg-shape-2::after{
  right:  0;
  background-position: right;
  background-image: url(../media/shap-1.png)
}
.main-warp{
  position: relative;
}

.merciPage #header {
  height: auto;
  margin-top: 30px;
  text-align: center;
  margin-bottom: 70px;
}

.merciPage #content {
  text-align: center;
  font-size: 25px;
  color: white;
}

.merciPage .subtitle {
  margin-bottom: 20px;
}

.merciPage img {
  width: 180px;
  margin: auto;
}

.merciPage .send {
  cursor: pointer;
  border: 1px solid #44a89e;
      color: black;
      background: #fff;
      padding: 6px 25px;
      font-family: 'Poppins';
      font-weight: 600;
      font-style: normal;
      font-size: 1.2rem;
      display: block;
      text-transform: uppercase;
      width: -webkit-fit-content;
      width: -moz-fit-content;
      width: fit-content;
      margin-left: auto;
      margin-right: auto;
}

.merciPage {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}
.marker {
    background-image: url(https://maps.gstatic.com/mapfiles/api-3/images/spotlight-poi2_hdpi.png);
    background-size: cover;
    width: 30px;
    height: 45px;
    border-radius: 0;
    cursor: pointer;
}
#map iframe {
    width:100%;
    height:100%;
}


.isLoading{
  position: relative;
}
.isLoading::after{
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  left: 0;
  background-color: #0e0d0c6b;
  border-radius: 8px;
  z-index: 99;
}
.isLoading::before {
  content: '';
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #fff;
  opacity: .6;
  position: absolute;
  z-index: 333333;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-animation: 2s ease-in-out infinite sk-bounce;
  animation: 2s ease-in-out infinite sk-bounce;
}
@-webkit-keyframes sk-bounce {
  0%, 100% {
    -webkit-transform: translate(-50%, -50%) scale(0);
    transform: translate(-50%, -50%) scale(0);
  }

  50% {
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes sk-bounce {
  0%, 100% {
    transform: translate(-50%, -50%) scale(0);
  }

  50% {
    transform: translate(-50%, -50%) scale(1);
  }
}



.form-group-tel{
  margin-bottom: 0;
 }
 .form-group-tel label{
   position: unset;
   pointer-events: none;
   padding-left: 0.125rem;
   z-index: 1;
   color: #fff;
   font-size: 16px;
   font-weight: normal;
 }
 #formBrochure .iti--separate-dial-code .iti__selected-dial-code{
   color: #fff;
 }
#formBrochure .iti__arrow {
   margin-left: 6px;
   width: 0;
   height: 0;
   border-left: 3px solid transparent;
   border-right: 3px solid transparent;
   border-top: 4px solid #fff;
 }
#formBrochure input::placeholder {
  font-weight: bold;
  opacity: 0.5;
  color: red;
}

 .iti--separate-dial-code .iti__selected-flag {
  background-color: rgb(255 255 255 / 0%);
}
#formContact input{
color: black;
}