:root {
  --grey-800: #111920;
  --primary-600: #2042e4;
  --grey-200: #dce4eb;
  --white: white;
  --grey-100: #e5ebf0;
  --grey-600: #767c80;
  --grey-400: #a3a3a3;
  --primary-200: #f1e6dd;
}

.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-embed-youtubevideo {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/youtube-placeholder.2b05e7d68d.svg');
  background-position: 50%;
  background-size: cover;
  width: 100%;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  position: relative;
}

.w-embed-youtubevideo:empty {
  min-height: 75px;
  padding-bottom: 56.25%;
}

.w-layout-layout {
  grid-row-gap: 20px;
  grid-column-gap: 20px;
  grid-auto-columns: 1fr;
  justify-content: center;
  padding: 20px;
}

.w-layout-cell {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.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: var(--grey-800);
  font-family: Plus Jakarta Sans, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

h1 {
  letter-spacing: -1px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3.25rem;
  font-weight: 500;
  line-height: 1.25;
}

h2 {
  letter-spacing: -1px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.35;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.5;
}

h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5;
}

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

h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5;
}

p {
  margin-bottom: 0;
}

a {
  color: var(--grey-800);
  text-decoration: none;
}

ul {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-left: 1.25rem;
  list-style-type: disc;
}

ol {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-left: 1.25rem;
}

strong {
  font-weight: bold;
}

blockquote {
  border-left: 5px solid var(--primary-600);
  margin-bottom: 0;
  padding: .75rem 1.25rem;
  font-size: 1rem;
}

.main-wrapper {
  overflow: hidden;
}

.button {
  background-color: var(--primary-600);
  color: #fff;
  border-radius: 5rem;
  padding: .75rem 1.5rem;
  transition: background-color .2s;
}

.button:hover {
  background-color: var(--grey-800);
}

.button.icon {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  justify-content: center;
  align-items: center;
  padding: .375rem .75rem;
  display: flex;
}

.button.secondary {
  border: 1px solid var(--grey-200);
  background-color: var(--white);
  opacity: 1;
  color: var(--grey-800);
  transition: background-color .2s, color .2s;
}

.button.secondary:hover {
  border-color: var(--grey-800);
  background-color: var(--grey-800);
  color: var(--white);
}

.button.white {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  background-color: var(--white);
  opacity: 1;
  color: var(--grey-800);
  justify-content: center;
  align-items: center;
  transition: color .2s;
}

.button.white:hover {
  color: var(--primary-600);
}

.button.small {
  color: #49610c;
  letter-spacing: .1px;
  width: 100%;
  font-size: .875rem;
  font-weight: 500;
}

.button.small:hover {
  color: #fbfbfb;
}

.button.link {
  color: var(--grey-800);
  background-color: #0000;
  border-style: none;
  padding: .25rem 0;
  line-height: 1;
  text-decoration: none;
  transition: color .2s;
}

.button.link:hover {
  color: var(--primary-600);
}

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

.styleguide-label {
  background-color: var(--grey-100);
  color: var(--grey-600);
  letter-spacing: 1px;
  border-radius: 5rem;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: .5rem .75rem;
  font-size: .75rem;
  font-weight: 400;
  display: flex;
}

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

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

.text-color-grey {
  color: var(--grey-600);
}

.background-color-black {
  background-color: var(--grey-800);
}

.padding-global {
  padding-left: 5%;
  padding-right: 5%;
}

.styleguide-color {
  justify-content: space-between;
  align-items: stretch;
  height: 4rem;
  position: relative;
}

.styleguide-color.primary-600 {
  background-color: var(--primary-600);
}

.styleguide-color.grey-100 {
  background-color: var(--grey-100);
}

.styleguide-color.grey-200 {
  background-color: var(--grey-200);
}

.styleguide-color.grey-400 {
  background-color: var(--grey-400);
}

.styleguide-color.grey-600 {
  background-color: var(--grey-600);
}

.styleguide-color.grey-800 {
  background-color: var(--grey-800);
}

.styleguide-color.primary-200 {
  background-color: var(--primary-200);
}

.heading-style-h3 {
  letter-spacing: 0;
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.5;
}

.rich-text {
  color: var(--grey-800);
  font-weight: 400;
  line-height: 1.9;
}

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

.rich-text p {
  margin-bottom: 1rem;
}

.rich-text ul, .rich-text ol {
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  padding-left: 1.25rem;
}

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

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

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

.rich-text a {
  color: var(--primary-600);
}

.rich-text a:hover {
  text-decoration: underline;
}

.rich-text strong {
  color: var(--grey-800);
  font-weight: 600;
}

.rich-text blockquote {
  border-left-color: var(--primary-600);
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  padding: .75rem 0 .75rem 1.25rem;
  font-size: 1rem;
  line-height: 1.5;
}

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

.rich-text li {
  margin-top: .25rem;
  margin-bottom: .25rem;
}

.styleguide-row {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  align-items: center;
  display: flex;
}

