:root {
  --black: #010101;
  --body-text: #555d68;
  --color-2: #e16625;
  --color-1: #1d3557;
  --gray: #ededed;
  --white: white;
  --whatsapp: #25d366;
  --grey: #888;
  --white-smoke: #e8e8e8;
  --color-1-d: #0f213b;
  --red-no: #f1320c;
  --color-3: #81b29a;
  --color-4: #a8dadc;
  --color-3-l: #abd6c1;
  --light-grey: #d1d1d1;
  --color-1-l: #305283;
  --color-2-l: #fbbc89;
  --color-2-d: #f19043;
  --color-3-d: #649e82;
  --color-4-l: #c9f3f5;
  --color-4-d: #85c7ca;
  --ok-color: #6dcc56;
  --youtube: #fc0d1b;
  --facebook: #4469b0;
  --twitter: #2aa3ef;
  --instagram: #eb4b5a;
}

body {
  background-color: var(--black);
  color: var(--body-text);
  flex-direction: column;
  font-family: Lato, sans-serif;
  font-size: .98em;
  font-weight: 400;
  line-height: 1.4em;
  display: flex;
}

h1 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 4em;
  font-weight: 400;
  line-height: 1.2em;
}

h2 {
  margin-top: 0;
  margin-bottom: .8em;
  font-size: 2.2em;
  font-weight: 300;
  line-height: 1.2em;
}

h3 {
  letter-spacing: 9px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: .2em;
  font-family: Josefin Sans, sans-serif;
  font-size: 1.6em;
  font-weight: 400;
  line-height: 1.4em;
}

h4 {
  margin-top: 0;
  margin-bottom: .6em;
  font-size: 1.3em;
  font-weight: 400;
  line-height: 1.4em;
}

h5 {
  margin-top: 10px;
  margin-bottom: .6em;
  font-size: 1em;
  font-weight: 400;
  line-height: 1.4em;
}

h6 {
  margin-top: 10px;
  margin-bottom: .5em;
  font-size: .8em;
  font-weight: 400;
  line-height: 1.4em;
}

p {
  color: var(--black);
  margin-bottom: 10px;
  font-size: .8em;
  font-weight: 300;
  line-height: 1.7em;
}

a {
  color: var(--color-2);
  text-decoration: underline;
}

ul {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
}

img {
  width: 100%;
  max-width: 100%;
  display: block;
}

label {
  color: var(--body-text);
  margin-bottom: 5px;
  font-size: .8em;
  font-weight: 400;
  display: block;
}

blockquote {
  border-left: 1px #000;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 0;
  line-height: 1.6em;
}

