:root {
  --grey-800: #182b50;
  --primary-600: #233f76;
  --grey-200: #d8d8d8;
  --white: white;
  --grey-100: #e3edde;
  --grey-600: #757575;
  --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-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;
}

.button {
  background-color: var(--grey-800);
  color: #fff;
  text-align: center;
  border-radius: 5rem;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  transition: background-color .2s;
}

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

.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 {
  font-size: .875rem;
}

.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);
  text-decoration: underline;
}

.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 {
  color: var(--grey-100);
  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.25;
}

.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: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
}

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

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

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

.text-size-large:hover {
  text-decoration: underline;
}

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

.text-size-large.white:hover {
  text-decoration: underline;
}

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

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

.text-size-small {
  color: var(--grey-800);
  margin-bottom: 0;
  font-size: .875rem;
}

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

.text-size-small.link:hover {
  font-size: 1rem;
  text-decoration: underline;
}

.text-style-allcaps {
  color: var(--grey-800);
  text-transform: uppercase;
  padding-bottom: 8px;
  font-size: 14px;
}

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

.heading-style-h2.left {
  text-align: left;
}

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

.form {
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  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);
  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;
}

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

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

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

.heading-style-h6 {
  letter-spacing: 0;
  padding-bottom: 4px;
  font-size: 1.2rem;
  font-weight: 500;
  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 {
  text-align: left;
  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;
}

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

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

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

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

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

.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 {
  object-fit: fill;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.padding-section-large.no-bottom {
  padding-bottom: 0;
  display: block;
}

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

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

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

.nav-link-wrapper {
  align-items: center;
  padding-right: 0;
  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 {
  color: var(--grey-800);
  margin-left: 1rem;
  margin-right: 1rem;
  padding: .5rem 0;
  font-size: 1.4rem;
  font-weight: 600;
  text-decoration: none;
  transition: color .25s;
}

.nav-link:hover {
  color: var(--primary-600);
  border-bottom: 3px solid #172c50;
  padding-left: 0;
  padding-right: 0;
}

.nav-link.w--current {
  color: var(--grey-800);
  font-size: 1.4rem;
  font-weight: 600;
}

.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 {
  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: flex;
}

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

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

.footer-component-new {
  overflow: hidden;
}

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

.padding-section-small.minustop {
  padding-top: 0;
  padding-bottom: 2rem;
}

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

.footer-column.full {
  width: 100%;
  padding-left: 0;
}

.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 {
  opacity: .8;
  color: var(--white);
  padding-top: .5rem;
  padding-bottom: .5rem;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: color .2s;
}

.footer-link:hover {
  opacity: 1;
  color: #fff;
  text-decoration: underline;
}

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

.footer-bottom-text {
  opacity: .7;
  color: var(--grey-200);
  font-size: .8rem;
  font-weight: 400;
}

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

.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: 12rem;
  position: relative;
}

.preloader-top, .preloader-bottom {
  background-color: var(--grey-800);
  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-medium {
  width: 100%;
  max-width: 37rem;
}

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

.max-width-medium.left {
  padding-right: 100px;
}

.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;
  grid-auto-columns: 1fr;
  display: grid;
}

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

.footer-wrapper {
  background-color: var(--grey-800);
  border-radius: 2rem;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 2rem 5%;
  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: 5rem;
  grid-row-gap: 5rem;
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

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

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

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

.new-property-overlay.clean {
  background-image: none;
}

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

.properties-link {
  background-color: var(--grey-100);
  border-radius: 1.5rem;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  height: auto;
  padding: 1rem 2rem 2rem;
  display: flex;
  position: relative;
}

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

.properties-arrow.gray {
  background-color: var(--grey-800);
  padding: 1rem;
}

.properties-arrow.gray.fixed {
  width: 48px;
  height: 48px;
}

.properties-arrow.gray.fixed:hover {
  background-color: var(--primary-600);
}

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

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

.video-overlay-layer {
  z-index: 1;
  background-color: #0003;
  height: auto;
  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;
}

.section-services {
  z-index: -9999;
  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%;
}

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

.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 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: 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%;
  position: relative;
}

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

.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.white {
  background-color: var(--white);
}

.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.white {
  background-color: var(--white);
}

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

.testimonial-image.overlay {
  background-color: #00000012;
  padding-left: 0;
  padding-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.white {
  background-color: var(--white);
}

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

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

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

.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;
  background-color: var(--white);
  background-image: linear-gradient(113deg, #bbe3ee52, #d9e2a4);
  border-radius: 1.5rem;
  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;
}

.cta-image-wrapper {
  background-color: var(--grey-100);
  border-radius: 1.5rem;
  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: .8rem;
  grid-row-gap: .8rem;
  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: max-content 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

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

.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-wrapper {
  flex: 0 auto;
}

.properties-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;
}

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

.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 {
  z-index: -9999;
  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 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  display: grid;
}

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

.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-content-wrapper.left {
  place-items: stretch start;
}

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

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

.blog-component {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  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 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  display: flex;
}

.categories-item {
  color: var(--grey-800);
}

.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: minmax(32rem, 48rem) 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: start;
  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: flex;
  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: 1.5rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  padding-top: 100%;
  position: relative;
  overflow: hidden;
}

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

.contact-title-wrapper.white {
  grid-column-gap: .6rem;
  grid-row-gap: .6rem;
  color: var(--white);
  padding-bottom: 8px;
}

.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(--white);
  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%;
}

._404 {
  opacity: .21;
  max-width: 100%;
}

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

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

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

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

.large-image-home {
  height: 100%;
  position: relative;
}

.header-block-judazu {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex: 1;
  grid-template-rows: auto;
  grid-template-columns: 2.25fr 1fr;
  grid-auto-rows: 0%;
  grid-auto-columns: 1fr;
  justify-content: stretch;
  width: 100%;
  line-height: 1.5;
  display: grid;
}

.map-section {
  z-index: 2000;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

.map-wrapper {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  background-color: var(--white);
  background-image: linear-gradient(113deg, #bbe3ee52, #d9e2a4);
  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: 5rem 2rem;
  display: flex;
}

.map-grid {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex: 1;
  grid-template-rows: auto;
  grid-template-columns: 1fr 2.75fr;
  grid-auto-rows: 0%;
  grid-auto-columns: 1fr;
  justify-content: stretch;
  width: 100%;
  display: grid;
}

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

.info-block-element {
  background-color: var(--white);
  border-radius: 1.5rem;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 100%;
  padding: 2rem;
  display: flex;
  position: relative;
}

.footer-judazu-osta-new {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  flex: 1;
  grid-template: "."
                 "."
                 "."
                 / 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.heading, .paragraph {
  color: var(--white);
}

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

.heading-3 {
  font-size: 2.75rem;
}

.heading-4 {
  padding-bottom: 10px;
  font-size: 1.4rem;
  font-weight: 500;
}

.infoblock-tag {
  opacity: .8;
  padding-bottom: 4px;
  font-size: 14px;
  font-weight: 600;
}

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

.image-about {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 0 0;
  background-size: cover;
  width: 100%;
  height: 65vh;
}

.image-about.karte {
  background-image: url('../images/beige-modified.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 3rem;
  justify-content: center;
  height: 50vh;
  padding-top: 0%;
  padding-bottom: 0;
  display: flex;
}

.link-block-2 {
  background-image: url('../images/map-pin-blue.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  border: 1px #000;
  flex: 1;
  order: 0;
  align-self: center;
  width: 60px;
  height: 50px;
  display: block;
  position: relative;
  inset: 0% 0% 48%;
}

.link-block-2:hover {
  height: 58px;
}

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

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

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

.benefit-icon {
  width: 40px;
  height: 40px;
}

.partner-block {
  z-index: 1;
}

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

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

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

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

.image-5 {
  color: var(--white);
}

.property-content {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: var(--grey-100);
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  border-radius: 1rem;
  grid-template: "."
  / 1.5fr 1fr 1fr 1fr .25fr .5fr;
  grid-auto-columns: 1fr;
  padding: 16px 20px;
  display: grid;
}

.collection-list-wrapper-2 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-top: 0;
  display: block;
}

.collection-item-2 {
  padding-bottom: 10px;
}

.text-block-3 {
  font-size: .9rem;
  font-weight: 500;
}

.heading-s {
  font-size: 1.1rem;
  font-weight: 500;
}

.spacer {
  width: 20px;
  height: 20px;
}

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

  h1 {
    font-size: 3.75rem;
  }

  h2 {
    font-size: 3.5rem;
    line-height: 1.25;
  }

  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;
    line-height: 1.25;
  }

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

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

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

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

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

  .form-input {
    height: 3.5rem;
  }

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

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

  .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, .container-large {
    max-width: 90rem;
  }

  .footer-link {
    font-size: 1rem;
  }

  .footer-bottom-text {
    font-size: .9rem;
  }

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

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

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

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

  .newsletter-input {
    height: 3.5rem;
  }

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

  .footer-judazu-osta-new {
    grid-column-gap: 5rem;
    grid-row-gap: 5rem;
  }

  .heading {
    line-height: 1.25;
  }

  .heading-2 {
    line-height: 1;
  }

  .heading-3 {
    line-height: 1.2;
  }

  .heading-4 {
    line-height: 1.25;
  }

  .footer-paragraph {
    max-width: 45rem;
  }

  .image-about.karte {
    height: 50vh;
  }
}

@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;
  }

  .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: 1.15rem;
  }

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

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

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

  .nav-link-wrapper {
    flex-direction: column;
    margin-bottom: 2rem;
  }

  .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-bottom: 1rem;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    font-size: 2rem;
  }

  .nav-menu-button {
    align-self: center;
  }

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

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

  .preloader-logo {
    height: 8rem;
  }

  .max-width-medium.left {
    padding-right: 20px;
  }

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

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

  .header-card-wrapper {
    grid-template-rows: 100%;
    grid-template-columns: 1fr 1fr;
  }

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

  .section-services {
    position: static;
  }

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

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

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

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

  .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: 0%;
    overflow: hidden;
  }

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

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

  ._404 {
    max-width: 60%;
  }

  .property-content-wrapper, .property-price-wrapper.tablet {
    display: flex;
  }

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

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

  .spacer-xxlarge {
    height: 3rem;
  }

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

  .map-wrapper {
    padding: 4rem 2rem;
  }

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

  .footer-judazu-osta-new {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    grid-template-columns: 1fr 1fr;
  }

  .footer-2-column-block {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .image-about.karte {
    height: 40vh;
  }

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

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

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

  h2, h3 {
    font-size: 2rem;
  }

  h4 {
    font-size: 1.75rem;
  }

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

  .styleguide-2-col {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
  }

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

  .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-h6 {
    font-size: 1.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;
  }

  .nav-link:hover {
    border: 1px solid #fff;
  }

  .footer-bottom {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom-text {
    order: 1;
  }

  .preloader-logo {
    height: 6rem;
  }

  .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-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .header-lightbox {
    height: 40dvh;
  }

  .lightbox-play-icon {
    position: absolute;
  }

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

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

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

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

  .property-plus {
    display: none;
  }

  .home-blog-link {
    grid-template-columns: 1fr;
  }

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

  .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%;
  }

  .map-wrapper {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .map-info {
    grid-template-columns: 1fr;
  }

  .footer-judazu-osta-new {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
  }

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

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

  .property-info, .text-block-3 {
    font-size: .9rem;
  }
}

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

  .styleguide-2-col, .styleguide-3-col {
    grid-template-columns: 1fr;
  }

  .styleguide-item-wrapper {
    margin-bottom: 2rem;
    padding-left: 0;
    padding-right: 0;
  }

  .form-input {
    min-width: 8rem;
  }

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

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

  .protected-image-wrapper {
    width: 100%;
  }

  .protected-page-content {
    grid-template-columns: 1fr;
    justify-items: center;
  }

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

  .footer-column.right {
    justify-content: center;
    align-items: center;
  }

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

  .spacer-large {
    height: 2.5rem;
  }

  .spacer-xlarge {
    height: 2.75rem;
  }

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

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

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

  .properties-link {
    padding: 1.5rem;
  }

  .header-lightbox {
    height: 30dvh;
  }

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

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

  .latest-properties-title-wrapper {
    grid-template-columns: 1.25fr .25fr;
  }

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

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

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

  .map-wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .info-block-element {
    padding: 1.5rem;
  }

  .footer-judazu-osta-new {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .heading {
    text-align: center;
  }

  .footer-paragraph {
    display: none;
  }

  .image-about.karte {
    height: 40vh;
  }

  .link-block-2 {
    height: 32px;
    bottom: 42%;
    left: 0%;
  }

  .property-content {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    flex-flow: wrap;
    grid-template: "."
                   "."
                   "."
                   / 2fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

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

#w-node-_0fa5b0e8-be08-3885-205e-c54d22c4c430-e076a367 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-_7cff2ac6-952a-12e0-43e1-af9427c6cead-e076a367, #w-node-_7cff2ac6-952a-12e0-43e1-af9427c6cebf-e076a367, #w-node-_63cbdfc3-b0a1-3875-84b2-e34639f11ca0-e076a367, #w-node-_63cbdfc3-b0a1-3875-84b2-e34639f11ca4-e076a367, #w-node-_63cbdfc3-b0a1-3875-84b2-e34639f11ca6-e076a367, #w-node-_63cbdfc3-b0a1-3875-84b2-e34639f11ca8-e076a367, #w-node-_63cbdfc3-b0a1-3875-84b2-e34639f11cac-e076a367, #w-node-_63cbdfc3-b0a1-3875-84b2-e34639f11cae-e076a367, #w-node-_63cbdfc3-b0a1-3875-84b2-e34639f11cb0-e076a367, #w-node-_63cbdfc3-b0a1-3875-84b2-e34639f11cb4-e076a367, #w-node-_63cbdfc3-b0a1-3875-84b2-e34639f11cb6-e076a367, #w-node-c9bc5315-c0ab-2585-3d05-1cdc2b3644fc-e076a367, #w-node-c9bc5315-c0ab-2585-3d05-1cdc2b3644f8-e076a367, #w-node-c572ae73-04d0-154c-deca-196e6cbbd56c-e076a367 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_99c90cd9-bdf0-2cc8-e643-30a815b9e01b-15b9e011 {
  place-self: center end;
}

#w-node-_99c90cd9-bdf0-2cc8-e643-30a815b9e02d-15b9e011, #w-node-_99c90cd9-bdf0-2cc8-e643-30a815b9e022-15b9e011 {
  justify-self: end;
}

#w-node-_99c90cd9-bdf0-2cc8-e643-30a815b9e032-15b9e011 {
  align-self: auto;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674cff5f-e076a3bf, #w-node-a8eb6297-f022-f7ba-ba11-0488674cff64-e076a3bf, #w-node-a8eb6297-f022-f7ba-ba11-0488674cff69-e076a3bf, #w-node-a8eb6297-f022-f7ba-ba11-0488674cff6e-e076a3bf, #w-node-a8eb6297-f022-f7ba-ba11-0488674cff73-e076a3bf, #w-node-a8eb6297-f022-f7ba-ba11-0488674cff78-e076a3bf {
  justify-self: start;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674cff7d-e076a3bf {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_4a848f78-9525-9dab-577e-93c24f25cab4-e076a3bf, #w-node-_4a848f78-9525-9dab-577e-93c24f25cab9-e076a3bf, #w-node-_4a848f78-9525-9dab-577e-93c24f25cabe-e076a3bf, #w-node-_4a848f78-9525-9dab-577e-93c24f25cac3-e076a3bf, #w-node-_4a848f78-9525-9dab-577e-93c24f25cac8-e076a3bf, #w-node-_4a848f78-9525-9dab-577e-93c24f25cacd-e076a3bf {
  justify-self: start;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674cff93-e076a3bf {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674cff9c-e076a3bf {
  justify-self: start;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674cff9e-e076a3bf {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674cffa1-e076a3bf, #w-node-a8eb6297-f022-f7ba-ba11-0488674cffa6-e076a3bf {
  justify-self: start;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674cffa8-e076a3bf {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674cffab-e076a3bf {
  justify-self: start;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674cffad-e076a3bf {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_15bcdc50-5780-78f6-cb71-2022bef7a060-e076a3bf {
  justify-self: start;
}

#w-node-_15bcdc50-5780-78f6-cb71-2022bef7a062-e076a3bf {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674cffb6-e076a3bf {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674cffbf-e076a3bf {
  justify-self: start;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674cffc1-e076a3bf {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674cffc4-e076a3bf {
  justify-self: start;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674cffc6-e076a3bf {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674cffc9-e076a3bf {
  justify-self: start;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674cffcb-e076a3bf {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674cffce-e076a3bf {
  justify-self: start;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674cffd0-e076a3bf {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674cffd3-e076a3bf {
  justify-self: start;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674cffd5-e076a3bf {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674cffe2-e076a3bf {
  justify-self: start;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674cffe4-e076a3bf {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674cffe7-e076a3bf, #w-node-a8eb6297-f022-f7ba-ba11-0488674cffec-e076a3bf, #w-node-a8eb6297-f022-f7ba-ba11-0488674cfff1-e076a3bf {
  justify-self: start;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674cfff7-e076a3bf {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674d0005-e076a3bf {
  justify-self: start;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674d0007-e076a3bf {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674d000a-e076a3bf {
  justify-self: start;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674d000d-e076a3bf {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4599cd18-9582-66a9-851d-1bf225751779-e076a3bf {
  justify-self: start;
}

#w-node-_4599cd18-9582-66a9-851d-1bf22575177b-e076a3bf, #w-node-_4599cd18-9582-66a9-851d-1bf22575177c-e076a3bf {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674d0011-e076a3bf {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674d0024-e076a3bf, #w-node-a8eb6297-f022-f7ba-ba11-0488674d0029-e076a3bf, #w-node-_28d0e1b3-b340-72cb-1368-3c9c7f4cc30b-e076a3bf {
  justify-self: start;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674d002f-e076a3bf {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674d0038-e076a3bf, #w-node-a8eb6297-f022-f7ba-ba11-0488674d003c-e076a3bf, #w-node-a8eb6297-f022-f7ba-ba11-0488674d0040-e076a3bf, #w-node-a8eb6297-f022-f7ba-ba11-0488674d0044-e076a3bf, #w-node-a8eb6297-f022-f7ba-ba11-0488674d0048-e076a3bf, #w-node-a8eb6297-f022-f7ba-ba11-0488674d0050-e076a3bf, #w-node-_907ccb4c-e09a-9f90-4519-c73291f1fc97-e076a3bf {
  justify-self: start;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674d005d-e076a3bf {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674d0066-e076a3bf, #w-node-a8eb6297-f022-f7ba-ba11-0488674d0068-e076a3bf {
  justify-self: start;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674d007b-e076a3bf {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674d0080-e076a3bf {
  justify-self: start;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674d008b-e076a3bf {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674d0090-e076a3bf {
  justify-self: start;
}

#w-node-c30875fa-b2e7-09e3-6abc-5acc97e7dd79-e076a3bf {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c30875fa-b2e7-09e3-6abc-5acc97e7dd7e-e076a3bf {
  justify-self: start;
}

#w-node-c7b39818-8232-0455-2da8-996bb25ee479-e076a3bf {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_37f4b0ed-9fd0-02e7-ec65-e4de362a477d-e076a3bf {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-c7b39818-8232-0455-2da8-996bb25ee47e-e076a3bf {
  justify-self: start;
}

#w-node-c365c8bb-f113-5f89-bccc-2d23e392c828-e076a3bf {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c365c8bb-f113-5f89-bccc-2d23e392c82d-e076a3bf {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-c365c8bb-f113-5f89-bccc-2d23e392c82e-e076a3bf {
  justify-self: start;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674d0096-e076a3bf {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674d009e-e076a3bf {
  justify-self: start;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674d00c5-e076a3bf {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674d00cd-e076a3bf {
  justify-self: start;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674d00cf-e076a3bf {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674d00f6-e076a3bf {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674d00ff-e076a3bf {
  justify-self: start;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674d0101-e076a3bf {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674d0103-e076a3bf {
  justify-self: start;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674d0105-e076a3bf {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674d0107-e076a3bf {
  justify-self: start;
}

#w-node-a8eb6297-f022-f7ba-ba11-0488674d0109-e076a3bf {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_033952e5-7b54-9e46-5a1b-ef1fc549db6f-e076a3bf {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_033952e5-7b54-9e46-5a1b-ef1fc549db77-e076a3bf {
  justify-self: start;
}

#w-node-_7daa8acb-8ea1-68ad-ae9c-ab1d0a750e68-e076a3bf {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-a41b51b9-fc61-81e7-e943-33caf1754bf9-e076a3bf {
  justify-self: start;
}

#w-node-a41b51b9-fc61-81e7-e943-33caf1754bfb-e076a3bf {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-cd1f8184-cb9d-0d6e-3e2f-d2b6108f3429-e076a3bf {
  justify-self: start;
}

#w-node-cd1f8184-cb9d-0d6e-3e2f-d2b6108f342b-e076a3bf {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b97a7d95-2c49-6fdd-5585-367e4e472819-e076a3bf {
  justify-self: start;
}

#w-node-b97a7d95-2c49-6fdd-5585-367e4e47281b-e076a3bf {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-f2ef78ae-6dbf-8282-64c6-c38b119c6dfc-e076a3bf {
  justify-self: start;
}

#w-node-f2ef78ae-6dbf-8282-64c6-c38b119c6dfe-e076a3bf {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9028998b-d74b-f4bb-7beb-e7acb1353a17-e076a3bf {
  justify-self: start;
}

#w-node-_9028998b-d74b-f4bb-7beb-e7acb1353a19-e076a3bf {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-ef69c4d5-a7b1-ac5f-0d07-ad74f64619c1-e076a3bf {
  justify-self: start;
}

#w-node-_425b73bd-9809-e7ee-5405-8f7ba0ee0c9f-e076a3bf, #w-node-ef69c4d5-a7b1-ac5f-0d07-ad74f64619c3-e076a3bf {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_33531aef-9436-a06d-f1f2-085744576d0c-e076a3bf {
  justify-self: start;
}

#w-node-_33531aef-9436-a06d-f1f2-085744576d0e-e076a3bf, #w-node-_33531aef-9436-a06d-f1f2-085744576d0f-e076a3bf {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_13862b6c-4ebf-2ea0-5e9e-eee164471f32-e076a3bf {
  justify-self: start;
}

#w-node-_13862b6c-4ebf-2ea0-5e9e-eee164471f34-e076a3bf, #w-node-_13862b6c-4ebf-2ea0-5e9e-eee164471f35-e076a3bf {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_1187470a-c563-5fec-6c4b-3b1ed3d8d96f-e076a3bf {
  justify-self: start;
}

#w-node-_1187470a-c563-5fec-6c4b-3b1ed3d8d971-e076a3bf {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_3b2829f4-a4ed-4352-8bc0-59d02be98526-e076a3bf {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_3b2829f4-a4ed-4352-8bc0-59d02be9852f-e076a3bf {
  justify-self: start;
}

#w-node-_3b2829f4-a4ed-4352-8bc0-59d02be98531-e076a3bf {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_3b2829f4-a4ed-4352-8bc0-59d02be98534-e076a3bf {
  justify-self: start;
}

#w-node-_3b2829f4-a4ed-4352-8bc0-59d02be98536-e076a3bf {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_3b2829f4-a4ed-4352-8bc0-59d02be98539-e076a3bf {
  justify-self: start;
}

#w-node-_3b2829f4-a4ed-4352-8bc0-59d02be9853b-e076a3bf {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_1ea72577-9357-1928-10bf-01e091618f78-e076a3bf {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_1ea72577-9357-1928-10bf-01e091618f81-e076a3bf {
  justify-self: start;
}

#w-node-_1ea72577-9357-1928-10bf-01e091618f83-e076a3bf {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9505d2bc-fcb6-0cad-65ff-002f325243f0-e076a3bf {
  justify-self: start;
}

#w-node-_9505d2bc-fcb6-0cad-65ff-002f325243f2-e076a3bf {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_1ea72577-9357-1928-10bf-01e091618f86-e076a3bf {
  justify-self: start;
}

#w-node-_1ea72577-9357-1928-10bf-01e091618f88-e076a3bf {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_1ea72577-9357-1928-10bf-01e091618f8b-e076a3bf {
  justify-self: start;
}

#w-node-_1ea72577-9357-1928-10bf-01e091618f8d-e076a3bf {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_5dd155fa-8b29-4df2-901e-117af6e970e7-e076a3bf {
  justify-self: start;
}

#w-node-_5dd155fa-8b29-4df2-901e-117af6e970e9-e076a3bf, #w-node-_5e7fbca2-eb49-4956-93de-d213fa0331f0-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-fcce061e-be1b-1ed3-990c-fe428120fb4d-e076a3c1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-_51838dd2-0c7b-a28e-e100-7a27b3fbde9e-e076a3c1 {
  justify-self: end;
}

#w-node-_51838dd2-0c7b-a28e-e100-7a27b3fbdebe-e076a3c1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e8673c53-4e6f-e019-f19e-622bd6b01c8e-e076a3c2 {
  justify-self: end;
}

#w-node-d4829914-f473-a1d2-6525-59bc0c873e28-e076a3c4, #w-node-d4829914-f473-a1d2-6525-59bc0c873e19-e076a3c4, #w-node-_9bb3d874-189f-2096-92f2-e30a367a9f2f-e076a3c5, #w-node-_9bb3d874-189f-2096-92f2-e30a367a9f38-e076a3c5, #w-node-_391d9fba-c128-0f06-7113-88405f4ebd89-e076a3c6, #w-node-_391d9fba-c128-0f06-7113-88405f4ebd8a-e076a3c6, #w-node-_391d9fba-c128-0f06-7113-88405f4ebdb0-e076a3c6, #w-node-_865edabc-9389-40d9-e54c-ac21c641d106-e076a3c6, #w-node-_2beb6d90-b6e4-a9f9-db87-f109b025f4d5-e076a3c7, #w-node-_2beb6d90-b6e4-a9f9-db87-f109b025f4d8-e076a3c7, #w-node-_2beb6d90-b6e4-a9f9-db87-f109b025f508-e076a3c7, #w-node-_04dcd498-0b58-d22e-31fe-dece876e7238-e076a3c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7dc29200-8fd8-3507-f6e4-ea4def13e656-bdda1d97 {
  align-self: center;
}

#w-node-_1a9fb236-e498-e663-5d73-f6a57324aff4-bdda1d97, #w-node-_6a673e38-3adb-cbf1-f2e7-2e82657597cf-bdda1d97, #w-node-a74517b0-b8cb-bafc-bf08-4229a11e9eeb-bdda1d97 {
  place-self: center;
}

#w-node-cda12880-205e-e69a-1142-30462dffa21d-bdda1d97 {
  justify-self: end;
}

#w-node-_5b8601bc-ce59-0293-1858-f68a133d964a-b1246d58, #w-node-_2586624d-f55c-6c87-b313-8abc12148b98-b1246d58, #w-node-_16ecb9c5-c60e-0575-7d6a-aecbe1aa11b9-b1246d58 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-_944a7461-a519-f896-dd0a-c4e70866f7cf-8fbf24ee, #w-node-_944a7461-a519-f896-dd0a-c4e70866f7d6-8fbf24ee {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (min-width: 1920px) {
  #w-node-a8eb6297-f022-f7ba-ba11-0488674cffcb-e076a3bf {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 991px) {
  #w-node-_0fa5b0e8-be08-3885-205e-c54d22c4c430-e076a367 {
    justify-self: auto;
  }

  #w-node-_7cff2ac6-952a-12e0-43e1-af9427c6cead-e076a367, #w-node-c9bc5315-c0ab-2585-3d05-1cdc2b3644f8-e076a367 {
    grid-row: span 1 / span 1;
  }

  #w-node-_99c90cd9-bdf0-2cc8-e643-30a815b9e02d-15b9e011, #w-node-_99c90cd9-bdf0-2cc8-e643-30a815b9e022-15b9e011 {
    justify-self: start;
  }

  #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-fcce061e-be1b-1ed3-990c-fe428120fb4d-e076a3c1 {
    justify-self: center;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_99c90cd9-bdf0-2cc8-e643-30a815b9e01b-15b9e011 {
    align-self: center;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_99c90cd9-bdf0-2cc8-e643-30a815b9e01b-15b9e011, #w-node-_99c90cd9-bdf0-2cc8-e643-30a815b9e02d-15b9e011, #w-node-_99c90cd9-bdf0-2cc8-e643-30a815b9e022-15b9e011 {
    justify-self: center;
  }

  #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-_1a9fb236-e498-e663-5d73-f6a57324aff4-bdda1d97 {
    justify-self: end;
  }

  #w-node-_6a673e38-3adb-cbf1-f2e7-2e82657597cf-bdda1d97 {
    justify-self: start;
  }

  #w-node-a74517b0-b8cb-bafc-bf08-4229a11e9eeb-bdda1d97, #w-node-cda12880-205e-e69a-1142-30462dffa21c-bdda1d97 {
    justify-self: end;
  }
}