.styleguide-2-col {
  grid-column-gap: 2.75rem;
  grid-row-gap: 2.75rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.styleguide-item-header {
  background-color: var(--grey-100);
  border-radius: 1.5rem;
  margin-bottom: 2rem;
  padding: 1rem 1.5rem;
}

.form-field-wrapper {
  flex-direction: column;
  width: 100%;
  margin-bottom: 1.25rem;
  display: flex;
  position: relative;
}

.styleguide-1-col {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.heading-style-h4 {
  letter-spacing: 0;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5;
}

.padding-section-medium {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.styleguide-3-col {
  grid-column-gap: 2.75rem;
  grid-row-gap: 2.75rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.form-radio-label {
  margin-bottom: .125rem;
}

.styleguide-item {
  grid-column-gap: .5rem;
  grid-row-gap: .75rem;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-content: start;
  place-items: start stretch;
  display: grid;
}

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

.styleguide-item-wrapper {
  margin-bottom: 4rem;
}

.heading-style-h5 {
  letter-spacing: 0;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.5;
}

.text-size-small {
  margin-bottom: 0;
  font-size: .875rem;
}

.text-size-small.text-color-white.line-height-180 {
  line-height: 1.8;
}

.text-style-allcaps {
  text-transform: uppercase;
  padding-top: 0;
  padding-bottom: 0;
}

.text-style-allcaps.letter-space {
  letter-spacing: 1px;
  font-weight: 600;
}

.text-style-allcaps.text-marcas {
  color: #fff9;
  margin-top: 28px;
  margin-left: 29px;
  display: none;
}

.text-style-allcaps.text-slider {
  color: var(--grey-800);
  margin-top: 21px;
  margin-left: 24px;
  font-size: .8rem;
}

.heading-style-h2 {
  letter-spacing: -1px;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.35;
}

.form-checkbox-label {
  margin-bottom: .125rem;
}

.form {
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: flex-end;
  width: 100%;
  margin-bottom: 0;
  display: flex;
}

.form-component {
  width: 100%;
  margin-bottom: 0;
}

.icon-small {
  width: 1.25rem;
  height: 1.25rem;
}

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

.form-input {
  border: 1px solid var(--grey-100);
  color: var(--grey-400);
  background-color: #fff;
  border-radius: .5rem;
  min-width: 16rem;
  height: 2.75rem;
  margin-bottom: 0;
  padding: .75rem 1.25rem;
  transition: background-color .2s;
  box-shadow: inset -1px 1px #ffffff14;
}

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

.form-input.text-area {
  border-radius: .5rem;
  height: auto;
  min-height: 8rem;
}

.form-input.form-select {
  border-radius: .5rem;
  margin-bottom: 1.1rem;
}

.form-input.form-tel {
  margin-bottom: 1.1rem;
}

.styleguide-header {
  background-color: var(--grey-100);
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.icon-large {
  width: 2rem;
  height: 2rem;
}

.form-radio-icon {
  border-color: var(--grey-200);
  cursor: pointer;
  width: 1.125rem;
  height: 1.125rem;
  margin-top: 0;
  margin-left: 0;
  margin-right: .5rem;
}

.form-radio-icon.w--redirected-checked {
  border-width: .25rem;
  border-color: var(--grey-800);
  width: 1.125rem;
  height: 1.125rem;
}

.form-radio-icon.w--redirected-focus {
  box-shadow: none;
  border-color: #00a5ca;
  width: 1rem;
  height: 1rem;
}

.form-label {
  color: var(--grey-800);
  margin-bottom: .5rem;
  font-size: .875rem;
  font-weight: 400;
}

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

.text-align-center {
  text-align: center;
  margin-bottom: 130px;
}

.heading-style-h6 {
  letter-spacing: 0;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5;
}

.form-checkbox-icon {
  border-color: var(--grey-200);
  cursor: pointer;
  border-radius: .25rem;
  width: 1.125rem;
  height: 1.125rem;
  margin: 0 .5rem 0 0;
}

.form-checkbox-icon.w--redirected-checked {
  border-color: var(--grey-800);
  background-color: var(--grey-800);
  background-size: 90%;
  border-radius: .25rem;
  width: 1.125rem;
  height: 1.125rem;
  margin: 0 .5rem 0 0;
}

.form-checkbox-icon.w--redirected-focus {
  box-shadow: none;
  border-color: #00a5ca;
  border-radius: .125rem;
  width: 1rem;
  height: 1rem;
  margin: 0 .5rem 0 0;
}

.heading-style-h1 {
  letter-spacing: -1px;
  font-size: 3.25rem;
  font-weight: 500;
  line-height: 1.25;
}

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

.icon-medium {
  width: 1.5rem;
  height: 1.5rem;
}

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

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

.text-size-xsmall.text-style-allcaps {
  color: var(--grey-800);
}

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

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

.text-size-medium {
  color: var(--grey-600);
  font-size: 1.125rem;
}

.text-size-medium.line-height {
  line-height: 1.8;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  padding-left: 5vw;
  padding-right: 5vw;
  display: flex;
}

.protected-image-wrapper {
  border-radius: 1.5rem;
  max-width: 22rem;
  overflow: hidden;
}

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

.protected-page-content {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  text-align: center;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: max-content 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  width: 100%;
  max-width: 64rem;
  display: grid;
}

.padding-section-large {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.padding-section-large.site {
  padding-top: 0;
}

.changelog-section {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 90vh;
}

.caption {
  color: var(--primary-600);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: .875rem;
}

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

.nav-component3 {
  background-color: #0c111f00;
}

.spacer-medium {
  width: 100%;
  height: 2rem;
}

.assets-link {
  text-transform: uppercase;
  padding-top: .5rem;
  padding-bottom: .5rem;
  font-size: 1rem;
  line-height: 1.4;
  position: relative;
  overflow: hidden;
}

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

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

.assets-links-wrapper {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.assets-item {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr .5fr;
  grid-auto-columns: 1fr;
  align-items: center;
  width: 100%;
  margin-top: 3rem;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.link-underline {
  background-color: #1c1c1c;
  width: 100%;
  height: 1px;
  position: absolute;
  inset: auto 0% 0%;
}

.assets-image-wrapper {
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  display: flex;
  overflow: hidden;
}

.assets-component {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: flex;
}

.text-color-primary {
  color: var(--primary-600);
}

.nav-logo {
  height: 100%;
  max-height: 3rem;
}

.nav-link-wrapper {
  align-items: center;
  display: flex;
}

.menu-icon-line-top {
  background-color: #1f2c3d;
  border-radius: 1rem;
  width: 1.5rem;
  height: .125rem;
}

.menu-icon-line-middle {
  background-color: #1f2c3d;
  border-radius: 1rem;
  width: 1.5rem;
  height: .125rem;
  margin-top: .375rem;
  margin-bottom: .375rem;
}

.nav-component {
  background-color: #0000;
  width: 100%;
}

.nav-menu {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.nav-link {
  white-space: nowrap;
  padding: .5rem 1.25rem;
  font-size: .875rem;
  text-decoration: none;
  transition: color .25s;
}

.nav-link:hover {
  color: var(--primary-600);
}

.nav-link.w--current {
  color: var(--grey-800);
}

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

.menu-icon-line-bottom {
  background-color: #1f2c3d;
  border-radius: 1rem;
  width: 1.5rem;
  height: .125rem;
}

.nav-logo-link.w--current {
  align-items: center;
  display: flex;
}

.nav-menu-button {
  padding: .5rem;
}

.nav-container {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-top: 1rem;
  padding-bottom: 1rem;
  display: grid;
}

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

.spacer-small {
  width: 100%;
  height: 1rem;
}

.footer-component {
  overflow: hidden;
}

.padding-section-small {
  justify-content: space-between;
  align-items: center;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.footer-column {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.footer-bottom {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.footer-bottom-text-link {
  color: var(--grey-200);
  text-decoration: none;
}

.footer-bottom-text-link:hover {
  color: #fff;
}

.footer-link {
  color: var(--grey-400);
  padding-top: .5rem;
  padding-bottom: .5rem;
  font-size: .875rem;
  text-decoration: none;
  transition: color .2s;
}

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

.footer-logo-wrapper {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  max-width: 25rem;
}

.footer-bottom-text {
  color: var(--grey-400);
  font-size: .875rem;
}

.footer-logo {
  height: 100%;
  max-height: 3rem;
}

.details-left-text, .details-right-text {
  color: var(--grey-600);
  font-size: 1.125rem;
}

.preloader {
  z-index: 999999999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  inset: 0%;
}

.preloader-logo-wrapper {
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  overflow: hidden;
}

.preloader-logo {
  z-index: 2;
  height: 2rem;
  position: relative;
}

.preloader-top, .preloader-bottom {
  background-color: var(--white);
  width: 100%;
  height: 50%;
}

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

.styleguide-empty-box {
  z-index: -1;
  background-color: var(--grey-100);
  min-width: 3rem;
  height: 3rem;
  position: relative;
}

.styleguide-empty-box.height {
  height: 100%;
}

.styleguide-border {
  border: 1px dashed var(--grey-200);
}

.button-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

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

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

.max-width-large.align-center.blog {
  max-width: 63rem;
}

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

.max-width-medium.align-center {
  align-self: flex-end;
  max-width: 41rem;
  margin-left: auto;
  margin-right: auto;
}

.max-width-medium.long {
  max-width: 49rem;
}

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

.spacer-large {
  width: 100%;
  height: 3rem;
}

.spacer-xsmall {
  width: 100%;
  height: .5rem;
}

.spacer-xlarge {
  width: 100%;
  height: 4rem;
}

.footer-content {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr max-content 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.footer-menu {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.footer-wrapper {
  background-color: var(--grey-800);
  border-radius: 2rem;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  display: flex;
  position: relative;
}

.footer-background {
  z-index: -1;
  background-color: var(--grey-800);
  border-radius: 2rem;
  width: 120%;
  height: 124%;
  position: absolute;
}

.newsletter-button {
  background-color: var(--grey-800);
  color: #fff;
  border-radius: 5rem;
  margin-right: .25rem;
  padding: .5rem 1rem;
  font-size: .875rem;
  transition: background-color .2s;
  position: absolute;
}

.newsletter-button:hover {
  background-color: var(--primary-600);
}

.header-title-wrapper {
  grid-column-gap: 3.5rem;
  grid-row-gap: 5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.header-content-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex: 1;
  width: 100%;
}

.new-property-link {
  position: relative;
}

.new-property-content-wrapper {
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 2rem;
  display: flex;
  position: absolute;
  inset: 0%;
}

.new-property-image-wrapper {
  border-radius: 1.5rem;
  height: 100%;
  padding-top: 100%;
  position: relative;
  overflow: hidden;
}

.new-property-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.new-property-overlay {
  background-image: linear-gradient(#4145471f, #20272a61);
  position: absolute;
  inset: 0%;
}

.new-property-label {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  background-color: var(--white);
  border-radius: 5rem;
  align-items: center;
  padding: .75rem 1rem .75rem .75rem;
  display: flex;
}

.new-property-content {
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  display: flex;
}

.icon-xsmall {
  width: 1rem;
  height: 1rem;
}

.new-property-arrow {
  background-color: var(--white);
  border-radius: 50%;
  padding: .5rem;
  display: flex;
}

.slide-nav {
  justify-content: center;
  align-items: center;
  height: 2px;
  margin-bottom: 1rem;
  padding-top: 0;
  display: flex;
  overflow: hidden;
}

.header-slider {
  background-color: #0000;
  border-radius: 1.5rem;
  height: 100%;
  overflow: hidden;
}

.header-card-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  height: 100%;
  display: grid;
}

.properties-link {
  background-color: #e7ebe4;
  border-radius: 1.5rem;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 100%;
  padding: 2rem;
  display: flex;
  position: relative;
}

.properties-link.two {
  background-color: #edf1f300;
  border: 1px solid #dce3eb;
}

.properties-arrow {
  background-color: var(--white);
  border-radius: 50%;
  align-self: flex-end;
  padding: .5rem;
  display: flex;
}

.header-lightbox {
  border-radius: 1.5rem;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.header-lightbox.d--none {
  display: none;
}

.header-lightbox-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.video-overlay-layer {
  z-index: 1;
  background-color: #0003;
  position: absolute;
  inset: 0%;
}

.lightbox-play-icon {
  z-index: 2;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: #ffffff14;
  border-radius: 50%;
  padding: 1rem;
  display: flex;
  position: relative;
}

.header-slide-image-wrapper {
  height: 100%;
  padding-top: 50%;
  position: relative;
}

.header-slide-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.header-slider-overlay {
  background-image: linear-gradient(#0000, #0003);
  position: absolute;
  inset: 0%;
}

.header-slider-left-arrow {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: #0000004d;
  border-top-right-radius: 5rem;
  border-bottom-right-radius: 5rem;
  align-items: center;
  width: 3rem;
  height: 4rem;
  padding-left: .25rem;
  display: flex;
}

.header-slider-icon {
  justify-content: center;
  align-items: center;
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
}

.header-slider-right-arrow {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: #0000004d;
  border-top-left-radius: 5rem;
  border-bottom-left-radius: 5rem;
  justify-content: flex-end;
  align-items: center;
  width: 3rem;
  height: 4rem;
  padding-right: .25rem;
  display: flex;
}

.section-services {
  z-index: 1;
  position: sticky;
  top: 0;
}

.services-component {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  flex: 1;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
  margin-bottom: 96px;
}

.services-item {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
}

.section-home-about {
  z-index: 2;
  position: relative;
  overflow: hidden;
}

.home-about-component {
  color: var(--white);
  justify-content: center;
  min-height: 120vh;
  padding-top: 5rem;
  display: flex;
  position: relative;
}

.home-about-background {
  z-index: -1;
  border-radius: 2rem;
  width: 120%;
  height: 100%;
  position: absolute;
  top: 0%;
  bottom: 0%;
  overflow: hidden;
}

.home-about-image {
  z-index: 1;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: relative;
}

.section-properties {
  z-index: 1;
}

.latest-properties-list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex: 1;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.property-link {
  border-radius: 1.5rem;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.property-back-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  background-color: var(--grey-100);
  flex-direction: column;
  align-items: flex-start;
  padding: 2.45rem 2.55rem 1.25rem;
  display: flex;
  position: absolute;
  inset: 0%;
}

.property-image-wrapper {
  border-radius: 1.5rem;
  height: 100%;
  padding-top: 100%;
  overflow: hidden;
  transform: translate(0);
}

.property-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.property-overlay {
  background-image: linear-gradient(#0000, #0003);
  position: absolute;
  inset: 0%;
}

.property-plus {
  z-index: 2;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: #fff3;
  border-radius: 50%;
  padding: .5rem;
  display: flex;
  position: absolute;
  inset: 1.25rem 1.25rem auto auto;
}

.property-metatag-list {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  width: 100%;
  display: flex;
}

.property-metatag-list.tablet {
  display: none;
}

.property-metatag {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  display: flex;
}

.property-front-wrapper {
  z-index: 1;
  height: 100%;
  display: block;
  position: relative;
}

.section-testimonial {
  z-index: 1;
}

.testimonial-component {
  grid-column-gap: 5rem;
  grid-row-gap: 5rem;
  grid-template-rows: auto;
}

.testimonial-item {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: max-content 1fr;
}

.testimonial-item.right {
  grid-template-columns: 1fr max-content;
  margin-top: 22px;
}

.testimonial-image-wrapper {
  position: relative;
}

.testimonial-content {
  background-color: var(--grey-100);
  border-top-left-radius: 1.5rem;
  border-top-right-radius: 1.5rem;
  border-bottom-right-radius: 1.5rem;
  padding: 2rem 2.25rem;
}

.testimonial-content.right {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 1.5rem;
}

.testimonial-shape {
  background-color: var(--grey-100);
  border-top-left-radius: 1.5rem;
  border-bottom-left-radius: 1.5rem;
  width: 50%;
  height: 100%;
  min-height: 3rem;
}

.testimonial-shape.left {
  border-radius: 0 1.5rem 1.5rem 0;
}

.testimonial-image {
  object-fit: cover;
  border-radius: 1.5rem;
  width: 8.25rem;
  height: 8.25rem;
  margin-bottom: 1rem;
  margin-right: 1rem;
}

.testimonial-image.left {
  margin-left: 1rem;
  margin-right: 0;
}

.testimonial-corner-wrapper {
  z-index: -1;
  background-color: var(--grey-100);
  width: 1.5rem;
  height: 1.5rem;
  position: absolute;
  inset: auto 0% 0% auto;
}

.testimonial-corner-wrapper.left {
  inset: auto auto 0% 0%;
}

.testimonial-corner {
  background-color: var(--white);
  border-bottom-right-radius: 100%;
  width: 100%;
  height: 100%;
}

.testimonial-corner.left {
  border-bottom-right-radius: 0%;
  border-bottom-left-radius: 100%;
}

.testimonial-content-left {
  flex-direction: column;
  align-items: flex-end;
  display: flex;
}

.testimonial-content-right {
  flex-direction: column;
  display: flex;
}

.section-home-blog {
  z-index: 1;
}

.home-blog-title-wrapper {
  grid-column-gap: 5rem;
  grid-row-gap: 5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: end;
  display: grid;
}

.home-blog-component {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex: 1;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  width: 100%;
}

.blog-list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  height: 100%;
  display: grid;
}

.blog-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.home-blog-link {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  height: 100%;
  display: grid;
}

.home-blog-image-wrapper {
  border-radius: 1.5rem;
  width: 100%;
  padding-top: 80%;
  position: relative;
  overflow: hidden;
}

.home-blog-item-content {
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  display: flex;
}

.blog-title {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  flex-direction: column;
  margin-bottom: 1rem;
  text-decoration: none;
  display: flex;
}

.blog-image-wrapper {
  border-radius: 2rem;
  width: 100%;
  padding-top: 66%;
  position: relative;
  overflow: hidden;
}

.blog-item-content {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.section-cta {
  z-index: 1;
}

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

.cta-content-wrapper {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  border-radius: 3rem;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.cta-image-wrapper {
  background-color: var(--grey-100);
  border-radius: 3rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  padding-top: 100%;
  position: relative;
  overflow: hidden;
}

.cta-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.properties-item {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.blog-item {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
  grid-auto-columns: 1fr;
  height: 100%;
}

.section-latest-properties {
  z-index: 1;
}

.latest-properties-title-wrapper {
  grid-column-gap: 5rem;
  grid-row-gap: 5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: end;
  display: grid;
}

.properties-component {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.properties-filters-wrapper {
  width: 17rem;
  display: none;
}

.filters-header {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  display: flex;
}

.filters-category-list {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  display: flex;
}

.filters-category-link {
  border: 1px solid var(--grey-200);
  border-radius: 5rem;
  padding: .25rem .75rem;
  transition: border .2s;
  display: block;
}

.filters-category-link:hover {
  border-color: var(--grey-800);
}

.filters-category-link.w--current {
  border-color: var(--grey-800);
  background-color: var(--grey-800);
  color: var(--white);
}

.filter-group-header {
  border-top: 1px solid var(--grey-200);
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
  display: flex;
}

.filters-list-wrapper {
  margin-bottom: 1.25rem;
}

.filters1_toggle-button-checkbox {
  border-style: none;
  border-radius: 999rem;
  width: 100%;
  height: 100%;
  margin-top: 0;
  margin-left: 0;
  display: block;
  position: absolute;
  inset: 0%;
}

.filters1_toggle-button-checkbox:focus-visible, .filters1_toggle-button-checkbox[data-wf-focus-visible] {
  outline-offset: 4px;
  outline: 2px solid #0000;
}

.filters1_toggle-button-checkbox.w--redirected-checked {
  background-color: #0000;
  background-image: none;
  border-style: none;
}

.filters1_toggle-button-checkbox.w--redirected-focus {
  box-shadow: none;
}

.filters1_tablet-modal-close-button {
  display: none;
}

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

.filters-tablet-button {
  border: 1px solid var(--grey-400);
  text-align: center;
  background-color: #0000;
  border-radius: 5rem;
  padding: .75rem 1.5rem;
  display: none;
}

.filters-tablet-icon {
  margin-right: .5rem;
}

.properties-list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex: 1;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.section-about {
  z-index: 2;
  overflow: hidden;
}

.section-about.white {
  color: var(--grey-800);
  background-color: #f6f4f0;
}

.about-gallery {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1.5fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
  display: grid;
  transform: scale(1.2);
}

.about-gallery-image-wrapper {
  border-radius: 1.5rem;
  padding-top: 100%;
  position: relative;
  overflow: hidden;
}

.about-gallery-image-wrapper.image-small {
  padding-top: 70%;
}

.about-gallery-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.about-gallery-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  display: flex;
}

.section-about-sticky {
  position: relative;
}

.about-heading-wrapper {
  position: sticky;
  top: 3rem;
}

.about-image-wrapper {
  border-radius: 2rem;
  position: relative;
  overflow: hidden;
}

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

.team-item.top-margin {
  flex-direction: column;
  justify-content: flex-start;
  margin-top: 2rem;
  display: flex;
}

.team-image-wrapper {
  border-radius: 1.5rem;
  flex: 1;
  display: flex;
  position: relative;
  overflow: hidden;
}

.team-image-wrapper.photo {
  align-items: flex-start;
}

.team-content-wrapper {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-items: center;
  margin-top: 1rem;
  display: grid;
}

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

.team-image.test {
  object-position: 50% 0%;
  height: 59vh;
}

.team-social-links {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  display: none;
  position: absolute;
  inset: 1rem 1rem auto auto;
}

.team-social-link {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: #ffffff14;
  border: 1px solid #fff0;
  border-radius: 100%;
  padding: .5rem;
  transition: border .2s;
  display: flex;
}

.team-social-link:hover {
  border: 1px solid var(--white);
}

.section-blog {
  z-index: 2;
  overflow: hidden;
}

.blog-component {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.blog-link {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.blog-categories-tag {
  background-color: var(--grey-100);
  border-radius: 5rem;
  padding: .5rem 1rem;
  transition: background-color .2s;
}

.blog-categories-tag:hover {
  background-color: var(--grey-200);
}

.blog-categories-tag.w--current {
  background-color: var(--grey-800);
  color: var(--white);
}

.categories-list-wrapper.d-none {
  display: none;
}

.categories-list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  display: flex;
}

.empty-state {
  border: 1px solid var(--grey-200);
  background-color: #0000;
  border-radius: 1rem;
  justify-content: center;
  padding: 1rem;
  display: flex;
}

.breadcrumb-component {
  align-items: center;
  width: 100%;
  display: flex;
}

.breadcrumb-link {
  font-size: .875rem;
  text-decoration: none;
}

.breadcrumb-link.w--current {
  font-weight: 600;
}

.breadcrumb-divider {
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  margin-left: .5rem;
  margin-right: .5rem;
  display: flex;
}

.post-main-image-wrapper {
  border-radius: 1.5rem;
  padding-top: 50%;
  position: relative;
  overflow: hidden;
}

.post-main-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.section-related-post {
  z-index: 1;
}

.related-post-title-wrapper {
  grid-column-gap: 5rem;
  grid-row-gap: 5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: end;
  display: grid;
}

.related-post-list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex: 1;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.property-main-image-wrapper {
  border-radius: 1.5rem;
  height: 100%;
  padding-top: 40%;
  overflow: hidden;
  transform: translate(0);
}

.property-main-image {
  object-fit: cover;
  width: 110%;
  height: 110%;
  position: absolute;
  inset: 0%;
}

.property-component {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: start;
  max-width: 60rem;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.property-price, .property-metatag-size {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  align-items: center;
  display: flex;
}

.property-content-right {
  background-color: var(--grey-100);
  border-radius: 1.5rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 30rem;
  padding: 2rem;
  display: none;
  position: sticky;
  top: 2rem;
}

.newsletter-field-wrapper {
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  margin-bottom: 1.25rem;
  display: flex;
  position: relative;
}

.newsletter-form {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-bottom: 0;
}

.newsletter-component {
  width: 100%;
  margin-bottom: 0;
}

.newsletter-input {
  border: 1px solid var(--grey-100);
  background-color: var(--white);
  border-radius: 2rem;
  min-width: 16rem;
  height: 2.75rem;
  margin-bottom: 0;
  padding: .75rem 1.25rem;
  transition: background-color .2s;
  box-shadow: inset -1px 1px #ffffff14;
}

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

.success-message {
  background-color: var(--white);
  border-radius: 1rem;
  min-width: 16rem;
}

.error-message {
  background-color: var(--primary-600);
  color: var(--white);
  border: 1px #000;
  border-radius: 1rem;
}

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

.property-lightbox {
  border-radius: 1rem;
  width: 100%;
  padding-top: 80%;
  position: relative;
  overflow: hidden;
}

.property-lightbox-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.property-more-images {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  background-color: var(--white);
  border-radius: 5rem;
  align-items: center;
  padding: .75rem 1rem;
  transition: transform .2s;
  display: flex;
  position: absolute;
  inset: auto 2rem 2rem auto;
}

.property-more-images:hover {
  transform: scale(1.1);
}

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

.contact-image-wrapper {
  background-color: var(--grey-100);
  border-radius: 3rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  padding-top: 100%;
  position: relative;
  overflow: hidden;
}

.contact-content-wrapper {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  background-color: var(--grey-100);
  border-radius: 3rem;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: flex-start;
  padding: 2.5rem;
  display: flex;
}

.contact-content-wrapper.form-home {
  background-color: #fff;
  width: 100%;
  margin-top: 29px;
}

.contact-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.contact-content-bottom {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.contact-content-top {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.contact-item {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  background-color: var(--grey-100);
  border-radius: 1.5rem;
  flex-direction: column;
  width: 100%;
  padding: 1.5rem 2.5rem;
  display: flex;
}

.contact-title-wrapper {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  align-items: center;
  display: flex;
}

.protected-page-form {
  background-color: var(--grey-100);
  border: 1px #000;
  border-radius: 1.5rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 3rem 1rem;
  display: flex;
}

.protected-form {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  max-width: 24rem;
  display: flex;
}

._404-page-content {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  text-align: center;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr max-content;
  grid-auto-columns: 1fr;
  align-items: center;
  width: 100%;
  max-width: 64rem;
  display: grid;
}

._404-content-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  background-color: var(--grey-100);
  border: 1px #000;
  border-radius: 1.5rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 3rem 1rem;
  display: flex;
}

._404-image-wrapper {
  border-radius: 1.5rem;
  max-width: 22rem;
  overflow: hidden;
}

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

.filter-group.none {
  display: none;
}

.property-content-wrapper {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.property-price-wrapper {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  align-items: center;
  display: flex;
}

.property-price-wrapper.tablet {
  display: none;
}

.testimonial-header-wrapper {
  width: 100%;
  max-width: 37rem;
  position: sticky;
  top: 2rem;
}

.about-white-background {
  z-index: 1;
  background-color: #ffffffb3;
  position: absolute;
  inset: 3rem 0% 0%;
}

.about-heading {
  width: 100%;
  max-width: 60rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.spacer-xxlarge {
  width: 100%;
  height: 8rem;
}

.new-property-location {
  color: var(--white);
  text-transform: uppercase;
  font-size: .875rem;
}

.paragraph {
  font-size: 1.1rem;
  line-height: 1.8;
}

.paragraph.small {
  line-height: 1.7;
}

.top-margin {
  margin-top: 1rem;
}

.blog-subtitle {
  height: 4.8rem;
  position: relative;
  overflow: hidden;
}

.blog-overlay {
  background-image: linear-gradient(270deg, #fff, #fff0);
  width: 7rem;
  height: 1.7rem;
  position: absolute;
  inset: auto 0% 0% auto;
}

.opacity-60 {
  opacity: .6;
}

.max-width-xsmall {
  width: 100%;
  max-width: 27ch;
}

.logo-marquee {
  grid-column-gap: 5rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.logo-marquee.black {
  filter: invert();
}

.hero_image-wrapper-bottom {
  grid-column-gap: 1rem;
  flex-wrap: nowrap;
  margin-left: -13rem;
  display: flex;
}

.about {
  background-color: var(--white);
  color: var(--grey-800);
  overflow: hidden;
}

.pp_footer-content {
  grid-row-gap: 2rem;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 90%;
  display: flex;
}

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

.pp_faq-heading {
  letter-spacing: 0;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.7;
}

.pps-projects_component {
  grid-row-gap: 0rem;
  background-color: var(--white);
  border: 1px solid #0000;
  border-radius: .8rem;
  flex-direction: column;
  transition: all .3s;
  display: flex;
  overflow: hidden;
}

.pps-projects_component:hover {
  border: 1px solid #000;
  box-shadow: 0 6px 20px #0000001f;
}

.navigation-wrapper {
  background-color: #fff;
  border-radius: 100rem;
  padding: .25rem;
}

.pp_text-medium {
  color: #000;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.7;
}

.pps-experience_component {
  grid-row-gap: .25rem;
  border: 1px solid #353535;
  border-radius: .5rem;
  flex-direction: column;
  align-items: flex-start;
  margin-left: -1px;
  padding: 1.25rem 1.625rem 2.188rem;
  display: flex;
}

.faq-action {
  background-color: #fff;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  display: flex;
}

.faq-list {
  grid-column-gap: 5rem;
  grid-row-gap: 0rem;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
  position: relative;
}

.hero_component {
  grid-column-gap: 2.5rem;
  flex-direction: column;
  margin-top: 2rem;
  margin-bottom: 6rem;
  display: flex;
}

.pp-paragraph {
  opacity: 1;
  color: #fbfbfbcc;
}

.pp-paragraph.black {
  color: #121212;
}

.pp-paragraph.left-align {
  grid-row-gap: .5rem;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.pp-paragraph.left-align.black {
  grid-column-gap: 16px;
  grid-row-gap: .5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: flex;
}

.pp-paragraph.left-align.black.grid {
  grid-column-gap: 16px;
  grid-row-gap: .5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  margin-top: 2rem;
  display: grid;
}

.nav_proposal {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
}

.pps-experience_grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.faq-top {
  z-index: 1;
  cursor: pointer;
  padding: 0;
  position: relative;
}

.pp_footer-subtitle {
  text-align: center;
  max-width: 100ch;
}

.pps-projects_image {
  object-fit: cover;
  object-position: 50% 0%;
  width: 100%;
  height: 22.5rem;
}

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

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

.heading-xlarge.text-align-center.proposal {
  font-size: 5rem;
}

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

.porposal-client_logo {
  filter: invert();
}

.faq_component {
  padding-bottom: 12rem;
}

.content_component {
  grid-row-gap: 6rem;
  flex-direction: column;
  align-items: stretch;
  margin-bottom: 10rem;
  padding-top: 7.3rem;
  display: flex;
}

.hero_image {
  object-fit: cover;
  border-radius: 8px;
  width: 51vh;
  height: 44vh;
}

.button-2 {
  grid-column-gap: 1rem;
  color: #fff;
  text-align: center;
  background-color: #383838;
  border-radius: 6rem;
  justify-content: center;
  align-items: center;
  padding: 1.3rem 2rem;
  transition: box-shadow .2s, transform .2s;
  display: flex;
}

.button-2:hover {
  transform: translate(3px);
  box-shadow: -3px 1px 0 -1px #0000003b;
}

.social-link-list {
  grid-column-gap: .75rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  display: flex;
}

.arrow-icon {
  filter: invert();
  position: absolute;
}

.arrow-icon.absolute {
  position: relative;
  left: -2rem;
}

.footer-link-2 {
  width: 100%;
  height: 1px;
}

.button-wrapper-fs {
  margin-top: 2.5rem;
}

.hero_animation {
  grid-row-gap: 1rem;
  flex-direction: column;
  padding-bottom: 5.8rem;
  display: flex;
}

.footer-button-wrapper {
  margin-top: 5rem;
  display: flex;
}

.footer-bottom-2 {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  color: #ffffffb3;
  text-align: center;
  border-top: 1px solid #1a242c;
  grid-template-rows: auto;
  grid-template-columns: .55fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  place-items: center stretch;
  padding-top: 2rem;
  padding-bottom: 2rem;
  font-size: .875rem;
  font-weight: 300;
  display: flex;
}

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

.pps-process_grid {
  grid-column-gap: 2rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  justify-content: center;
  place-items: center;
  width: 140%;
  margin-top: 6rem;
  display: flex;
}

.hero_heading {
  grid-row-gap: 1rem;
  flex-direction: column;
  align-items: center;
  margin-top: 4rem;
  display: flex;
}

.pp_footer-component {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  display: flex;
}

.pps-experience_grid-wrapper {
  margin-top: 6rem;
}

.pps-process_circle {
  color: #fff;
  text-transform: uppercase;
  background-color: #1f1f1f;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 15rem;
  height: 15rem;
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
}

.pps-process_circle.is-fourth {
  background-color: #b0ca34;
}

.pps-process_circle.is-fourth.grey {
  background-color: #949494;
}

.pps-process_circle.is-second {
  background-color: #363636;
}

.pps-process_circle.is-third {
  background-color: #464646;
}

.pps-process_circle.is-fifith {
  background-color: #ff8347;
}

.pps-process_circle.is-fifith.grey {
  background-color: #b9b9b9;
}

.navbar_content.right {
  text-align: right;
  text-align: right;
  flex-direction: column;
  justify-content: flex-end;
  display: flex;
}

.pp-grid {
  align-items: flex-start;
  width: 100%;
  margin-top: 4rem;
  display: flex;
}

.subtitle-wrapper {
  text-align: center;
  max-width: 91ch;
}

.button-arrow {
  background-color: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.faq-bottom {
  z-index: 10;
  position: relative;
  overflow: hidden;
}

.faq-action-wrapper {
  z-index: 25;
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0% 0 0% auto;
}

.pp_divider {
  background-color: #373737;
  width: 100%;
  height: 1px;
  margin-bottom: 4rem;
}

.pp_faq-answer {
  opacity: .8;
  font-size: 1rem;
  line-height: 1.65;
}

.pp_title {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 3.8rem;
  font-weight: 800;
}

.pps-projects {
  padding-top: 7rem;
  padding-bottom: 4.1rem;
}

.pp_grid-left {
  letter-spacing: 1px;
  text-transform: uppercase;
  flex-direction: column;
  align-items: flex-start;
  width: 30%;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
}

.section-pps-next-steps {
  z-index: 1;
  color: #fbfbfb;
  background-color: #1d1d1d;
  position: sticky;
  bottom: 0;
}

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

.text-style-allcaps-2.text-weight-xbold.letter-space {
  font-weight: 200;
}

.text-style-allcaps-2.text-size-regular.text-weight-medium {
  font-size: 1.3rem;
  font-weight: 600;
}

.hero_image-wrapper {
  grid-column-gap: 1rem;
  flex-wrap: nowrap;
  display: flex;
}

.pp_component {
  grid-row-gap: 3rem;
  flex-direction: column;
  align-items: center;
  margin-top: 12rem;
  margin-bottom: 10rem;
  display: flex;
}

.pps-projects_grid {
  grid-column-gap: 1rem;
  grid-row-gap: 1.25rem;
  margin-top: 2.4rem;
  margin-bottom: 2.4rem;
}

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

.container-large-fs.small {
  max-width: 90rem;
}

.pps-experience_logo {
  filter: invert();
  height: 1.3rem;
}

.pps-experience_logo.is-large {
  height: 1.7rem;
  margin-top: -.125rem;
}

.faq-bottom-content {
  grid-column-gap: 0px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  padding-bottom: 4rem;
  display: grid;
}

.pp-footer-text {
  font-size: 1.5rem;
}

.faq-item {
  border-bottom: 1px solid #1a242c;
}

.pp-menu-text {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.6;
}

.faq-title {
  z-index: 10;
  height: 100%;
  padding: 1.9rem 5rem 1.9rem 0;
  position: relative;
}

.pps_info {
  grid-row-gap: 4px;
  flex-direction: column;
  padding: 1.5rem 1.4rem 2rem;
  display: flex;
}

.pp_subtitle {
  color: #fbfbfbcc;
  font-size: 1.8rem;
}

.pp_subtitle.margin-top {
  margin-top: 1rem;
}

.navigation-link {
  color: #121212;
  padding: .375rem 1rem;
  text-decoration: none;
  transition: all .3s;
}

.navigation-link:hover {
  background-color: #f4f4f4;
  border-radius: 10rem;
  margin-left: .5rem;
  margin-right: .5rem;
}

.navigation-link.w--current {
  color: #f4f4f4;
  background-color: #121212;
  border-radius: 6rem;
}

.navigation-link.w--current:hover {
  margin-left: 0;
  margin-right: 0;
}

.tab-lottie {
  filter: invert();
  justify-content: center;
  align-items: center;
  width: .875rem;
  display: flex;
}

.image-galery {
  object-fit: cover;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 70vw;
  height: 36vw;
  display: flex;
}

.pp_title-wrapper {
  grid-column-gap: 2rem;
  align-items: center;
  width: 100%;
  display: flex;
}

.pp_title-wrapper.margin-top {
  margin-top: 5rem;
}

.text-size-small-2 {
  font-size: .875rem;
}

.text-size-small-2.text-weight-black {
  font-size: 1rem;
  font-weight: 600;
}

.text-size-small-2.text-style-allcaps.letter-space {
  letter-spacing: 2px;
  letter-spacing: 2px;
  font-size: .8rem;
}

.text-size-small-2.black {
  color: #333;
}

.text-size-small-2.big {
  font-weight: 500;
}

.main-wrapper-fs {
  z-index: 2;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

.main-wrapper-fs.black {
  color: #fbfbfb;
  background-color: #0e0e0e;
}

.image-galery-section {
  grid-column-gap: 1rem;
  flex-flow: row;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  margin-left: -2vw;
  display: flex;
}

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

.margin-top.margin-xlarge {
  justify-content: center;
  align-items: center;
  margin-top: 2.1rem;
  display: flex;
}

.pp-footer_wrapper {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  max-height: 70vh;
  display: flex;
}

.pp_grid-right {
  width: 70%;
}

.bottom-navbar {
  z-index: 25;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  inset: auto 0% 3rem;
}

.social-link {
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2rem;
  justify-content: center;
  align-items: center;
  height: 3rem;
  padding-left: 1.6rem;
  padding-right: 1.6rem;
  font-size: .8rem;
  font-weight: 700;
  transition: box-shadow .4s cubic-bezier(.215, .61, .355, 1);
  display: flex;
  box-shadow: inset 0 0 0 1px #1a242c;
}

.social-link:hover {
  box-shadow: inset 0 0 0 2px #617481;
}

.hero_wrapper {
  grid-row-gap: 1rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.hero_images {
  grid-column-gap: 1rem;
  justify-content: center;
  align-items: center;
  display: flex;
}

.proposal-images {
  object-fit: cover;
  border-radius: 50%;
  width: 5rem;
}

.hero_text {
  color: #919191;
  max-width: 77rem;
}

.white {
  color: #fff;
}

.pp_about {
  width: 100%;
  font-family: Plus Jakarta Sans, sans-serif;
  font-size: 4rem;
  font-weight: 600;
}

.pp_about.vertical {
  grid-row-gap: 5rem;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.heading-large {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.3;
}

.heading-large.text-align-center.proposal {
  font-size: 5rem;
}

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

.about_paragraph {
  grid-row-gap: 2rem;
  flex-direction: column;
  align-self: flex-end;
  max-width: 65%;
  display: flex;
}

.pp_about_paragraph {
  font-size: 1.5rem;
  font-weight: 500;
}

.pp_about_paragraph.normal {
  font-weight: 400;
  line-height: 1.7;
}

.padding-section-large-copy {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.about_marquee {
  grid-column-gap: 1rem;
  padding-bottom: 1.5rem;
  display: flex;
}

.about-marquee-text {
  font-size: 10rem;
  font-weight: 400;
}

.works {
  color: var(--grey-800);
  background-color: #f6f4f0;
}

.works.d-none {
  display: none;
}

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

.logos.d-none {
  display: none;
}

.logos-component {
  grid-row-gap: 4rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 7.4rem;
  padding-bottom: 4rem;
  display: flex;
}

.logos-grid {
  grid-column-gap: 4rem;
  grid-row-gap: 6rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  align-self: center;
  width: 80%;
  margin-top: 2rem;
  margin-bottom: 7rem;
  padding-left: 2rem;
  padding-right: 2rem;
}

.expertise {
  background-color: #f6f4f0;
}

.expertise-component {
  color: var(--grey-800);
  padding-top: 10rem;
  padding-bottom: 10rem;
}

.expertise_grid {
  margin-top: 6rem;
  font-size: 1rem;
  font-weight: 400;
}

.expertise_card {
  grid-row-gap: 1rem;
  background-color: #fff;
  border-radius: 1rem;
  flex-direction: column;
  align-items: flex-start;
  padding: 3rem 1.8rem;
  font-size: 1rem;
  font-weight: 400;
  display: flex;
}

.expertise_icon-wrapper {
  background-color: #f8f8f8;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 5rem;
  height: 5rem;
  padding: 20px;
  display: flex;
}

.expertise_card-title {
  font-size: 1.3rem;
  font-weight: 600;
}

.text-regular {
  color: #707070;
  line-height: 1.7;
}

.feedback {
  color: var(--grey-800);
  background-color: #f6f4f0;
}

.feedback_component {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.feedback_component.d-none {
  display: none;
}

.grid-feedback {
  grid-column-gap: 1.75rem;
  grid-row-gap: 5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 4rem;
  display: grid;
}

.feedback-grid {
  grid-row-gap: 3rem;
  background-color: #fff;
  border-radius: .5rem;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 2.2rem;
  display: flex;
}

.feedback-texts {
  line-height: 1.8;
}

.feedback-content {
  grid-column-gap: 1rem;
  display: flex;
}

.proposal-images_image {
  object-fit: cover;
  border-radius: 50%;
  width: 4rem;
}

.feedback-name {
  align-self: center;
}

.div-block {
  grid-row-gap: 2rem;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.logos-case {
  height: 2rem;
}

.logos-case.bigger {
  height: 2.7rem;
}

.collection-list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  align-items: center;
  display: flex;
}

.project-images-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;
}

.image-4 {
  border-radius: 1rem;
  width: 100%;
  height: 100%;
}

.quick-stack {
  grid-column-gap: 2.5rem;
  grid-row-gap: 0rem;
  padding: 0;
}

.headline {
  font-size: 2.1rem;
}

.quick-stack-2 {
  grid-column-gap: 2.5rem;
  grid-row-gap: 0rem;
  padding: 0;
}

.overlay {
  z-index: 2;
  background-color: #03050800;
  background-image: linear-gradient(0deg, #060a0ef2 24%, #060a0e00 58%);
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.div-block-2 {
  border-radius: 1rem;
  width: 100%;
  height: 120%;
  position: relative;
  overflow: hidden;
}

.div-block-3 {
  max-width: 100ch;
}

.investimento {
  background-color: #f6f4f0;
}

.investimento-card {
  grid-row-gap: 1rem;
  background-color: #f6ffed;
  border: 1px solid #c6e3a9;
  border-radius: 1rem;
  flex-direction: column;
  align-items: flex-start;
  padding: 3rem 1.8rem;
  font-size: 1rem;
  font-weight: 400;
  display: flex;
}

.invest-ard-title {
  grid-column-gap: .5rem;
  align-items: flex-end;
  font-size: 3.1rem;
  font-weight: 600;
  line-height: 1;
  display: flex;
}

.invest-card-title-1 {
  font-size: 1rem;
  font-weight: 600;
}

.text-span {
  font-size: 1.2rem;
  font-weight: 400;
}

.investiment {
  color: var(--grey-800);
  background-color: #f6f4f0;
}

.heading {
  color: var(--grey-800);
  letter-spacing: 0;
  font-size: 3rem;
  font-weight: 600;
}

.pps-projects_image-2 {
  object-fit: cover;
  object-position: 50% 50%;
  border-radius: .5rem;
  width: 100%;
  height: 22.5rem;
  position: static;
}

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

.container-large-2.small {
  box-sizing: border-box;
  max-width: 80%;
}

.pps-projects_component-2 {
  grid-row-gap: 1.4rem;
  flex-direction: column;
  transition: opacity .3s;
  display: flex;
}

.pps-projects_component-2:hover {
  opacity: .67;
}

.pps_info-2 {
  grid-row-gap: 1px;
  flex-direction: column;
  display: flex;
}

.pps-projects-2 {
  margin-top: 10rem;
}

.pps-projects_grid-2 {
  grid-column-gap: 1rem;
  grid-row-gap: 5rem;
  grid-template-rows: auto;
}

.body {
  background-color: #fbfdf9;
}

.pps-projects_image-3 {
  object-fit: cover;
  object-position: 50% 50%;
  border-radius: .5rem;
  width: 100%;
  height: 22.5rem;
  position: static;
}

.pps-projects_grid-3 {
  grid-column-gap: 1rem;
  grid-row-gap: 5rem;
  grid-template-rows: auto;
}

.page-padding-2 {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  font-weight: 300;
}

.pps-projects_grid-4 {
  grid-column-gap: 1rem;
  grid-row-gap: 5rem;
  grid-template-rows: auto;
}

.content_component-2 {
  grid-row-gap: 3rem;
  flex-direction: column;
  margin-top: 12rem;
  margin-bottom: 10rem;
  display: flex;
}

.pp_title-2 {
  letter-spacing: 0;
  text-transform: none;
  font-size: 3.8rem;
  font-weight: 200;
}

.pp_text-medium-2 {
  width: 100%;
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1.7;
}

.opacity-80-2 {
  color: #fbfbfbc4;
}

.opacity-80-2.black {
  color: #121212;
}

.span_opacity100-2 {
  color: #fbfbfb;
}

.span_opacity100-2.black {
  color: #121212;
}

.pps-projects_grid-5, .pps-projects_grid-6, .pps-projects_grid-7 {
  grid-column-gap: 1rem;
  grid-row-gap: 5rem;
  grid-template-rows: auto;
}

.body-2 {
  background-color: #fff;
}

.text-span-2, .text-span-3 {
  font-style: italic;
  font-weight: 400;
}

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

.button2 {
  grid-column-gap: 2em;
  background-color: #383838;
  border-radius: 99px;
  align-items: center;
  min-height: 4em;
  padding-left: 2em;
  padding-right: 5.5em;
  display: flex;
  position: relative;
}

.button2_icon-wrap {
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 99px;
  justify-content: center;
  align-items: center;
  width: 3em;
  height: 3em;
  display: flex;
  position: absolute;
  top: auto;
  bottom: auto;
  right: auto;
}

.text-span-5 {
  font-weight: 400;
}

.text-span-6 {
  color: var(--grey-800);
}

.text-span-7 {
  font-weight: 600;
}

.image-5 {
  max-width: 30%;
}

.button-3 {
  grid-column-gap: 1rem;
  text-align: center;
  background-color: #38383800;
  border-style: solid;
  border-width: 1px;
  border-radius: 6rem;
  justify-content: center;
  align-items: center;
  padding: 1.3rem 2rem;
  transition: box-shadow .2s, transform .2s;
  display: flex;
}

.button-3:hover {
  transform: translate(3px);
  box-shadow: -3px 1px 0 -1px #0000003b;
}

.hero_component-2 {
  grid-column-gap: 6rem;
  flex-direction: column;
  margin-top: 2rem;
  margin-bottom: 6rem;
  display: flex;
}

.pp_subtitle-2 {
  font-size: 1.7rem;
  font-weight: 300;
}

.pp_subtitle-2.black {
  color: #0a0e10cc;
  font-size: 1.3rem;
  font-weight: 300;
}

.button-arrow-2 {
  background-color: #7ce40c;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.nav_proposal-2 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.hero_heading-2 {
  grid-row-gap: 1rem;
  flex-direction: column;
  align-items: center;
  margin-top: 10rem;
  display: flex;
}

.text-span-49 {
  font-weight: 600;
}

.nav_logo-2 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.button-wrapper-2 {
  margin-top: 2.5rem;
}

.heading-xlarge-2 {
  color: #0a111f;
  text-align: center;
  font-size: 8rem;
  font-weight: 200;
  line-height: 1.1;
}

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

.text-block.logo-footer {
  color: var(--white);
}

.text-span-50 {
  font-weight: 400;
}

.hero_animation-2 {
  grid-row-gap: 1rem;
  flex-direction: column;
  display: flex;
}

.hero_image-2 {
  object-fit: cover;
  object-position: 50% 51%;
  border-radius: 8px;
  width: 51vh;
  height: 44vh;
}

.text-size-display {
  font-size: 2.5em;
  line-height: 1.1;
}

.text-size-display.text-weight-regular {
  font-weight: 200;
}

.cards-wrapper {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.card-margin {
  margin-bottom: 13px;
  display: flex;
}

.cards-header {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: column;
  align-items: flex-start;
  display: flex;
}

.cards-header.small {
  max-width: 47ch;
}

.cards-left {
  grid-column-gap: 1.125em;
  grid-row-gap: 1.125em;
  flex-flow: column;
  align-items: flex-start;
  display: flex;
}

.opacity-50 {
  opacity: .5;
}

.text-size-tiny-2 {
  letter-spacing: .05rem;
  font-size: .75rem;
  line-height: 1.15;
}

.text-size-tiny-2.text-weight-bold {
  font-weight: 600;
}

.about-card {
  background-color: #edeceb;
  border: .5px solid #c3c3c3;
  border-radius: .8125rem;
  justify-content: center;
  align-items: center;
  width: 15.5em;
  padding: 5.625em 4em;
  display: flex;
}

.about-card.is-content {
  grid-column-gap: 5em;
  grid-row-gap: 5em;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.25em 1em;
  transition: all .25s cubic-bezier(.165, .84, .44, 1);
}

.about-card.is-content:hover {
  background-color: #e6e6e6;
}

.about-card.is-content.is-first, .about-card.is-content.is-third, .about-card.is-content.is-second {
  background-color: #eff3f2;
}

.text-size-regular-2 {
  line-height: 1.5;
  font-size: clamp(1rem, var(--text-size--regular), 1.1rem);
}

.header-slide-image-wrapper-2 {
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
  position: relative;
}

.cards-grid {
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: flex;
}

.code-embed {
  justify-content: center;
  align-items: center;
  display: flex;
}

.pp_title-3 {
  letter-spacing: 0;
  text-transform: none;
  font-size: 2.5rem;
  font-weight: 200;
}

.text-size-small-3 {
  line-height: 1;
  font-size: clamp(.875rem, var(--text-size--small), .975rem);
}

.text-size-small-3.line-height-150 {
  line-height: 1.5;
}

.logo-images-2 {
  height: 4vh;
}

.green-tag-wrapper {
  grid-column-gap: .625em;
  grid-row-gap: .625em;
  align-items: center;
  display: flex;
}

.text-size-huge {
  font-size: 2em;
  line-height: 1.15;
}

.cards-component {
  grid-column-gap: 9.4375em;
  grid-row-gap: 9.4375em;
  flex-flow: column;
  margin-top: 8em;
  margin-bottom: 8em;
  display: flex;
}

.pps-projects_grid-8 {
  grid-column-gap: 1rem;
  grid-row-gap: 5rem;
  grid-template-rows: auto;
}

.header-slider-2 {
  background-color: #0000;
  border-radius: 1.5rem;
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
  overflow: hidden;
}

.green-tag {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  color: #2c2d2f80;
  background-color: #bddc7c;
  border-radius: .1875rem;
  justify-content: flex-start;
  align-items: center;
  padding: .375rem;
  display: flex;
}

.pp_text-medium-3 {
  opacity: .8;
  color: #0a0e10cc;
  width: 100%;
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1.7;
}

.text-span-51 {
  font-size: 1.2rem;
}

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

.limit-976 {
  max-width: 976px;
}

.span-accent {
  font-weight: 500;
}

.big-text {
  font-size: 42px;
  font-weight: 300;
  line-height: 52px;
}

.space-64 {
  height: 64px;
}

.main-container {
  max-width: 1348px;
  padding-left: 24px;
  padding-right: 24px;
}

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

.section {
  padding-top: 80px;
  padding-bottom: 80px;
}

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

.text-stat {
  color: #1e1e1e;
  font-size: 40px;
  line-height: 130%;
}

.wrap-numbers {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.number-tile {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  text-align: center;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  height: 112px;
  padding-top: 4px;
  padding-bottom: 4px;
  display: flex;
}

.number-tile.right {
  border-right: 1px solid #dcdcdc;
}

.number-tile.middle {
  border-left: 1px solid #dcdcdc;
  border-right: 1px solid #dcdcdc;
}

.section-2 {
  padding-top: 140px;
  padding-bottom: 140px;
}

.section-2.pd-bottom-200px {
  background-color: #000;
  padding-bottom: 200px;
}

.process-grid-item {
  border-bottom: 1px solid #474747;
  flex-direction: column;
  padding-bottom: 40px;
  display: flex;
}

.process-grid-item.left {
  margin-top: -52px;
}

.btn-primary {
  color: #141414;
  text-align: center;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 48px;
  justify-content: center;
  padding: 16px 32px;
  font-weight: 500;
  line-height: 1.111em;
  text-decoration: none;
  transition: border-color .3s, background-color .3s, transform .3s, color .3s;
}

.btn-primary:hover {
  color: #060606;
  transform: scale(.96);
}

.mg-bottom-32px {
  color: var(--grey-200);
  margin-bottom: 32px;
}

.inner-container._710px {
  max-width: 710px;
}

.inner-container._406px {
  max-width: 406px;
}

.heading-h2-size {
  color: #fff;
  font-size: 38px;
  font-weight: 500;
  line-height: 1.368em;
}

.display-2 {
  color: #fff;
  font-size: 80px;
  font-weight: 500;
  line-height: 1.125em;
}

.sticky-top {
  position: sticky;
  top: 24px;
}

.grid-2-columns {
  grid-column-gap: 28px;
  grid-row-gap: 28px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.grid-2-columns.process-section---about-page {
  grid-column-gap: 32px;
  grid-template-columns: 1fr 1.75fr;
  align-items: start;
}

.grid-2-columns.our-process-grid {
  grid-row-gap: 80px;
  align-items: start;
  margin-top: 52px;
}

.container-default {
  max-width: 1328px;
  padding-left: 24px;
  padding-right: 24px;
}

.mg-bottom-0 {
  color: var(--grey-200);
  margin-bottom: 0;
}

.display-1 {
  color: #fff;
  font-size: 128px;
  font-weight: 500;
  line-height: .938em;
}

.button-arrow-3 {
  margin-left: 6px;
  display: inline-block;
}

.text-span-52 {
  font-size: .7rem;
}

.text-span-53 {
  color: var(--primary-600);
  font-weight: 600;
}

.text-span-54 {
  opacity: .6;
}

.invest-card {
  background-color: #576b6f00;
  border: 1px solid #fff3;
  border-radius: .5rem;
  padding: 2rem 2.5rem;
}

.invest-card.white {
  color: #000;
  background-color: #f4f5f7;
}

.pp_price-tag {
  letter-spacing: 1px;
  background-color: #a6b952;
  border-radius: 8rem;
  justify-content: center;
  align-items: center;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  font-size: .9rem;
  font-weight: 800;
  display: flex;
}

.pp_price-tag.blue {
  color: #fff;
  background-color: #b0ca34;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.milestones {
  grid-column-gap: 1rem;
  flex-direction: row;
  align-items: center;
  display: flex;
}

.pp_investiment-content {
  grid-row-gap: 1rem;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 2rem;
  display: flex;
}

.div-block-4 {
  align-self: stretch;
}

.pp_divider-2 {
  background-color: #0003;
  width: 100%;
  height: 1px;
  margin-bottom: 4rem;
}

.milestones_wrapper {
  grid-row-gap: .25rem;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.pp_title-4 {
  letter-spacing: 0;
  text-transform: none;
  font-size: 2.5rem;
  font-weight: 200;
}

.invest-card_top {
  justify-content: space-between;
  margin-bottom: 1rem;
  display: flex;
}

.pp-grid_invest {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  width: 100%;
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.entregaveis-wrapper {
  grid-row-gap: .5rem;
  flex-direction: column;
  display: flex;
}

.pp_elipse {
  background-color: #fff;
  border-radius: 50%;
  width: .3rem;
  height: .3rem;
}

.pp_elipse.invert {
  background-color: #121212;
  min-width: .3rem;
  min-height: .3rem;
}

.pp_text-small {
  font-size: 1rem;
  line-height: 1.7;
}

.pp_price-text {
  color: #000;
  font-size: 2.5rem;
  font-weight: 300;
}

.pp_text-medium-4 {
  opacity: .8;
  color: #0a0e10cc;
  width: 100%;
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1.7;
}

.text-block-2 {
  color: #000;
}

.pp_faq-heading-2 {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.35;
}

.faq-item-2 {
  border-bottom: 1px solid #fff3;
}

.text-span-55 {
  font-weight: 600;
}

.slider {
  border-radius: 1.3rem;
  width: 100%;
  height: 70dvh;
}

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

.slider-arrow {
  background-color: #fff;
  border-radius: 8rem;
  justify-content: center;
  align-items: center;
  width: 5rem;
  height: 5rem;
  display: flex;
  inset: auto 1rem 1rem auto;
}

.slider-arrow.left {
  border-radius: 8rem;
  right: 6.5rem;
}

.d-none {
  display: none;
}

.text-span-56 {
  font-weight: 600;
}

.button-4 {
  color: #fff;
  background-color: #7ce40c;
  border-radius: 5rem;
  padding: .75rem 1.5rem;
  transition: background-color .2s;
}

.button-4:hover {
  background-color: #111920;
}

.button-4.small {
  color: #fff;
  letter-spacing: .1px;
  background-color: #2042e4;
  width: 100%;
  font-size: .875rem;
  font-weight: 500;
}

.button-4.small:hover {
  color: #fbfbfb;
}

.pp_grid-left-2 {
  letter-spacing: 1px;
  text-transform: uppercase;
  flex-direction: column;
  align-items: flex-start;
  width: 30%;
  font-weight: 600;
  display: flex;
}

.pp_grid-right-2 {
  opacity: 1;
  width: 70%;
}

.pp_text-medium-5 {
  opacity: .8;
  color: #0a0e10cc;
  width: 100%;
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1.7;
}

.mask-2 {
  border-radius: 1.3rem;
}

.image-7 {
  max-width: 6rem;
}

.success-message-2 {
  background-color: #fff;
  border-radius: 1rem;
  min-width: 16rem;
}

.contact-content-wrapper-2 {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  background-color: #e5ebf0;
  border-radius: 3rem;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: flex-start;
  padding: 2.5rem;
  display: flex;
}

.contact-content-wrapper-2.form-home {
  background-color: #fff;
  width: 100%;
  margin-top: 29px;
}

.text-size-small-4 {
  margin-bottom: 0;
  font-size: .875rem;
}

.contact-item-2 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  background-color: #e5ebf0;
  border-radius: 1.5rem;
  flex-direction: column;
  width: 100%;
  padding: 1.5rem 2.5rem;
  display: flex;
}

.form-input-2 {
  color: #a3a3a3;
  background-color: #fff;
  border: 1px solid #e5ebf0;
  border-radius: .5rem;
  min-width: 16rem;
  height: 2.75rem;
  margin-bottom: 0;
  padding: .75rem 1.25rem;
  transition: background-color .2s;
  box-shadow: inset -1px 1px #ffffff14;
}

.form-input-2::placeholder {
  color: #a3a3a3;
}

.form-input-2.form-tel {
  margin-bottom: 1.1rem;
}

.form-input-2.form-select {
  border-radius: .5rem;
  margin-bottom: 1.1rem;
}

.form-input-2.text-area {
  border-radius: .5rem;
  height: auto;
  min-height: 8rem;
}

.error-message-2 {
  color: #fff;
  background-color: #7ce40c;
  border: 1px #000;
  border-radius: 1rem;
}

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

.button-5 {
  color: #fff;
  background-color: #7ce40c;
  border-radius: 5rem;
  padding: .75rem 1.5rem;
  transition: background-color .2s;
}

.button-5:hover {
  background-color: #111920;
}

.testimonial-shape-2 {
  background-color: #e5ebf0;
  border-top-left-radius: 1.5rem;
  border-bottom-left-radius: 1.5rem;
  width: 50%;
  height: 100%;
  min-height: 3rem;
}

.testimonial-shape-2.left {
  border-radius: 0 1.5rem 1.5rem 0;
}

.testimonial-corner-2 {
  background-color: #fff;
  border-bottom-right-radius: 100%;
  width: 100%;
  height: 100%;
}

.testimonial-corner-2.left {
  border-bottom-right-radius: 0%;
  border-bottom-left-radius: 100%;
}

.text-color-grey-2 {
  color: #767c80;
}

.testimonial-corner-wrapper-2 {
  z-index: -1;
  background-color: #e5ebf0;
  width: 1.5rem;
  height: 1.5rem;
  position: absolute;
  inset: auto 0% 0% auto;
}

.testimonial-corner-wrapper-2.left {
  inset: auto auto 0% 0%;
}

.testimonial-content-2 {
  background-color: #e5ebf0;
  border-top-left-radius: 1.5rem;
  border-top-right-radius: 1.5rem;
  border-bottom-right-radius: 1.5rem;
  padding: 2rem 2.25rem;
}

.testimonial-content-2.right {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 1.5rem;
}

.image-8 {
  mix-blend-mode: difference;
}

@media screen and (min-width: 1920px) {
  body {
    font-size: 1.125rem;
  }

  h1 {
    font-size: 3.75rem;
  }

  h2 {
    font-size: 3.5rem;
  }

  h3 {
    font-size: 3rem;
  }

  h4 {
    font-size: 2.5rem;
  }

  h5 {
    font-size: 1.75rem;
  }

  h6 {
    font-size: 1.5rem;
  }

  .styleguide-label {
    font-size: 1rem;
  }

  .heading-style-h3 {
    font-size: 3rem;
  }

  .heading-style-h4 {
    font-size: 2.5rem;
  }

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

  .heading-style-h5 {
    font-size: 1.75rem;
  }

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

  .heading-style-h2 {
    font-size: 3.5rem;
  }

  .form-input {
    height: 3.5rem;
  }

  .form-input.form-tel {
    background-color: #fff;
  }

  .heading-style-h6 {
    font-size: 1.5rem;
  }

  .heading-style-h1 {
    font-size: 3.75rem;
  }

  .container-medium {
    max-width: 74rem;
  }

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

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

  .container-small {
    max-width: 58rem;
  }

  .nav-container {
    max-width: 108rem;
  }

  .container-large {
    max-width: 100vw;
  }

  .max-width-large.align-center {
    max-width: 80rem;
  }

  .max-width-medium {
    max-width: 45rem;
  }

  .footer-content, .footer-menu {
    grid-column-gap: 5rem;
    grid-row-gap: 5rem;
  }

  .newsletter-button {
    margin-right: .5rem;
  }

  .header-slider {
    height: 100%;
  }

  .header-slide-image-wrapper {
    padding-top: 40%;
  }

  .newsletter-input {
    height: 3.5rem;
  }

  .contact-content-wrapper.form-home {
    background-color: #fff0;
  }

  .about-heading {
    max-width: 50rem;
  }

  .overlay {
    background-image: linear-gradient(0deg, #060a0ef2 5%, #060a0e00 48%);
  }

  .container-large-2.small {
    max-width: 60%;
  }

  .mask {
    height: 30vh;
  }

  .header-slider-2 {
    height: auto;
  }

  .slider {
    border-radius: 3rem;
  }

  .slider-arrow {
    border-radius: 5rem;
  }

  .mask-2 {
    border-radius: 3rem;
  }

  .text-size-small-4 {
    font-size: 1rem;
  }

  .form-input-2 {
    height: 3.5rem;
  }

  .container-large-3 {
    max-width: 90rem;
  }
}

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

  h2 {
    font-size: 2.5rem;
  }

  h3 {
    font-size: 2rem;
  }

  h4 {
    font-size: 1.75rem;
  }

  h5 {
    font-size: 1.25rem;
  }

  h6 {
    font-size: 1rem;
  }

  .button {
    width: 19%;
  }

  .heading-style-h3 {
    font-size: 2rem;
  }

  .heading-style-h4 {
    font-size: 1.75rem;
  }

  .heading-style-h5 {
    font-size: 1.25rem;
  }

  .heading-style-h2 {
    font-size: 2.5rem;
  }

  .heading-style-h6 {
    font-size: 1rem;
  }

  .heading-style-h1 {
    font-size: 2.75rem;
  }

  .padding-section-large {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .changelog-section {
    min-height: 90dvh;
  }

  .assets-link {
    justify-content: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
    display: flex;
  }

  .link-underline {
    display: none;
  }

  .nav-link-wrapper {
    flex-direction: column;
  }

  .nav-menu {
    background-color: var(--white);
    border-bottom: 1px solid #bfc4ce;
    margin-left: 0;
    margin-right: 0;
    padding-top: .5rem;
    padding-bottom: 1.5rem;
  }

  .nav-link {
    text-align: center;
    width: 100%;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .nav-menu-button.w--open {
    background-color: #0000;
  }

  .nav-container {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
  }

  .spacer-xlarge {
    height: 3rem;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }

  .footer-background {
    width: 100%;
    height: 100%;
  }

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

  .header-content-wrapper {
    grid-template-columns: 1fr;
  }

  .new-property-image-wrapper {
    padding-top: 70%;
  }

  .header-lightbox-image {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }

  .section-services {
    position: static;
  }

  .services-component {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .home-about-background {
    width: 100%;
  }

  .home-about-image {
    object-position: 50% 100%;
  }

  .latest-properties-list {
    grid-template-columns: 1fr 1fr;
  }

  .property-link {
    height: 100%;
  }

  .property-back-wrapper, .property-plus {
    display: none;
  }

  .property-metatag-list.tablet {
    display: flex;
  }

  .property-front-wrapper {
    display: block;
  }

  .testimonial-component {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .home-blog-title-wrapper {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
  }

  .home-blog-component, .cta-component {
    grid-template-columns: 1fr;
  }

  .cta-image-wrapper {
    padding-top: 50%;
  }

  .latest-properties-title-wrapper {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
  }

  .properties-component {
    grid-template-columns: 1fr;
  }

  .properties-filters-wrapper {
    z-index: 9999;
    background-color: var(--white);
    width: 100%;
    max-width: none;
    padding: 3rem 5% 0;
    position: fixed;
    inset: 0%;
    overflow: scroll;
    transform: translate(0, 100%);
  }

  .filters-header {
    align-items: flex-start;
    margin-top: 2rem;
  }

  .filters-list-wrapper {
    margin-bottom: 1.75rem;
  }

  .filters1_tablet-modal-close-button {
    display: block;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
  }

  .filters-tablet-button {
    justify-content: center;
    display: flex;
  }

  .properties-list {
    grid-template-columns: 1fr 1fr;
  }

  .about-gallery, .about-gallery-wrapper {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
  }

  .about-heading-wrapper {
    position: static;
  }

  .team-component, .blog-component {
    grid-template-columns: 1fr 1fr;
  }

  .related-post-title-wrapper {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
  }

  .property-component {
    grid-template-columns: 1fr;
  }

  .property-content-right {
    position: static;
  }

  .contact-image-wrapper {
    padding-top: 50%;
  }

  .contact-content-wrapper {
    border-radius: 2rem;
  }

  .contact-content-bottom {
    grid-template-columns: 1fr;
  }

  .nav-button-wrapper {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    display: flex;
  }

  ._404 {
    max-width: 60%;
  }

  .property-content-wrapper {
    display: flex;
  }

  .property-price-wrapper.tablet {
    display: none;
  }

  .property-name-wrapper {
    justify-content: space-between;
    width: 100%;
    display: flex;
  }

  .testimonial-header-wrapper {
    position: static;
  }

  .about-white-background {
    display: none;
  }

  .spacer-xxlarge {
    height: 3rem;
  }

  .pp_faq-heading {
    font-size: 2.25rem;
  }

  .pp_text-medium {
    font-size: 1.2rem;
  }

  .pps-experience_component {
    margin-top: -1px;
  }

  .faq-action {
    width: 3rem;
    height: 3rem;
  }

  .faq-list {
    grid-template-columns: 1fr;
  }

  .pps-experience_grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

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

  .heading-xlarge.text-align-center.proposal {
    font-size: 3.2rem;
  }

  .content_component {
    grid-row-gap: 4rem;
    margin-top: 9rem;
    margin-bottom: 6rem;
    padding-top: 0;
  }

  .footer-button-wrapper {
    margin-top: 3rem;
  }

  .footer-bottom-2 {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-columns: .55fr .55fr;
  }

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

  .pps-process_grid {
    grid-column-gap: 2rem;
    grid-row-gap: 1rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    width: auto;
    display: grid;
  }

  .pp-grid {
    grid-row-gap: 2rem;
    flex-direction: column;
  }

  .faq-action-wrapper {
    right: 0;
  }

  .pp_grid-left {
    width: 100%;
  }

  .pp_component {
    grid-row-gap: 1rem;
    margin-top: 7rem;
    margin-bottom: 6rem;
  }

  .faq-bottom-content {
    grid-template-columns: 1fr .25fr;
    padding-bottom: 3rem;
  }

  .pp-footer-text {
    font-size: 1rem;
    line-height: 1.7;
  }

  .faq-title {
    padding-top: 4rem;
    padding-bottom: 4rem;
    padding-right: 3rem;
  }

  .pp_subtitle {
    font-size: 1.4rem;
  }

  .tab-lottie {
    width: .75rem;
  }

  .pp_title-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .pp_grid-right {
    width: 100%;
  }

  .pp_about.vertical {
    grid-row-gap: 2rem;
  }

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

  .about_paragraph {
    grid-row-gap: 1rem;
    max-width: 100%;
  }

  .padding-section-large-copy {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .logos-grid {
    grid-template-columns: 1fr 1fr;
  }

  .expertise-component {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .expertise_grid, .grid-feedback {
    grid-template-columns: 1fr;
  }

  .quick-stack, .quick-stack-2 {
    grid-row-gap: 2.5rem;
  }

  .content_component-2 {
    margin-top: 9rem;
    margin-bottom: 6rem;
  }

  .pp_text-medium-2 {
    font-size: 1.2rem;
  }

  .pp_subtitle-2 {
    font-size: 1.4rem;
  }

  .heading-xlarge-2 {
    font-size: 5rem;
  }

  .text-size-display {
    font-size: 2.5rem;
  }

  .cards-wrapper {
    grid-column-gap: 4em;
    grid-row-gap: 4em;
    flex-flow: column;
    display: flex;
  }

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

  .cards-grid {
    padding-left: 0;
  }

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

  .cards-component {
    grid-column-gap: 8em;
    grid-row-gap: 8em;
  }

  .pp_text-medium-3 {
    font-size: 1.2rem;
  }

  .big-text {
    font-size: 34px;
    line-height: 48px;
  }

  .wrap-numbers {
    grid-row-gap: 32px;
    flex-wrap: wrap;
  }

  .number-tile {
    min-width: 30%;
  }

  .number-tile.right {
    border-right-style: none;
  }

  .number-tile.middle {
    border-left-style: none;
    border-right-style: none;
  }

  .section-2 {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .section-2.pd-bottom-200px {
    padding-bottom: 164px;
  }

  .process-grid-item.left {
    margin-top: -32px;
  }

  .heading-h2-size {
    font-size: 32px;
  }

  .display-2 {
    font-size: 64px;
  }

  .sticky-top.static-tablet {
    position: static;
    top: auto;
  }

  .grid-2-columns.process-section---about-page {
    grid-row-gap: 64px;
    grid-template-columns: 1fr;
  }

  .grid-2-columns.our-process-grid {
    grid-column-gap: 40px;
    margin-top: 32px;
  }

  .display-1 {
    font-size: 90px;
  }

  .invest-card {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .pp-grid_invest {
    grid-template-columns: 1fr;
  }

  .pp_text-small, .pp_text-medium-4 {
    font-size: 1.2rem;
  }

  .pp_faq-heading-2 {
    font-size: 2.25rem;
  }

  .button-4 {
    width: 19%;
  }

  .pp_grid-left-2, .pp_grid-right-2 {
    width: 100%;
  }

  .pp_text-medium-5 {
    font-size: 1.2rem;
  }

  .contact-content-wrapper-2 {
    border-radius: 2rem;
  }

  .button-5 {
    width: 19%;
  }
}

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

  h2, h3 {
    font-size: 2rem;
  }

  h4 {
    font-size: 1.75rem;
  }

  .button {
    width: 26%;
  }

  .heading-style-h3 {
    font-size: 2rem;
  }

  .styleguide-2-col {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
  }

  .heading-style-h4 {
    font-size: 1.5rem;
  }

  .padding-section-medium {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .styleguide-3-col {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
  }

  .styleguide-item-wrapper {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .heading-style-h2 {
    font-size: 2rem;
  }

  .heading-style-h1 {
    font-size: 2.75rem;
  }

  .protected-image-wrapper {
    max-width: none;
    height: 40dvh;
  }

  .protected-page-content {
    grid-template-columns: 1fr;
  }

  .padding-section-large {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .spacer-medium {
    height: 1.5rem;
  }

  .assets-component {
    flex-direction: column;
  }

  .footer-bottom {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom-text {
    order: 1;
  }

  .max-width-medium.align-center {
    max-width: 29rem;
  }

  .header-title-wrapper {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    grid-template-columns: 1fr;
  }

  .new-property-image-wrapper {
    padding-top: 80%;
  }

  .header-card-wrapper {
    grid-template-columns: 1fr;
  }

  .header-lightbox {
    height: 40dvh;
  }

  .lightbox-play-icon {
    position: absolute;
  }

  .header-slide-image-wrapper {
    padding-top: 55%;
  }

  .services-component {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .home-about-component {
    min-height: 100vh;
    padding-top: 2rem;
  }

  .home-about-background {
    align-items: flex-start;
    height: 100%;
  }

  .home-about-image {
    object-fit: cover;
    object-position: 50% 0%;
    height: 100%;
  }

  .latest-properties-list {
    grid-template-columns: 1fr;
  }

  .property-back-wrapper {
    display: none;
  }

  .property-image-wrapper {
    padding-top: 66%;
  }

  .property-plus {
    display: none;
  }

  .home-blog-title-wrapper {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
  }

  .home-blog-link {
    grid-template-columns: 1fr;
  }

  .home-blog-image-wrapper {
    height: 100%;
    padding-top: 66%;
  }

  .blog-image-wrapper {
    height: 100%;
  }

  .cta-image-wrapper {
    padding-top: 70%;
  }

  .latest-properties-title-wrapper {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
  }

  .properties-component {
    grid-column-gap: 2.5rem;
    grid-row-gap: 2.5rem;
  }

  .filter-group-header {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .properties-list {
    grid-template-columns: 1fr;
  }

  .about-gallery {
    grid-template-columns: 1fr 1.5fr 1fr;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 1rem;
    padding-right: 1rem;
    transform: none;
  }

  .about-gallery-image-wrapper.image-1, .about-gallery-image-wrapper.image-3 {
    display: none;
  }

  .team-component {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
  }

  .team-item.top-margin {
    margin-top: 0;
  }

  .blog-component {
    grid-template-columns: 1fr;
  }

  .breadcrumb-component {
    flex-wrap: wrap;
  }

  .related-post-title-wrapper {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
  }

  .related-post-list {
    grid-template-columns: 1fr;
  }

  .property-main-image-wrapper {
    padding-top: 60%;
  }

  .property-content-right {
    max-width: none;
  }

  .property-gallery-list {
    grid-template-columns: 1fr 1fr;
  }

  .property-more-images {
    padding: .5rem .75rem;
    bottom: 1rem;
    right: 1rem;
  }

  .contact-image-wrapper {
    border-radius: 2rem;
  }

  .contact-content-top {
    grid-template-columns: 1fr;
  }

  .protected-page-form {
    width: 100%;
  }

  ._404-page-content {
    grid-template-columns: 1fr;
  }

  ._404-content-wrapper {
    width: 100%;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  ._404-image-wrapper {
    max-width: none;
    height: 40dvh;
  }

  ._404 {
    max-width: 40%;
  }

  .home-about-heading {
    font-size: 2rem;
  }

  .pp_footer-content {
    max-width: none;
  }

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

  .nav_proposal, .pps-experience_grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .footer-bottom-2 {
    order: 1;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    justify-items: center;
  }

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

  .pps-process_grid {
    grid-column-gap: .5rem;
  }

  .pp_footer-component {
    min-height: auto;
    padding-top: 6rem;
    padding-bottom: 3rem;
  }

  .navbar_content.left {
    display: none;
  }

  .section-pps-next-steps {
    position: relative;
  }

  .pps-projects_grid {
    grid-row-gap: 2.5rem;
    grid-template-columns: 1fr;
  }

  .pp-footer-text {
    font-size: 1rem;
  }

  .faq-title {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .pp_subtitle {
    font-size: 1.25rem;
  }

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

  .pp-footer_wrapper {
    max-height: none;
    padding-bottom: 3rem;
  }

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

  .padding-section-large-copy {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .pps-projects_grid-2, .pps-projects_grid-3 {
    grid-row-gap: 2.5rem;
    grid-template-columns: 1fr;
  }

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

  .pps-projects_grid-4, .pps-projects_grid-5, .pps-projects_grid-6, .pps-projects_grid-7 {
    grid-row-gap: 2.5rem;
    grid-template-columns: 1fr;
  }

  .pp_subtitle-2 {
    font-size: 1.25rem;
  }

  .nav_proposal-2 {
    grid-template-columns: 1fr 1fr;
  }

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

  .card-margin {
    flex-flow: column;
  }

  .about-card {
    width: 100%;
    height: 25svh;
  }

  .header-slide-image-wrapper-2 {
    padding-top: 55%;
  }

  .text-size-huge {
    font-size: 1.8rem;
  }

  .cards-component {
    grid-column-gap: 6em;
    grid-row-gap: 6em;
  }

  .pps-projects_grid-8 {
    grid-row-gap: 2.5rem;
    grid-template-columns: 1fr;
  }

  .text-stat {
    font-size: 48px;
  }

  .wrap-numbers {
    grid-row-gap: 24px;
    flex-direction: column;
  }

  .number-tile.right {
    border-bottom: 1px #f0f0f0;
    border-right-style: none;
  }

  .number-tile.middle {
    border-style: none;
    border-top-width: 1px;
    border-top-color: #f0f0f0;
    border-bottom-width: 1px;
    border-bottom-color: #f0f0f0;
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .section-2 {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .section-2.pd-bottom-200px {
    padding-bottom: 140px;
  }

  .process-grid-item.left {
    margin-top: 0;
    padding-bottom: 32px;
  }

  .btn-primary {
    padding: 14px 26px;
  }

  .mg-bottom-32px {
    margin-bottom: 24px;
  }

  .inner-container._710px {
    max-width: 100%;
  }

  .heading-h2-size {
    font-size: 26px;
  }

  .display-2 {
    font-size: 52px;
  }

  .grid-2-columns {
    grid-template-columns: 1fr;
  }

  .grid-2-columns.our-process-grid {
    grid-row-gap: 48px;
    margin-top: 0;
  }

  .display-1 {
    font-size: 72px;
  }

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

  .button-4, .button-5 {
    width: 26%;
  }
}

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

  .button {
    width: 100%;
  }

  .button.small {
    background-color: var(--primary-600);
    padding-top: .35rem;
    padding-bottom: .35rem;
  }

  .button.small.d-none.w--current {
    display: none;
  }

  .heading-style-h3 {
    font-size: 1.5rem;
  }

  .styleguide-2-col, .styleguide-3-col {
    grid-template-columns: 1fr;
  }

  .styleguide-item-wrapper {
    margin-bottom: 2rem;
    padding-left: 0;
    padding-right: 0;
  }

  .text-style-allcaps.text-slider {
    font-size: .7rem;
  }

  .form-input {
    min-width: 8rem;
  }

  .text-align-center {
    margin-top: 0;
    margin-bottom: 0;
  }

  .text-align-center.resolve {
    margin-top: 336px;
  }

  .heading-style-h1 {
    font-size: 2.5rem;
  }

  .text-size-medium.hide {
    display: none;
  }

  .protected-image-wrapper {
    width: 100%;
  }

  .protected-page-content {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .assets-links-wrapper {
    align-items: center;
  }

  .assets-item {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    flex-direction: column;
    grid-template-columns: 1fr;
    width: 100%;
    margin-bottom: 2rem;
  }

  .assets-image-wrapper {
    max-width: none;
    height: auto;
  }

  .nav-component {
    background-color: #fff;
    border-bottom: 1px solid #0000001a;
    position: fixed;
    inset: 0% 0% auto;
  }

  .nav-logo-link.w--current {
    align-items: center;
  }

  .spacer-large {
    height: .2rem;
  }

  .spacer-xlarge {
    height: 2.75rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-menu {
    grid-template-columns: 1fr 1fr;
  }

  .section-header {
    margin-top: 51px;
  }

  .header-component {
    margin-top: 25px;
  }

  .new-property-link {
    height: 29rem;
  }

  .new-property-content-wrapper, .properties-link {
    padding: 1.5rem;
  }

  .header-lightbox {
    height: 30dvh;
  }

  .header-slide-image-wrapper {
    padding-top: 70%;
  }

  .services-component {
    margin-bottom: 0;
  }

  .home-about-component {
    height: 200%;
    min-height: auto;
    padding-bottom: 2rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .home-about-background {
    height: 100%;
    left: 0%;
    right: 0%;
  }

  .home-about-image {
    aspect-ratio: auto;
    object-fit: cover;
    object-position: 30% 50%;
  }

  .section-properties {
    margin-top: 66px;
  }

  .latest-properties-list {
    grid-template-columns: 1fr;
  }

  .testimonial-content {
    padding: 1.5rem 1rem;
  }

  .testimonial-image {
    width: 5rem;
    height: 5rem;
  }

  .home-blog-link {
    grid-row-gap: 1.5rem;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .home-blog-image-wrapper, .blog-image-wrapper {
    padding-top: 66%;
  }

  .cta-content-wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .blog-item {
    grid-row-gap: 1.5rem;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .section-about {
    margin-top: 60px;
  }

  .about-gallery {
    grid-template-columns: 1fr;
  }

  .categories-list {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
  }

  .newsletter-input {
    min-width: 8rem;
  }

  .property-gallery-list {
    grid-template-columns: 1fr;
  }

  .section-contact {
    margin-top: 50px;
  }

  .contact-content-wrapper {
    padding: 2rem 1rem;
  }

  .contact-content-wrapper.form-home {
    background-color: #f7f8f8;
    width: 100%;
  }

  .contact-item {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  ._404-page-content {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  ._404-image-wrapper {
    width: 100%;
  }

  .property-price-wrapper.tablet {
    align-items: flex-start;
  }

  .about-image {
    object-fit: cover;
    height: 40dvh;
  }

  .spacer-xxlarge {
    height: 2.75rem;
  }

  .pp_footer-content {
    grid-row-gap: 1rem;
  }

  .pp_faq-heading {
    font-size: 1.4rem;
  }

  .navigation-wrapper {
    flex-flow: row;
    display: flex;
  }

  .pp_text-medium {
    font-size: 1rem;
  }

  .pps-experience_component {
    margin-left: 0;
  }

  .hero_component {
    grid-column-gap: 1rem;
  }

  .pp-paragraph.left-align {
    grid-row-gap: 1rem;
  }

  .nav_proposal, .pps-experience_grid {
    grid-template-columns: 1fr;
  }

  .heading-xlarge.text-align-center.proposal {
    font-size: 2.4rem;
  }

  .faq_component {
    padding-bottom: 4.8rem;
  }

  .content_component {
    margin-top: 4.4rem;
  }

  .social-link-list {
    grid-column-gap: .75rem;
    grid-row-gap: 1rem;
    flex-wrap: wrap;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
  }

  .footer-bottom-2 {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    grid-template-columns: 1fr;
    padding-top: 1.5rem;
    padding-bottom: 1rem;
    font-size: .875rem;
  }

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

  .pps-process_grid {
    grid-template-columns: 1fr;
  }

  .hero_heading {
    margin-top: 6rem;
  }

  .pp_footer-component {
    padding-top: 4rem;
  }

  .navbar_content.right {
    display: none;
  }

  .pp_title {
    font-size: 2rem;
  }

  .pp_component {
    margin-bottom: 2rem;
  }

  .faq-bottom-content {
    display: flex;
  }

  .faq-title {
    padding-top: 3rem;
    padding-bottom: 3rem;
    padding-right: 3.5rem;
  }

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

  .heading-large {
    font-size: 1.6rem;
    line-height: 1.5;
  }

  .pp_about_paragraph, .pp_about_paragraph.normal {
    font-size: 1rem;
  }

  .logos-component {
    grid-row-gap: 1rem;
    padding-top: 4.9rem;
  }

  .logos-grid {
    grid-column-gap: 4rem;
    grid-row-gap: 2rem;
    width: 100%;
    margin-bottom: 5.5rem;
    padding-left: 0;
    padding-right: 0;
  }

  .expertise-component {
    padding-top: 3rem;
  }

  .expertise_grid {
    margin-top: 4rem;
  }

  .overlay {
    background-color: #0f10200d;
    background-image: linear-gradient(0deg, #060a0ef2 38%, #060a0e00);
  }

  .div-block-2 {
    height: 100%;
  }

  .heading {
    font-size: 1.9rem;
  }

  .container-large-2.small {
    max-width: 96%;
  }

  .pp_title-2 {
    font-size: 2rem;
  }

  .pp_text-medium-2 {
    font-size: 1rem;
  }

  .hero_component-2 {
    grid-column-gap: 1rem;
  }

  .pp_subtitle-2.black {
    font-size: 1.2rem;
  }

  .nav_proposal-2 {
    grid-template-columns: 1fr;
  }

  .hero_heading-2 {
    margin-top: 6rem;
  }

  .heading-xlarge-2 {
    text-align: center;
  }

  .text-size-display {
    font-size: 10vw;
  }

  .card-margin, .about-card {
    width: 100%;
  }

  .about-card.is-content {
    height: auto;
  }

  .header-slide-image-wrapper-2 {
    padding-top: 70%;
  }

  .cards-grid {
    justify-content: center;
    align-items: center;
  }

  .pp_title-3 {
    font-size: 2rem;
  }

  .cards-component {
    grid-column-gap: 4em;
    grid-row-gap: 4em;
  }

  .pp_text-medium-3 {
    font-size: 1rem;
  }

  .big-text {
    font-size: 26px;
    line-height: 38px;
  }

  .main-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .section-2 {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .section-2.pd-bottom-200px {
    padding-bottom: 120px;
  }

  .btn-primary {
    width: 100%;
  }

  .heading-h2-size {
    font-size: 24px;
  }

  .display-2 {
    font-size: 44px;
  }

  .container-default {
    padding-left: 20px;
    padding-right: 20px;
  }

  .display-1 {
    font-size: 56px;
  }

  .invest-card {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .pp_price-tag {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .pp_title-4 {
    font-size: 2rem;
  }

  .invest-card_top {
    grid-row-gap: 1rem;
    flex-direction: column-reverse;
  }

  .pp_text-small, .pp_text-medium-4 {
    font-size: 1rem;
  }

  .pp_faq-heading-2 {
    font-size: 1.4rem;
  }

  .slider-arrow {
    bottom: 1rem;
    right: .5rem;
  }

  .slider-arrow.left {
    bottom: 1rem;
    left: .5rem;
    right: auto;
  }

  .button-4 {
    width: 100%;
  }

  .button-4.small {
    background-color: #7ce40c;
    padding-top: .35rem;
    padding-bottom: .35rem;
  }

  .pp_text-medium-5 {
    font-size: 1rem;
  }

  .contact-content-wrapper-2 {
    padding: 2rem 1rem;
  }

  .contact-content-wrapper-2.form-home {
    background-color: #f7f8f8;
    width: 100%;
  }

  .contact-item-2 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .form-input-2 {
    min-width: 8rem;
  }

  .button-5 {
    width: 100%;
  }

  .testimonial-content-2 {
    padding: 1.5rem 1rem;
  }
}

#w-node-_0cab2027-2fc0-8f66-ee56-5c33399162b8-04de1802 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0cab2027-2fc0-8f66-ee56-5c33399162bd-04de1802 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: center;
}

#w-node-_0cab2027-2fc0-8f66-ee56-5c33399162bf-04de1802 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-_9e7c9dd8-e612-7ed9-cf13-28194ab1405c-04de1802, #w-node-_8158944b-711e-8f10-d9ef-1712abf79313-04de1802, #w-node-_99c77943-531f-1888-4219-ab61af46f4db-04de1802, #w-node-b486f5ea-20bd-35f6-a5ae-33a0abaf08aa-04de1802, #w-node-fe77a24f-d95e-6901-6d6b-d7f454b822b5-04de1802, #w-node-fe77a24f-d95e-6901-6d6b-d7f454b822b6-04de1802, #w-node-fe77a24f-d95e-6901-6d6b-d7f454b822b9-04de1802, #w-node-fe77a24f-d95e-6901-6d6b-d7f454b822bc-04de1802, #w-node-b2789b40-0796-a8ec-e5f6-a2c1ee233e73-04de1802, #w-node-b2789b40-0796-a8ec-e5f6-a2c1ee233e74-04de1802, #w-node-b2789b40-0796-a8ec-e5f6-a2c1ee233e77-04de1802, #w-node-b2789b40-0796-a8ec-e5f6-a2c1ee233e7a-04de1802, #w-node-b3cd8bd0-1d46-1002-d3a4-8e8b5f6202f3-04de1802, #w-node-b3cd8bd0-1d46-1002-d3a4-8e8b5f6202f4-04de1802, #w-node-b3cd8bd0-1d46-1002-d3a4-8e8b5f6202f7-04de1802, #w-node-b3cd8bd0-1d46-1002-d3a4-8e8b5f6202fa-04de1802, #w-node-d4d71bfc-4eb3-a227-426a-a1fca37fd31b-04de1802, #w-node-d4d71bfc-4eb3-a227-426a-a1fca37fd31c-04de1802, #w-node-d4d71bfc-4eb3-a227-426a-a1fca37fd31f-04de1802, #w-node-d4d71bfc-4eb3-a227-426a-a1fca37fd322-04de1802, #w-node-_8610ff73-a088-3542-6040-95382b7535a4-04de1802, #w-node-_8610ff73-a088-3542-6040-95382b7535a5-04de1802, #w-node-_8610ff73-a088-3542-6040-95382b7535a8-04de1802, #w-node-_8610ff73-a088-3542-6040-95382b7535ab-04de1802, #w-node-_15db11f6-1f1c-b101-04e6-c1ea52b8e0c0-04de1802, #w-node-_54b893a6-74f2-bf00-96e6-c599a3595ac3-04de1802, #w-node-_45f39c76-53df-c2e7-d8cd-bbfd0a289b3a-04de1802, #w-node-_4c2414f9-95f8-9adc-d4c0-7a6cfb9919fe-04de1802, #w-node-_21f3f8c1-ed1e-920e-1d69-27fba37856b6-04de1802 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f1598c7f-54fe-1d9a-6839-4ec3345a66b4-04de1802 {
  grid-area: 1 / 1 / 2 / 6;
  align-self: center;
}

#w-node-f1598c7f-54fe-1d9a-6839-4ec3345a66ba-04de1802 {
  grid-area: span 1 / span 7 / span 1 / span 7;
}

#w-node-_92848967-449e-e08a-aaf1-b2018b23cd75-04de1802, #w-node-cf8f494e-3d82-c491-284b-d97f8b61c04c-04de1802, #w-node-cf8f494e-3d82-c491-284b-d97f8b61c059-04de1802, #w-node-cf8f494e-3d82-c491-284b-d97f8b61c066-04de1802, #w-node-cf8f494e-3d82-c491-284b-d97f8b61c074-04de1802, #w-node-cf8f494e-3d82-c491-284b-d97f8b61c082-04de1802, #w-node-cf8f494e-3d82-c491-284b-d97f8b61c090-04de1802, #w-node-dedf0491-bfb6-4114-b3f4-bfef58a7a380-32fe7070 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7e43cb4f-091a-0d19-3c39-ec8332fe709e-32fe7070 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_5e7fbca2-eb49-4956-93de-d213fa0331ec-fa0331e7 {
  justify-self: start;
}

#w-node-_42e7ff48-a034-6655-c0d9-7b51aa116820-fa0331e7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_5e7fbca2-eb49-4956-93de-d213fa03322a-fa0331e7 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_4e87499c-0764-f9c7-87e7-93d4a22365b2-a22365ad {
  justify-self: center;
}

#w-node-c2951a2c-eeee-2868-8ce1-25fcae813b76-a22365ad {
  justify-self: end;
}

#w-node-bd046225-9c25-8b07-dbf0-7e100c6e9f6b-04de1809, #w-node-_9bb3d874-189f-2096-92f2-e30a367a9f38-04de1809 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e8673c53-4e6f-e019-f19e-622bd6b01c8e-04de180a {
  justify-self: end;
}

#w-node-ba2125a1-22ce-8a2d-b0bc-4fed9b4021ab-04de180b {
  grid-area: span 1 / span 1 / span 1 / span 1;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-ba2125a1-22ce-8a2d-b0bc-4fed9b4021ac-04de180b {
  grid-area: span 3 / span 1 / span 3 / span 1;
}

#w-node-ba2125a1-22ce-8a2d-b0bc-4fed9b4021ad-04de180b, #w-node-_929c39d9-5818-2817-7dc4-9ce5491801f9-04de180b, #w-node-_84951531-a699-cb21-d640-f302a775606a-04de180b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9e2339f8-950d-49aa-66ce-c82f16746438-04de180b {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_9e2339f8-950d-49aa-66ce-c82f16746439-04de180b, #w-node-_9e2339f8-950d-49aa-66ce-c82f1674643c-04de180b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-fcce061e-be1b-1ed3-990c-fe428120fb4d-04de180b {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-_51838dd2-0c7b-a28e-e100-7a27b3fbde9e-04de180b {
  justify-self: end;
}

#w-node-_51838dd2-0c7b-a28e-e100-7a27b3fbdebe-04de180b, #w-node-_0db2bae6-5482-3984-8fcf-4b65e2ba3aa2-04de180c, #w-node-_0db2bae6-5482-3984-8fcf-4b65e2ba3aa3-04de180c, #w-node-_391d9fba-c128-0f06-7113-88405f4ebdb0-04de180c, #w-node-_865edabc-9389-40d9-e54c-ac21c641d106-04de180c, #w-node-_7f669a19-7c69-10b6-b65c-3ad08a7ba72a-04de180d, #w-node-_7f669a19-7c69-10b6-b65c-3ad08a7ba72b-04de180d, #w-node-_2beb6d90-b6e4-a9f9-db87-f109b025f508-04de180d, #w-node-_04dcd498-0b58-d22e-31fe-dece876e7238-04de180d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674cff5f-04de1811, #w-node-a8eb6297-f022-f7ba-ba11-0488674cff64-04de1811, #w-node-a8eb6297-f022-f7ba-ba11-0488674cff69-04de1811, #w-node-a8eb6297-f022-f7ba-ba11-0488674cff6e-04de1811, #w-node-a8eb6297-f022-f7ba-ba11-0488674cff73-04de1811, #w-node-a8eb6297-f022-f7ba-ba11-0488674cff78-04de1811 {
  justify-self: start;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674cff7d-04de1811 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_4a848f78-9525-9dab-577e-93c24f25cab4-04de1811, #w-node-_4a848f78-9525-9dab-577e-93c24f25cab9-04de1811, #w-node-_4a848f78-9525-9dab-577e-93c24f25cabe-04de1811, #w-node-_4a848f78-9525-9dab-577e-93c24f25cac3-04de1811, #w-node-_4a848f78-9525-9dab-577e-93c24f25cac8-04de1811, #w-node-_4a848f78-9525-9dab-577e-93c24f25cacd-04de1811 {
  justify-self: start;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674cff93-04de1811 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674cff9c-04de1811 {
  justify-self: start;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674cff9e-04de1811 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674cffa1-04de1811, #w-node-a8eb6297-f022-f7ba-ba11-0488674cffa6-04de1811 {
  justify-self: start;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674cffa8-04de1811 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674cffab-04de1811 {
  justify-self: start;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674cffad-04de1811 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_15bcdc50-5780-78f6-cb71-2022bef7a060-04de1811 {
  justify-self: start;
}

#w-node-_15bcdc50-5780-78f6-cb71-2022bef7a062-04de1811 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674cffb6-04de1811 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674cffbf-04de1811 {
  justify-self: start;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674cffc1-04de1811 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674cffc4-04de1811 {
  justify-self: start;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674cffc6-04de1811 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674cffc9-04de1811 {
  justify-self: start;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674cffcb-04de1811 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674cffce-04de1811 {
  justify-self: start;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674cffd0-04de1811 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674cffd3-04de1811 {
  justify-self: start;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674cffd5-04de1811 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674cffe2-04de1811 {
  justify-self: start;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674cffe4-04de1811 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674cffe7-04de1811, #w-node-a8eb6297-f022-f7ba-ba11-0488674cffec-04de1811, #w-node-a8eb6297-f022-f7ba-ba11-0488674cfff1-04de1811 {
  justify-self: start;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674cfff7-04de1811 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674d0005-04de1811 {
  justify-self: start;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674d0007-04de1811 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674d000a-04de1811 {
  justify-self: start;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674d000d-04de1811 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4599cd18-9582-66a9-851d-1bf225751779-04de1811 {
  justify-self: start;
}

#w-node-_4599cd18-9582-66a9-851d-1bf22575177b-04de1811, #w-node-_4599cd18-9582-66a9-851d-1bf22575177c-04de1811 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674d0011-04de1811 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674d0024-04de1811, #w-node-a8eb6297-f022-f7ba-ba11-0488674d0029-04de1811, #w-node-_28d0e1b3-b340-72cb-1368-3c9c7f4cc30b-04de1811 {
  justify-self: start;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674d002f-04de1811 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674d0038-04de1811, #w-node-a8eb6297-f022-f7ba-ba11-0488674d003c-04de1811, #w-node-a8eb6297-f022-f7ba-ba11-0488674d0040-04de1811, #w-node-a8eb6297-f022-f7ba-ba11-0488674d0044-04de1811, #w-node-a8eb6297-f022-f7ba-ba11-0488674d0048-04de1811, #w-node-a8eb6297-f022-f7ba-ba11-0488674d0050-04de1811, #w-node-_907ccb4c-e09a-9f90-4519-c73291f1fc97-04de1811 {
  justify-self: start;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674d005d-04de1811 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674d0066-04de1811, #w-node-a8eb6297-f022-f7ba-ba11-0488674d0068-04de1811 {
  justify-self: start;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674d007b-04de1811 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674d0080-04de1811 {
  justify-self: start;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674d008b-04de1811 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674d0090-04de1811 {
  justify-self: start;
}

#w-node-c30875fa-b2e7-09e3-6abc-5acc97e7dd79-04de1811 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c30875fa-b2e7-09e3-6abc-5acc97e7dd7e-04de1811 {
  justify-self: start;
}

#w-node-c7b39818-8232-0455-2da8-996bb25ee479-04de1811 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_37f4b0ed-9fd0-02e7-ec65-e4de362a477d-04de1811 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-c7b39818-8232-0455-2da8-996bb25ee47e-04de1811 {
  justify-self: start;
}

#w-node-c365c8bb-f113-5f89-bccc-2d23e392c828-04de1811 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c365c8bb-f113-5f89-bccc-2d23e392c82d-04de1811 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-c365c8bb-f113-5f89-bccc-2d23e392c82e-04de1811 {
  justify-self: start;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674d0096-04de1811 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674d009e-04de1811 {
  justify-self: start;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674d00c5-04de1811 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674d00cd-04de1811 {
  justify-self: start;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674d00cf-04de1811 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674d00f6-04de1811 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674d00ff-04de1811 {
  justify-self: start;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674d0101-04de1811 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674d0103-04de1811 {
  justify-self: start;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674d0105-04de1811 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674d0107-04de1811 {
  justify-self: start;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674d0109-04de1811 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_033952e5-7b54-9e46-5a1b-ef1fc549db6f-04de1811 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_033952e5-7b54-9e46-5a1b-ef1fc549db77-04de1811 {
  justify-self: start;
}

#w-node-_7daa8acb-8ea1-68ad-ae9c-ab1d0a750e68-04de1811 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-a41b51b9-fc61-81e7-e943-33caf1754bf9-04de1811 {
  justify-self: start;
}

#w-node-a41b51b9-fc61-81e7-e943-33caf1754bfb-04de1811 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-cd1f8184-cb9d-0d6e-3e2f-d2b6108f3429-04de1811 {
  justify-self: start;
}

#w-node-cd1f8184-cb9d-0d6e-3e2f-d2b6108f342b-04de1811 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b97a7d95-2c49-6fdd-5585-367e4e472819-04de1811 {
  justify-self: start;
}

#w-node-b97a7d95-2c49-6fdd-5585-367e4e47281b-04de1811 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-f2ef78ae-6dbf-8282-64c6-c38b119c6dfc-04de1811 {
  justify-self: start;
}

#w-node-f2ef78ae-6dbf-8282-64c6-c38b119c6dfe-04de1811 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9028998b-d74b-f4bb-7beb-e7acb1353a17-04de1811 {
  justify-self: start;
}

#w-node-_9028998b-d74b-f4bb-7beb-e7acb1353a19-04de1811 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-ef69c4d5-a7b1-ac5f-0d07-ad74f64619c1-04de1811 {
  justify-self: start;
}

#w-node-_425b73bd-9809-e7ee-5405-8f7ba0ee0c9f-04de1811, #w-node-ef69c4d5-a7b1-ac5f-0d07-ad74f64619c3-04de1811 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_33531aef-9436-a06d-f1f2-085744576d0c-04de1811 {
  justify-self: start;
}

#w-node-_33531aef-9436-a06d-f1f2-085744576d0e-04de1811, #w-node-_33531aef-9436-a06d-f1f2-085744576d0f-04de1811 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_13862b6c-4ebf-2ea0-5e9e-eee164471f32-04de1811 {
  justify-self: start;
}

#w-node-_13862b6c-4ebf-2ea0-5e9e-eee164471f34-04de1811, #w-node-_13862b6c-4ebf-2ea0-5e9e-eee164471f35-04de1811 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_1187470a-c563-5fec-6c4b-3b1ed3d8d96f-04de1811 {
  justify-self: start;
}

#w-node-_1187470a-c563-5fec-6c4b-3b1ed3d8d971-04de1811 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_3b2829f4-a4ed-4352-8bc0-59d02be98526-04de1811 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_3b2829f4-a4ed-4352-8bc0-59d02be9852f-04de1811 {
  justify-self: start;
}

#w-node-_3b2829f4-a4ed-4352-8bc0-59d02be98531-04de1811 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_3b2829f4-a4ed-4352-8bc0-59d02be98534-04de1811 {
  justify-self: start;
}

#w-node-_3b2829f4-a4ed-4352-8bc0-59d02be98536-04de1811 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_3b2829f4-a4ed-4352-8bc0-59d02be98539-04de1811 {
  justify-self: start;
}

#w-node-_3b2829f4-a4ed-4352-8bc0-59d02be9853b-04de1811 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_1ea72577-9357-1928-10bf-01e091618f78-04de1811 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_1ea72577-9357-1928-10bf-01e091618f81-04de1811 {
  justify-self: start;
}

#w-node-_1ea72577-9357-1928-10bf-01e091618f83-04de1811 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9505d2bc-fcb6-0cad-65ff-002f325243f0-04de1811 {
  justify-self: start;
}

#w-node-_9505d2bc-fcb6-0cad-65ff-002f325243f2-04de1811 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_1ea72577-9357-1928-10bf-01e091618f86-04de1811 {
  justify-self: start;
}

#w-node-_1ea72577-9357-1928-10bf-01e091618f88-04de1811 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_1ea72577-9357-1928-10bf-01e091618f8b-04de1811 {
  justify-self: start;
}

#w-node-_1ea72577-9357-1928-10bf-01e091618f8d-04de1811 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_5dd155fa-8b29-4df2-901e-117af6e970e7-04de1811 {
  justify-self: start;
}

#w-node-_5dd155fa-8b29-4df2-901e-117af6e970e9-04de1811, #w-node-_0cab2027-2fc0-8f66-ee56-5c33399162b8-e43f3e1a {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0cab2027-2fc0-8f66-ee56-5c33399162bd-e43f3e1a {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: center;
}

#w-node-_0cab2027-2fc0-8f66-ee56-5c33399162bf-e43f3e1a {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

@media screen and (min-width: 1920px) {
  #w-node-a8eb6297-f022-f7ba-ba11-0488674cffcb-04de1811 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 991px) {
  #w-node-_7e43cb4f-091a-0d19-3c39-ec8332fe7075-32fe7070 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_87699a38-087c-9e27-8ac4-3676b47e5501-32fe7070 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-b635ba86-a63b-342d-26c8-9163dc53656a-32fe7070 {
    grid-area: 1 / 2 / 2 / 3;
  }

  #w-node-_7e43cb4f-091a-0d19-3c39-ec8332fe709e-32fe7070 {
    grid-column: span 2 / span 2;
  }

  #w-node-_5e7fbca2-eb49-4956-93de-d213fa0331f2-fa0331e7 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_5e7fbca2-eb49-4956-93de-d213fa03321b-fa0331e7 {
    grid-area: 1 / 2 / 2 / 3;
  }

  #w-node-_5e7fbca2-eb49-4956-93de-d213fa03322a-fa0331e7 {
    grid-column: span 2 / span 2;
  }

  #w-node-ba2125a1-22ce-8a2d-b0bc-4fed9b4021ab-04de180b {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-ba2125a1-22ce-8a2d-b0bc-4fed9b4021ac-04de180b {
    grid-area: span 3 / span 1 / span 3 / span 1;
  }

  #w-node-ba2125a1-22ce-8a2d-b0bc-4fed9b4021ad-04de180b, #w-node-_929c39d9-5818-2817-7dc4-9ce5491801f9-04de180b, #w-node-_84951531-a699-cb21-d640-f302a775606a-04de180b {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_9e2339f8-950d-49aa-66ce-c82f16746438-04de180b {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_9e2339f8-950d-49aa-66ce-c82f16746439-04de180b, #w-node-_9e2339f8-950d-49aa-66ce-c82f1674643c-04de180b {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-fcce061e-be1b-1ed3-990c-fe428120fb4d-04de180b {
    justify-self: center;
  }

  #w-node-_0db2bae6-5482-3984-8fcf-4b65e2ba3aa2-04de180c, #w-node-_7f669a19-7c69-10b6-b65c-3ad08a7ba72a-04de180d {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_0cab2027-2fc0-8f66-ee56-5c33399162bd-04de1802, #w-node-_0cab2027-2fc0-8f66-ee56-5c33399162bd-e43f3e1a {
    justify-self: stretch;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_0cab2027-2fc0-8f66-ee56-5c33399162bd-04de1802 {
    justify-self: center;
  }

  #w-node-_7e43cb4f-091a-0d19-3c39-ec8332fe7075-32fe7070 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_87699a38-087c-9e27-8ac4-3676b47e5501-32fe7070 {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-b635ba86-a63b-342d-26c8-9163dc53656a-32fe7070 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_7e43cb4f-091a-0d19-3c39-ec8332fe709e-32fe7070 {
    grid-area: 4 / 1 / 5 / 2;
  }

  #w-node-_5e7fbca2-eb49-4956-93de-d213fa0331ec-fa0331e7 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_5e7fbca2-eb49-4956-93de-d213fa0331f2-fa0331e7 {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-_5e7fbca2-eb49-4956-93de-d213fa03321b-fa0331e7 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_5e7fbca2-eb49-4956-93de-d213fa03322a-fa0331e7 {
    grid-column: span 1 / span 1;
  }

  #w-node-_1f6d9a2e-3ac3-c483-0ea4-3d75329643e9-04de180f {
    order: -9999;
  }

  #w-node-_0cab2027-2fc0-8f66-ee56-5c33399162bd-e43f3e1a {
    justify-self: center;
  }
}