.wrpr {
  z-index: 10;
  width: 1080px;
  min-height: 10px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.wrpr.flex-bar {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  display: flex;
}

.wrpr.flex-v-center {
  z-index: 10;
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.wrpr.narrow {
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  max-width: 40%;
  display: block;
}

.wrpr.flex-blok-1-3 {
  flex-flow: wrap;
  place-content: flex-start;
  align-items: stretch;
  display: flex;
}

.wrpr.hero-align {
  flex-flow: wrap;
  place-content: center flex-start;
  align-items: stretch;
  display: flex;
}

.wrpr.hero-align.center {
  justify-content: center;
}

.wrpr.flexed {
  flex-flow: wrap;
  place-content: flex-start;
  align-items: flex-start;
  min-height: 20px;
  display: flex;
}

.wrpr.flexed.v-center {
  align-items: center;
}

.wrpr.flexed.v-bottom {
  align-items: flex-end;
}

.wrpr.flexed.j-center {
  justify-content: center;
}

.wrpr.flexed.las-ftr {
  justify-content: space-between;
}

.wrpr.flexed.certical-center {
  flex-direction: column;
  align-content: center;
  align-items: center;
}

.wrpr.flexed.form-hldr {
  width: 100%;
  max-width: 760px;
}

.wrpr.full-widht {
  max-width: 100%;
}

.wrpr.full-widht.master-flex.stretch {
  align-content: stretch;
  align-items: stretch;
}

.wrpr.full-widht.master-flex.stretch.fix-vh {
  min-height: 80vh;
}

.wrpr.fbo {
  flex-flow: column wrap;
  place-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.wrpr._w-ftr-grid {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  width: 90%;
  display: block;
}

.section {
  color: var(--color-1);
  text-transform: none;
  background-color: #ededed;
  padding-top: 10vh;
  padding-bottom: 10vh;
  position: relative;
}

.section.full-flex-content {
  flex-flow: wrap;
  place-content: stretch space-between;
  align-items: stretch;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.section.full-flex-content.color-pallete {
  margin-top: 140px;
}

.section.gris {
  background-color: var(--gray);
}

.section.color-1 {
  background-color: var(--color-1);
  color: var(--white);
}

.section.color-2 {
  background-color: var(--color-2);
  color: var(--white);
}

.section.cta {
  color: var(--white);
  text-align: center;
  background-image: linear-gradient(#264653b3, #264653b3), url('../images/real-estate-demo.gif');
  background-position: 0 0, 0 0;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
}

.section.image-bg {
  background-image: url('../images/hero-1.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.section.nice-hero {
  flex-flow: wrap;
  place-content: center;
  align-items: center;
  height: 70vh;
  display: flex;
}

.section._80-vh {
  min-height: 80vh;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.section.clean {
  padding-top: 0;
  padding-bottom: 0;
}

.section.clean.fix-vh {
  min-height: 80vh;
}

.section.sistem-nav-preview {
  height: 100vh;
}

.section.center-align {
  background-color: var(--gray);
  text-align: center;
}

.section.full-bg-blk {
  color: var(--white);
  background-image: linear-gradient(to right, #000c, #0000), url('../images/customdesign.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  flex-flow: wrap;
  place-content: center;
  align-items: center;
  min-height: 70vh;
  display: flex;
}

.section.full-bg-blk.two {
  background-image: linear-gradient(to right, #000c, #0000), url('../images/homemanagement.jpg');
}

.section.full-bg-blk.three {
  background-image: linear-gradient(to right, #000c, #0000), url('../images/interiorexterior.jpg');
}

.section.full-bg-blk.four {
  background-image: linear-gradient(to right, #000c, #0000), url('../images/framing.jpg');
}

.section.full-bg-blk.five {
  background-image: linear-gradient(to right, #000c, #0000), url('../images/commercial.jpg');
}

.section.full-bg-blk.six {
  background-image: linear-gradient(to right, #000c, #0000), url('../images/endtoend.jpg');
}

.section.full-bg-blk.seven {
  background-image: linear-gradient(to right, #000c, #0000), url('../images/bg-renovations.jpg');
}

.section.property-cat-block {
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
}

.s-card {
  border: 1px solid #d0d0d0;
  margin-bottom: 20px;
  overflow: hidden;
}

.nav-bar {
  z-index: 20;
  position: relative;
}

.main-bar {
  flex-flow: wrap;
  place-content: center;
  align-items: center;
  height: 80px;
  display: flex;
}

.second-bar {
  background-color: var(--gray);
  flex-flow: wrap;
  place-content: center;
  align-items: center;
  height: 50px;
  display: flex;
}

.brand {
  width: 220px;
  text-decoration: none;
}

.brand.on-ftr {
  margin-bottom: -2px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.yourlogo {
  color: var(--color-1);
  text-transform: uppercase;
  font-family: Oswald, sans-serif;
  font-size: 2em;
  font-weight: 700;
  line-height: 100%;
}

.nav {
  position: relative;
}

.desk-nav {
  flex-flow: wrap;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.mov-nav {
  display: none;
}

.brgr {
  background-color: #c8c7c7;
  width: 40px;
  height: 40px;
}

.social-bar {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: relative;
}

.social-bar.a-center {
  justify-content: center;
}

.icon-link {
  border-radius: 15px;
  width: 35px;
  height: 35px;
  margin-left: 3px;
  margin-right: 3px;
}

.icon-link.facebook {
  background-image: url('../images/social-facebook-white.png');
  background-position: 0 0;
  background-size: auto;
  border-radius: 17.5px;
}

.icon-link.facebook:hover {
  background-image: url('../images/social-facebook-white-copy.png');
  background-position: 0 0;
  background-size: auto;
}

.icon-link.twitter {
  background-image: url('../images/social-twitter-white.png');
  background-position: 0 0;
  background-size: auto;
}

.icon-link.twitter:hover {
  background-image: url('../images/social-twitter-white-copy.png');
  background-position: 0 0;
  background-size: auto;
}

.icon-link.instagram {
  background-image: url('../images/social-instagram-white.png');
  background-position: 0 0;
  background-size: auto;
}

.icon-link.instagram:hover {
  background-image: url('../images/social-instagram-white-copy.png');
  background-position: 0 0;
  background-size: auto;
}

.icon-link.youtube {
  background-image: url('../images/social-pinterest-white.png');
  background-position: 0 0;
  background-size: auto;
}

.icon-link.youtube:active {
  background-image: url('../images/social-pinterest-white-copy.png');
  background-position: 0 0;
  background-size: auto;
}

.icon-link.whatsapp {
  background-color: var(--whatsapp);
  background-image: url('../images/icons-sprite-w.svg');
  background-position: -90px 0;
  background-repeat: no-repeat;
  background-size: 120px;
}

.icon-link.houz {
  background-image: url('../images/social-houzz-white.png');
  background-position: 0 0;
  background-size: auto;
}

.icon-link.houz:hover {
  background-image: url('../images/social-houzz-white-copy.png');
  background-position: 0 0;
  background-size: auto;
}

.icon-btn {
  background-color: var(--color-1);
  color: #fff;
  padding: 12px 20px;
  font-size: 1.2em;
  text-decoration: none;
  transition: all .3s ease-in-out;
  display: inline-block;
  position: relative;
}

.icon-btn:hover {
  filter: brightness(80%);
  transform: scale(.96);
}

.small-icon {
  background-image: url('../images/icons-sprite-w.svg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 112px;
  width: 28px;
  height: 28px;
  margin-left: 1px;
  margin-right: 1px;
}

.ib-flex-hldr {
  flex-flow: wrap;
  place-content: center space-between;
  align-items: center;
  display: flex;
}

.ib-text {
  margin-left: 3px;
  margin-right: 3px;
  line-height: 1.4em;
}

.nav-btn {
  color: #333;
  background-color: #0000;
  padding-top: 0;
  padding-bottom: 0;
  font-size: .9em;
  line-height: 50px;
}

.nav-btn:hover {
  color: var(--grey);
}

.nav-btn.w--open {
  background-color: #efefef;
}

.simple-icon-btn {
  color: var(--color-1);
  text-decoration: none;
  display: inline-block;
}

.simple-row {
  margin-bottom: 40px;
}

.sib-flex-hldr {
  color: var(--color-2);
  flex-flow: wrap;
  place-content: center flex-start;
  align-items: center;
  margin-bottom: 10px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
}

.medium-icon {
  background-color: var(--color-2);
  border-radius: 20px;
  width: 30px;
  height: 30px;
}

.medium-icon.sprite {
  background-color: var(--white-smoke);
  background-image: url('../images/icons-sprite_1.svg');
  background-position: 100% 100%;
  background-size: 120px;
}

.sib-text {
  margin-left: 6px;
}

.main-nav {
  z-index: 110;
  opacity: 0;
  display: none;
  position: fixed;
  inset: 0%;
}

.main-nav.show {
  opacity: 1;
  display: block;
  transform: none;
}

.global-shade {
  z-index: 105;
  opacity: 0;
  background-image: linear-gradient(#000000e6, #000000e6);
  display: none;
  position: fixed;
  inset: 0%;
}

.mn-card {
  text-align: center;
  background-color: #010101e6;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-top: 6vh;
  padding-bottom: 3vh;
  display: flex;
  position: absolute;
  inset: 0% 0% 0% auto;
  overflow: auto;
}

.mn-c-close {
  width: 40px;
  height: 40px;
  min-height: 30px;
  margin-top: 40px;
  margin-left: 80px;
  position: fixed;
  inset: 0% auto auto 0%;
}

.mn-c-body {
  width: 350px;
  min-height: 30px;
}

.mn-c-ftr {
  width: 100%;
  min-height: 30px;
}

.hero {
  color: var(--color-1-d);
  background-image: url('../images/hero-1_1.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
}

.hero.d-blok {
  color: var(--white);
  display: block;
}

.hero-card {
  color: var(--white);
  width: 60%;
}

.hero-card.a-center {
  text-align: center;
}

.body-text {
  color: var(--body-text);
  letter-spacing: 1px;
  margin-bottom: 20px;
  font-size: .9em;
  font-weight: 300;
  line-height: 1.5em;
}

.body-text.smaller {
  font-size: 1em;
}

.body-text.big {
  font-size: 1.4em;
}

.body-text.white {
  color: var(--white);
}

.drpr-li {
  object-fit: fill;
  width: 100%;
  min-height: 200px;
  margin-left: auto;
  margin-right: auto;
  inset: 50px 0% auto;
}

.drpr-li.w--open {
  background-color: #efefef;
  width: 1080px;
  inset: 50px 0% 0% auto;
}

.botonera {
  flex-flow: wrap;
  align-content: center;
  align-items: center;
  width: 100%;
  margin-top: 2em;
  display: flex;
}

.botonera.a-center {
  justify-content: center;
}

.botonera.on-hero {
  justify-content: flex-start;
}

.botonera.on-alert {
  justify-content: center;
}

.botonera.flex-v {
  flex-direction: column;
}

.btn {
  background-color: var(--color-1);
  text-align: center;
  letter-spacing: 1px;
  margin-right: 12px;
  padding: .8em 2em;
  font-size: 1em;
  font-weight: 300;
  transition: all .2s ease-in-out;
}

.btn:hover {
  filter: brightness(80%);
  transform: scale(.96);
}

.btn.brdr {
  border: 2px solid var(--body-text);
  color: var(--body-text);
  background-color: #0000;
  padding-top: .9em;
  padding-bottom: .9em;
}

.btn.brdr:hover {
  background-color: #ffead9;
}

.btn.brdr.small {
  padding-top: .6em;
  padding-bottom: .6em;
}

.btn.brdr.big {
  padding-top: 1.1em;
  padding-bottom: 1.1em;
}

.btn.brdr.white {
  border-color: var(--white);
  color: var(--white);
}

.btn.brdr.red {
  border-color: var(--red-no);
  color: var(--red-no);
}

.btn.small {
  padding: .8em 1.6em;
  font-size: .8em;
}

.btn.small.more-contrast {
  background-color: var(--color-3);
}

.btn.big {
  padding: 1.2em 2.2em;
  font-size: 1.2em;
}

.btn.contrast {
  background-color: var(--color-2);
}

.btn.text-only {
  color: var(--color-4);
  letter-spacing: 0;
  text-transform: none;
  background-color: #0000;
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
  font-size: 1em;
  font-weight: 600;
  text-decoration: none;
}

.btn.text-only:hover {
  filter: none;
  transform: none;
}

.btn.text-only.contrast {
  color: var(--color-3-l);
}

.btn.fw {
  display: block;
}

.btn.send {
  background-color: var(--whatsapp);
}

.btn.dark {
  background-color: var(--body-text);
}

.btn.light {
  background-color: var(--light-grey);
}

.btn.small-trgr {
  border: 1px solid var(--body-text);
  color: var(--body-text);
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #0000;
  padding-left: 1.8em;
  padding-right: 1.8em;
  font-size: .8em;
}

.close {
  filter: invert();
  border-radius: 20px;
  width: 40px;
  height: 40px;
}

.close.invert {
  filter: none;
}

.s-card-hldr {
  padding: 25px 30px 30px;
}

.fix-col {
  margin-left: -10px;
  margin-right: -10px;
}

.ftr-link {
  color: var(--color-2);
  margin-bottom: 15px;
  font-size: .9em;
  font-weight: 400;
  text-decoration: none;
  display: block;
}

.ftr-link:hover {
  color: #fff;
}

.crew {
  color: #e4e4e4;
}

.ftr-last-txt {
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 40px;
  font-family: Josefin Sans, sans-serif;
  font-size: .98em;
  font-weight: 700;
  line-height: 1.5em;
}

.ftr-top {
  background-color: #01010133;
  flex-flow: column wrap;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  min-height: 80px;
  display: flex;
}

.ftr-last {
  text-align: center;
  width: 100%;
  min-height: 40px;
  margin-top: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: .8em;
}

.ftr-top-brand {
  display: inline-block;
}

.txt-logo {
  text-transform: uppercase;
  font-family: Oswald, sans-serif;
  font-size: 2em;
  line-height: 1.3em;
  display: inline-block;
}

.ftr-brand {
  color: var(--color-1-d);
  margin-bottom: 40px;
}

.ftr-txt-link {
  color: var(--white);
  margin-left: 15px;
  margin-right: 15px;
  padding: 10px 15px;
  font-size: .8em;
  text-decoration: none;
  display: inline-block;
}

.ftr-nav {
  text-align: center;
  margin-top: 40px;
}

.ftr-25 {
  width: 25%;
  min-height: 200px;
}

.ftr-col {
  width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.footer {
  color: var(--white);
  background-color: #464749;
  flex-flow: wrap;
  justify-content: center;
  align-items: flex-start;
  display: flex;
  position: relative;
  top: 360px;
}

.footer.cms-include {
  background-color: var(--color-1);
  margin-top: auto;
  display: block;
}

.footer.fix-services {
  top: 640px;
}

.ftr-link-li {
  margin-top: 10px;
  margin-bottom: 20px;
}

.flex-half-col {
  width: 50%;
  min-height: 10px;
}

.flex-col {
  flex: 1;
  min-height: 20px;
  padding-left: 1em;
  padding-right: 1em;
  position: relative;
}

.flex-col.bg-side {
  background-image: url('../images/hero-1.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.flex-col.pad-in {
  padding-left: 2%;
  padding-right: 2%;
}

.flex-col.pad-in._50 {
  flex: 0 auto;
  width: 50%;
}

.flex-col.pad-in._30 {
  flex: 0 auto;
  width: 33.3333%;
}

.flex-col.pad-in._25 {
  flex: 0 auto;
  width: 25%;
}

.flex-col._50 {
  flex: 0 auto;
  width: 50%;
}

.flex-col._50.no-pad {
  padding-left: 0%;
  padding-right: 0%;
}

.flex-col._50.text-side {
  flex-flow: wrap;
  align-content: center;
  align-items: center;
  padding-left: 0%;
  padding-right: 0%;
  display: flex;
}

.flex-col._50.bg-side {
  background-image: linear-gradient(#00000080, #00000080), url('../images/hero.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  padding: 0%;
  display: flex;
}

.flex-col._50.image-side {
  background-image: url('../images/bg-renovations.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.flex-col._50.brief-side {
  background-color: var(--body-text);
  background-image: linear-gradient(142deg, #363d48 36%, #555d68);
  flex-flow: wrap;
  place-content: center;
  align-items: center;
  min-height: 55vh;
  display: flex;
}

.flex-col._50.slide-tconainer {
  padding-left: 0;
  padding-right: 0;
}

.flex-col._30 {
  flex: 0 auto;
  width: 33.3333%;
  padding-left: .6em;
  padding-right: .6em;
}

.flex-col._25 {
  flex: 0 auto;
  width: 25%;
}

.flex-col._70 {
  flex: 0 auto;
  width: 70%;
}

.flex-col.fw {
  flex: 0 auto;
  width: 100%;
}

.flex-col.side-bar {
  flex: 0 auto;
  width: 33.3333%;
}

.flex-col.form-col {
  flex: 0 auto;
  width: 50%;
}

.flex-col.service-flex {
  flex: 0 auto;
  width: 30%;
}

.flex-col.grid-gallery {
  flex-flow: wrap;
  place-content: flex-start;
  align-items: stretch;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.flex-col.info-side {
  text-align: right;
  flex: 0 auto;
  width: 35%;
}

.aside-text-card {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.aside-text-card.narrow {
  width: 100%;
  max-width: 60%;
}

.image-frame {
  width: 96%;
  margin-left: auto;
  margin-right: auto;
}

.image-frame.cms-editable {
  box-shadow: 0 30px 60px -20px #00000070;
}

.ffc-card-text {
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.ffc-ct-card {
  width: 60%;
}

.titular {
  text-align: center;
  flex-flow: column wrap;
  place-content: center;
  align-items: center;
  margin-bottom: 4vh;
  display: flex;
}

.titular.a-left {
  text-align: left;
  align-content: flex-start;
  align-items: flex-start;
}

.divider-titular {
  background-color: var(--color-2);
  width: 100px;
  height: 4px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
}

.divider-titular.more-contrast {
  background-color: var(--color-3);
}

.titular-label {
  background-color: var(--color-2);
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
  padding-left: 6px;
  padding-right: 6px;
  font-size: .8em;
  font-weight: 600;
  display: inline-block;
}

.color-card {
  min-height: 100px;
}

.color-card.color-1 {
  background-color: var(--color-1);
}

.color-card.color-2 {
  background-color: var(--color-2);
}

.color-card.color-3 {
  background-color: var(--color-3);
}

.color-card.color-4 {
  background-color: var(--color-4);
}

.color-card.color-1-l {
  background-color: var(--color-1-l);
  min-height: 50px;
}

.color-card.color-1-d {
  background-color: var(--color-1-d);
  min-height: 50px;
}

.color-card.color-2-l {
  background-color: var(--color-2-l);
  min-height: 50px;
}

.color-card.color-2-d {
  background-color: var(--color-2-d);
  min-height: 50px;
}

.color-card.color-3-l {
  background-color: var(--color-3-l);
  min-height: 50px;
}

.color-card.color-3-d {
  background-color: var(--color-3-d);
  min-height: 50px;
}

.color-card.color-4-l {
  background-color: var(--color-4-l);
  min-height: 50px;
}

.color-card.color-4-d {
  background-color: var(--color-4-d);
  min-height: 50px;
}

.paleta-de-color {
  margin-bottom: 40px;
}

.titulo-color-1 {
  color: var(--color-1);
}

.titulo-color-2 {
  color: var(--color-2);
  font-weight: 700;
}

.desk-menu {
  background-color: var(--white);
  position: fixed;
  inset: 0% 0% auto;
}

.main-slider {
  z-index: 0;
  background-color: #0000;
  height: 100%;
}

.ms-slide {
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.ms-s-background {
  z-index: 0;
  background-image: linear-gradient(#00000080, #00000080), url('../images/real-estate-demo.gif');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.icon-card {
  color: var(--color-1);
  text-align: center;
  flex-flow: column wrap;
  place-content: center flex-start;
  align-items: center;
  margin-bottom: 40px;
  display: flex;
}

.icon-card.h-icon-card {
  text-align: left;
  flex-flow: wrap;
  place-content: flex-start;
  align-items: stretch;
}

.ic-icon {
  width: 6em;
  min-height: 20px;
  margin-bottom: 30px;
}

.ic-icon.h-size {
  width: 20%;
}

.cta-titular {
  text-transform: uppercase;
  font-weight: 700;
}

.flex-grid {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.fg-col {
  width: 25%;
  min-height: 10px;
  padding-left: 1%;
  padding-right: 1%;
}

.fg-col.tercio {
  width: 33.3333%;
}

.ftr-titular {
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 1.2em;
  font-weight: 700;
}

.gallery-flex {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.lightbox-card {
  width: 33.3333%;
  padding-left: 5px;
  padding-right: 5px;
  transition: all .2s ease-in-out;
  display: block;
}

.lightbox-card:hover {
  filter: brightness(70%);
  transform: scale(.96);
}

.fb13-col-1 {
  width: 30%;
  padding-right: 40px;
}

.fb13-col-3 {
  width: 70%;
  min-height: 100px;
}

.rt-bullets ul {
  padding-left: 10px;
  list-style-type: none;
}

.fb13-c3-f-3-col {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.mov-btn {
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #0000;
  margin-bottom: 10px;
  font-family: Open Sans, sans-serif;
  font-size: 1.1em;
  font-weight: 600;
  line-height: 1.6em;
  transition: all .2s ease-in-out;
  display: block;
}

.mov-btn:hover {
  color: var(--color-2);
  letter-spacing: 2px;
}

.mov-btn.special {
  background-color: var(--color-2);
  color: var(--black);
  margin-bottom: 20px;
}

.mov-btn.special:hover {
  background-color: var(--white);
}

.mov-btn.special.accordion-trgr, .mov-btn.no-mbtn {
  margin-bottom: 0;
}

.mov-tel {
  color: #fff;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.mov-tel.dark {
  color: #000;
}

.hover {
  opacity: 0;
  color: #fff;
  text-transform: uppercase;
  background-color: #39434ecc;
  background-image: url('../images/zoom.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 40px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  font-size: 1.2em;
  transition: all .2s ease-in-out;
  display: block;
  position: absolute;
  inset: 0%;
}

.hover:hover {
  opacity: 1;
}

.side-blok-divider {
  background-color: var(--color-2);
  height: 2px;
  margin-bottom: 20px;
}

.contact-form {
  padding-right: 2em;
  position: relative;
}

.input {
  border-style: none none solid;
  border-width: 1px;
  border-color: black black var(--light-grey);
  border-radius: 0;
  height: auto;
  margin-bottom: 20px;
  font-size: .8em;
  font-style: italic;
  line-height: 2em;
  transition: all .2s ease-in-out;
}

.input:hover {
  background-color: var(--gray);
  border-bottom-color: #626262;
}

.input:focus {
  border-style: solid;
  border-color: var(--gray);
  background-color: var(--gray);
  padding-left: 10px;
  box-shadow: 0 0 10px -4px #0000004d;
}

.input::placeholder {
  color: var(--light-grey);
}

.input.text-area {
  min-height: 140px;
}

.contact-hdr {
  border-bottom: 1px dashed #000;
  margin-bottom: 60px;
  padding-bottom: 20px;
}

.telefonos {
  flex-flow: column wrap;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.gmap {
  height: 100%;
}

.address {
  color: #343434;
  margin-bottom: 20px;
  padding: 10px 20px;
  font-size: .9em;
  font-style: normal;
}

.fw-col {
  width: 100%;
  min-height: 20px;
  padding-left: 1%;
  padding-right: 1px;
  position: relative;
}

.form {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.btn-enviar {
  float: right;
  background-color: var(--ok-color);
  text-align: center;
  border-radius: 4px;
  padding: 15px 30px;
  font-size: 1.2em;
  font-weight: 600;
  transition: all .2s ease-in-out;
}

.btn-enviar:hover {
  filter: brightness(80%);
  transform: scale(.95);
}

.bloque {
  background-color: var(--white);
  padding-top: 60px;
  padding-bottom: 60px;
}

.mapa {
  position: relative;
}

.side-col-card {
  color: #1924a3;
  margin-bottom: 40px;
}

.half-col {
  width: 48%;
  min-height: 20px;
  margin-left: 1%;
  margin-right: 1%;
}

.link {
  color: #1924a3;
}

.amc-body {
  color: var(--color-1-d);
  text-align: center;
  padding: 60px 30px 40px;
}

.alert-blok {
  background-color: var(--color-2);
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.amc-ftr {
  background-color: #f3fdfc;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 20px 30px;
  font-size: .8em;
  display: flex;
}

.amc-hdr {
  border-bottom: 1px solid var(--white-smoke);
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px 15px;
  font-size: 1.2em;
  font-weight: 700;
  display: flex;
}

.alert-modal-card {
  background-color: #fff;
  border-radius: 4px;
  min-width: 40%;
  max-width: 50%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 30px -15px #000000b3;
}

.secundary-text-smaller {
  margin-bottom: 30px;
  font-size: 1.2em;
  line-height: 1.5em;
}

.post-card {
  color: #18316a;
  background-color: #fff;
  margin-bottom: 40px;
  text-decoration: none;
  transition: all .2s ease-in-out;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 30px -15px #0000004d;
}

.post-card:hover {
  filter: brightness(80%);
  transform: scale(.97);
  box-shadow: 0 20px 15px -14px #0000004d;
}

.post-card-img {
  position: relative;
}

.pc-post-label {
  color: #fff;
  text-transform: uppercase;
  background-color: #18316a;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  margin-top: 30px;
  padding: 12px 20px 12px 10px;
  font-size: .8em;
  font-weight: 300;
  line-height: 1.3em;
  position: absolute;
  inset: 0% 0% auto auto;
}

.post-card-body {
  padding: 2em;
}

.pc-date {
  color: #3f3f3f;
  margin-top: -6px;
  margin-bottom: 10px;
  font-size: .8em;
}

.pc-botonera {
  margin-top: 20px;
}

.theme-flex-card {
  color: #fff;
  text-align: center;
  background-color: #949cff;
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
  width: 33.3333%;
  height: auto;
  padding: 35px 4%;
  display: block;
  position: relative;
}

.tfc-info {
  z-index: 10;
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.tfc-icon {
  width: 80px;
  margin-bottom: 20px;
}

.small {
  font-size: .8em;
  line-height: 1.7em;
}

.tfc-botonera {
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
}

.text-btn {
  color: #18316a;
  background-image: url('../images/arrow-left.svg');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: 15px;
  padding-right: 20px;
  font-size: 1em;
  line-height: 1.8em;
  text-decoration: none;
}

.tfc-bg {
  z-index: 0;
  background-image: linear-gradient(#0e484199, #0e484199), url('../images/base-1.gif');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  position: absolute;
  inset: 0%;
}

.hover-card {
  opacity: .7;
  border: 1px solid #0006;
  height: 40vh;
  margin-bottom: 60px;
  padding: 10px 20px 20px;
  transition: all .2s ease-in-out;
  position: relative;
}

.hover-card:hover {
  opacity: 1;
  background-color: #f6fdfd;
  border-color: #fff;
  transform: translate(0, -20px);
  box-shadow: 0 20px 20px -5px #0006;
}

.v-wrpr-2 {
  margin-top: auto;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translate(0, -50%);
}

.ac-wrpr {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.ac-icon {
  width: 60px;
  height: 60px;
}

.pc-name-label {
  color: #a7d52a;
  text-transform: uppercase;
  font-weight: 700;
}

.price-card {
  text-align: center;
  background-color: #fff;
  border-radius: 8px;
  width: 31.3333%;
  min-height: 200px;
  margin-left: 1%;
  margin-right: 1%;
  padding: 30px 30px 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 30px -15px #0000004d;
}

.pc-price-label {
  font-size: 2.7em;
  font-weight: 800;
  line-height: 1.4em;
}

.pc-divider {
  background-color: #a7d52a;
  width: 200px;
  height: 4px;
  margin: 30px auto 40px;
}

.pc-icon {
  width: 100px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
}

.pc-text {
  color: #4469b0;
  margin-bottom: 10px;
}

.flex-fv {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: wrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-content: stretch space-between;
  align-items: stretch;
  display: flex;
  position: absolute;
  inset: 0%;
}

.ffv-col {
  background-color: #fafafa;
  width: 50%;
}

.ffv-col.bg-side {
  background-image: url('../images/hero-1.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.ffv-col.text-side {
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  display: flex;
}

.hero-in {
  background-color: var(--black);
  color: var(--white);
  text-align: left;
  background-image: linear-gradient(#454545c4, #454545c4), url('../images/bg-about.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, scroll;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 360px;
  display: flex;
  position: fixed;
}

.hero-in.services {
  background-image: url('../images/bg-services.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  height: 640px;
  display: flex;
}

.hero-in.h-properties {
  background-image: linear-gradient(#fffc, #fffc), url('../images/interior.jpg');
}

.hero-in.light {
  color: var(--body-text);
  background-image: linear-gradient(#fffc, #fffc), url('../images/bg-about.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, scroll;
}

.flex-multi-card {
  border-top: 1px solid var(--gray);
  border-bottom: 1px solid var(--gray);
  flex-flow: wrap;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.multy-link-card {
  border-right: 1px solid var(--gray);
  background-color: var(--white);
  color: var(--body-text);
  text-transform: uppercase;
  flex-flow: wrap;
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  padding: 25px 30px;
  font-size: 1em;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s ease-in-out;
  display: flex;
}

.multy-link-card:hover {
  filter: brightness(90%);
}

.mlc-icon {
  background-color: var(--light-grey);
  width: 50px;
  height: 50px;
  margin-right: 15px;
}

.big-color-card {
  background-color: var(--color-1);
  color: var(--white);
  border-radius: 10px;
  padding: 50px 40px 40px;
}

.big-color-card.color-2 {
  background-color: var(--color-2-l);
}

.big-color-card.color-3 {
  background-color: var(--color-4);
}

.bbc-main-txt {
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: 3em;
  font-weight: 800;
  line-height: 1.4em;
}

.bcc-sub {
  margin-bottom: 10px;
  font-size: 1.3em;
  line-height: 1.4em;
}

.starter-blok {
  margin-bottom: 40px;
}

.sit-icon {
  background-color: var(--color-4);
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.tabs-nav {
  background-color: #f0f7f7;
  border-radius: 6px;
  margin-bottom: 10px;
  padding: 13px;
}

.tab-btn {
  color: var(--color-2);
  background-color: #0000;
  border-radius: 4px;
  margin-right: 16px;
  font-weight: 700;
}

.tab-btn.w--current {
  background-color: var(--color-2);
  color: var(--white);
}

.tabs-content {
  padding-top: 20px;
}

.fbpa {
  background-image: url('../images/hero-1.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.fbpa-container {
  flex-flow: wrap;
  place-content: center;
  align-items: center;
  width: 100%;
  max-width: 50%;
  display: flex;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.fbpa-card {
  background-color: var(--white);
  text-align: left;
  border-radius: 8px;
  width: 100%;
  max-width: 60%;
  padding: 40px 40px 30px;
}

.fbpa-c-m-content {
  margin-bottom: 40px;
}

.cookie-modal {
  z-index: 1000;
  background-color: var(--white);
  opacity: 1;
  border-radius: 4px;
  flex-flow: wrap;
  place-content: center space-between;
  align-items: stretch;
  width: 100%;
  max-width: 60%;
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
  padding: 16px;
  font-size: .8em;
  display: flex;
  position: fixed;
  inset: auto 0% 0%;
}

.cka-text {
  background-image: url('../images/cookie.svg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 35px;
  width: 100%;
  max-width: 70%;
  min-height: 45px;
  padding-left: 45px;
}

.cka-link {
  color: #108ff1;
  font-weight: 700;
  display: inline-block;
}

.cka-close {
  background-image: url('../images/icons-sprite.svg');
  background-position: -20px 0;
  background-size: 80px;
  flex: none;
  width: 20px;
  height: 20px;
}

.menu-row {
  border-bottom: 4px solid #f4f4f4;
  flex-flow: wrap;
  place-content: flex-start space-between;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 10px;
  padding-left: 0;
  font-size: 1.03em;
  display: flex;
}

.mr-platillo-title {
  flex-flow: wrap;
  flex: 0 auto;
  place-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 40%;
  padding-right: 0;
  font-weight: 700;
  line-height: 1.3em;
  display: flex;
}

.mr-divider {
  border-top: 1px dashed #000;
  flex: 1;
  align-self: flex-start;
  height: 1px;
  margin-top: 18px;
  display: block;
}

.mr-preciador {
  flex-flow: wrap;
  flex: 0 auto;
  place-content: flex-start flex-end;
  align-items: stretch;
  width: 35%;
  margin-top: -12px;
  padding-left: 0;
  display: flex;
}

.mr-ftr {
  width: 100%;
  margin-top: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: .8em;
  line-height: 1.3em;
}

.mr-preciador-flex {
  flex-flow: wrap;
  flex: 1;
  place-content: flex-start flex-end;
  align-items: stretch;
  display: flex;
}

.mr-precio {
  text-align: center;
  padding-left: 5px;
  padding-right: 5px;
}

.mr-p-top-text {
  text-transform: uppercase;
  font-size: .6em;
  font-weight: 600;
  line-height: 1.3em;
  position: relative;
}

.mr-p-precio {
  margin-top: 2px;
  margin-bottom: 2px;
  font-weight: 700;
  line-height: 1.2em;
}

.mr-p-bottom-text {
  font-size: .7em;
  line-height: 1.4em;
}

.mr-p-t-icon {
  background-color: var(--color-4);
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.mr-p-t-text {
  flex: 1;
}

.sub-titular {
  color: var(--color-1-d);
  margin-bottom: 40px;
  padding-bottom: 10px;
}

.st-text-help {
  margin-top: -10px;
  font-size: 1em;
}

.menu-icons-row {
  border-top: 1px dashed var(--gray);
  flex-flow: wrap;
  place-content: center flex-end;
  align-items: stretch;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
}

.mic-icon-card {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  margin-left: 10px;
  margin-right: 10px;
  font-size: .8em;
  display: flex;
}

.menu-alert {
  border: 1px solid var(--color-4);
  text-align: left;
  border-radius: 4px;
  padding: 10px;
}

.menu-alert.flat {
  border-style: none;
  padding: 0;
}

.menu-help-text {
  color: var(--grey);
  margin-top: -8px;
  font-style: italic;
}

.agrupar {
  margin-bottom: 8px;
}

.menu-banner {
  background-color: #fafafa;
  margin-bottom: 40px;
  padding: 40px;
}

.menu-banner-link {
  background-color: var(--white);
  min-height: 100px;
  display: block;
}

.fic-brief {
  color: #fff;
  text-align: center;
  width: 100%;
  max-width: 60%;
  min-height: 50px;
}

.rectangle-card {
  background-color: #fafafa;
  width: 65.6666%;
  min-height: 36vh;
  margin-bottom: 10px;
  margin-left: .5%;
  margin-right: .5%;
  transition: all .2s ease-in-out;
  position: relative;
}

.rectangle-card:hover {
  filter: brightness(120%);
}

.card-property-label {
  text-transform: uppercase;
  background-color: #e76f51;
  border-radius: 4px;
  padding: 4px 10px;
  font-family: Montserrat, sans-serif;
  font-size: .8em;
  font-weight: 700;
  display: inline-block;
}

.full-shade {
  z-index: 1;
  background-image: linear-gradient(#0000004d, #0000004d);
  position: absolute;
  inset: 0%;
}

.card-property-title {
  margin-bottom: 20px;
  font-size: 1.5em;
  font-weight: 700;
}

.square-card {
  background-color: #fafafa;
  width: 32.3333%;
  min-height: 36vh;
  margin-left: .5%;
  margin-right: .5%;
  transition: all .2s ease-in-out;
  position: relative;
}

.square-card:hover {
  filter: brightness(120%);
}

.full-bg-property {
  z-index: 0;
  background-image: url('../images/hero.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0%;
}

.full-info-card {
  z-index: 2;
  flex-flow: wrap;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 40px;
  display: flex;
  position: absolute;
  inset: 0%;
}

.recent-properties {
  flex-flow: wrap;
  place-content: flex-start space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 100%;
  min-height: 100px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.menu-flex-row {
  flex-flow: wrap;
  place-content: flex-start space-between;
  align-items: flex-start;
  margin-top: 35px;
  font-size: 1.3em;
  display: flex;
}

.menu-flex-grid {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.mfg-50 {
  width: 100%;
  max-width: 50%;
  min-height: 100px;
  margin-top: -15px;
  margin-bottom: 5%;
  padding-left: 1%;
  padding-right: 1%;
}

.rt-menu {
  font-size: 1.1em;
}

.rt-menu h2, .rt-menu h3 {
  display: none;
}

.rt-menu ul {
  padding-left: 30px;
  line-height: 1.4em;
}

.rt-menu li {
  margin-bottom: 4px;
}

.mfg-100 {
  width: 100%;
  min-height: 100px;
}

.main-scroll-navbar {
  z-index: 200;
  background-color: var(--color-2-l);
  opacity: 0;
  height: 80px;
  display: block;
  position: fixed;
  inset: 0% 0% auto;
  transform: translate(0, -100%);
}

.messenger-bar {
  z-index: 100;
  height: auto;
  margin-bottom: 40px;
  margin-right: 4vh;
  position: fixed;
  inset: auto 0% 0% auto;
}

.messenger-btn {
  background-color: var(--whatsapp);
  background-image: url('../images/whatsapp-icon.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 35px;
  border: 1px #000;
  border-radius: 25px;
  width: 50px;
  height: 50px;
  display: block;
  position: relative;
  box-shadow: 0 0 20px #00000080;
}

.call-btn {
  background-color: var(--color-1);
  color: var(--white);
  background-image: url('../images/tel-ico-w.svg');
  background-position: 14px;
  background-repeat: no-repeat;
  background-size: 20px;
  border-radius: 20px;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  min-height: 30px;
  margin-bottom: 10px;
  padding: 2px 20px 2px 44px;
  font-weight: 700;
  line-height: 35px;
  text-decoration: none;
  display: inline-block;
}

.call-btn.whatsapp {
  background-color: var(--whatsapp);
  background-image: url('../images/whatsapp-w.svg');
}

.active-ico {
  background-color: var(--youtube);
  border-radius: 5px;
  width: 10px;
  height: 10px;
  margin-top: 2px;
  margin-right: 2px;
  position: absolute;
  inset: 0% 0% auto auto;
}

.testimonial-card {
  background-color: var(--white);
  text-align: left;
  border-radius: 12px;
  padding: 25px 40px;
  display: block;
}

.q-author {
  border-radius: 30px;
  width: 60px;
  margin-right: 20px;
  display: block;
  position: relative;
  overflow: hidden;
}

.tc-hdr {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.tc-author-date {
  color: var(--grey);
  flex: 1;
  padding-top: 10px;
  font-size: .8em;
  line-height: 1.5em;
}

.author-name {
  color: var(--black);
  font-size: 1.1em;
  font-weight: 700;
}

.qc-stars {
  flex: 0 auto;
  width: 80px;
  min-height: 10px;
  display: block;
}

.accordion {
  border: 1px solid #ffebdb;
  border-radius: 4px;
  margin-bottom: 20px;
  position: relative;
}

.accordion:hover {
  background-color: #fffbf7;
}

.acc-hdr {
  color: var(--color-2-d);
  cursor: pointer;
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 1.1em;
  font-weight: 700;
  transition: all .2s;
  display: flex;
}

.acc-content {
  background-color: #fffbf8;
  height: 0;
  overflow: hidden;
}

.acc-body {
  padding: 30px;
}

.acc-seter {
  background-color: var(--color-2);
  border-radius: 15px;
  width: 30px;
  height: 30px;
}

.sys-flex-demo-card {
  background-color: #f4f4f4;
  flex-flow: wrap;
  flex: 1;
  justify-content: space-between;
  align-items: flex-end;
  min-height: 25vh;
  display: flex;
  position: relative;
}

.sys-flex-demo-card.color-1 {
  background-color: var(--color-1);
  flex-wrap: wrap;
  justify-content: space-between;
}

.sys-flex-demo-card.body-color {
  color: var(--black);
  background-color: #0000;
}

.sys-flex-demo-card.color-2 {
  background-color: var(--color-2);
}

.sys-flex-demo-card.color-3 {
  background-color: var(--color-3);
}

.sys-flex-demo-card.color-4 {
  background-color: var(--color-4);
}

.sys-flex-demo-card.cuarto {
  flex: 0 auto;
  width: 50%;
}

.sys-flex-demo-card.cuarto.body-color {
  color: var(--body-text);
}

.sys-flex-demo-card.cuarto.color-1 {
  color: var(--white);
}

.sys-flex-demo-card.cuarto.color-2, .sys-flex-demo-card.cuarto.color-3 {
  color: var(--color-1);
}

.fwh-center-flex-card {
  text-align: center;
  flex-flow: wrap;
  justify-content: center;
  align-self: flex-start;
  align-items: center;
  width: 100%;
  height: auto;
  padding-top: 14px;
  padding-bottom: 14px;
  display: block;
  position: relative;
  inset: 0%;
}

.sys-frame {
  width: 60%;
  min-height: 100px;
  margin: 4em auto;
  position: relative;
  left: 0%;
  right: 0%;
}

.master-flex {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.master-flex.space-b {
  justify-content: space-between;
}

.side-blok {
  margin-bottom: 40px;
}

.sid-eblok-title {
  color: var(--color-1);
  margin-bottom: 8px;
  font-weight: 700;
}

.map-blok {
  border: 1px solid #f4f4f4;
  display: block;
}

.bold {
  font-weight: 700;
}

.ic-content.h-size {
  width: 80%;
  padding-left: 15px;
}

.bullets-text-block {
  margin-bottom: 20px;
  display: block;
  position: relative;
}

.bullet-text {
  flex-flow: wrap;
  place-content: center flex-start;
  align-items: flex-start;
  margin-bottom: 20px;
  display: flex;
}

.bt-icon {
  width: 35px;
  height: 35px;
  margin-right: 10px;
}

.bt-text {
  flex: 1;
  margin-top: 6px;
}

.text-block {
  flex: 1;
}

.mega-menu-container {
  width: 100%;
  display: block;
}

.color-shade {
  width: 50%;
  height: 30%;
}

.color-shade.color-1-l {
  background-color: var(--color-1-l);
}

.color-shade.color-1-d {
  background-color: var(--color-1-d);
}

.color-shade.color-2-l {
  background-color: var(--color-2-l);
}

.color-shade.color-2-d {
  background-color: var(--color-2-d);
}

.color-shade.color-3-l {
  background-color: var(--color-3-l);
}

.color-shade.color-3-d {
  background-color: var(--color-3-d);
}

.color-shade.color-4-l {
  background-color: var(--color-4-l);
}

.color-shade.color-4-d {
  background-color: var(--color-4-d);
}

.spacer {
  height: 15vh;
}

.trgr-open.brgr {
  cursor: pointer;
  background-color: #0000;
  flex-flow: wrap;
  place-content: space-between;
  align-items: stretch;
  width: 30px;
  height: 30px;
  display: flex;
}

.hero-in-card {
  width: 55%;
  min-height: 30px;
}

.s-image {
  position: relative;
}

.image-hldr {
  margin-bottom: 20px;
}

.side-car-title {
  color: var(--color-2);
  margin-bottom: 10px;
  font-size: 1.2em;
  font-weight: 600;
}

.sys-top-bar {
  z-index: 20;
  border-bottom: 1px solid var(--gray);
  background-color: var(--white);
  padding-top: 20px;
  padding-bottom: 20px;
  position: fixed;
  inset: 0% 0% auto;
}

.sys-content {
  background-color: #f4f4f4;
  padding-top: 14vh;
  padding-bottom: 8vh;
}

.body-text-content {
  background-color: var(--white);
  padding: 55px 50px;
}

.sys-footer {
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: .8em;
}

.trgr-close.close {
  filter: none;
  width: 40px;
  height: 40px;
}

.text-content-block {
  text-align: left;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.rich-text {
  margin-bottom: 20px;
}

.rich-text p {
  color: var(--body-text);
}

.full-height-flex {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: stretch;
  height: 100vh;
  display: flex;
}

.contact-brief-card {
  color: var(--white);
  text-align: center;
  width: 450px;
  min-height: 100px;
}

.cbc-hdr {
  padding-top: 19px;
  padding-bottom: 19px;
}

.cbc-body {
  padding: 20px;
}

.vh-center-card {
  min-height: 100px;
  margin-top: auto;
  padding-left: 15%;
  padding-right: 15%;
  position: absolute;
  inset: 50% 0% auto;
  transform: translate(0, -50%);
}

.form-botonera {
  flex-flow: wrap;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  margin-top: 20px;
  display: flex;
}

.form-hdr {
  border-bottom: 1px solid var(--light-grey);
  width: 100%;
  min-height: 20px;
  margin-bottom: 40px;
}

.form-hdr.hide {
  display: none;
}

.form-brand {
  margin-bottom: 20px;
}

.btn-link {
  color: var(--color-1);
  background-color: #d9e4f4;
  border-radius: 25px;
  margin-right: 20px;
  padding: .4em;
  font-size: .95em;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s;
  display: inline-block;
}

.btn-link:hover {
  filter: brightness(90%);
  transform: scale(.96);
}

.btn-link.big {
  border-radius: 30px;
  padding: .6em;
  font-size: 1.2em;
}

.btn-link.small {
  padding-top: .3em;
  padding-bottom: .3em;
  font-size: .7em;
}

.btn-link.small.last {
  margin-right: 0;
}

.bl-flex {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.bl-f-text-side {
  padding-left: 10px;
  padding-right: 10px;
}

.bl-f-icon {
  background-color: var(--color-1);
  border-radius: 15px;
  width: 30px;
  height: 30px;
  padding: 4px;
}

.bl-f-icon.big {
  border-radius: 17px;
  width: 34px;
  height: 34px;
}

.bl-f-icon.small {
  border-radius: 12px;
  width: 24px;
  height: 24px;
  padding: 2px;
}

.mov-btn-accordion {
  position: relative;
}

.mba-content {
  background-color: #f4f4f4;
  height: 0;
  font-size: .8em;
  position: relative;
  overflow: hidden;
}

.mba-c-hldr {
  padding-top: 10px;
  padding-bottom: 10px;
}

.ftr-block-one {
  background-color: var(--gray);
  text-align: center;
  width: 100%;
  padding-top: 10vh;
}

.ftr-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.ftr-block-two {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-top: 6vh;
  padding-bottom: 6vh;
  display: block;
}

.home {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.effect-slide-card {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.slide-image-hldr {
  background-image: linear-gradient(#00000080, #00000080), url('../images/hero-3.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  width: 160vw;
  height: 100%;
}

.slide-image-hldr.zoom {
  background-image: linear-gradient(#00000080, #00000080), url('../images/hero-2.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  transform: scale(1.4);
}

.henderson-logo-side {
  z-index: 100;
  width: 110px;
  padding-top: 40px;
  padding-right: 10px;
  position: fixed;
  inset: 0% 0% 0% auto;
}

.hero-slider-nav {
  display: none;
}

.nav-trigger {
  z-index: 12;
  flex-flow: wrap;
  place-content: center space-between;
  align-items: stretch;
  width: 45px;
  height: 45px;
  margin-top: 40px;
  margin-left: 5em;
  display: block;
  position: fixed;
  inset: 0% auto auto 0%;
}

.nav-trigger.on-hero {
  margin-top: 20px;
}

.brgr-bar {
  background-color: var(--white);
  width: 100%;
  height: 4px;
}

.brgr-bar.dark {
  background-color: #213b5fcc;
}

.hero-leyen-hldr {
  z-index: 10;
  min-height: 100px;
  margin-left: 5em;
  padding-bottom: 100px;
  position: absolute;
  inset: auto auto 0% 0%;
}

.mn-c-header {
  border-bottom: 1px solid #4b4b4b;
  width: 35%;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.henderson-logo-mnc {
  width: 267px;
  margin-left: auto;
  margin-right: auto;
}

.quote-slider {
  background-color: #0000;
  height: auto;
  padding-bottom: 2em;
}

.hldr-quote-slider {
  width: 500px;
}

.quote-text {
  color: #fffc;
  font-family: Ubuntu, Helvetica, sans-serif;
  font-size: 3.5em;
  font-weight: 700;
  line-height: .9em;
}

.slide-nav {
  text-align: left;
  height: 40px;
}

.henderson-sign {
  color: #ffffffa6;
  letter-spacing: 2px;
  font-family: Georgia, Times, Times New Roman, serif;
  font-style: italic;
}

.btn-request {
  width: 180px;
  margin-bottom: 40px;
}

.btn-request.on-alert {
  margin-bottom: 20px;
}

.bold-text {
  font-size: 50px;
}

.side-to-side.slide-image-hldr {
  background-image: linear-gradient(#00000080, #00000080), url('../images/slide-1.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.zoom {
  background-image: linear-gradient(#00000080, #00000080), url('../images/slide-2.jpg');
  background-position: 0 0, 0 0;
  background-size: auto, cover;
  height: 100%;
  transform: scale(1.4);
}

.left-to-right {
  background-image: linear-gradient(#00000080, #00000080), url('../images/slide-3.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  width: 160vw;
  height: 100%;
  position: absolute;
  inset: 0% 0% auto auto;
}

.slide-nav-2 {
  display: none;
}

.modal-alert {
  z-index: 200;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  inset: 0%;
}

.alert-card {
  z-index: 110;
  border: 4px solid var(--color-2);
  opacity: 1;
  color: var(--white);
  text-align: center;
  background-color: #626366;
  border-radius: 10px;
  width: 535px;
  min-height: 100px;
  margin-left: auto;
  margin-right: auto;
  padding: 30px;
  display: block;
  position: relative;
  inset: 0% 0% auto;
  transform: none;
}

.alert-card.clean {
  border-style: none;
  padding: 0;
}

.alert-rt p {
  color: var(--white);
  margin-bottom: 5px;
  line-height: 1.3em;
}

.close-alert {
  width: 40px;
  height: 40px;
  margin-top: -20px;
  margin-right: -20px;
  position: absolute;
  inset: 0% 0% auto auto;
}

.gris-logo {
  opacity: .25;
}

.sticky-nav {
  z-index: 50;
  background-color: #f6f6f6;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 65px;
  display: flex;
  position: sticky;
  top: 0;
}

.sticky-nav.dark {
  background-color: var(--grey);
}

.container {
  position: relative;
  top: 360px;
}

.container.on-services {
  top: 640px;
}

.hldr-hero-leyends {
  text-align: center;
  min-width: 100px;
  padding-bottom: 0;
}

.arrows {
  width: 30px;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
}

.hero-sub-tt {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 1.2em;
  font-weight: 300;
}

.hero-sub-tt.gris {
  color: var(--grey);
}

.ancla-scroll-nav {
  background-color: var(--grey);
  border-radius: 7px;
  flex-flow: wrap;
  place-content: center;
  align-items: center;
  width: 14px;
  height: 14px;
  margin-left: 30px;
  margin-right: 30px;
  transition: all .2s;
  display: flex;
  position: relative;
}

.ancla-scroll-nav:hover {
  filter: none;
}

.ancla-scroll-nav.w--current {
  background-color: var(--color-2);
  border-radius: 12px;
  width: 24px;
  height: 24px;
}

.ancla-scroll-nav.light {
  background-color: var(--light-grey);
  border-radius: 5px;
  width: 10px;
  height: 10px;
}

.dot-nav {
  background-color: var(--color-2);
  border-radius: 5px;
  width: 10px;
  height: 10px;
}

.dot-nav:hover {
  background-image: none;
}

.mask {
  height: auto;
  padding-bottom: 80px;
}

.hndrs {
  margin-top: -90px;
  margin-bottom: 120px;
}

.las-tp {
  margin-top: 20px;
}

.atention-steps {
  width: 660px;
  min-height: 100px;
  margin-left: auto;
  margin-right: auto;
}

.atention-step {
  flex-flow: wrap;
  place-content: stretch space-between;
  align-items: stretch;
  min-height: 150px;
  display: flex;
}

.step-title {
  text-align: right;
  border-right: 1px solid #f7cbb4;
  flex: 0 auto;
  width: 50%;
  height: auto;
  padding-right: 30px;
  font-size: 1.1em;
  font-weight: 700;
  position: relative;
}

.step-title.last {
  border-right-style: none;
}

.step-brief {
  text-align: left;
  width: 50%;
  padding-left: 40px;
  font-size: .9em;
  font-weight: 300;
}

.step-dot {
  background-color: var(--color-2);
  border-radius: 10px;
  width: 20px;
  height: 20px;
  margin-right: -10px;
  position: absolute;
  inset: 0% 0% auto auto;
}

.more-pdd-btm {
  margin-bottom: 1em;
}

.top-link {
  width: 20px;
  height: 20px;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
}

.text-span {
  font-weight: 300;
}

.legal-text-l {
  text-align: left;
  font-size: .7em;
}

.bacon-firm {
  text-align: right;
  flex-flow: wrap;
  justify-content: flex-end;
  align-items: stretch;
  display: flex;
}

.web-by {
  padding-right: 4px;
  font-size: .7em;
  line-height: 1.3em;
}

.gb-icon {
  width: 26px;
}

.hero-services-flex {
  flex: 0 auto;
  height: 50%;
}

.hero-services-flex.heo-title-hldr {
  background-image: linear-gradient(#fffc, #fffc);
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  display: flex;
}

.hero-services-flex.heo-title-hldr.dark {
  background-image: linear-gradient(#01010180, #01010180);
}

.hero-services-flex.brief-hldr {
  background-image: linear-gradient(#e16625cc, #e16625cc);
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  font-size: .8em;
  font-weight: 300;
  display: flex;
}

.hero-services-flex.brief-hldr.dark {
  background-image: linear-gradient(#2a2a2acc, #2a2a2acc);
}

.hero-services-flex.brief-hldr.white {
  color: var(--black);
  background-image: linear-gradient(#fffc, #fffc);
}

.gris {
  color: var(--grey);
}

.service-blk-tt {
  text-transform: uppercase;
  font-size: 2em;
  font-weight: 700;
}

.ancla-link-ligh {
  background-color: var(--light-grey);
  border-radius: 7px;
  width: 14px;
  height: 14px;
  margin-left: 30px;
  margin-right: 30px;
}

.ancla-link-ligh.w--current {
  background-color: var(--white);
  border-radius: 10px;
  width: 20px;
  height: 20px;
}

.property-block-title {
  background-color: var(--white);
  text-align: center;
  letter-spacing: 7px;
  text-transform: uppercase;
  padding-top: 2vh;
  padding-bottom: 2vh;
  font-family: Lato, sans-serif;
  font-weight: 300;
  position: sticky;
  inset: 0% 0% auto;
}

.category-property-title {
  margin-bottom: 0;
  font-size: 2.6em;
  font-weight: 100;
}

.property-card {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: stretch;
  height: auto;
  margin-bottom: 120px;
  display: block;
  box-shadow: 30px 0 60px #0000004d;
}

.pc-birief-card {
  color: var(--white);
  width: 74%;
  min-height: 100px;
}

.property-title {
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: .4em;
  font-size: 2.9em;
  font-weight: 100;
}

.pro-tech-brief {
  color: #ffffffa6;
  font-size: .9em;
  font-weight: 300;
  line-height: 1.7em;
}

.property-slider {
  height: 100%;
}

.gallery-square {
  background-color: #f5f5f5;
  width: 33.3333%;
}

.lightbox {
  object-fit: cover;
  display: block;
  position: relative;
}

.lb-thumb {
  object-fit: fill;
}

.hover-see-more {
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  background-color: #e16625d9;
  flex-flow: wrap;
  place-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.text-block-2 {
  letter-spacing: 2px;
  font-family: Lato, sans-serif;
  font-size: 1.1em;
  font-weight: 700;
  line-height: 1.4em;
}

.prop-kind-tag {
  color: #ffffff80;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 1em;
  font-size: .9em;
  font-weight: 300;
}

.hide {
  display: none;
}

.slide {
  background-image: url('../images/interior.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.slide.cover-mcgegor {
  background-image: url('../images/slide-1-gregor.jpg');
}

.slide.cover-duplex {
  background-image: url('../images/MacMillian-A-B.jpg');
}

.slide.two-jess-cover {
  background-image: url('../images/Riverview-Way-4.jpg');
}

.slide-2 {
  background-image: url('../images/bg-services.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.slide-3 {
  background-image: url('../images/customdesign.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.pager {
  font-size: .6em;
}

.property-brief-block {
  z-index: 20;
  width: 100%;
  height: auto;
  position: relative;
}

.pbc-hldr {
  background-color: var(--color-1-d);
  background-image: linear-gradient(#0f213bc2, #0f213bc2), url('../images/oriental-tiles.png');
  background-position: 0 0, 0 0;
  background-size: auto, 400px;
  height: 0;
  overflow: hidden;
}

.pbc-hldr.open {
  height: auto;
}

.property-brief-in-hldr {
  color: var(--white);
  width: 50%;
  max-width: 760px;
  min-height: 20px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 6em;
  padding-bottom: 6em;
}

.pb-title {
  text-align: center;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 1em;
  font-family: Lato, sans-serif;
  font-weight: 300;
}

.pb-text {
  text-align: justify;
  font-size: .9em;
  font-weight: 300;
  line-height: 1.6em;
}

.pbb-trigger-hldr {
  text-align: center;
  height: 0;
}

.property-brief-link {
  z-index: 1;
  background-color: var(--color-2);
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: .8em 1.5em;
  text-decoration: none;
  display: inline-block;
  position: relative;
  top: -25px;
}

.property-brief-card {
  background-color: #0f213b99;
  border: 1px solid #fff3;
  padding: 2em 2.8em;
  position: relative;
}

.hldr-close {
  justify-content: center;
  width: auto;
  height: 40px;
  margin-top: -40px;
  display: flex;
  position: absolute;
  inset: 0% 0% auto;
}

.menu-accordion {
  margin-top: 20px;
  margin-bottom: 20px;
  position: relative;
}

.mc-accordion-hldr {
  height: 0;
  font-size: .8em;
  overflow: hidden;
}

.mc-a-btn-hld {
  padding-top: 1em;
  padding-bottom: 1em;
}

.new-release-tt {
  flex-flow: wrap;
  place-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 40px;
  display: flex;
}

.nrl-tt {
  margin-right: 20px;
  font-family: Lato, sans-serif;
  font-size: 3.5em;
  font-weight: 100;
  line-height: 1.1em;
}

.rivers-gate {
  max-width: 250px;
}

.lot-card {
  width: 100%;
  max-width: 60rem;
  margin-bottom: 80px;
  position: relative;
}

.lc-brief-card {
  z-index: 1;
  background-color: var(--light-grey);
  text-align: left;
  width: 100%;
  max-width: 400px;
  padding: 1.8em;
  position: absolute;
  inset: 0% auto auto 0%;
}

.lc-image {
  padding-top: 12%;
  padding-left: 10%;
  position: relative;
  inset: 0% 0% auto;
}

.normal {
  letter-spacing: 0;
  text-transform: none;
  font-family: Lato, sans-serif;
}

.center-contetn-card {
  width: 50%;
  margin-bottom: 40px;
}

.sub-title {
  letter-spacing: 0;
  margin-bottom: .1em;
  font-size: 1em;
  line-height: 1.4em;
}

.removation-lb-card {
  background-color: var(--black);
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 1em;
  position: relative;
}

.re-name-hldr {
  padding: 1em;
}

.renovations-hover {
  z-index: 1;
  opacity: 0;
  background-image: url('../images/zoom.svg'), linear-gradient(#00000080, #00000080);
  background-position: 50%, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: 30px, auto;
  transition: all .2s ease-in-out;
  display: block;
  position: absolute;
  inset: 0%;
}

.renovations-hover:hover {
  opacity: 1;
}

.shelly {
  max-width: 300px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
}

.profile-blok {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  max-width: 850px;
  min-height: 100px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.profile {
  width: 100%;
  max-width: 300px;
}

.profile-pic {
  border-bottom: 4px solid #e8ba8f;
  height: 200px;
  position: relative;
  overflow: hidden;
}

.profile-name {
  padding-top: 20px;
}

.profile-social {
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
  display: flex;
}

.profile-brief {
  text-align: left;
  flex: 1;
  padding-left: 10%;
  font-size: .8em;
}

.web-link {
  color: var(--black);
  margin-top: 20px;
  font-size: 1.4em;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
}

.web-link:hover {
  color: #ef5929;
}

.pic-hldr {
  z-index: 0;
  height: 200px;
  position: relative;
}

.profile-info-card {
  z-index: 2;
  background-color: var(--white);
  text-align: center;
  height: 0;
  position: absolute;
  inset: auto 0% 0%;
  overflow: hidden;
}

.profile-info-card.open {
  height: auto;
}

.profile-profesion {
  padding-top: .6em;
  padding-bottom: .6em;
}

.profile-brief-text {
  text-align: left;
  border-top: 1px solid #e8ba8f;
  padding: 1.2em 2em;
  font-size: .8em;
}

.profile-prefix {
  color: var(--grey);
  font-style: italic;
  font-weight: 300;
  line-height: 1.6em;
}

.profile-person-name {
  color: var(--black);
  text-transform: uppercase;
  font-family: Josefin Sans, sans-serif;
  font-size: 1.4em;
  font-weight: 700;
  line-height: 1.4em;
}

.profile-social-link {
  filter: brightness(200%);
  width: 35px;
  height: 35px;
  margin-left: 8px;
  margin-right: 8px;
}

.profile-social-link:hover {
  filter: none;
}

.hldr-pic-hover {
  opacity: 0;
  background-image: linear-gradient(#e8ba8f80, #e8ba8f80);
  position: absolute;
  inset: 0%;
}

.profile-end-blk {
  margin-top: 100px;
}

.end-info {
  width: 100%;
  max-width: 500px;
  min-height: 100px;
  margin-left: auto;
  margin-right: auto;
}

.ebd-text-one {
  color: #a4a4a4;
  margin-bottom: 40px;
  font-family: Open Sans, sans-serif;
  line-height: 1.7em;
}

.end-quote.name {
  color: #262626;
  font-family: Josefin Sans, sans-serif;
  font-size: 1.2em;
}

.end-quote.origin {
  color: #262626;
  font-size: .9em;
}

.mortage {
  max-width: 80%;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
}

.contact-tabs-element {
  height: 800px;
  position: relative;
}

.cte-tab-menu {
  z-index: 10;
  background-color: #efefef;
  justify-content: center;
  align-items: center;
  height: 65px;
  display: flex;
  position: absolute;
  inset: 0% 0% auto;
}

.cta-center-bar {
  background-color: var(--black);
  width: 1px;
  height: 100%;
  margin-left: 10px;
  margin-right: 10px;
}

.form-icon, .map-icon {
  width: 40px;
  height: 40px;
}

.map-icon.off {
  opacity: .3;
}

.hldr-map {
  z-index: 0;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.hldr-info {
  z-index: 3;
  background-image: linear-gradient(#edededd9, #edededd9);
  width: 100%;
  height: 100%;
  padding-top: 120px;
  padding-bottom: 6vh;
  position: relative;
}

.form-titles {
  font-family: Open Sans, sans-serif;
  font-weight: 900;
  line-height: 1em;
}

.form-contact-info {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  min-height: 100px;
  margin-top: 20px;
  display: flex;
}

.apoinment-blk {
  text-align: right;
  width: 35%;
}

.info-datos-blk {
  flex: 1;
  padding-left: 20px;
}

.contacct-dat-aaddress {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 10px;
  display: flex;
}

.data-label {
  color: #262626;
  text-transform: uppercase;
  width: 22%;
  font-family: Open Sans, sans-serif;
  font-weight: 700;
}

.data {
  flex: 1;
  font-family: Open Sans, sans-serif;
  font-size: .9em;
}

.hover-map {
  height: 100%;
  position: absolute;
  inset: 0%;
}

.hdr-property-card {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.rt-h {
  line-height: 1.3em;
}

.rt-h p {
  margin-bottom: 4px;
  line-height: 1.4em;
}

.property-cover {
  height: 100%;
}

.property-cover.cover-mcgregor {
  background-image: url('../images/slide-1-gregor.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.property-cover.cover-sal {
  background-image: url('../images/sal-1.JPG');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.property-cover.two-jess-cover {
  background-image: url('../images/Riverview-Way-1.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.property-cover.mckenzie {
  background-image: url('../images/mackenzie-1.JPG');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.property-cover.mccormik {
  background-image: url('../images/McCormick-2.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.property-cover.mcmillan {
  background-image: url('../images/MacMillian-A-B.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.property-cover.mckenney {
  background-image: url('../images/mckinney-cover.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.property-cover.the-nia {
  background-image: url('../images/the-nia-1.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.property-cover.cover-cameron-heights {
  background-image: url('../images/cameron-heights_1.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.property-cover.cover-riversgate {
  background-image: url('../images/2HKNISUDNVAZ.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.property-cover.two-sturgeon {
  background-image: url('../images/005-44-25122-Sturgeon-Rd-5-copy.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.hldr-info-center {
  width: 60%;
}

.property-gallery-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.hldr-menu {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 600px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.sold {
  z-index: 2;
  background-color: #f1320cb5;
  justify-content: flex-end;
  align-items: center;
  padding: 1.5rem 2.5rem;
  font-size: 1.5em;
  font-weight: 900;
  display: flex;
  position: absolute;
  inset: 20% 0% auto auto;
}

html.w-mod-js [data-ix="henderson-logo"] {
  transform: translate(100%);
}

@media screen and (min-width: 1280px) {
  body {
    font-size: 1.25em;
  }

  .wrpr {
    width: 80%;
  }

  .mn-c-body {
    width: 400px;
  }

  .post-card-img {
    height: auto;
  }

  .post-card-body {
    padding: 1.2em 1.5em;
  }

  .pc-botonera {
    margin-top: 2em;
  }

  .image {
    object-fit: cover;
  }

  .hldr-quote-slider {
    width: 550px;
  }

  .quote-text {
    font-size: 70px;
    line-height: .8em;
  }

  .data-label {
    font-size: .9em;
  }

  .data {
    font-size: .7em;
  }

  .hldr-info-center {
    width: 70%;
  }
}

@media screen and (max-width: 991px) {
  body {
    font-size: .9em;
  }

  .wrpr {
    width: 90%;
  }

  .wrpr.narrow {
    max-width: 60%;
  }

  .wrpr.flexed {
    max-width: 86%;
  }

  .wrpr.flexed.form-hldr {
    max-width: 90%;
  }

  .wrpr.full-widht.master-flex.stretch.fix-vh {
    max-width: 100%;
  }

  .section.full-flex-content {
    height: auto;
    min-height: auto;
  }

  .nav-bar.cms-include {
    z-index: 1000;
  }

  .brgr {
    background-color: #0000;
    background-image: url('../images/icons-sprite_1.svg');
    background-position: -80px 0;
    background-size: 160px;
    width: 40px;
    height: 40px;
  }

  .main-nav.show {
    transform: none;
  }

  .mn-c-close {
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    margin-left: 60px;
    display: flex;
  }

  .body-text.big {
    font-size: 1.3em;
  }

  .close {
    background-color: #d94a4a;
    flex-flow: wrap;
    justify-content: flex-end;
    align-items: center;
    display: block;
  }

  .flex-col.form-col {
    width: 100%;
  }

  .flex-col.service-flex {
    width: 50%;
  }

  .ffc-card-text {
    padding-top: 5vh;
    padding-bottom: 5vh;
    position: relative;
  }

  .ic-icon {
    width: 6em;
  }

  .fg-col {
    width: 50%;
  }

  .mov-btn {
    background-color: #0000;
    height: 50px;
    margin-bottom: 10px;
    padding: 0;
    line-height: 50px;
    display: block;
  }

  .pc-time-label, .pc-name-label {
    font-size: .9em;
  }

  .price-card {
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .pc-price-label {
    font-size: 2em;
  }

  .pc-text {
    font-size: .8em;
  }

  .multy-link-card {
    flex: 0 auto;
    width: 33.3333%;
    padding-left: 24px;
    padding-right: 24px;
  }

  .mlc-icon {
    margin-right: 10px;
  }

  .fbpa-container {
    max-width: 70%;
  }

  .cookie-modal {
    z-index: 1000;
    max-width: 80%;
  }

  .rectangle-card, .square-card {
    min-height: 30vh;
  }

  .menu-flex-row {
    font-size: 1.16em;
  }

  .mfg-50 {
    max-width: 100%;
  }

  .spacer {
    height: 8vh;
  }

  .trgr-open.brgr {
    background-image: none;
  }

  .trgr-close.close {
    background-color: #0000;
    width: 40px;
    height: 40px;
  }

  .ftr-block-two {
    grid-template-rows: 1fr auto;
    grid-template-columns: .5fr 1fr 1fr .5fr;
  }

  .mn-c-header {
    width: 50%;
  }

  .nrl-tt {
    font-size: 2.8em;
  }

  .rivers-gate {
    max-width: 200px;
  }

  .hldr-info-center {
    width: 70%;
  }
}

@media screen and (max-width: 767px) {
  body {
    font-size: .9em;
  }

  h1 {
    font-size: 2.6em;
  }

  h2 {
    font-size: 2.2em;
  }

  h4 {
    margin-bottom: 8px;
  }

  .wrpr {
    width: 90%;
  }

  .wrpr.narrow {
    max-width: 70%;
  }

  .desk-nav {
    display: none;
  }

  .mov-nav, .brgr {
    display: block;
  }

  .mn-card {
    padding-top: 5vh;
  }

  .mn-c-close {
    margin-left: 40px;
  }

  .hero-card {
    width: 70%;
  }

  .body-text {
    font-size: 1.2em;
  }

  .btn {
    margin-bottom: 12px;
  }

  .ftr-25 {
    width: 50%;
  }

  .ftr-col {
    width: 90%;
    margin-bottom: 2em;
  }

  .flex-col {
    flex: 0 auto;
    width: 100%;
  }

  .flex-col.bg-side {
    min-height: 360px;
  }

  .flex-col.pad-in._30, .flex-col.pad-in._25 {
    width: 50%;
  }

  .flex-col._50 {
    width: 100%;
    min-height: 10px;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .flex-col._50.bg-side {
    width: 100%;
    height: auto;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .flex-col._50.brief-side {
    min-height: auto;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .flex-col._50.slide-tconainer {
    min-height: 300px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .flex-col._30 {
    flex: 0 auto;
    width: 100%;
  }

  .flex-col._25 {
    width: 50%;
  }

  .flex-col._70, .flex-col.side-bar {
    width: 100%;
  }

  .flex-col.info-side {
    text-align: center;
    width: 100%;
  }

  .image-frame {
    margin-bottom: 40px;
  }

  .ffc-ct-card {
    width: 80%;
  }

  .fg-col.tercio {
    width: 50%;
  }

  .lightbox-card {
    width: 50%;
    margin-bottom: 5px;
  }

  .mov-btn {
    background-color: #0000;
    margin-bottom: 5px;
    font-size: 1.3em;
    display: block;
  }

  .contact-form {
    margin-bottom: 80px;
    padding-right: 0;
  }

  .btn-enviar {
    width: 100%;
  }

  .alert-modal-card {
    min-width: 60%;
    max-width: 70%;
  }

  .secundary-text-smaller {
    font-size: 1em;
  }

  .theme-flex-card {
    width: 50%;
  }

  .hover-card {
    margin-bottom: 40px;
  }

  .pc-time-label, .pc-name-label {
    font-size: .8em;
  }

  .pc-price-label {
    font-size: 1.8em;
  }

  .pc-icon {
    margin-bottom: 10px;
  }

  .multy-link-card {
    width: 50%;
  }

  .fbpa-container {
    max-width: 100%;
  }

  .cookie-modal {
    max-width: 90%;
    font-size: .7em;
    line-height: 1.3em;
  }

  .cka-text {
    max-width: 80%;
  }

  .menu-alert {
    font-size: .8em;
  }

  .rectangle-card {
    width: 49%;
  }

  .square-card {
    width: 49%;
    margin-bottom: 10px;
  }

  .square-card.last {
    width: 100%;
  }

  .mfg-50 {
    max-width: 100%;
    padding-left: 0%;
    padding-right: 0%;
  }

  .rt-menu {
    font-size: 1em;
  }

  .spacer {
    height: 6vh;
  }

  .trgr-open.brgr {
    width: 40px;
  }

  .full-height-flex {
    display: block;
  }

  .contact-brief-card {
    min-height: auto;
  }

  .cbc-body, .cbc-ftr {
    display: none;
  }

  .vh-center-card {
    position: relative;
    top: 0%;
    transform: none;
  }

  .form-hdr.hide {
    display: block;
  }

  .henderson-logo-side {
    width: 120px;
  }

  .nav-trigger {
    width: 35px;
    height: 35px;
    margin-left: 3em;
  }

  .hero-leyen-hldr {
    margin-left: 3em;
  }

  .mn-c-header {
    width: 80%;
  }

  .henderson-logo-mnc {
    width: 200px;
  }

  .hldr-quote-slider {
    width: 350px;
  }

  .quote-text {
    font-size: 3.8em;
  }

  .btn-request {
    width: 140px;
  }

  .alert-card {
    width: 80%;
  }

  .atention-steps {
    width: 90%;
  }

  .ancla-link-ligh {
    margin-left: 15px;
    margin-right: 15px;
  }

  .property-brief-in-hldr {
    width: 100%;
    max-width: 80%;
  }

  .nrl-tt {
    margin-bottom: 10px;
    margin-right: 0;
    font-size: 2.4em;
  }

  .lc-brief-card {
    max-width: 70%;
  }

  .profile {
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
  }

  .profile-brief {
    padding-right: 10%;
  }

  .apoinment-blk {
    text-align: center;
    width: 100%;
  }

  .hldr-info-center {
    width: 90%;
  }
}

@media screen and (max-width: 479px) {
  body {
    font-size: .8em;
  }

  h1 {
    font-size: 2.4em;
  }

  h2 {
    font-size: 2em;
    font-weight: 700;
  }

  .wrpr.narrow {
    max-width: 80%;
  }

  .wrpr.flexed {
    max-width: 92%;
  }

  .section.gris {
    padding-top: 5vh;
    padding-bottom: 5vh;
  }

  .icon-btn {
    display: block;
  }

  .ib-flex-hldr {
    justify-content: center;
  }

  .mn-card {
    width: 100%;
    overflow: hidden;
  }

  .mn-c-close {
    margin-left: 20px;
  }

  .mn-c-body {
    width: 80%;
  }

  .hero-card {
    text-align: center;
    width: 100%;
  }

  .body-text {
    font-size: 1.1em;
  }

  .botonera.on-hero {
    justify-content: center;
  }

  .btn {
    margin-bottom: 20px;
    margin-right: 0;
    display: block;
  }

  .btn.brdr.red {
    width: 100%;
    padding-left: 18px;
    padding-right: 18px;
  }

  .btn.fw-on-mov, .btn.send {
    width: 100%;
  }

  .ftr-last {
    padding-left: 10px;
    padding-right: 10px;
  }

  .txt-logo {
    font-size: 1.7em;
  }

  .ftr-25 {
    width: 100%;
  }

  .ftr-col {
    margin-bottom: 2.5em;
  }

  .flex-col.pad-in._50, .flex-col.pad-in._30, .flex-col._50 {
    width: 100%;
  }

  .flex-col._50.slide-tconainer {
    min-height: 240px;
  }

  .flex-col._30 {
    width: 100%;
  }

  .flex-col._30.fix-ftr {
    width: 50%;
  }

  .flex-col.service-flex {
    width: 80%;
  }

  .flex-col.grid-gallery {
    padding-right: 0;
  }

  .ffc-ct-card {
    width: 92%;
  }

  .fg-col, .fg-col.tercio, .lightbox-card {
    width: 100%;
  }

  .fb13-col-1 {
    width: 100%;
    margin-bottom: 40px;
    padding-right: 0;
  }

  .fb13-col-3 {
    width: 100%;
  }

  .mov-btn {
    height: 30px;
    margin-bottom: 10px;
    font-size: 1em;
    line-height: 30px;
  }

  .input {
    margin-bottom: 20px;
  }

  .amc-body {
    padding-left: 20px;
    padding-right: 20px;
  }

  .amc-ftr {
    padding: 20px;
  }

  .amc-hdr {
    padding: 15px 20px;
    font-size: 1em;
  }

  .alert-modal-card {
    min-width: 80%;
    max-width: 90%;
  }

  .theme-flex-card {
    width: 100%;
  }

  .price-card {
    width: 80%;
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
  }

  .multy-link-card {
    text-align: center;
    justify-content: center;
    padding: 14px;
  }

  .mlc-icon {
    margin-bottom: 10px;
    margin-right: 0;
  }

  .fbpa-card {
    max-width: 80%;
    padding: 30px 30px 20px;
  }

  .menu-row {
    font-size: .7em;
  }

  .mr-platillo-title {
    max-width: 38%;
  }

  .mr-divider {
    flex: 1.5 auto;
  }

  .mr-preciador {
    flex: 0 auto;
    width: 140px;
    margin-top: 0;
  }

  .mr-ftr {
    padding-bottom: 0;
    font-size: 1em;
  }

  .mr-precio {
    width: 70px;
    padding-left: 2px;
    padding-right: 2px;
  }

  .mr-p-t-icon {
    width: 20px;
    height: 20px;
    margin-right: 5px;
    display: none;
  }

  .mr-p-t-text {
    padding-right: 5px;
  }

  .st-text-help {
    font-size: .8em;
    line-height: 1.4em;
  }

  .rectangle-card, .square-card {
    width: 100%;
    min-height: 200px;
    margin-left: 0%;
    margin-right: 0%;
  }

  .menu-flex-row {
    font-size: 1.2em;
  }

  .messenger-bar {
    margin-bottom: 20px;
  }

  .call-btn {
    background-position: 50%;
    background-size: 25px;
    width: 30px;
    height: 30px;
    padding-left: 5px;
    padding-right: 5px;
  }

  .cb-txt {
    display: none;
  }

  .sys-frame {
    margin-top: 3em;
    margin-bottom: 3em;
  }

  .bold {
    font-size: 1.5em;
  }

  .spacer {
    height: 4vh;
  }

  .vh-center-card {
    padding-left: 10%;
    padding-right: 10%;
  }

  .form-botonera {
    flex-direction: column-reverse;
    display: flex;
  }

  .henderson-logo-side {
    width: 60px;
    margin-right: -4px;
    padding-right: 0;
  }

  .nav-trigger, .hero-leyen-hldr {
    margin-left: 2em;
  }

  .mn-c-header {
    padding-bottom: 10px;
  }

  .henderson-logo-mnc {
    width: 130px;
  }

  .quote-slider {
    padding-bottom: 0;
  }

  .hldr-quote-slider {
    width: 240px;
  }

  .quote-text {
    margin-bottom: 70px;
    font-size: 3em;
  }

  .henderson-sign {
    font-size: 1em;
  }

  .btn-request {
    width: 160px;
  }

  .alert-card {
    width: 80%;
  }

  .mask {
    padding-bottom: 40px;
  }

  .hndrs {
    margin-top: -70px;
    margin-bottom: 60px;
  }

  .legal-text-l {
    line-height: 1.5em;
  }

  .ancla-link-ligh {
    width: 10px;
    height: 10px;
    margin-left: 10px;
    margin-right: 10px;
  }

  .ancla-link-ligh.w--current {
    border-radius: 7.5px;
    width: 15px;
    height: 15px;
  }

  .pc-birief-card {
    width: 80%;
  }

  .property-title {
    font-size: 2.6em;
  }

  .gallery-square {
    width: 50%;
  }

  .lot-card {
    margin-bottom: 40px;
  }

  .lc-brief-card {
    max-width: 100%;
    position: relative;
  }

  .lc-image {
    padding-top: 0%;
    padding-left: 0%;
  }

  .profile-brief {
    padding-left: 0%;
    padding-right: 0%;
  }

  .contact-tabs-element {
    height: 1200px;
  }

  .info-datos-blk {
    padding-left: 0;
  }

  .data-label {
    width: 100%;
    margin-bottom: 8px;
  }

  .hldr-menu {
    width: 100%;
  }

  .sold {
    padding: 1rem 2rem;
    top: 10%;
  }
}


