:root {
  --white-smoke: #f4f4f4;
  --dim-grey: #666;
  --gold: #efc63e;
  --black-bg: #181818;
  --white: white;
  --black: #151516;
  --orange-red: #e74d0c;
}

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

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 12px;
  height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-form-formradioinput--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 12px;
  height: 12px;
}

.w-form-formradioinput--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-form-formradioinput--inputType-custom.w--redirected-checked {
  border-width: 4px;
  border-color: #3898ec;
}

body {
  color: #333;
  font-family: Lato, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 4rem;
  font-weight: 700;
  line-height: 120%;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3rem;
  font-weight: 700;
  line-height: 120%;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Playfair Display, sans-serif;
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 140%;
}

h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Playfair Display, sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 140%;
}

h5 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: .875rem;
  font-weight: 700;
  line-height: 1.5;
}

h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: .75rem;
  font-weight: 700;
  line-height: 1.5;
}

p {
  color: #666;
  margin-bottom: 0;
}

ul, ol {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 1.25rem;
}

li {
  margin-bottom: .25rem;
}

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

label {
  margin-bottom: .25rem;
  font-weight: 500;
}

blockquote {
  border-left: .25rem solid #e2e2e2;
  margin-bottom: 0;
  padding: .75rem 1.25rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

figure {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

figcaption {
  text-align: center;
  margin-top: .25rem;
}

.form-message-success {
  padding: 1.25rem;
}

.z-2 {
  z-index: 2;
  position: relative;
}

.text-color-black {
  color: #000;
}

.fs-styleguide_row {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: auto;
  grid-auto-flow: column;
  justify-content: start;
  display: grid;
}

.fs-styleguide_row.is-for-social-icons {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
}

.text-style-strikethrough {
  text-decoration: line-through;
}

.fs-styleguide_3-col {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.text-weight-semibold {
  font-weight: 600;
}

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

.max-width-full {
  width: 100%;
  max-width: none;
}

.layer {
  justify-content: center;
  align-items: center;
  position: absolute;
  inset: 0%;
}

.show {
  display: block;
}

.fs-styleguide_color-sample {
  background-color: #f5f5f5;
  margin-top: .5rem;
  padding: 5rem;
}

.fs-styleguide_color-sample.is-background2 {
  background-color: var(--white-smoke);
}

.fs-styleguide_color-sample.is-text-color {
  background-color: var(--dim-grey);
}

.fs-styleguide_color-sample.is-secondary {
  background-color: var(--gold);
}

.fs-styleguide_color-sample.is-background1 {
  background-color: var(--black-bg);
}

.fs-styleguide_color-sample.is-others {
  background-color: var(--white);
}

.fs-styleguide_color-sample.is-primary {
  background-color: var(--black);
}

.overflow-hidden {
  overflow: hidden;
}

.global-styles {
  display: block;
  position: fixed;
  inset: 0% auto auto 0%;
}

.icon-1x1-small {
  width: 2rem;
  height: 2rem;
}

.button-cta {
  color: #fff;
  text-align: center;
  background-color: #181818;
  border-radius: 0;
  justify-content: center;
  align-items: center;
  padding: 1rem 2rem;
  font-weight: 400;
  transition: all .2s;
}

.button-cta:hover {
  background-color: var(--gold);
}

.heading-medium {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}

.heading-large {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

.text-weight-bold {
  font-weight: 700;
}

.text-size-large {
  font-size: 1.5rem;
  line-height: 150%;
}

.icon-medium {
  height: 3rem;
}

.text-size-regular {
  font-size: 1rem;
}

.text-weight-normal {
  font-weight: 400;
}

.fs-styleguide_section {
  grid-column-gap: 4rem;
  grid-row-gap: 2.5rem;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: grid;
}

.text-align-center {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.text-align-center.is-horizontal {
  flex-direction: row;
}

.z-1 {
  z-index: 1;
  position: relative;
}

.icon-small {
  height: 2rem;
}

.show-mobile-portrait {
  display: none;
}

.text-style-italic {
  font-style: italic;
}

.background-color-grey {
  background-color: #a8c1d833;
}

.hide {
  display: none;
}

.fs-styleguide_section-type {
  color: #fff;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #000;
  padding: 1.25rem;
  font-size: 1rem;
  font-weight: 600;
}

.text-size-medium {
  font-size: 1.25rem;
}

.text-align-left {
  text-align: left;
}

.text-weight-xbold {
  font-weight: 800;
}

.text-style-link {
  text-decoration: underline;
}

.form-wrapper {
  margin-bottom: 0;
}

.text-style-muted {
  opacity: .6;
}

.text-size-small {
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 700;
  display: none;
}

.text-rich-text h1 {
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}

.text-rich-text h2, .text-rich-text h3, .text-rich-text h4 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.text-rich-text h5 {
  margin-top: 1.25rem;
  margin-bottom: .75rem;
}

.text-rich-text h6 {
  margin-top: 1.25rem;
  margin-bottom: .5rem;
}

.text-rich-text p, .text-rich-text blockquote, .text-rich-text ul {
  margin-bottom: .75rem;
}

.max-width-xlarge {
  width: 100%;
  max-width: 64rem;
}

.icon-large {
  height: 4rem;
}

.max-width-medium {
  width: 100%;
  max-width: 32rem;
}

.form-radio {
  flex-direction: row;
  align-items: center;
  margin-bottom: .5rem;
  padding-left: 0;
  display: flex;
}

.heading-xlarge {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
}

.max-width-xsmall {
  width: 100%;
  max-width: 16rem;
}

.form-input {
  background-color: #0000;
  min-height: 3rem;
  margin-bottom: .75rem;
  padding: .5rem 1rem;
}

.form-input.is-text-area {
  min-height: 8rem;
  padding-top: .75rem;
}

.max-width-xxsmall {
  width: 100%;
  max-width: 12rem;
}

.text-size-tiny {
  font-size: .75rem;
}

.icon-1x1-medium {
  width: 3rem;
  height: 3rem;
}

.form-checkbox-icon {
  border-radius: .125rem;
  width: .875rem;
  height: .875rem;
  margin: 0 .5rem 0 0;
}

.form-checkbox-icon.w--redirected-checked {
  background-size: 90%;
  border-radius: .125rem;
  width: .875rem;
  height: .875rem;
  margin: 0 .5rem 0 0;
}

.form-checkbox-icon.w--redirected-focus {
  border-radius: .125rem;
  width: .875rem;
  height: .875rem;
  margin: 0 .5rem 0 0;
  box-shadow: 0 0 .25rem 0 #3898ec;
}

.container-large {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.max-width-xxlarge {
  width: 100%;
  max-width: 80rem;
}

.background-color-black {
  color: #f5f5f5;
  background-color: #000;
}

.text-style-quote {
  border-left: .25rem solid #e2e2e2;
  margin-bottom: 0;
  padding: .75rem 1.25rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

.fs-styleguide_classes {
  display: none;
}

.align-center {
  margin-left: auto;
  margin-right: auto;
}

.fs-styleguide_1-col {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.fs-styleguide_1-col.gap-medium {
  grid-row-gap: 2.5rem;
}

.spacing-clean {
  margin: 0;
  padding: 0;
}

.page-padding {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.fs-styleguide_2-col {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  grid-template-rows: auto;
  grid-template-columns: auto auto;
  grid-auto-columns: 1fr;
  justify-content: start;
  display: grid;
}

.text-align-right {
  text-align: right;
}

.show-tablet {
  display: none;
}

.max-width-large {
  text-align: center;
  width: 100%;
  max-width: 48rem;
}

.text-color-grey {
  color: gray;
}

.form-radio-icon {
  width: .875rem;
  height: .875rem;
  margin-top: 0;
  margin-left: 0;
  margin-right: .5rem;
}

.form-radio-icon.w--redirected-checked {
  border-width: .25rem;
  width: .875rem;
  height: .875rem;
}

.form-radio-icon.w--redirected-focus {
  width: .875rem;
  height: .875rem;
  box-shadow: 0 0 .25rem 0 #3898ec;
}

.show-mobile-landscape {
  display: none;
}

.background-color-white {
  background-color: #fff;
}

.max-width-small {
  width: 100%;
  max-width: 20rem;
}

.icon-1x1-large {
  width: 4rem;
  height: 4rem;
}

.form-checkbox {
  flex-direction: row;
  align-items: center;
  margin-bottom: .5rem;
  padding-left: 0;
  display: flex;
}

.form-message-error {
  margin-top: .75rem;
  padding: .75rem;
}

.utility_component {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  display: flex;
}

.utility_form-block {
  text-align: center;
  flex-direction: column;
  max-width: 20rem;
  display: flex;
}

.utility_form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.utility_image {
  margin-bottom: .5rem;
  margin-left: auto;
  margin-right: auto;
}

.container-medium {
  width: 100%;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}

.container-small {
  width: 100%;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.button-white {
  z-index: 1;
  background-color: var(--white);
  color: var(--black);
  text-align: center;
  border: 0 #0000;
  border-radius: 0;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1rem 2.5rem;
  font-weight: 400;
  transition: all .2s;
  position: relative;
}

.button-white:hover {
  background-color: var(--gold);
  color: var(--white);
}

.button-text {
  color: #386eec;
  text-align: center;
  background-color: #0000;
  justify-content: center;
  align-items: center;
  padding: .75rem 1.25rem;
  font-weight: 600;
}

.margin-tiny {
  margin: .125rem;
}

.margin-xxsmall {
  margin: .25rem;
}

.margin-xsmall {
  margin: .5rem;
}

.margin-small {
  margin: 1rem;
}

.margin-medium {
  margin: 2rem;
}

.margin-large {
  margin: 3rem;
}

.margin-xlarge {
  margin: 4rem;
}

.margin-xxlarge {
  margin: 5rem;
}

.margin-huge {
  margin: 6rem;
}

.margin-xhuge {
  margin: 8rem;
}

.margin-xxhuge {
  margin: 12rem;
}

.margin-0 {
  margin: 0;
}

.padding-0 {
  padding: 0;
}

.padding-tiny {
  padding: .125rem;
}

.padding-xxsmall {
  padding: .25rem;
}

.padding-xsmall {
  padding: .5rem;
}

.padding-small {
  padding: 1rem;
}

.padding-medium {
  padding: 2rem;
}

.padding-large {
  padding: 3rem;
}

.padding-xlarge {
  padding: 4rem;
}

.padding-xxlarge {
  padding: 5rem;
}

.padding-huge {
  padding: 6rem;
}

.padding-xhuge {
  padding: 8rem;
}

.padding-xxhuge {
  padding: 12rem;
}

.text-style-allcaps {
  text-transform: uppercase;
}

.margin-top {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-bottom {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-bottom.margin-medium {
  margin-bottom: 2rem;
}

.margin-bottom.margin-medium.is-footer {
  margin-bottom: 1rem;
}

.margin-left {
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
}

.margin-right {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
}

.margin-vertical {
  margin-left: 0;
  margin-right: 0;
}

.margin-horizontal {
  margin-top: 0;
  margin-bottom: 0;
}

.padding-top {
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

.padding-bottom {
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}

.padding-left {
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 0;
}

.padding-right {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
}

.padding-vertical {
  padding: 4rem 2.5rem;
}

.padding-vertical.is-especial {
  padding-top: 6rem;
  padding-bottom: 4rem;
}

.padding-horizontal {
  padding-top: 0;
  padding-bottom: 0;
}

.overflow-scroll {
  overflow: scroll;
}

.overflow-auto {
  overflow: auto;
}

.fs-styleguide_background-spacer {
  height: 5rem;
}

.text-style-nowrap {
  white-space: nowrap;
}

.heading-small {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
}

.heading-xsmall {
  font-size: .875rem;
  font-weight: 700;
  line-height: 1.5;
}

.text-weight-medium {
  font-weight: 500;
}

.fs-styleguide_version-details {
  z-index: 5;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
}

.fs-styleguide_page-header {
  border-bottom: 2px solid #e6e6e6;
  margin-bottom: 2rem;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.nav-component {
  background-color: var(--white);
  width: 100%;
  position: sticky;
  top: 0;
}

.nav-container {
  align-items: center;
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.nav-menu-wrapper {
  flex: 1;
  justify-content: space-between;
  align-items: center;
  margin-left: 5rem;
  padding-top: .75rem;
  padding-bottom: .75rem;
  padding-left: 2rem;
  display: flex;
}

.nav-link {
  border-style: none;
  border-width: 1px 1px 0;
  border-color: black black var(--black);
  color: var(--black);
  padding: 1rem 1.5rem .9rem;
  transition: all .3s;
}

.nav-link:hover {
  color: var(--gold);
  border: 0 #000;
}

.section-header {
  background-image: linear-gradient(#00000080, #00000080), url('../images/N.R-15.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  justify-content: center;
  align-items: center;
  display: flex;
}

.grid-header-component {
  grid-column-gap: 29px;
  grid-row-gap: 29px;
  grid-template-rows: auto;
  grid-template-columns: 1fr .75fr;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.home-header-component {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  max-width: 70%;
  display: flex;
}

.tag-title {
  color: var(--white);
  text-transform: uppercase;
  font-weight: 700;
}

.tag-title.is-gold {
  color: var(--gold);
  letter-spacing: .25rem;
  margin-bottom: 20px;
}

.margim-1rem {
  text-align: left;
  margin: 0 0 1rem;
}

.margim-1rem.flex {
  align-items: center;
  display: flex;
}

.margim-1rem.is-align {
  margin-top: 0;
}

.tag-line {
  background-color: #00b194;
  width: 50px;
  height: 4px;
  margin-left: 5px;
}

.tag-line.is-gallery {
  margin-left: 0;
  margin-right: .75rem;
}

.tag-line.is-left {
  margin-left: .75rem;
}

.heading1 {
  color: var(--white);
}

.heading1.regular {
  color: #fefefe;
  text-align: center;
  font-size: 3rem;
  font-weight: 400;
}

.bold-text {
  color: var(--gold);
}

.margim-2rem {
  margin-bottom: 2rem;
}

.margim-2rem.is-medium {
  width: 67%;
}

.about-wrapper {
  justify-content: center;
  align-items: center;
  margin-left: -.75rem;
  margin-right: -.75rem;
  display: flex;
}

.about-content-image {
  width: 100%;
  max-width: 50%;
  padding-left: .75rem;
  padding-right: .75rem;
  position: relative;
}

.about-content-text {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: column;
  width: 100%;
  max-width: 50%;
  padding: 1rem 2%;
  display: flex;
}

.margim-0-3rem {
  margin-bottom: -.3rem;
}

.margim-2-5rem {
  margin-bottom: 2.5rem;
}

.margim-2-5rem.is-min-width {
  width: 90%;
  margin-bottom: 2rem;
}

.margim-2-5rem.is-min-width.is-especial {
  margin-bottom: 1rem;
}

.section-gallery {
  background-color: var(--black-bg);
}

.gallery-title {
  color: var(--white);
  font-family: Playfair Display, sans-serif;
  font-weight: 700;
}

.slider-gallery-carroussel {
  background-color: #0000;
  width: 100%;
  height: auto;
  padding-bottom: 2.5rem;
  overflow: hidden;
}

.carroussel-slide-mask {
  width: 100%;
  max-width: 33.33%;
  overflow: visible;
}

.carroussel-slide {
  margin-left: .75rem;
  margin-right: .75rem;
}

.image-gallery {
  object-fit: fill;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.card-gallery {
  object-fit: fill;
  height: 60vh;
  overflow: hidden;
}

.left-arrow {
  background-color: var(--gold);
  width: 2.5rem;
  height: 2.5rem;
  inset: 0% auto auto .7rem;
}

.icon-arrow {
  width: 12px;
  margin-bottom: 26px;
}

.right-arrow {
  background-color: var(--gold);
  width: 2.5rem;
  height: 2.5rem;
  inset: 0% auto auto 3.1rem;
}

.slide-nav {
  justify-content: flex-end;
  margin-left: auto;
  margin-right: auto;
  padding-top: 1rem;
  padding-right: 1.5rem;
  display: flex;
}

.grid-differentials-component {
  grid-column-gap: 1rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto auto auto auto;
}

.grid-differentials-component.is-mobile {
  display: none;
}

.differentials-content-image {
  height: 29rem;
  padding: 1rem 2%;
}

.image-differentials {
  object-fit: cover;
  height: 100%;
}

.differentials-content-text {
  padding: .5rem 2% 1rem;
}

.bold-text-2 {
  font-weight: 400;
}

.paragraph-differentials {
  font-size: 1.25rem;
  line-height: 1.4;
}

.differential-title {
  font-family: Playfair Display, sans-serif;
}

.section-plants {
  background-color: var(--black-bg);
}

.plants-wrapper {
  flex-wrap: wrap;
  width: 100%;
  display: block;
}

.plants-tab-menu {
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 3.5rem;
}

.plants-tab-link {
  color: var(--white);
  letter-spacing: 4px;
  background-color: #0000;
  min-height: 26px;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
  padding: 0 0 5px;
  transition: all .3s;
}

.plants-tab-link:hover {
  border-bottom: 1px solid var(--gold);
  color: var(--gold);
}

.plants-tab-link.w--current {
  color: var(--white);
  background-color: #0000;
  min-height: 26px;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
  padding: 0 0 5px;
  transition: all .3s;
}

.plants-tab-link.w--current:hover {
  color: var(--gold);
}

.plants-tabs-mask {
  overflow: visible;
}

.plants-columns {
  justify-content: center;
  align-items: flex-start;
  margin-left: 0;
  margin-right: 0;
  display: flex;
}

.plants-col {
  width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
  position: relative;
}

.content-image {
  width: 32.8rem;
  padding: 1rem;
}

.content-image.is-test {
  display: none;
}

.plants-title {
  color: var(--white);
  font-family: Playfair Display, sans-serif;
  font-weight: 700;
}

.plants-subtitle {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.5;
}

.localization-title {
  font-family: Playfair Display, sans-serif;
  font-size: 3rem;
  font-weight: 400;
}

.localization-content-wraper {
  background-color: var(--white-smoke);
}

.grid-localization-component {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.25fr;
}

.localization-content-text {
  padding: 1.5rem;
}

.google-maps-wrapper {
  max-height: 100vh;
}

.map-2 {
  height: 100vh;
}

.section-stage {
  background-color: var(--black-bg);
}

.grid-stage-component {
  grid-template-rows: 35rem;
  grid-template-columns: .5fr 1fr;
}

.stage-content-text {
  padding: 1rem 2.5rem 1rem 1.5rem;
}

.stage-title {
  color: var(--white);
}

.stage {
  margin-bottom: .2rem;
  padding-left: 0;
  padding-right: .75rem;
  overflow: hidden;
}

.stage-value {
  margin-bottom: .5rem;
  display: flex;
}

.stage-label {
  color: var(--white);
  width: 30%;
  font-size: 1rem;
}

.stage-percent {
  align-items: center;
  width: 100%;
  padding-left: .5rem;
  display: flex;
}

.number-percent {
  color: var(--white);
}

.stage-line {
  background-color: var(--white);
  min-width: auto;
  max-width: 1199px;
  min-height: 10px;
}

.stage-line.active {
  background-color: var(--gold);
  width: 0%;
  min-width: 100%;
  margin-top: -10px;
  margin-bottom: 1.25rem;
}

.stage-line.active.is-fundacao {
  width: 81%;
  min-width: 100%;
}

.stage-line.active._86, .stage-line.active._5, .stage-line.active._2 {
  min-width: 100%;
}

.padding-vertical-2 {
  padding-left: 0;
  padding-right: 0;
}

.social-icon {
  color: #333;
  width: 1.5rem;
  height: 1.5rem;
}

.footer_socials-wrapper {
  grid-column-gap: .75rem;
  grid-row-gap: 0rem;
  white-space: normal;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  place-items: start;
  display: grid;
}

.footer_bottom-wrapper {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.footer_link {
  color: #333;
  border-bottom: 1px solid #0000;
  width: auto;
  min-width: 25%;
  padding-top: .5rem;
  padding-bottom: .5rem;
  font-size: .875rem;
  font-weight: 400;
  text-decoration: none;
  transition: all .45s cubic-bezier(.215, .61, .355, 1);
}

.footer_link:hover {
  border-bottom-color: #000;
}

.footer3_logo-link {
  float: none;
  padding-left: 19px;
}

.footer_column {
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 100%;
  grid-auto-columns: 100%;
  place-items: flex-start start;
  display: flex;
}

.footer_top-wrapper {
  grid-column-gap: 4vw;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
}

.line-divider {
  background-color: #0000;
  width: 100%;
  height: 1px;
}

.footer_social-link {
  align-items: center;
  font-size: 14px;
  text-decoration: none;
  display: flex;
}

.footer_credit-text {
  font-size: .875rem;
}

.footer_column-layout {
  grid-column-gap: 3vw;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  align-items: start;
}

.footer-block-sliding {
  background-color: #000;
  width: 100%;
  height: 100%;
  display: none;
  position: absolute;
  inset: auto 0% 0%;
}

.footer_component {
  border-top: 1px solid #000;
  position: relative;
}

.image-2 {
  margin-left: -.9rem;
}

.home-header-form {
  background-color: var(--white);
  border-radius: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: auto;
  max-width: 40%;
  height: auto;
  padding: 30px;
  display: flex;
}

.bold-text-4 {
  font-weight: 400;
}

.localization-points-wrapper {
  margin-bottom: 2rem;
}

.localization-points-content {
  align-items: center;
  display: flex;
}

.image-points {
  padding-right: .5rem;
}

.text-points {
  color: var(--black);
  font-size: 1.2rem;
  font-weight: 400;
}

.margim-bottom-1-5rem {
  margin-bottom: 1.5rem;
}

.text-header-subtitle {
  color: var(--white);
  text-align: center;
  font-size: 1rem;
}

.grid-differentials-feature {
  grid-column-gap: 10px;
  grid-row-gap: 15px;
  grid-template-rows: auto auto auto;
  grid-template-columns: auto;
  margin-bottom: 2rem;
}

.differentials-feature {
  align-items: center;
  display: flex;
}

.text-features {
  color: #151516cc;
  font-size: 1.1rem;
  font-weight: 700;
}

.image-differentials-feature {
  margin-right: .75rem;
}

.image-differentials-feature.is-image {
  width: 48px;
  height: 48px;
}

.html-embed {
  display: block;
}

.grid-home-corporate {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto;
}

.paragraph-corporate {
  font-size: 1.25rem;
  line-height: 1.4;
}

.margim-bottom-4rem {
  margin-bottom: 4rem;
}

.grid-corporate-wrapper {
  grid-column-gap: 1.75rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
}

.corporate-content-title {
  color: var(--orange-red);
  font-size: 1.4rem;
  font-weight: 700;
}

.text-block-2 {
  color: var(--dim-grey);
  font-size: 1rem;
  line-height: 1.4;
}

.corporate-content-image {
  position: relative;
}

.corporate-image-wrapper {
  height: 30rem;
  position: relative;
  overflow: hidden;
}

.image-corporate {
  object-fit: cover;
  object-position: 50% 34%;
  width: 100%;
  height: 100%;
  position: static;
}

.image-overlay-effect {
  background-color: var(--orange-red);
  opacity: .62;
  width: 8rem;
  position: absolute;
  inset: 0% auto 0% 0%;
}

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

.lightbox-__plant {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.image_content-plant {
  text-align: center;
  width: 100%;
}

.hover-overlay {
  background-color: #15151666;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-top: auto;
  margin-bottom: auto;
  display: flex;
  position: absolute;
  inset: 0%;
}

.section-3d {
  background-color: var(--black-bg);
}

._3d-title {
  color: var(--white);
  font-family: Playfair Display, sans-serif;
}

.grid-2-3d {
  grid-column-gap: 1.25rem;
  grid-template-rows: auto;
  display: block;
}

.content-3d-video {
  min-height: 33rem;
  position: relative;
}

.html-embed-6 {
  height: 155.2px;
}

.link-button-3d {
  flex-direction: column;
  align-items: center;
  display: block;
  position: absolute;
  inset: 2rem auto auto 2rem;
}

.playbutton {
  border: 3px none var(--gold);
  background-color: var(--gold);
  border-radius: 50%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 5rem;
  height: 5rem;
  transition: all .2s cubic-bezier(.215, .61, .355, 1);
  display: flex;
  position: relative;
  top: 0;
  left: 0;
}

.playbutton:hover {
  background-color: #0000;
  border-style: solid;
  display: flex;
}

.play-icon {
  text-align: left;
  margin-left: .5rem;
}

.content-3d-wrapper {
  width: 100%;
  margin-top: 1.25rem;
  display: none;
  position: relative;
}

.html-embed-15 {
  width: 100%;
  margin-top: 5px;
}

.content_text-wrap {
  text-align: left;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin-left: 0;
  font-size: 12px;
  display: flex;
}

.dropdown_btn {
  z-index: 1000;
  background-color: #000;
  border-radius: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  padding: 10px;
  transition: background-color .2s cubic-bezier(.215, .61, .355, 1);
  display: flex;
  position: fixed;
  inset: auto 2rem 7rem auto;
}

.dropdown_btn:hover {
  background-color: #4c8869;
}

.dropdown_btn.is-ecoville:hover {
  background-color: var(--gold);
}

.dropdown_btn.is-ecoville.is-invisible {
  display: none;
}

.dropdown-toggle-2 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
}

.text-btn-dropdown {
  margin-top: -10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
}

.button-text-2 {
  z-index: 25;
  color: #fff;
  text-align: center;
  letter-spacing: 5px;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
  display: none;
  position: relative;
}

.link-contact {
  text-align: left;
  margin-left: 1px;
  padding-left: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  transition: color .2s cubic-bezier(.215, .61, .355, 1);
}

.link-contact:hover {
  color: var(--gold);
}

.content-dropdown-wrap {
  background-color: #f1f1f1;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  min-width: 300px;
  margin-bottom: 8px;
  padding: 10px;
  display: flex;
}

.dropdown-list_btn {
  top: 39px;
}

.dropdown-list_btn.w--open {
  background-color: #0000;
  border-radius: 10px;
  flex-direction: column;
  align-items: center;
  min-width: 280px;
  padding: 30px 35px;
  display: flex;
  top: -291px;
  right: 20px;
}

.image-63 {
  width: 48px;
  height: 48px;
}

.btn-icon {
  width: 2rem;
  height: 2rem;
  margin-left: 46px;
  margin-right: 17px;
}

.slide-1-4 {
  background-image: url('../images/nr4.jpg');
  background-position: 50% 100%;
  background-size: cover;
}

.slide-est-gio-de-obras_geral {
  height: 80%;
  display: block;
}

.slide_ecoville_1 {
  background-image: url('../images/SOU-Ecoville_1.jpg');
  background-position: 50% 100%;
  background-size: cover;
}

.color-primary {
  color: #807039;
  font-size: 20px;
}

.color-primary.stage-percentage {
  color: #080808;
  font-family: Droid Sans, sans-serif;
}

.color-primary.stage-percentage.color-getulio {
  color: #2f5843;
}

.stage-label-2 {
  color: #333;
  width: 30%;
  font-size: 1.5rem;
}

.slide-est-gio-de-obra-9.estagio-de-obra-3-getulio {
  background-image: url('../images/N-1.jpg');
  background-position: 50% 0;
  background-size: 850px;
}

.slide-1-2 {
  background-image: url('../images/02-02.jpg');
  background-position: 50% 100%;
  background-size: cover;
}

.number-percent-2 {
  color: #333;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.3;
}

.slide-nav-8 {
  justify-content: flex-end;
  font-size: 10px;
  display: flex;
  bottom: -49px;
}

.slide-1-3 {
  background-image: url('../images/03-03.jpg');
  background-position: 50% 100%;
  background-size: cover;
}

.div-block-173 {
  grid-column-gap: 30px;
  grid-row-gap: 20px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-left: 110px;
  display: grid;
}

.div-block-173.estagio-de-obra-getulio {
  display: none;
}

.slide_ecoville_2 {
  background-image: url('../images/SOU-Ecoville_2.jpg');
  background-position: 50% 100%;
  background-size: cover;
}

.stage-content {
  padding: 0 2.5rem 1rem 6.5rem;
}

.stage-title-2 {
  color: #2f5843;
}

.stage-title-2.is-remove {
  display: none;
}

.div-block-172 {
  background-color: #e7e7e7;
  border-radius: 100px;
  height: 1px;
}

.div-block-172.status-acab-interno-getulio {
  background-color: #2f5843;
  width: 89%;
  height: 4px;
}

.div-block-172.status-alvenaria {
  width: 100%;
}

.div-block-172.barra-de-status-cima {
  background-color: #2f5843;
  width: 100%;
  height: 4px;
}

.div-block-172.barra-de-status-cima.status-acabemento {
  width: 95%;
}

.div-block-172.barra-de-status-cima.status-estrutura-getulio, .div-block-172.barra-de-status-cima.barra-getulio {
  background-color: #2f5843;
  width: 100%;
}

.div-block-231 {
  grid-column-gap: 60px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr .75fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.slide-est-gio-de-obra-3.estagio-de-obra-2-getulio {
  background-image: url('../images/GET-JAN-02.jpg');
  background-position: 50%;
  background-size: 850px;
}

.slide-est-gio-de-obra-3.estagio-de-obra-3-getulio {
  background-image: url('../images/GET-JAN-03.jpg');
  background-position: 50% 0;
  background-size: 750px;
}

.slide-est-gio-de-obra-3.estagio-de-obra-1-getulio {
  background-image: url('../images/GET-JAN-01.jpg');
  background-position: 50% 55%;
  background-size: 850px;
}

.div-block-175 {
  background-color: #807039;
  margin-bottom: 30px;
  padding-top: 25px;
  padding-bottom: 25px;
  padding-left: 110px;
}

.div-block-175.background-primary {
  background-color: #b90a57;
}

.div-block-175.background-primary.bg-getulio {
  background-color: #2f5843;
  margin-bottom: 0;
}

.div-block-169 {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  display: flex;
}

.slide_ecoville_3 {
  background-image: url('../images/SOU-Ecoville_3.jpg');
  background-position: 50% 100%;
  background-size: cover;
}

.slide-est-gio-de-obra-4-copia.estagio-de-obra-3-getulio {
  background-image: url('../images/N.R71.jpg');
  background-position: 50%;
  background-size: 850px;
}

.heading-49 {
  color: #fff;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 36px;
}

.div-block-174 {
  margin-bottom: 120px;
}

.section-3d-2 {
  padding-top: 80px;
  padding-bottom: 80px;
  padding-right: 110px;
  display: block;
}

.slide-1 {
  background-image: url('../images/01-01.jpg');
  background-position: 50% 100%;
  background-size: cover;
}

.slide-est-gio-de-obra-5-copia.estagio-de-obra-3-getulio {
  background-image: url('../images/N.R61.jpg');
  background-position: 50% 0;
  background-size: 850px;
}

.icon-8 {
  color: #000;
  font-size: 14px;
}

.seta-slide-estagio-de-obras {
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  margin-left: -20px;
  margin-right: -20px;
}

.seta-slide-estagio-de-obras:hover {
  background-color: #000;
  border-color: #000;
}

.seta-slide-estagio-de-obras.seta-estagio-de-obra-maison-ag {
  border-color: #14696b;
}

.seta-slide-estagio-de-obras.seta-estagio-de-obra-maison-ag:hover {
  background-color: #14696b;
}

.text-block-88 {
  margin-left: 15px;
  font-size: 15px;
  line-height: 26px;
}

.stage-line-2 {
  background-color: #fff;
  border: 1px #000;
  border-radius: 0;
  min-width: auto;
  max-width: 1199px;
  min-height: 10px;
  box-shadow: 1px 0 2px #0006;
}

.stage-line-2.active {
  background-color: #2f5843;
  width: 12%;
  margin-top: -10px;
  margin-bottom: 1.25rem;
}

.slide-est-gio-de-obra-6-copia.estagio-de-obra-3-getulio {
  background-image: url('../images/N.R62.jpg');
  background-position: 50% 0;
  background-size: 850px;
}

.div-block-195 {
  align-items: center;
  display: flex;
}

.slide-2 {
  background-image: url('../images/SOU-Ecoville_1_JAN.jpg');
  background-position: 50% 100%;
  background-size: cover;
}

.slide-3 {
  background-image: url('../images/SOU-Ecoville_2_JAN.jpg');
  background-position: 50% 100%;
  background-size: cover;
}

.slide-4 {
  background-image: url('../images/SOU-Ecoville_3_JAN.jpg');
  background-position: 50% 100%;
  background-size: cover;
}

.slide-5 {
  background-image: url('../images/SOU-Ecoville_1_fev.jpg');
  background-position: 50% 100%;
  background-size: cover;
}

.slide-6 {
  background-image: url('../images/SOU-Ecoville_2_fev.jpg');
  background-position: 50% 100%;
  background-size: cover;
}

.slide-7 {
  background-image: url('../images/SOU-Ecoville_3_fev.jpg');
  background-position: 50% 100%;
  background-size: cover;
}

.slide-1-5 {
  background-image: url('../images/Marco_SOU-Ecoville_1.jpg');
  background-position: 50% 100%;
  background-size: cover;
}

.slide-1-6 {
  background-image: url('../images/Marco_SOU-Ecoville_2.jpg');
  background-position: 50% 100%;
  background-size: cover;
}

.contact-bar {
  z-index: 1000;
  color: red;
  object-fit: contain;
  background-color: #000;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  flex-wrap: nowrap;
  place-content: stretch flex-end;
  align-items: center;
  width: auto;
  height: 210px;
  padding: 20px 15px;
  display: flex;
  position: fixed;
  inset: 25% 0% 0% auto;
}

.div-block-2 {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  display: grid;
}

.block-contact-bar {
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.subshare {
  z-index: 100;
  text-align: right;
  background-color: #1d1d1d;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  width: 230px;
  height: 210px;
  padding-top: 40px;
  padding-right: 40px;
  font-size: 16px;
  transition: right .2s;
  position: fixed;
  top: 25%;
  right: 45px;
}

.div-block-232 {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  display: grid;
}

.slide-8 {
  background-image: url('../images/01.png');
  background-position: 0 0;
  background-size: cover;
}

.slide-1-7 {
  background-image: url('../images/Captura-de-Tela-2023-05-19-às-17.00.32.png');
  background-position: 50% 100%;
  background-size: cover;
}

.slide-9 {
  background-image: url('../images/SOU-Ecoville_1_MAIO.png');
  background-position: 50% 100%;
  background-size: cover;
}

.slide-10 {
  background-image: url('../images/SOU-Ecoville_2_MAIO.png');
  background-position: 50% 100%;
  background-size: cover;
}

.slide-11 {
  background-image: url('../images/JUNHO_SOU-Ecoville_2.png');
  background-position: 0 100%;
  background-size: cover;
}

.slide-12 {
  background-image: url('../images/JUNHO_SOU-Ecoville_1.png');
  background-position: 0 100%;
  background-size: cover;
}

.slide-13 {
  background-image: url('../images/SOU-Ecoville_2.png');
  background-position: 0 100%;
  background-size: cover;
}

.slide-14 {
  background-image: url('../images/SOU-Ecoville_1.png');
  background-position: 0 100%;
  background-size: cover;
}

.slide-1-8 {
  background-image: url('../images/agosto23-SOU-Ecoville_1.png');
  background-position: 0 100%;
  background-size: cover;
}

.slide-2-2 {
  background-image: url('../images/agosto23-SOU-Ecoville_2.png');
  background-position: 0 100%;
  background-size: cover;
}

.slide-15 {
  background-image: url('../images/out-SOU-Ecoville_2.jpg');
  background-position: 0 100%;
  background-size: cover;
}

.slide-16 {
  background-image: url('../images/out-SOU-Ecoville_1.jpg');
  background-position: 0 100%;
  background-size: cover;
}

.slide-17 {
  background-image: url('../images/SOU-Ecoville_1_outt.jpg');
  background-position: 0 100%;
  background-size: cover;
}

.slide-18 {
  background-image: url('../images/SOU-Ecoville_2_outt.jpg');
  background-position: 0 100%;
  background-size: cover;
}

.paragraph {
  color: #fff;
  margin-bottom: 30px;
}

.slide-19 {
  background-image: url('../images/NOV-Ecoville_2.png');
  background-position: 0 100%;
  background-size: cover;
}

.slide-20 {
  background-image: url('../images/NOV-Ecoville_1.png');
  background-position: 0 100%;
  background-size: cover;
}

.slide-21 {
  background-image: url('../images/SOU-Ecoville_DEZ_2.jpg');
  background-position: 0 100%;
  background-size: cover;
}

.slide-22 {
  background-image: url('../images/SOU-Ecoville_DEZ_1.jpg');
  background-position: 0 100%;
  background-size: cover;
}

.slide-23 {
  background-image: url('../images/JAN_SOU-Ecoville_1.jpg');
  background-position: 0 100%;
  background-size: cover;
}

.slide-24 {
  background-image: url('../images/JAN_SOU-Ecoville_2.jpg');
  background-position: 0 100%;
  background-size: cover;
}

.slide-25 {
  background-image: url('../images/SOU-Ecoville_2_fevvv.jpg');
  background-position: 0 100%;
  background-size: auto;
}

.slide-26 {
  background-image: url('../images/SOU-Ecoville_1_fevvv.jpg');
  background-position: 0 100%;
  background-size: auto;
}

.slide-3-2 {
  background-image: url('../images/sou-ecoville_4.jpg');
  background-position: 0 0;
  background-size: auto;
}

.slide-3-3 {
  background-image: url('../images/sou-ecoville_5.jpg');
  background-position: 0 0;
  background-size: auto;
}

.slide-27 {
  background-image: url('../images/SOU-Ecoville_1_ABRIL.jpg');
  background-position: 0 100%;
  background-size: cover;
}

.slide-28 {
  background-image: url('../images/SOU-Ecoville_2_ABRIL.jpg');
  background-position: 0 100%;
  background-size: cover;
}

.slide-29 {
  background-image: url('../images/SOU-Ecoville_1_MAIOO.png');
  background-position: 0 100%;
  background-size: cover;
}

.slide-30 {
  background-image: url('../images/SOU-Ecoville_3.png');
  background-position: 0 100%;
  background-size: cover;
}

.slide-3-4 {
  background-image: url('../images/sou-ecoville_6.jpg');
  background-position: 50%;
  background-size: cover;
}

.slide-4-2 {
  background-image: url('../images/sou-ecoville_7.jpg');
  background-position: 0 100%;
  background-size: cover;
}

.slide-4-3 {
  background-image: url('../images/sou-ecoville_8.jpg');
  background-position: 50%;
  background-size: cover;
}

.slide-31 {
  background-image: url('../images/SOU-Ecoville_JULHOO_1.png');
  background-position: 0 100%;
  background-size: cover;
}

.slide-32, .slide-33 {
  background-image: url('../images/SOU-Ecoville_JULHOO_2.png');
  background-position: 0 100%;
  background-size: cover;
}

.slide-34, .slide-35, .slide-36 {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 0 0;
  background-size: auto;
}

.slide-37 {
  background-image: url('../images/SOU-Ecoville_1_agostooo.png');
  background-position: 0 100%;
  background-size: cover;
}

.slide-38 {
  background-image: url('../images/SOU-Ecoville_2_agostooo.png');
  background-position: 0 100%;
  background-size: cover;
}

.text-block-89 {
  text-align: center;
}

.slide-39 {
  background-image: url('../images/Sou-Ecoville-1-STETTT.png');
  background-position: 0 100%;
  background-size: cover;
}

.slide-40 {
  background-image: url('../images/Sou-Ecoville-2-SETTT.png');
  background-position: 0 100%;
  background-size: cover;
}

.slide-41 {
  background-image: url('../images/Sou-Ecoville-1_outttt.png');
  background-position: 0 100%;
  background-size: cover;
}

.slide-42 {
  background-image: url('../images/Sou-Ecoville-2_outttt.png');
  background-position: 0 100%;
  background-size: cover;
}

.slide-43 {
  background-image: url('../images/Sou-Ecoville-1_dezzzz.png');
  background-position: 0 100%;
  background-size: cover;
}

.slide-44 {
  background-image: url('../images/Sou-Ecoville-2_dezzzz.png');
  background-position: 0 100%;
  background-size: cover;
}

@media screen and (min-width: 1920px) {
  .html-embed-6 {
    height: auto;
  }

  .content_text-wrap {
    flex-direction: column;
    display: flex;
  }

  .dropdown_btn {
    top: 800px;
  }

  .text-btn-dropdown {
    margin-left: -34px;
    font-size: 13px;
    font-weight: 700;
  }

  .link-contact {
    padding-left: 0;
    font-weight: 500;
  }

  .content-dropdown-wrap {
    align-items: flex-start;
    width: 100%;
    padding: 10px 20px;
    display: flex;
  }

  .dropdown-list_btn.w--open {
    max-width: 300px;
    margin-right: 30px;
    padding-left: 35px;
    top: -268px;
  }

  .btn-icon {
    margin-right: 8px;
  }

  .heading-49 {
    font-size: 35px;
    font-weight: 700;
  }

  .seta-slide-estagio-de-obras {
    width: 50px;
    height: 50px;
  }

  .text-block-88 {
    font-size: 18px;
    line-height: 28px;
  }
}

@media screen and (max-width: 991px) {
  .hide-tablet {
    display: none;
  }

  .fs-styleguide_section {
    grid-column-gap: 2.5rem;
    grid-template-columns: 1fr;
  }

  .show-tablet {
    display: block;
  }

  .max-width-full-tablet {
    width: 100%;
    max-width: none;
  }

  .margin-medium {
    margin: 1.5rem;
  }

  .margin-large {
    margin: 2.5rem;
  }

  .margin-xlarge {
    margin: 3rem;
  }

  .margin-xxlarge {
    margin: 4rem;
  }

  .margin-huge {
    margin: 5rem;
  }

  .margin-xhuge {
    margin: 6rem;
  }

  .margin-xxhuge {
    margin: 8rem;
  }

  .padding-medium {
    padding: 1.5rem;
  }

  .padding-large {
    padding: 2.5rem;
  }

  .padding-xlarge {
    padding: 3rem;
  }

  .padding-xxlarge {
    padding: 4rem;
  }

  .padding-huge {
    padding: 5rem;
  }

  .padding-xhuge {
    padding: 6rem;
  }

  .padding-xxhuge {
    padding: 8rem;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-left {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
  }

  .margin-right {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-left {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .padding-right {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

  .padding-vertical {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0;
  }

  .nav-container {
    justify-content: space-between;
  }

  .nav-menu-wrapper {
    background-color: var(--white);
  }

  .nav-button-wrapper {
    display: flex;
  }

  .grid-header-component {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .padding-vertical-2 {
    padding-left: 0;
    padding-right: 0;
  }

  .footer_top-wrapper {
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
  }

  .menu-button.w--open {
    background-color: var(--white);
  }

  .icon {
    color: var(--black);
  }

  .html-embed-6 {
    height: auto;
    padding-bottom: 40px;
  }

  .slide-est-gio-de-obras_geral {
    margin-left: 50px;
  }

  .div-block-171 {
    padding-left: 50px;
    padding-right: 50px;
  }

  .slide-est-gio-de-obra-9.estagio-de-obra-3-getulio {
    background-size: cover;
  }

  .div-block-173 {
    grid-template-columns: 1fr;
    padding-left: 30px;
  }

  .div-block-231 {
    grid-column-gap: 20px;
    grid-template-rows: auto 360px;
    grid-template-columns: 1fr;
  }

  .slide-est-gio-de-obra-3.estagio-de-obra-2-getulio, .slide-est-gio-de-obra-3.estagio-de-obra-3-getulio, .slide-est-gio-de-obra-3.estagio-de-obra-1-getulio {
    background-size: cover;
  }

  .div-block-175.background-primary {
    padding-left: 30px;
  }

  .slide-est-gio-de-obra-4-copia.estagio-de-obra-3-getulio {
    background-size: cover;
  }

  .heading-49 {
    font-size: 25px;
    font-weight: 700;
  }

  .section-3d-2 {
    padding-right: 50px;
  }

  .slide-est-gio-de-obra-5-copia.estagio-de-obra-3-getulio, .slide-est-gio-de-obra-6-copia.estagio-de-obra-3-getulio {
    background-size: cover;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  h4 {
    font-size: 1rem;
  }

  .fs-styleguide_row.is-for-social-icons {
    grid-template-rows: auto auto;
  }

  .fs-styleguide_3-col {
    grid-template-columns: 1fr 1fr;
  }

  .fs-styleguide_color-sample {
    padding: 2.5rem 2rem;
  }

  .heading-medium {
    font-size: 1.5rem;
  }

  .heading-large {
    font-size: 2rem;
  }

  .text-size-large {
    font-size: 1.25rem;
  }

  .fs-styleguide_section-type {
    font-size: .875rem;
  }

  .heading-xlarge {
    font-size: 2.5rem;
  }

  .hide-mobile-landscape {
    display: none;
  }

  .page-padding {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .show-mobile-landscape {
    display: block;
  }

  .max-width-full-mobile-landscape {
    width: 100%;
    max-width: none;
  }

  .margin-medium {
    margin: 1.25rem;
  }

  .margin-large {
    margin: 1.5rem;
  }

  .margin-xlarge {
    margin: 2rem;
  }

  .margin-xxlarge {
    margin: 3rem;
  }

  .margin-huge {
    margin: 3.5rem;
  }

  .margin-xhuge {
    margin: 4rem;
  }

  .margin-xxhuge {
    margin: 4.5rem;
  }

  .padding-medium {
    padding: 1.25rem;
  }

  .padding-large {
    padding: 1.5rem;
  }

  .padding-xlarge {
    padding: 2rem;
  }

  .padding-xxlarge {
    padding: 3rem;
  }

  .padding-huge {
    padding: 3.5rem;
  }

  .padding-xhuge {
    padding: 4rem;
  }

  .padding-xxhuge {
    padding: 4.5rem;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-left {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
  }

  .margin-right {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-left {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .padding-right {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

  .padding-vertical {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0;
  }

  .text-style-nowrap {
    white-space: normal;
  }

  .heading-small {
    font-size: 1rem;
  }

  .fs-styleguide_version-details {
    font-size: .875rem;
  }

  .fs-styleguide_page-header {
    margin-bottom: 0;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .grid-header-component {
    flex-flow: column;
  }

  .home-header-component {
    max-width: 100%;
  }

  .padding-vertical-2 {
    padding-left: 0;
    padding-right: 0;
  }

  .footer_bottom-wrapper {
    flex-direction: column-reverse;
    align-items: flex-start;
    padding-bottom: 1rem;
  }

  .footer_top-wrapper {
    grid-row-gap: 3rem;
  }

  .footer_credit-text {
    margin-top: 1.5rem;
  }

  .home-header-form {
    max-width: 100%;
  }

  .div-block-173 {
    grid-column-gap: 0px;
    padding-left: 50px;
    padding-right: 50px;
  }

  .div-block-231 {
    grid-row-gap: 0px;
    grid-template-columns: 1fr;
  }

  .div-block-175 {
    padding-left: 50px;
  }

  .div-block-175.background-primary {
    margin-bottom: 15px;
    padding-left: 50px;
  }

  .div-block-174 {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 479px) {
  .show-mobile-portrait {
    display: block;
  }

  .hide-mobile-portrait {
    display: none;
  }

  .fs-styleguide_2-col {
    grid-template-columns: auto;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-left {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
  }

  .margin-right {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-left {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .padding-right {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

  .padding-vertical {
    padding: 4rem 1rem;
  }

  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0;
  }

  .max-width-full-mobile-portrait {
    width: 100%;
    max-width: none;
  }

  .nav-menu-wrapper {
    background-color: var(--white);
    justify-content: space-between;
  }

  .home-header-component {
    max-width: 100%;
  }

  .heading1.regular {
    line-height: 80%;
  }

  .bold-text {
    font-size: 2rem;
  }

  .margim-2rem.is-medium {
    text-align: center;
    font-size: 1rem;
  }

  .about-wrapper {
    flex-direction: column;
    margin-left: 0;
    margin-right: 0;
  }

  .about-content-image {
    max-width: 100%;
  }

  .about-content-text {
    flex-direction: column;
    align-items: center;
    max-width: 100%;
    padding-left: 0%;
    padding-right: 0%;
    display: flex;
  }

  .carroussel-slide-mask {
    max-width: 100%;
  }

  .grid-differentials-component {
    grid-column-gap: 1rem;
    grid-row-gap: 1.25rem;
    grid-template-rows: auto auto auto auto auto auto;
    grid-template-columns: 1fr;
    display: none;
  }

  .grid-differentials-component.is-mobile {
    display: block;
  }

  .differentials-content-text {
    padding-top: 0;
    padding-bottom: 0;
  }

  .plants-tab-menu {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .plants-tab-link {
    padding-bottom: 1.25rem;
  }

  .plants-tab-link:hover {
    border-bottom-style: none;
  }

  .plants-tab-link.w--current {
    padding-bottom: 1.25rem;
  }

  .plants-tab-link.w--current:hover {
    border-bottom-style: none;
  }

  .plants-columns {
    flex-direction: column;
    align-items: center;
  }

  .plants-col {
    width: 100%;
  }

  .localization-title {
    text-align: center;
  }

  .grid-localization-component {
    grid-template-rows: auto auto;
    grid-template-columns: 1.25fr;
  }

  .localization-content-text {
    text-align: center;
  }

  .grid-stage-component {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .number-percent {
    display: none;
  }

  .padding-vertical-2 {
    padding-left: 0;
    padding-right: 0;
  }

  .footer_column-layout {
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
  }

  .image-2 {
    margin-left: -1.2rem;
  }

  .home-header-form {
    width: auto;
    max-width: 100%;
    height: auto;
  }

  .menu-button {
    margin-left: 112px;
  }

  .menu-button.w--open {
    background-color: var(--white);
    color: var(--black-bg);
  }

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

  .text-points {
    font-size: 1.1rem;
  }

  .grid-home-corporate {
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
  }

  .grid-2-3d {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  .html-embed-15 {
    margin-top: 10px;
  }

  .content_text-wrap {
    margin-right: 10px;
  }

  .dropdown_btn {
    z-index: 1000;
    background-color: #000;
    width: 70px;
    height: 70px;
    bottom: 9rem;
    right: 1rem;
  }

  .dropdown_btn:hover {
    background-color: #4c8869;
  }

  .text-btn-dropdown {
    margin-top: -11px;
    margin-bottom: 0;
    margin-left: 0;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.4;
  }

  .content-dropdown-wrap {
    min-width: 200px;
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .content-dropdown-wrap.is-whatsapp {
    padding-left: 5px;
    padding-right: 5px;
  }

  .dropdown-list_btn.w--open {
    padding-right: 0;
    top: -226px;
    right: 0;
  }

  .btn-icon {
    text-align: left;
    margin-right: 9px;
  }

  .btn-icon.is-dropdown {
    margin-left: 26px;
  }

  .slide-est-gio-de-obras_geral {
    height: 360px;
    margin-left: 30px;
  }

  .div-block-171 {
    padding-bottom: 50px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .number-percent-2 {
    display: none;
  }

  .div-block-173 {
    grid-row-gap: 5px;
    grid-template-rows: auto auto auto auto auto;
    grid-template-columns: 1fr;
    padding-left: 30px;
    padding-right: 30px;
  }

  .div-block-173.estagio-de-obra-getulio {
    padding-top: 40px;
  }

  .stage-content {
    padding-left: 3rem;
  }

  .div-block-231 {
    grid-template-columns: .75fr;
    display: block;
  }

  .div-block-175 {
    padding-left: 30px;
    padding-right: 30px;
  }

  .div-block-175.background-primary {
    padding-left: 30px;
  }

  .div-block-169 {
    margin-bottom: 5px;
  }

  .heading-49 {
    text-align: left;
    font-size: 24px;
  }

  .div-block-174 {
    margin-bottom: 60px;
  }

  .section-3d-2 {
    padding-top: 0;
    padding-bottom: 130px;
    padding-right: 30px;
  }

  .section-3d-2.se-o-estagio-de-obras-alto-da-gl-getuliooria {
    padding-bottom: 0;
  }

  .text-block-88 {
    font-size: 14px;
  }

  .contact-bar {
    border-radius: 0;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    height: 60px;
    display: flex;
    inset: auto 0% 0%;
  }

  .div-block-2 {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .subshare {
    display: none;
  }

  .div-block-232 {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    display: flex;
  }
}

#w-node-ebda8bee-5620-1a60-9ad4-a4a3caf1b7bb-6d90b4fc, #w-node-_38e0e6dc-be13-5d53-f619-ca69fc4a673a-6d90b4fc {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7dfc4a81-6735-8c10-bc8a-34c04a68ce73-6d90b4fc {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_01647230-accb-6798-de5d-834671577320-6d90b4fc, #w-node-a783a93b-af5d-33f9-ad63-6345fe44e8b8-6d90b4fc, #w-node-_3ad398c7-59e3-a9af-a9ca-9a083e8e761d-6d90b4fc, #w-node-_7cc465ad-18ff-4341-85af-7d1829e7c291-6d90b4fc, #w-node-_626ec693-f710-f2ca-f0d3-96080d015e3b-6d90b4fc, #w-node-cd10849f-70ac-8802-ec45-0640d64928bb-6d90b4fc, #w-node-be90b9fd-35d9-c95a-0827-8c301682cbc6-6d90b4fc, #w-node-be90b9fd-35d9-c95a-0827-8c301682cbca-6d90b4fc {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-aea2a3b8-1978-3c5a-117a-96d90214f13b-6d90b4fc {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_8dc08856-01b2-1f09-4edf-9514f3bc58d4-6d90b4fc, #w-node-_93302476-7cd6-fd14-4f40-226caa79bfa3-6d90b4fc, #w-node-_93302476-7cd6-fd14-4f40-226caa79bfa7-6d90b4fc, #w-node-_93302476-7cd6-fd14-4f40-226caa79bfab-6d90b4fc, #w-node-c4686a66-3928-fecf-e2e2-808aa8dfcbb8-6d90b4fc, #w-node-c4686a66-3928-fecf-e2e2-808aa8dfcbc1-6d90b4fc, #w-node-_900faa9d-3a1c-3651-138e-899bc14e2121-6d90b4fc, #w-node-c4686a66-3928-fecf-e2e2-808aa8dfcbc9-6d90b4fc {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3f7d7cbd-dc40-3bf4-bcc2-e694babb4e48-6d90b4fc {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_3966ae34-eca9-9a4e-6021-81e2fe5fb1d6-6d90b4fc, #w-node-_3966ae34-eca9-9a4e-6021-81e2fe5fb1da-6d90b4fc, #w-node-_3966ae34-eca9-9a4e-6021-81e2fe5fb1de-6d90b4fc, #w-node-_25158ec5-ffcb-51f2-5255-1a025243299b-6d90b4fc, #w-node-_25158ec5-ffcb-51f2-5255-1a025243299f-6d90b4fc, #w-node-_25158ec5-ffcb-51f2-5255-1a02524329a3-6d90b4fc, #w-node-_0ab58745-ae06-998d-186a-62578dd102b2-6d90b4fc, #w-node-_0ab58745-ae06-998d-186a-62578dd102b6-6d90b4fc, #w-node-_0ab58745-ae06-998d-186a-62578dd102ba-6d90b4fc, #w-node-_0a9ac917-372b-b851-d7ff-bf61dc6c1564-6d90b4fc, #w-node-_0a9ac917-372b-b851-d7ff-bf61dc6c1568-6d90b4fc, #w-node-_0a9ac917-372b-b851-d7ff-bf61dc6c156c-6d90b4fc, #w-node-_0a9ac917-372b-b851-d7ff-bf61dc6c1570-6d90b4fc, #w-node-b13663c2-791d-a017-ed69-0057b962f410-6d90b4fc, #w-node-_2cccc17e-08fe-970a-a760-1418b24f2138-6d90b4fc, #w-node-cce714bd-b338-5765-5c0c-40ac2ac27cfb-6d90b4fc, #w-node-_63d91c68-5c99-b09b-6163-213abf2f946a-6d90b4fc, #w-node-_88eebad7-a4dd-241a-0db0-7d8107472e42-6d90b4fc, #w-node-_2093ae33-195f-1a2c-0df8-395137bda8b8-6d90b4fc, #w-node-_7cd8b15c-58d7-ca3a-8d0c-f83420be63bd-6d90b4fc, #w-node-e30aae9b-bc14-2b7e-c283-8b5f6db97a1a-6d90b4fc, #w-node-_5dd84804-c3c3-585e-5d97-92cc6ce098db-6d90b4fc, #w-node-_100643ac-6c7b-b9e1-0d6d-447f54bcf9c9-6d90b4fc, #w-node-_0be81a2f-54fc-7219-5d75-da9cc842c1f7-6d90b4fc, #w-node-bd62c33e-e18b-86d1-74e9-80aa51e5e4b3-6d90b4fc, #w-node-bd62c33e-e18b-86d1-74e9-80aa51e5e4b4-6d90b4fc {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-bd62c33e-e18b-86d1-74e9-80aa51e5e4b6-6d90b4fc {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-bd62c33e-e18b-86d1-74e9-80aa51e5e4b7-6d90b4fc {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-bd62c33e-e18b-86d1-74e9-80aa51e5e4b9-6d90b4fc {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-bd62c33e-e18b-86d1-74e9-80aa51e5e4ba-6d90b4fc {
  grid-area: span 1 / span 1 / span 1 / span 1;
}


