@font-face {
  font-family: IBM Plex Custom;
  src: url('../fonts/IBMPlexSans-ExtraLightItalic.ttf') format("truetype");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: IBM Plex Custom;
  src: url('../fonts/IBMPlexSans-Bold.ttf') format("truetype"), url('../fonts/IBMPlexSans-SemiBold.ttf') format("truetype"), url('../fonts/IBMPlexSans-Regular.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: IBM Plex Custom;
  src: url('../fonts/IBMPlexSans-BoldItalic.ttf') format("truetype"), url('../fonts/IBMPlexSans-MediumItalic.ttf') format("truetype"), url('../fonts/IBMPlexSans-Italic.ttf') format("truetype"), url('../fonts/IBMPlexSans-SemiBoldItalic.ttf') format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: IBM Plex Custom;
  src: url('../fonts/IBMPlexSans-ExtraLight.ttf') format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: IBM Plex Custom;
  src: url('../fonts/IBMPlexSans-Light.ttf') format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: IBM Plex Custom;
  src: url('../fonts/IBMPlexSans-Medium.ttf') format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: IBM Plex Custom;
  src: url('../fonts/IBMPlexSans-LightItalic.ttf') format("truetype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: IBM Plex Custom;
  src: url('../fonts/IBMPlexSans-Thin.ttf') format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: IBM Plex Custom;
  src: url('../fonts/IBMPlexSans-ThinItalic.ttf') format("truetype");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}

:root {
  --midnight-blue: #0a223f;
  --chocolate: #be591f;
  --white-smoke: #ededed;
  --white: white;
  --midnight-blue-2: #07264b;
  --blue: #364c63;
  --midnight-blue-3: #13355f;
  --light-grey: #d1d1d1;
  --black: black;
  --accent: #f1b642;
  --dark-green: #0a5c3f;
  --peru: #da824f;
  --maroon: #690c29;
}

.w-pagination-wrapper {
  flex-wrap: wrap;
  justify-content: center;
  display: flex;
}

.w-page-count {
  text-align: center;
  width: 100%;
  margin-top: 20px;
}

.w-pagination-previous, .w-pagination-next {
  color: #333;
  background-color: #fafafa;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 9px 20px;
  font-size: 14px;
  display: block;
}

body {
  color: var(--midnight-blue);
  font-family: IBM Plex Sans;
  font-size: 13px;
  font-weight: 400;
  line-height: 1em;
}

h1 {
  margin-top: 0;
  margin-bottom: .6em;
  font-size: 5em;
  font-weight: 500;
  line-height: 1.2em;
}

h2 {
  letter-spacing: -.03em;
  margin-top: 0;
  margin-bottom: .8em;
  font-size: 4em;
  font-weight: 500;
  line-height: 1.2em;
}

h3 {
  color: var(--midnight-blue);
  margin-top: 0;
  margin-bottom: 1.1em;
  font-size: 3em;
  font-weight: 500;
  line-height: 1.2em;
}

h4 {
  margin-top: 0;
  margin-bottom: 1.2em;
  font-size: 2.5em;
  font-weight: 500;
  line-height: 1.5em;
}

h5 {
  margin-top: 0;
  margin-bottom: 1.2em;
  font-size: 2.3em;
  font-weight: 500;
  line-height: 1.3em;
}

h6 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 1.3em;
  font-weight: 500;
  line-height: 1.5em;
}

p {
  margin-bottom: 0;
  font-size: 1.15em;
  line-height: 1.5em;
}

a {
  color: var(--chocolate);
  text-decoration: none;
  transition: color .3s;
}

a:hover {
  color: var(--midnight-blue);
}

ul {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 3em;
}

ol {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
  font-size: 1em;
  line-height: 1em;
}

li {
  padding-top: .6em;
  padding-bottom: .6em;
  font-size: 1.2em;
  line-height: 1.2em;
}

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

strong {
  font-weight: 600;
}

blockquote {
  background-color: var(--white-smoke);
  margin-bottom: 0;
  padding: 1em;
  font-size: 1.15em;
  line-height: 1.6em;
}

figcaption {
  text-align: center;
  margin-top: 5px;
}

.page-wrapper._404 {
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  display: flex;
}

.main-wrapper {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.main-wrapper.overflow-visible {
  overflow: visible;
}

.container {
  z-index: 10;
  background-color: var(--white);
  width: 100%;
  max-width: 1800px;
  padding-left: 8em;
  padding-right: 8em;
  position: relative;
}

.container.max-width-1500px {
  max-width: 1500px;
}

.container.lifestyle-2 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: static;
}

.container.viisi {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 140px;
  display: block;
}

.container.konakt {
  padding-left: 140px;
  padding-right: 140px;
}

.container.konakt.fin {
  max-width: 100%;
  padding-left: 40px;
  padding-right: 40px;
}

.section {
  z-index: 10;
  background-color: var(--white);
  position: relative;
}

.section.grey-background {
  background-color: #ededed;
}

.section.blue-background {
  background-color: var(--white);
  border-bottom: 1px #000;
}

.section.blue-background.kontakt, .section.blue-background.fakt {
  margin-top: 60px;
}

.section.white-border-bottom {
  border-bottom: 1px #cbced1;
}

.section.blue-border-bottom {
  border-bottom: 1px solid #2e5b94;
}

.section._404 {
  flex: 1;
  display: flex;
}

.section.grey-border-bottom {
  border-bottom: 1px solid #c9c9c9;
}

.section.video-50em {
  z-index: 5;
  height: 50em;
}

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

.section.blue-gradient-background {
  background-color: var(--white);
  background-image: none;
  overflow: hidden;
}

.section.blue-gradient-background.overflow-hidden {
  background-image: none;
}

.section.blue-gradient-background.overflow-hidden.kontatk {
  margin-top: 60px;
  margin-bottom: 0;
}

.section.home-hero-3 {
  margin-top: -5em;
}

.section.grey-color-style {
  background-color: #1d1d1d;
}

.section.grey-color-gradient-style {
  background-image: linear-gradient(#161616, #3a3a3a);
  overflow: hidden;
}

.section.overflow-hidden {
  background-image: url('../images/dawid-zawila--G3rw6Y02D0-unsplash.jpg');
  background-position: 50%;
  background-size: cover;
  height: 500px;
  overflow: hidden;
}

.section.overflow-hidden.impressum {
  height: 400px;
}

.section.overflow-hidden.angebote {
  object-fit: contain;
  object-position: 50% 100%;
  height: 600px;
}

.section.overflow-hidden.angebote.service {
  height: 600px;
}

.navbar-container {
  justify-content: space-between;
  align-self: stretch;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.logo {
  width: 12em;
  margin-top: .3em;
  margin-bottom: .3em;
  font-size: 1.1em;
}

.logo.ivd {
  width: 1em;
}

.brand {
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  padding-left: 2em;
  padding-right: 2em;
  display: flex;
}

.nav-menu {
  display: flex;
}

.navbar {
  z-index: 998;
  border-bottom: 1px solid var(--light-grey);
  background-color: #fff;
  min-height: 5em;
  display: flex;
  position: sticky;
  top: 0;
}

.nav-link {
  color: var(--midnight-blue);
  letter-spacing: .05em;
  text-transform: uppercase;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  padding: 2em 1.4em;
  font-family: IBM Plex Custom, sans-serif;
  font-size: 15px;
  font-weight: 400;
  display: flex;
}

.nav-link.w--current {
  color: var(--midnight-blue);
}

.home-hero {
  background-color: #636363;
  background-image: url('../images/sunset-2570443_1920.jpg');
  background-position: 50%;
  background-size: cover;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 1920px;
  min-height: 55vh;
  margin-left: auto;
  margin-right: auto;
  padding: 7.5em 5em;
  display: flex;
  position: relative;
  overflow: hidden;
}

.home-hero.home-hero-3 {
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding-top: 12em;
  padding-bottom: 12em;
}

.nav-left {
  display: flex;
}

.side-menu {
  z-index: 10;
  border-right: 1px solid var(--light-grey);
  cursor: pointer;
  flex-direction: row;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  padding-left: 3em;
  padding-right: 2em;
  transition: padding .5s cubic-bezier(.075, .82, .165, 1);
  display: none;
  position: relative;
  overflow: hidden;
}

.side-menu:hover {
  padding-right: 3em;
}

.burger-icon-line {
  background-color: var(--black);
  width: 1.6em;
  height: 1px;
  margin-top: 4px;
  margin-bottom: 4px;
}

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

.property-image.is-1st {
  z-index: 3;
}

.hero-claim {
  z-index: 5;
  flex-direction: column;
  align-items: flex-start;
  padding: 2.1em;
  position: relative;
  overflow: hidden;
}

.hero-claim.with-toptitle {
  padding-top: 0;
  display: flex;
}

.hero-claim.home-hero-3 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.hero-claim.home-hero-2 {
  padding: 0;
}

.hero-heading {
  z-index: 5;
  max-width: 11em;
  margin-bottom: 0;
  font-family: IBM Plex Custom, sans-serif;
  font-weight: 200;
  position: relative;
}

.hero-heading.home-hero-2 {
  max-width: 9.5em;
  font-size: 6em;
  font-weight: 500;
}

.hero-heading.home-hero-3 {
  text-align: center;
  max-width: 8em;
  font-size: 6em;
  font-weight: 300;
  line-height: 1em;
}

.hero-button {
  z-index: 2;
  color: var(--white);
  letter-spacing: .05em;
  text-transform: uppercase;
  background-color: #364c63bf;
  align-items: center;
  margin-right: 1px;
  padding: 1.3em 2em;
  font-size: 1em;
  transition: background-color .3s, color .3s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hero-button:hover {
  background-color: #000;
}

.hero-button.with-margins {
  margin-left: 1em;
  margin-right: 1em;
}

.hero-button-icon {
  width: 1em;
  height: 1em;
  margin-left: 1em;
  font-size: 1.6em;
}

.hero-button-paragraph {
  margin-right: 1em;
  font-size: 1em;
}

.inner-padding-8em {
  justify-content: space-between;
  align-items: center;
  padding-top: 8em;
  padding-bottom: 8em;
  display: flex;
}

.inner-padding-8em.is-properties {
  padding-bottom: 6em;
}

.button {
  z-index: 10;
  background-color: var(--accent);
  color: var(--white);
  letter-spacing: .05em;
  text-transform: uppercase;
  white-space: nowrap;
  flex: none;
  align-items: center;
  padding: 1.3em 2em;
  font-size: 1em;
  font-weight: 500;
  line-height: 1em;
  display: flex;
  position: relative;
  overflow: hidden;
}

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

.button.with-margins-left {
  margin-left: 1em;
}

.button.grey-background {
  background-color: #636669;
}

.button.grey-background.with-margins {
  background-color: var(--accent);
}

.button.on-side {
  margin-top: .7em;
  margin-bottom: .7em;
}

.button._100per-width {
  justify-content: space-between;
  width: 100%;
}

.button.example-button {
  margin-top: 1em;
  margin-bottom: 1em;
  margin-right: 1.9em;
}

.burger-icon {
  z-index: 5;
  margin-right: 1em;
  position: relative;
}

.burger-title {
  z-index: 5;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: .9em;
  font-weight: 400;
  position: relative;
}

.embed-code {
  position: fixed;
  inset: 0% auto auto 0%;
}

.property-wrapper {
  width: 100%;
}

.flex-vertical {
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.property-list {
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-left: -1.5%;
  margin-right: -1.5%;
  display: flex;
}

.property-item {
  align-self: stretch;
  width: 33.3333%;
  margin-bottom: 3%;
  padding-left: 1.5%;
  padding-right: 1.5%;
  display: flex;
}

.property-image-wrap {
  z-index: 1;
  object-fit: cover;
  width: 100%;
  height: 18em;
  position: relative;
  overflow: hidden;
}

.property-link {
  background-color: var(--white);
  color: var(--chocolate);
  flex-direction: column;
  align-self: stretch;
  align-items: flex-start;
  width: 100%;
  transition: background-color .3s, color .3s;
  display: flex;
  position: relative;
}

.property-link:hover {
  color: var(--midnight-blue);
}

.button-arrow-right {
  z-index: 5;
  width: 1em;
  height: 1em;
  margin-left: 1em;
  font-size: 1.6em;
  position: relative;
}

.blue-dot {
  background-color: var(--midnight-blue);
  width: 2px;
  min-width: 2px;
  height: 2px;
  min-height: 2px;
  margin-left: .7vw;
  margin-right: .7vw;
}

.property-price-absolute {
  z-index: 5;
  color: var(--midnight-blue);
  background-color: #fff;
  align-items: center;
  padding: 1em;
  display: flex;
  position: absolute;
  inset: auto 0% 0% auto;
}

.property-price-text {
  letter-spacing: .01em;
  text-transform: uppercase;
  font-family: IBM Plex Custom, sans-serif;
  font-size: 1.3em;
  line-height: 1.1em;
}

.property-inner {
  z-index: 10;
  flex-direction: row;
  flex: 1;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.7em 2em;
  display: flex;
  position: relative;
}

.type-of-customer {
  justify-content: space-between;
  padding-top: 5em;
  padding-bottom: 5em;
  display: flex;
}

.customer-link {
  z-index: 10;
  background-color: var(--blue);
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 48%;
  min-height: 18em;
  padding: 3.3em;
  display: flex;
  position: relative;
  overflow: hidden;
}

.customer-link.for-sellers {
  background-color: var(--blue);
}

.customer-title {
  z-index: 5;
  color: var(--white);
  border-bottom: 2px solid #0000;
  padding-top: .1em;
  padding-bottom: .1em;
  font-size: 1.8em;
  font-weight: 400;
  line-height: 1.2em;
  transition: border-color .3s;
  position: relative;
}

.customer-title:hover {
  border-bottom-color: var(--white);
}

.customer-pattern-buyers {
  z-index: 1;
  opacity: .2;
  background-image: url('../images/rain-pattern.svg');
  background-position: 0 0;
  background-size: auto;
  position: absolute;
  inset: 0%;
}

.customer-pattern-sellers {
  z-index: 1;
  background-image: url('../images/diagonal-lines.svg');
  background-position: 0 0;
  background-size: auto;
  position: absolute;
  inset: 0%;
}

.flex-horizontal {
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.flex-horizontal.justify-start {
  justify-content: flex-start;
}

.flex-horizontal.contact-page {
  justify-content: space-around;
}

.split-content-column {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 50%;
  padding: 6em;
  display: flex;
  position: relative;
}

.split-content-column.min-80vh {
  object-fit: cover;
  object-position: 50% 50%;
  min-height: 80vh;
}

.who-we-are-title {
  margin-bottom: 1.6em;
  font-family: IBM Plex Custom, sans-serif;
  font-size: 1.1em;
}

.who-we-are {
  flex-direction: column;
  align-items: flex-start;
  max-width: 34em;
  display: flex;
}

.image-with-margin {
  width: 100%;
  margin-bottom: 3.5em;
}

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

.footer {
  z-index: 10;
  background-color: var(--white);
  text-align: center;
  align-items: flex-start;
  padding-top: 4em;
  position: relative;
}

.footer.grey-color-style {
  background-color: #181818;
}

.footer-link {
  color: var(--black);
  padding: .2em .6em;
  font-family: IBM Plex Custom, sans-serif;
  font-size: 3em;
  font-weight: 200;
  line-height: 1.2em;
}

.footer-link:hover {
  color: var(--white);
}

.footer-link.w--current {
  color: var(--black);
  font-weight: 300;
}

.footer-contact-link {
  color: var(--black);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 0;
  padding: .7em 1.5em;
  font-family: IBM Plex Custom, sans-serif;
  font-size: 1em;
  font-weight: 300;
  line-height: 1.2em;
}

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

.footer-contact-link.w--current {
  color: #fff;
  font-weight: 400;
}

.footer-link-wrap {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 40px;
  margin-bottom: 3em;
  display: flex;
}

.subfooter {
  z-index: 10;
  border-top: 1px #244c7e;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 2em;
  display: flex;
  position: relative;
}

.subfooter.grey-color-style {
  border-top-color: #363636;
}

.metrik-link {
  z-index: 10;
  opacity: .7;
  color: var(--white);
  align-items: center;
  padding-top: 1em;
  padding-bottom: 1em;
  font-size: .85em;
  font-weight: 300;
  transition: opacity .3s, color .3s;
  display: flex;
  position: relative;
}

.metrik-link:hover {
  opacity: 1;
  color: var(--white);
}

.inquiry-call-to-action {
  z-index: 10;
  background-color: var(--midnight-blue);
  border-top: 1px solid #335783;
  padding-top: 5em;
  padding-bottom: 5em;
  position: relative;
}

.inquiry-call-to-action.grey-color-style {
  background-color: #373838;
  border-top: 1px solid #666;
}

.footer-contact {
  justify-content: center;
  align-items: center;
  max-width: 65em;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.footer-contact-title {
  color: var(--white);
  margin-right: 1em;
  font-family: IBM Plex Custom, sans-serif;
  font-size: 2em;
  line-height: 1.5em;
}

.background-video {
  z-index: 1;
  width: 100%;
  height: 100%;
  display: none;
  position: absolute;
  inset: 0%;
}

.empty-state {
  background-color: var(--midnight-blue-3);
  color: var(--white);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2.5em 1.8em;
  font-size: 2em;
  font-weight: 300;
  line-height: 1em;
  display: flex;
}

.empty-state.empty-color-lighter {
  background-color: #204574;
}

.footer-brand {
  margin-bottom: 6.5em;
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
}

.footer-logo {
  width: 16em;
}

.policy-list-wrapper {
  margin-right: 1em;
}

.policy-list {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  display: flex;
}

.policy-link {
  color: #fff9;
  margin-right: 1.3em;
  padding-top: 1em;
  padding-bottom: 1em;
  display: inline-block;
}

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

.metrik-logo {
  width: 7em;
  margin-left: .7em;
}

.empty-state-hide {
  display: none;
}

.property-paragraph {
  color: var(--midnight-blue);
  margin-top: .5em;
  margin-bottom: .5em;
  font-size: 1em;
}

.property-paragraph.margin-right {
  margin-right: .4em;
}

.property-paragraph.is-type {
  color: #0a223fb3;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-size: .8em;
}

.interior {
  align-items: center;
  font-family: IBM Plex Custom, sans-serif;
  display: flex;
}

.amenities-icon {
  object-fit: contain;
  width: 1.3em;
  height: 1.2em;
  margin-right: .5em;
}

.property-interior {
  opacity: .7;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.featured-gallery-lightbox {
  flex: 1;
  height: 10em;
  margin: 3px;
  display: flex;
  overflow: hidden;
}

.lightbox-image {
  object-fit: cover;
  flex: 1;
  height: 100%;
}

.design-system-inner {
  flex-direction: column;
  align-items: flex-start;
  max-width: 63em;
  margin-left: auto;
  margin-right: auto;
  padding-top: 10em;
  padding-bottom: 10em;
  display: flex;
}

.design-system-inner.is-icons {
  flex-flow: wrap;
  justify-content: flex-start;
}

.page-hero {
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding: 7.5em 8em;
  display: flex;
  position: relative;
}

.page-hero.hero-is-higher {
  padding-top: 15em;
  padding-bottom: 15em;
}

.heading-about {
  margin-bottom: 1.2em;
  font-family: IBM Plex Custom, sans-serif;
  font-size: 1.7em;
  line-height: 1.7em;
}

.pagination-button {
  letter-spacing: .1em;
  text-transform: uppercase;
  background-color: #0000;
  border-color: #b8b8b8;
  justify-content: space-between;
  align-items: center;
  min-width: 12em;
  margin-left: 0;
  margin-right: 0;
  padding: 1em 1.5em;
  font-size: 1em;
  font-weight: 400;
  transition: border-color .3s, background-color .3s;
  display: flex;
}

.pagination-button:hover {
  background-color: var(--white);
  border-color: #a8a8a8;
}

.page-count {
  width: auto;
  margin-top: 1em;
  margin-bottom: 1em;
}

.pagination {
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
}

.button-paragraph {
  z-index: 10;
  color: var(--white);
  font-family: IBM Plex Custom, sans-serif;
  font-size: 1em;
  position: relative;
}

.button-paragraph.blue-color {
  color: var(--midnight-blue);
}

.button-background {
  z-index: 1;
  background-color: var(--midnight-blue-3);
  display: none;
  position: absolute;
  inset: 0%;
}

.button-background.dark-blue-color {
  background-color: var(--midnight-blue);
}

.property-hero {
  background-color: #636363;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding: 7.5em 5em 24em;
  display: flex;
  position: relative;
}

.fullscreen-background {
  z-index: 1;
  object-fit: cover;
  object-position: 50% 20%;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.property-desc-icon {
  z-index: 5;
  object-fit: contain;
  width: 1em;
  height: 1em;
  margin-right: .8em;
  font-size: 1.7em;
  position: relative;
}

.property-desc-paragraph {
  color: var(--midnight-blue);
  text-align: right;
  margin-left: .2em;
  margin-right: .2em;
  font-family: IBM Plex Custom, sans-serif;
  font-size: 1.4em;
  font-weight: 500;
  line-height: 1.1em;
}

.property-desc-paragraph.is-title {
  text-align: left;
  font-family: IBM Plex Custom, sans-serif;
}

.property-desc-paragraph.is-reserved {
  color: var(--white);
  background-color: #690c29;
  padding: .3em .8em;
  font-size: 1.2em;
  font-weight: 400;
}

.property-desc-paragraph.is-available {
  background-color: var(--dark-green);
  color: var(--white);
  padding: .3em .8em;
  font-size: 1.2em;
  font-weight: 400;
}

.property-desc-paragraph.is-sold {
  color: var(--white);
  background-color: #555;
  padding: .3em .8em;
  font-size: 1.2em;
  font-weight: 400;
}

.property-desc-block {
  z-index: 5;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.diagonal-pattern-15em {
  z-index: -1;
  opacity: .15;
  background-image: url('../images/diagonal-lines.svg');
  background-position: 0 0;
  background-repeat: repeat;
  background-size: auto;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.padding-8em {
  padding-top: 0;
  padding-bottom: 8em;
}

.padding-8em.bulgarien {
  padding-top: 8em;
}

.padding-8em.visiten {
  padding-top: 1.8em;
}

.padding-8em.home {
  padding-top: 2em;
}

.breadcrumbs {
  z-index: 20;
  background-color: var(--white);
  border-bottom: 1px solid #d1d1d1;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.breadcrumb-link {
  opacity: .6;
  color: var(--midnight-blue);
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
  flex: none;
  align-items: center;
  padding-top: 1em;
  padding-bottom: 1em;
  font-size: .85em;
  transition: opacity .3s, color .3s;
  display: flex;
}

.breadcrumb-link:hover {
  opacity: 1;
}

.breadcrumb-link.w--current {
  opacity: 1;
  color: var(--midnight-blue-3);
}

.breadcrumbs-home-icon {
  width: 1em;
  height: 1em;
  margin-right: .4em;
  font-size: 1.2em;
}

.breadcrumb-icon-right {
  opacity: .5;
  width: 1em;
  height: 1em;
  margin-left: 1em;
  margin-right: 1em;
  font-size: 1.1em;
}

.location-block {
  align-items: center;
  margin-right: 1.5em;
  padding-top: .7em;
  padding-bottom: .7em;
  display: flex;
}

.location-block.is-last {
  margin-right: 0;
}

.location-paragraph {
  margin-right: .3em;
  font-size: 1.1em;
  line-height: 1.1em;
}

.hero-buttons-wrap {
  z-index: 4;
  align-items: stretch;
  padding-top: 1px;
  display: flex;
  position: relative;
}

.property-gallery {
  display: flex;
}

.property-gallery-list {
  flex-wrap: wrap;
  flex: 1;
  justify-content: flex-start;
  padding: 4px;
  display: flex;
}

.property-gallery-item {
  width: 16.6667%;
  display: flex;
}

.property-gallery-item.is-bigger {
  width: 33.3333%;
}

.property-gallery-lightbox {
  flex: 1;
  justify-content: center;
  align-items: center;
  height: 10em;
  margin: 3px;
  display: flex;
  overflow: hidden;
}

.property-gallery-lightbox.is-bigger {
  z-index: 10;
  height: 20em;
  position: relative;
}

.price-title {
  color: var(--accent);
  margin-right: .3em;
  font-family: IBM Plex Custom, sans-serif;
  font-size: 4em;
}

.price-item {
  align-items: center;
  display: flex;
}

.price {
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  margin-right: 0;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.price-toptitle {
  color: var(--white);
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: .9em;
}

.heading-realtor {
  margin-bottom: .2em;
  font-size: 1.7em;
}

.realtor-contacts {
  align-items: center;
  padding-left: 60px;
  font-size: .9em;
  display: flex;
}

.realtor-contacts.fakt {
  padding-left: 0;
}

.title-with-button-block {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 3em;
  display: flex;
}

.heading-also-like {
  margin-bottom: 0;
  font-size: 2.5em;
  line-height: 1.5em;
}

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

.button-contact {
  background-color: var(--blue);
  color: var(--white);
  text-transform: uppercase;
  border: 1px solid #0000;
  justify-content: space-between;
  align-items: center;
  padding: 1.3em 2em;
  font-size: 1em;
  font-weight: 500;
  line-height: 1em;
  transition: background-color .3s, color .3s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.button-contact:hover {
  background-color: var(--midnight-blue-3);
  color: var(--white);
}

.button-contact.is-light {
  color: var(--midnight-blue);
  background-color: #0000;
  border: 1px solid #cedae9;
  margin-left: -1px;
  left: 1px;
}

.button-contact.is-light:hover {
  color: var(--midnight-blue);
  background-color: #e6e6e6;
}

.button-contact.is-smaller {
  font-size: .8em;
}

.button-contact-icon {
  z-index: 5;
  width: 1em;
  height: 1em;
  margin-left: 1em;
  font-size: 1.2em;
  position: relative;
}

.financial-block {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.location-detail {
  flex-wrap: wrap;
  align-items: center;
  padding-top: .1em;
  padding-bottom: 1.5em;
  font-size: 1.3em;
  display: flex;
}

.financial-heading {
  z-index: 1;
  color: var(--white);
  margin-bottom: 0;
  margin-right: 1.5em;
  font-family: IBM Plex Custom, sans-serif;
  font-weight: 400;
  position: relative;
}

.asign-realtor-paragraph {
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1.3em;
  font-size: .8em;
}

.white-color {
  color: var(--white);
  font-family: IBM Plex Custom, sans-serif;
}

.property-item-list {
  width: 100%;
  margin-bottom: 2.5em;
}

.property-image-2 {
  z-index: 1;
  object-fit: cover;
  flex: 1;
  align-self: stretch;
  margin-right: 1px;
  position: relative;
  overflow: hidden;
}

.property-inner-list {
  background-color: var(--white);
  color: var(--chocolate);
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: 19em;
  transition: background-color .3s, color .3s;
  display: flex;
  position: relative;
}

.property-inner-list:hover {
  color: var(--midnight-blue);
}

.property-padding-list {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  padding: 4em;
  display: flex;
}

.tab-icon {
  width: 1em;
  height: 1em;
  font-size: 1.3em;
}

.tab-link-list {
  opacity: .7;
  color: #0a223fe6;
  background-color: #0000;
  border: 1px solid #ccc;
  align-items: center;
  margin-left: -1px;
  padding: 1.2em;
  transition: opacity .3s, background-color .3s, color .3s;
  display: flex;
}

.tab-link-list:hover {
  opacity: 1;
}

.tab-link-list.w--current {
  opacity: 1;
  color: var(--midnight-blue);
  background-color: #ddd;
}

.tabs-menu {
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 2em;
  display: flex;
}

.tab-title {
  text-transform: uppercase;
  margin-right: 1em;
  font-size: .8em;
  font-weight: 500;
}

.tabs {
  flex-direction: column;
  width: 100%;
}

.form-error-paragraph {
  font-size: 1em;
  line-height: 1.6;
}

.form-label {
  z-index: 11;
  color: var(--black);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 0;
  font-family: IBM Plex Custom, sans-serif;
  font-size: .75em;
  font-weight: 400;
  position: absolute;
  left: 0;
}

.contact-subtitle {
  color: #13355fa3;
  letter-spacing: .05em;
  text-transform: uppercase;
  max-width: 25em;
  margin-bottom: .3em;
  font-size: .9em;
  line-height: 1.6em;
}

.form-field {
  z-index: 5;
  color: var(--white);
  background-color: #0000;
  border: 1px solid #0000;
  min-height: 4em;
  margin-bottom: 0;
  padding: 1em 0 .2em;
  font-family: IBM Plex Custom, sans-serif;
  font-size: 1.2em;
  line-height: 1.1em;
  position: relative;
}

.form-field:focus {
  border-color: transparent transparent var(--white);
  background-color: #0000;
}

.form-field::placeholder {
  color: #8c97a5;
  font-size: .8em;
}

.form-field.is--area {
  min-height: 7em;
  padding-top: 1.5em;
}

.form-field.form-blue {
  color: var(--midnight-blue);
}

.form-field.form-blue::placeholder {
  color: #0a223f91;
}

.form-block {
  border-bottom: 1px solid #5a708a;
  width: 48%;
  margin-bottom: 1.5em;
  transition: border-color 1s ease-out;
  position: relative;
}

.form-block:hover {
  border-bottom-color: var(--white);
}

.form-block.is--area {
  width: 100%;
  margin-bottom: 0;
}

.form-block.is-option, .form-block.form-100per {
  width: 100%;
}

.form-block.form-100per:hover {
  border-bottom-color: var(--midnight-blue-2);
}

.form {
  width: 100%;
  font-size: 1.2em;
  position: relative;
}

.form-error {
  background-color: #e7baba;
  border-radius: 4px;
  padding: 2.9em;
}

.privacy-policy {
  align-items: center;
  width: 100%;
  margin-top: 2em;
  margin-bottom: 0;
  padding-top: .5em;
  padding-bottom: .5em;
  display: flex;
}

.submit-form {
  background-color: var(--accent);
  text-align: center;
  letter-spacing: .1em;
  text-transform: uppercase;
  background-image: url('../images/arrow_right_white_24dp.svg');
  background-position: 90%;
  background-repeat: no-repeat;
  background-size: 1.5em;
  margin-top: 1.8em;
  padding: 1.4em 3.5em 1.4em 2.2em;
  font-family: IBM Plex Custom, sans-serif;
  font-size: .85em;
  font-weight: 400;
  transition: background-position .3s ease-out, background-color .3s ease-out;
}

.submit-form:hover {
  background-color: #883d11;
  background-position: 90%;
}

.submit-form.submit-100per {
  text-align: left;
  width: 100%;
}

.submit-form.submit-100per:hover {
  background-color: var(--blue);
}

.privacy-paragraph {
  color: #ffffffb3;
  margin-bottom: 0;
  line-height: 1.2em;
}

.radio-button {
  border-width: 2px;
  border-color: var(--white);
  cursor: pointer;
  border-radius: 50%;
  flex: none;
  width: 1.2em;
  height: 1.2em;
  margin-top: 0;
  margin-right: 1em;
  transition: transform .3s, border-color .3s, background-color .3s;
}

.radio-button:hover {
  transform: scale(1.1);
}

.radio-button.w--redirected-checked {
  border-width: 2px;
  border-color: var(--white);
  background-color: var(--white);
  background-image: url('../images/done_black_24dp.svg');
  background-position: 50%;
  background-size: 1em;
  width: 1.2em;
  height: 1.2em;
}

.radio-button.w--redirected-focus {
  box-shadow: 0 0 3px 1px var(--white);
  width: 1.2em;
  height: 1.2em;
}

.form-success-title {
  color: #141d24;
  max-width: 11em;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.6em;
  font-weight: 500;
  line-height: 1.3em;
}

.form-inner {
  flex-wrap: wrap;
  justify-content: space-between;
  display: flex;
}

.form-success {
  color: var(--midnight-blue-3);
  background-color: #4fda92;
  width: 100%;
  padding: 5em 2.5em;
}

.main-tabs {
  justify-content: space-between;
  display: flex;
}

.tabs-contact {
  z-index: 10;
  background-color: #fff;
  width: 100%;
  max-width: 83em;
  margin-left: auto;
  margin-right: auto;
}

.contact-tab-pane {
  padding: 8em 6.5em;
}

.main-tab-link {
  text-align: center;
  background-color: #e0e0e0;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  padding: 3.5em 1em;
  font-weight: 400;
  transition: color .3s, background-color .4s ease-out;
  display: flex;
  position: relative;
}

.main-tab-link:hover {
  background-color: var(--blue);
  color: #fff;
}

.main-tab-link.w--current {
  color: #15151f;
  background-color: #fff;
  font-weight: 500;
}

.main-tab-link.w--current:hover {
  background-color: var(--white);
  color: var(--midnight-blue);
}

.main-tab-link-title {
  letter-spacing: .1em;
  text-transform: uppercase;
  font-family: IBM Plex Custom, sans-serif;
  font-size: 1.1em;
  line-height: 1.2em;
}

.contact-tab-inner {
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.contact-link {
  font-size: 1.4em;
}

.contact-link:hover {
  color: var(--midnight-blue-3);
}

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

.cover-image-absolute.in-contact {
  object-position: 50% 70%;
}

.cover-image-absolute.impressum {
  height: 100%;
}

.cover-image-absolute.fakt {
  object-fit: cover;
  object-position: 50% 100%;
  height: auto;
}

.cover-image-absolute.service {
  object-position: 50% 100%;
}

.contact-type {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.contact-tab-inner-column {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  padding-left: 2em;
  padding-right: 2em;
  display: flex;
}

.tab-logo {
  width: 13em;
}

.form-success-icon {
  width: 1em;
  height: 1em;
  margin-bottom: .4em;
  font-size: 3em;
}

.agent-list-wrap {
  width: 100%;
}

.agent-list-wrap.fakt {
  padding-left: 60px;
}

.realtor-list {
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  margin-left: -1.5%;
  margin-right: -1.5%;
  display: flex;
}

.realtor-item {
  width: 33.3333%;
  margin-bottom: 5em;
  padding-left: 1.5%;
  padding-right: 1.5%;
}

.realtor-photography {
  object-fit: cover;
  width: 100%;
  height: 300px;
}

.realtor-name {
  margin-bottom: .1em;
  font-family: IBM Plex Custom, sans-serif;
  font-size: 1.9em;
}

.realtor-position {
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 2.4em;
  font-family: IBM Plex Custom, sans-serif;
  font-size: .8em;
}

.inquiry-paragraph {
  color: #becbda;
  max-width: 26em;
  margin-bottom: 4.3em;
  font-size: 1.1em;
  line-height: 1.6em;
}

.tab-office-photo {
  width: 100%;
  margin-top: 6em;
}

.tab-office-titile {
  font-size: 1.4em;
}

.contact-address {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.social-buttons {
  z-index: 10;
  justify-content: center;
  align-items: center;
  margin-bottom: 4em;
  display: flex;
}

.social-icon {
  z-index: 10;
  width: 1em;
  height: 1em;
  font-size: 1.2em;
  position: relative;
}

.social-button {
  opacity: .7;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 6em;
  height: 4em;
  margin-bottom: 0;
  transition: opacity .3s;
  display: flex;
  position: relative;
}

.social-button:hover {
  opacity: 1;
}

.footer-other-links {
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 2em;
  display: flex;
}

.padding-8em-3em {
  padding-top: 8em;
  padding-bottom: 3em;
}

.bigger-paragraph {
  color: var(--black);
  text-align: center;
  max-width: none;
  margin-bottom: 0;
  font-family: IBM Plex Custom, sans-serif;
  font-size: 20px;
  font-weight: 200;
  line-height: 30px;
}

.bigger-paragraph.fakt {
  text-align: left;
  padding-left: 60px;
  padding-right: 60px;
}

.padding-12em {
  padding-top: 12em;
  padding-bottom: 12em;
}

._2-column-flex {
  justify-content: space-around;
  align-items: center;
  width: 100%;
  margin-bottom: 10px;
  display: flex;
}

._2-column-flex.is-invert {
  flex-direction: row-reverse;
  margin-bottom: 10px;
}

._2-column-flex.is-last {
  margin-bottom: 0;
}

.column-with-padding {
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  width: 50%;
  margin-top: 0;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  position: relative;
}

.column-picture {
  z-index: 10;
  object-fit: cover;
  width: 100%;
  height: 38em;
  position: relative;
  overflow: hidden;
}

.column-picture.fam {
  object-position: 100% 100%;
}

.paragraph-column {
  font-family: IBM Plex Custom, sans-serif;
  font-size: 1.1em;
  line-height: 1.8em;
}

.paragraph-column.with-margin-bottom {
  margin-bottom: 2em;
}

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

.heading-max-width-11em {
  text-align: center;
  max-width: 11em;
  margin-bottom: 1.5em;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.1em;
}

.heading-in-column {
  margin-bottom: .5em;
  font-family: IBM Plex Custom, sans-serif;
  font-size: 2.2em;
  line-height: 1.6em;
}

.in-nutshell {
  justify-content: flex-start;
  display: flex;
}

.in-nutshell-item {
  margin-right: 6em;
  overflow: hidden;
}

.in-nutshell-item.is-last {
  margin-right: 0;
}

.in-nutshell-number {
  color: var(--accent);
  font-size: 2.1em;
  font-weight: 300;
}

.in-nutshell-title {
  color: #ffffffd9;
  font-size: 1.1em;
  font-weight: 400;
}

.toptitle-paragraph {
  text-align: center;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 2em;
  font-family: IBM Plex Custom, sans-serif;
}

.toptitle-paragraph.white-color {
  color: var(--black);
  text-transform: none;
  font-family: IBM Plex Custom, sans-serif;
  font-weight: 400;
}

.toptitle-paragraph.white-color.impressm {
  font-size: 10px;
}

.toptitle-paragraph.white-color.unter {
  color: var(--blue);
  font-weight: 700;
}

.toptitle-paragraph.in-blog-post {
  background-color: var(--white);
  padding: .3em .8em;
}

.form-inquiry-paragraph {
  color: var(--midnight-blue);
  margin-bottom: 3.5em;
  font-family: IBM Plex Custom, sans-serif;
}

.less-margin {
  margin-bottom: .4em;
  font-family: IBM Plex Custom, sans-serif;
}

.max-width-50em {
  max-width: 50em;
  margin-left: auto;
  margin-right: auto;
}

.form-background-video {
  z-index: 1;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.form-background-color {
  z-index: 2;
  background-color: #183457f2;
  background-image: linear-gradient(#061d3a, #0a223f00);
  position: absolute;
  inset: 0%;
}

.select-field {
  color: #dadfe6;
  cursor: pointer;
  background-color: #0000;
  border: 1px solid #0000;
  border-bottom-color: #5a708a;
  min-height: 3.6em;
  margin-bottom: 0;
  padding: 0;
  font-size: 1em;
}

.select-field:active {
  border-color: #0000;
}

.select-field:focus {
  border-color: transparent transparent var(--white);
  background-color: #0000;
}

.privacy-link {
  color: #ffffffb3;
  text-decoration: underline;
}

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

.padding-experience {
  padding-top: 12em;
  padding-bottom: 7em;
}

.underline {
  border-bottom: .5em solid #dadcdf;
  line-height: .3em;
  display: inline-block;
}

.underline.blue-underline {
  border-bottom-style: none;
  border-bottom-color: #284e7c;
}

.underline.grey-color-style {
  border-bottom-color: #535353;
}

.testimonial-icon {
  z-index: 2;
  filter: invert();
  width: 1em;
  height: 1em;
  margin-right: 1.3em;
  font-size: 1.2em;
}

.dropdown-toggle {
  z-index: 10;
  white-space: break-spaces;
  background-color: #0000;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 90px;
  padding: 10px 4.5em;
  transition: background-color .2s;
  display: flex;
}

.dropdown-toggle.w--open {
  border-bottom: 1px solid #0000001a;
}

.testimonial-inner {
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 2.9em 4.5em 1em 7.5em;
}

.testimonial-content {
  z-index: 5;
  background-color: var(--white);
  width: 100%;
  display: block;
  position: relative;
}

.testimonial-content.w--open {
  background-color: #0000;
}

.dropdown-item {
  background-color: var(--white);
  flex: none;
  width: 100%;
  transition: background-color .2s;
  overflow: hidden;
}

.testimonial-wrap {
  margin-bottom: 3em;
}

.testimonial-item {
  margin-bottom: 2px;
}

.testimonial-name {
  z-index: 2;
  font-size: 1.5em;
  font-weight: 600;
  line-height: 1.2em;
  position: relative;
}

.testimonial-flex-inner {
  flex-direction: column;
  align-items: flex-start;
  max-width: 67em;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.testimonial-title {
  align-items: center;
  display: flex;
}

.show-testimonial {
  letter-spacing: .2em;
  text-transform: uppercase;
  font-size: .8em;
  font-weight: 500;
}

.testimonial-name-wrap {
  z-index: 10;
  position: relative;
  overflow: hidden;
}

.testimonial-underline {
  z-index: 1;
  background-color: #d9dcdf;
  width: 100%;
  height: .8em;
  position: absolute;
  inset: auto 0% 0%;
}

.testimonial-quote {
  float: left;
  opacity: .12;
  width: 1em;
  height: 1em;
  margin-left: -.1em;
  margin-right: .2em;
  font-size: 4.7em;
}

.customer-image {
  z-index: 4;
  object-fit: cover;
  object-position: 50% 20%;
  width: 50%;
  height: 100%;
  position: absolute;
  inset: 20% 6% auto auto;
}

.customer-image.fit-sellers {
  object-position: 50% 70%;
}

.sellers-process-paragraph {
  color: #ffffffe6;
  font-size: 1.3em;
  font-weight: 400;
}

.sellers-process-image {
  opacity: .5;
  width: 1em;
  height: 1em;
  margin-bottom: .5em;
  font-size: 2.3em;
}

.sellers-process-item {
  text-align: center;
  background-image: url('../images/arrow_right_white_24dp.svg');
  background-position: 102%;
  background-repeat: no-repeat;
  background-size: 1.6em;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  padding: 1.5em;
  display: flex;
}

.sellers-process-item.is-last {
  background-image: none;
  background-position: 0 0;
  background-repeat: repeat;
  background-size: auto;
}

.lifestyle-list {
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  display: flex;
}

.lifestyle-item {
  z-index: 10;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 1em;
  position: relative;
}

.lifestyle-item.in-homepage {
  width: 50%;
  margin-bottom: 0;
}

.parallax-background-image {
  z-index: 1;
  opacity: 1;
  object-fit: cover;
  object-position: 100% 50%;
  width: 100%;
  height: 130%;
  position: absolute;
  left: 0%;
  right: 0%;
}

.lifestyle-wrap {
  width: 100%;
}

.heading-lifestyle {
  z-index: 5;
  color: var(--midnight-blue);
  letter-spacing: .2em;
  text-transform: uppercase;
  background-color: #fffc;
  margin-bottom: 0;
  padding: .7em 1.3em;
  font-size: 2em;
  font-weight: 400;
  transition: background-color .3s;
  position: absolute;
}

.heading-lifestyle:hover {
  background-color: #fff;
}

.heading-lifestyle.in-homepage {
  letter-spacing: .1em;
  text-transform: uppercase;
  background-color: #fff;
  padding: .7em 1.3em;
  font-size: 1.8em;
  font-weight: 400;
  display: inline-block;
}

.heading-lifestyle.in-homepage-2 {
  z-index: 20;
  color: var(--white);
  letter-spacing: 0;
  text-transform: none;
  background-color: #0000;
  border-bottom: 1px solid #ffffff80;
  padding: 0;
  font-size: 1.8em;
  font-weight: 400;
  line-height: 1.6em;
  display: inline-block;
  position: absolute;
  bottom: 14%;
}

.heading-lifestyle.in-homepage-2:hover {
  background-color: #0000;
  border-bottom-color: #fff;
}

.lifestyle-background-gradient {
  z-index: 1;
  background-image: linear-gradient(to bottom, var(--midnight-blue-2), var(--midnight-blue-3));
  height: 100vh;
  position: absolute;
  inset: auto 0% 0%;
}

.lifestyle-link {
  z-index: 10;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 40em;
  display: flex;
  position: relative;
  overflow: hidden;
}

.lifestyle-link.in-homepage {
  font-size: .65em;
}

.lifestyle-background-color {
  z-index: 3;
  background-color: #040f1d66;
  position: absolute;
  inset: 0%;
}

.tab-pane-grid, .tab-pane-list {
  width: 100%;
}

.tabs-content {
  width: 100%;
  overflow: visible;
}

.list-column {
  margin-bottom: 0;
  padding-top: 1em;
  padding-bottom: 1em;
  padding-left: 2.4em;
}

.includes-lifestyle-paragraph {
  color: var(--white);
  font-size: 1.3em;
  font-weight: 300;
  line-height: 1.1em;
}

.includes-lifestyle-item {
  text-align: center;
  background-image: url('../images/add_white_24dp.svg');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: 1.5em;
  flex-direction: column;
  flex: 0 25%;
  justify-content: flex-start;
  align-items: center;
  padding: 2.7em 2.4em;
  display: flex;
}

.includes-lifestyle-item:last-child {
  background-image: none;
  background-position: 0 0;
  background-repeat: repeat;
  background-size: auto;
}

.includes-lifestyle-image {
  opacity: .7;
  width: 1em;
  height: 1em;
  margin-bottom: .5em;
  font-size: 2.6em;
}

.includes-lifestyle-list {
  flex-flow: wrap;
  justify-content: center;
  display: flex;
}

.max-width-70em {
  max-width: 70em;
  margin-left: auto;
  margin-right: auto;
}

.location-wrap {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.realtor-page {
  justify-content: space-between;
  width: 100%;
  display: flex;
}

.realtor-photo-column {
  width: 50%;
}

.realtor-photo {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.realtor-page-column {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 50%;
  padding: 8em;
  display: flex;
}

.realtor-page-column-inner {
  max-width: 30em;
}

.realtor-page-heading {
  margin-bottom: .3em;
  line-height: 1em;
}

.realtor-page-subtitle {
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 2em;
  font-size: 1.1em;
  font-weight: 500;
}

.realtor-page-paragraph {
  margin-bottom: 2.5em;
  line-height: 1.7em;
}

.paragraph-15 {
  margin-left: 1.5em;
  margin-right: 1.5em;
}

.subfooter-links {
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.testimonial-hero {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 10em;
  padding-bottom: 8em;
  display: flex;
}

.testimonial-hero-inner {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 60em;
  display: flex;
}

.testimonial-subtitle {
  letter-spacing: .4em;
  text-transform: uppercase;
  margin-bottom: 1em;
  font-weight: 500;
}

.rich-text h2 {
  margin-bottom: .7em;
  font-size: 3.2em;
}

.rich-text p {
  margin-bottom: 1.5em;
  font-size: 1.3em;
  line-height: 1.7em;
}

.rich-text h3 {
  margin-bottom: .5em;
  font-size: 2.2em;
}

.rich-text h4 {
  margin-bottom: .6em;
  font-size: 1.8em;
}

.rich-text blockquote {
  background-color: #d4d8dd;
  border-left-color: #0000;
  margin-bottom: 1.3em;
  padding: 1.1em;
  font-size: 1.3em;
  line-height: 1.7em;
}

.rich-text h5 {
  margin-bottom: .9em;
  font-size: 1.6em;
}

.rich-text h6 {
  margin-top: 0;
  margin-bottom: .7em;
  font-size: 1.4em;
  font-weight: 500;
}

.rich-text li {
  margin-bottom: .5em;
  font-size: 1.3em;
  line-height: 1.5em;
}

.rich-text ul {
  margin-bottom: 1.5em;
  font-size: 1em;
  line-height: 1.5em;
}

.rich-text ol {
  font-size: 1em;
}

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

.rich-text figcaption {
  background-color: #eee;
  margin-top: 0;
  margin-bottom: 1.5em;
  font-size: 1.1em;
  line-height: 2.3em;
}

.rich-text.in-property-page {
  margin-bottom: 1em;
  font-family: IBM Plex Custom, sans-serif;
  font-size: 1.1em;
}

.max-width-60em {
  max-width: 60em;
  margin-left: auto;
  margin-right: auto;
}

.list-item-column {
  padding-top: .3em;
  padding-bottom: .3em;
}

.form-error-link {
  color: var(--midnight-blue);
  text-decoration: underline;
}

.diagonal-pattern-25em {
  z-index: -1;
  opacity: .2;
  background-image: url('../images/diagonal-lines.svg');
  background-position: 0 0;
  background-repeat: repeat;
  background-size: auto;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.menu {
  z-index: 999;
  color: var(--white);
  display: none;
  position: fixed;
  inset: 0%;
}

.menu-background {
  z-index: 2;
  background-color: #07192e;
  position: absolute;
  inset: 0%;
}

.menu-inner {
  z-index: 5;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
  position: absolute;
  inset: 0%;
  overflow: auto;
}

.menu-nav {
  z-index: 5;
  display: flex;
  position: relative;
}

.menu-content {
  z-index: 10;
  flex: 1;
  justify-content: space-between;
  display: flex;
  position: relative;
}

.menu-column-left {
  flex-direction: column;
  justify-content: space-between;
  width: 33%;
  padding: 10vh 5em;
  display: flex;
  position: relative;
}

.menu-column-right {
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  padding: 10vh 15em 10vh 8em;
  display: flex;
}

.contact-link-paragraph {
  color: var(--blue);
  font-size: 1em;
}

.contact-link-paragraph.neww {
  font-size: 2em;
}

.menu-office-title {
  color: #fffc;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: .7em;
  font-size: .7em;
}

.menu-office-address {
  color: var(--white);
  font-size: 1.3em;
}

.office-block {
  margin-bottom: 2.5em;
}

.menu-office-contacts {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 3em;
  display: flex;
}

.menu-contact-link {
  border-bottom: 1px solid var(--peru);
  color: var(--peru);
  letter-spacing: .05em;
  margin-bottom: .5em;
  font-size: 1.2em;
  line-height: 2em;
}

.menu-contact-link:hover {
  color: #e7b79c;
  border-bottom-color: #e7b79c;
}

.menu-main-links {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: -2em;
  padding-bottom: 5em;
  display: flex;
}

.menu-link {
  color: var(--white);
  width: 50%;
  padding-right: 5%;
  font-size: 3em;
  font-weight: 200;
  overflow: hidden;
}

.menu-link:hover {
  color: var(--white);
}

.menu-link-paragraph {
  font-size: 1em;
  line-height: 2.2em;
}

.menu-close-icon {
  object-fit: contain;
  width: 1em;
  height: 1em;
  font-size: 1.5em;
}

.menu-close {
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 7em;
  height: 7em;
  padding: 1em;
  display: flex;
}

.menu-brand {
  z-index: 10;
  align-self: center;
  padding: 1em;
  position: relative;
}

.menu-brand-logo {
  width: 10em;
  font-size: 1.2em;
}

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

.menu-background-image {
  z-index: 3;
  opacity: .08;
  object-fit: cover;
  width: 33%;
  height: 100vh;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.menu-background-image-mobile {
  display: none;
}

.menu-office-wrap {
  z-index: 10;
  position: relative;
}

.menu-social-buttons {
  z-index: 10;
  justify-content: flex-start;
  align-items: center;
  min-width: 50%;
  display: flex;
}

.side-menu-background {
  z-index: 1;
  background-color: #dadada;
  display: none;
  position: absolute;
  inset: 0%;
}

.menu-social-button {
  opacity: .7;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 4em;
  margin-bottom: 0;
  margin-right: 4em;
  transition: opacity .3s;
  display: flex;
  position: relative;
}

.menu-social-button:hover {
  opacity: 1;
}

.menu-social-button.is-last {
  margin-right: 0;
}

.utility-page-wrap {
  background-color: var(--midnight-blue);
  flex-direction: column;
  align-self: stretch;
  align-items: flex-start;
  width: 100%;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding: 7.5em 8em;
  display: flex;
  position: relative;
}

.utility-page-content {
  z-index: 2;
  background-color: var(--white);
  flex-flow: column wrap;
  align-items: flex-start;
  padding: 2.1em;
  display: flex;
  position: relative;
}

._404-icon {
  width: 1em;
  height: 1em;
  margin-right: .3em;
  font-size: 4em;
}

.div-block {
  align-items: center;
  width: 100%;
  margin-bottom: 1em;
  display: flex;
}

._404-text-block {
  font-size: 1.2em;
  line-height: 1.5em;
}

.utility-page-form {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 20em;
  display: flex;
}

.utility-page-form-block {
  justify-content: center;
  align-items: center;
  display: flex;
}

.utility-page-form-section {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  display: flex;
}

.utility-page-form-submit {
  background-color: var(--chocolate);
  text-align: left;
  letter-spacing: .05em;
  text-transform: uppercase;
  background-image: url('../images/arrow_right_white_24dp.svg');
  background-position: 90%;
  background-repeat: no-repeat;
  background-size: 1.6em;
  min-width: 12em;
  padding: 1em 1.5em;
  font-size: .9em;
  font-weight: 400;
  transition: background-color .3s;
}

.utility-page-form-submit:hover {
  background-color: var(--midnight-blue-3);
}

.utility-page-form-heading {
  font-size: 3em;
}

.utility-page-form-icon {
  width: 1em;
  height: 1em;
  margin-bottom: .7em;
  font-size: 3em;
}

.utility-page-form-label {
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 0;
  font-size: .8em;
  font-weight: 500;
}

.utility-page-form-field {
  background-color: #f2f3f5;
  border: 1px solid #8b97a5;
  min-height: 3.5em;
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}

.utility-page-form-field::placeholder {
  color: #0a223f8c;
}

.motion-heading {
  text-align: center;
  max-width: 20em;
  margin-left: auto;
  margin-right: auto;
  font-family: IBM Plex Custom, sans-serif;
  font-weight: 400;
  line-height: 1.2em;
}

.motion-heading.white-color {
  font-family: IBM Plex Custom, sans-serif;
}

.motion-heading.white-color.in-blog {
  max-width: 15em;
  margin-bottom: 1em;
}

.motion-heading.white-color.homeee {
  color: var(--black);
}

.motion-heading.in-contact {
  color: var(--white);
  margin-bottom: .8em;
  font-size: 4em;
}

.motion-heading.in-contact.homeeee {
  color: var(--black);
}

.motion-heading.in-blog {
  color: var(--white);
  max-width: 16em;
  margin-bottom: 1em;
  font-size: 4em;
}

.motion-heading.in-temp {
  color: var(--white);
  max-width: 18em;
  margin-bottom: .8em;
  font-size: 4em;
}

.buttons-wrap {
  justify-content: center;
  align-items: center;
  display: flex;
}

.call-to-action-wrap {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.column-content {
  flex-direction: column;
  align-items: flex-start;
  max-width: 27em;
  display: flex;
}

.call-to-action-image {
  object-fit: cover;
  object-position: 50% 50%;
  width: 90%;
  max-width: 80em;
  height: 26em;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.call-to-action-image.in-about-template {
  object-position: 50% 0%;
  height: auto;
}

.call-to-action-image.visitenkarten {
  width: auto;
  max-width: none;
  height: 200px;
}

.call-to-action-image.visitenkarten.neue {
  height: 40px;
  margin-top: 0;
  margin-bottom: 40px;
}

.call-to-action-image.kontakt {
  object-position: 50% 25%;
  height: 40em;
  margin-top: 0;
}

.call-to-action-image.kontakt.impressum {
  object-fit: contain;
  height: auto;
}

.design-system-heading {
  margin-bottom: 3.5em;
  font-size: 1.5em;
  font-weight: 500;
}

.design-system-buttons {
  flex-wrap: wrap;
  width: 100%;
  display: flex;
}

.style-guide-icon {
  width: 20%;
  height: 1em;
  margin-top: 1.3em;
  margin-bottom: 1.3em;
  font-size: 2em;
}

.icons-title {
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.changelog-date {
  color: var(--white);
  letter-spacing: .05em;
  text-transform: uppercase;
  background-color: #3ca57d;
  margin-bottom: 1.3em;
  padding: 1em;
  font-size: .9em;
}

.changelog-info {
  padding-left: 60px;
  padding-right: 60px;
  font-family: IBM Plex Custom, sans-serif;
  font-size: 16px;
}

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

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

.circle-button {
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 5em;
  height: 5em;
  display: flex;
  position: relative;
}

.circle-button.in-property {
  font-size: .7em;
}

.ciricle-outline {
  z-index: 5;
  border: 1px solid #0a223f3d;
  border-radius: 50%;
  position: absolute;
  inset: 0%;
}

.ciricle-icon {
  z-index: 5;
  width: 1em;
  height: 1em;
  font-size: 1.8em;
  position: relative;
}

.title-with-button {
  flex-wrap: wrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 3em;
  display: flex;
}

.featured-wrapper {
  width: 100%;
  min-height: 100vh;
  display: flex;
  overflow: hidden;
}

.featured-list {
  flex: 1;
  align-self: stretch;
  display: flex;
}

.featured-item {
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  align-self: stretch;
  align-items: flex-start;
  display: flex;
  position: relative;
}

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

.featured-block {
  margin-bottom: 5em;
  display: flex;
}

.featured-column {
  z-index: 15;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-bottom: 2.5em;
  padding-left: 3.5em;
  padding-right: 3.5em;
  display: flex;
  position: relative;
  overflow: hidden;
}

.property-featured-title-100 {
  z-index: 5;
  color: var(--white);
  margin-top: .3em;
  margin-bottom: .3em;
  font-size: 2.4em;
  line-height: 1em;
  position: relative;
}

.featured-column-inner {
  z-index: 5;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.featured-flex {
  justify-content: space-between;
  align-items: center;
  margin-top: .5em;
  margin-bottom: .5em;
  display: flex;
  overflow: hidden;
}

.featured-paragraph {
  color: #ffffffd9;
  margin-left: .3em;
  margin-right: .3em;
  font-size: 1.05em;
  line-height: 1.5em;
}

.featured-price-wrap {
  z-index: 5;
  justify-content: flex-start;
  align-items: center;
  margin-top: .5em;
  margin-bottom: 2em;
  display: flex;
  position: relative;
  overflow: hidden;
}

.featured-price {
  color: var(--white);
  font-size: 1.5em;
  font-weight: 300;
  line-height: 1.7em;
}

.featured-paragraph-title {
  z-index: 5;
  background-color: var(--white);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 2em;
  padding: 1.1em;
  font-size: .75em;
  font-weight: 400;
  position: relative;
}

.featured-gallery {
  z-index: 15;
  align-self: stretch;
  padding: 1.6em;
  position: relative;
}

.featured-background-color {
  z-index: 2;
  background-image: linear-gradient(#0a223f00, #04101ff0 40%);
  height: 30%;
  position: absolute;
  inset: auto 0% 0%;
}

.featured-background-color.full-color {
  background-image: linear-gradient(to bottom, #0a223f00, #07264bd1 61%, var(--midnight-blue-2));
}

.featured-background-color.grey-color-style {
  background-image: linear-gradient(#0a223f00, #151515 40%);
}

.background-video-fixed {
  z-index: 1;
  width: 100%;
  height: 100%;
  position: fixed;
  inset: 0%;
}

.featured-gallery-list {
  justify-content: space-between;
  display: flex;
}

.featured-gallery-item {
  flex: 1;
  margin-left: .7em;
  margin-right: .7em;
  display: flex;
}

.customer-link-2 {
  z-index: 10;
  background-color: var(--midnight-blue-3);
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 50%;
  min-height: 18em;
  padding: 3.3em 3.3em 3.3em 5em;
  display: flex;
  position: relative;
  overflow: hidden;
}

.type-of-customer-2 {
  background-color: var(--midnight-blue-3);
  justify-content: center;
  display: flex;
}

.customer-vertical-line {
  background-color: #4c72a1;
  align-self: stretch;
  width: 1px;
}

.about-ceo {
  margin-bottom: 3em;
  line-height: 2em;
}

.home-about-ceo {
  flex-direction: column;
  align-items: flex-start;
  max-width: 30em;
  display: flex;
}

.split-content-column-flex {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 50%;
  padding: 6em;
  display: flex;
  position: relative;
}

.ceo-heading {
  font-size: 2.7em;
  font-weight: 300;
  line-height: 1.4em;
}

.realtor-list-in-column {
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.realtor-wrap-in-column {
  width: 100%;
}

.realtor-item-in-column {
  flex: 1;
  padding-left: 1.5%;
  padding-right: 1.5%;
}

.realtor-photo-in-column {
  object-fit: cover;
  width: 100%;
  margin-bottom: 1em;
}

.ceo {
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 2.5em;
  font-size: .75em;
}

.without-margin-bottom {
  margin-bottom: 0;
}

.lifestyle-wrap-2 {
  width: 100%;
}

.lifestyle-list-2 {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.lifestyle-item-2 {
  z-index: 10;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
}

.lifestyle-link-2 {
  z-index: 10;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 30em;
  display: flex;
  position: relative;
  overflow: hidden;
}

.padding-lifestyle {
  padding-top: 8em;
  padding-bottom: 2em;
}

.parallax-background {
  z-index: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.parallax-background.is-lifestyle {
  position: absolute;
}

.customer-horizontal-line {
  z-index: 10;
  background-color: #4c72a1;
  width: 100%;
  height: 1px;
  position: absolute;
  inset: auto 0% 0%;
}

.instruction-item {
  border-bottom: 2px solid var(--light-grey);
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 5em;
  padding-bottom: 5em;
  display: flex;
}

.instruction-paragraph {
  margin-bottom: 2em;
  font-size: 1.5em;
  line-height: 1.8em;
}

.instruction-welcome {
  float: left;
  font-size: 1.5em;
}

.thank-you-for-purchase {
  background-image: linear-gradient(270deg, #f1f7f4, #b3ccc2);
  border: 1px solid #8caa9e;
  align-items: center;
  margin-bottom: 5em;
  padding: 1.4em;
  display: inline-block;
}

.image {
  float: left;
  width: 1em;
  height: 1em;
  margin-right: .6em;
  font-size: 2.5em;
}

.example {
  background-image: linear-gradient(to right, #e9e9e9, #fff);
  border: 1px solid #ccc;
  margin-bottom: 2.8em;
  padding: 1.5em;
}

.example-paragraph {
  font-size: 1.5em;
  line-height: 1.8em;
}

.example-buttons {
  flex-wrap: wrap;
  display: flex;
}

.example-lessons {
  width: 100%;
}

.hero-claim-background {
  z-index: 1;
  background-color: var(--white);
  position: absolute;
  inset: 0%;
}

.background-reveal {
  z-index: 2;
  background-color: var(--white);
  display: none;
  position: absolute;
  inset: 0%;
}

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

.hero-toptitle {
  z-index: 3;
  background-color: var(--chocolate);
  color: var(--white);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1em;
  padding: .4em .7em;
  font-size: .9em;
  font-weight: 500;
  position: relative;
}

.hero-toptitle.is-type {
  background-color: var(--midnight-blue-2);
}

.hero-toptitle.is-available {
  background-color: var(--dark-green);
}

.hero-toptitle.is-reserved {
  background-color: var(--maroon);
}

.hero-toptitle.is-sold {
  background-color: #575757;
}

.property-list-horizontal {
  flex-wrap: wrap;
  justify-content: flex-start;
  display: flex;
}

.blog-item {
  width: 33.3333%;
  margin-bottom: 4em;
  padding-left: 2em;
  padding-right: 2em;
}

.blog-list {
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-left: -2em;
  margin-right: -2em;
  display: flex;
}

.blog-heading {
  color: var(--midnight-blue);
  font-size: 1.7em;
  font-weight: 400;
  line-height: 1.4em;
}

.blog-image {
  align-self: stretch;
  height: 20em;
  margin-bottom: 2em;
  position: relative;
  overflow: hidden;
}

.blog-link-block {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.blog-link-block:hover {
  text-decoration: underline;
}

.realtor-photo-circle {
  flex: none;
  width: 8em;
  height: 11em;
  margin-bottom: 1.2em;
  margin-right: 2em;
  position: relative;
}

.realtor-item-contact {
  flex-wrap: wrap;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 2em;
  display: flex;
}

.realtor-contact {
  flex-direction: column;
  flex: 1;
  align-items: flex-start;
  display: flex;
}

.realtor-list-contact {
  flex-flow: column wrap;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.our-team-column {
  border-left: 1px solid var(--light-grey);
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 50%;
  padding-left: 4em;
  padding-right: 4em;
  display: flex;
}

.main-contacts-column {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 50%;
  padding-left: 4em;
  padding-right: 4em;
  display: flex;
}

.sticky-12 {
  position: sticky;
  top: 12vh;
}

.main-contact {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 2em;
  font-family: IBM Plex Custom, sans-serif;
  display: flex;
}

.main-contact.is-last {
  margin-bottom: 0;
}

.main-contact-link {
  font-size: 2em;
}

.main-contact-link:hover {
  color: var(--midnight-blue-3);
}

.contact-inquiry-wrap {
  justify-content: space-around;
  align-items: flex-start;
  display: flex;
}

.contact-inquiry-form {
  max-width: 36em;
}

.contact-inquiry-column {
  padding-right: 3.8em;
  font-family: IBM Plex Custom, sans-serif;
}

.contact-inquiry-heading {
  color: var(--white);
  max-width: 18.2em;
  font-size: 1.7em;
  font-weight: 300;
  line-height: 1.7em;
}

.contact-inquiry-toptitle {
  color: var(--black);
  text-transform: uppercase;
  margin-bottom: 2em;
  font-size: 1em;
}

.office-wrap {
  text-align: center;
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
  display: flex;
}

.office-address-block {
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  margin-bottom: 2em;
  display: flex;
}

.office-address {
  font-size: 2em;
}

.office-toptitle {
  color: #13355fa3;
  letter-spacing: .05em;
  text-transform: uppercase;
  max-width: 25em;
  margin-bottom: .9em;
  font-size: .9em;
  line-height: 1.6em;
}

.office-contact-link {
  font-size: 1.7em;
}

.office-contact-link:hover {
  color: var(--midnight-blue-3);
}

.office-contacts-block {
  flex-flow: wrap;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  display: flex;
}

.office-contact {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1em 3.1em;
  display: flex;
}

.contact-paragraph {
  margin-bottom: 2em;
  font-family: IBM Plex Custom, sans-serif;
}

.assigned-realtor {
  object-fit: cover;
  width: 8em;
  height: 10em;
}

.assigned-realtor-contacts {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 5em;
  padding-left: 2em;
  display: flex;
}

.property-tab-inner {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.tabs-property {
  z-index: 10;
  background-color: #fff;
  width: 100%;
  max-width: 83em;
  margin-left: auto;
  margin-right: auto;
}

.property-desc-list {
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  margin-bottom: 3em;
  display: flex;
}

.property-desc-item {
  border-bottom: 1px solid var(--light-grey);
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.6em 2.7em;
  display: flex;
  position: relative;
  overflow: hidden;
}

.property-address-title {
  color: var(--midnight-blue-2);
  margin-bottom: .2em;
  font-family: IBM Plex Custom, sans-serif;
  font-size: 1.3em;
  font-weight: 500;
  line-height: 1.4em;
  display: inline-block;
}

.property-address-title:hover {
  text-decoration: underline;
}

.property-address-title.in-list {
  margin-right: 2em;
  font-size: 1.7em;
}

.property-interior-list {
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  padding-top: 1em;
  display: flex;
}

.property-interior-item {
  z-index: 5;
  border-bottom: 1px solid var(--light-grey);
  flex-direction: row;
  justify-content: space-between;
  align-self: stretch;
  align-items: center;
  padding: .8em 0;
  font-size: .7em;
  display: flex;
  position: relative;
}

.property-address {
  padding-right: 2em;
}

.property-title-with-button {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.property-images {
  z-index: 5;
  justify-content: space-between;
  align-self: stretch;
  width: 60%;
  display: flex;
  position: relative;
}

.blog-title-wrap {
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 4.5em;
  display: flex;
}

.blog-main-heading {
  margin-bottom: 0;
  margin-right: 1em;
}

.paragraph-16 {
  max-width: 22.5em;
}

.amenity-wrap {
  flex: 1;
  justify-content: flex-start;
  width: 100%;
  display: flex;
}

.property-feature-list {
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.property-feature-paragraph {
  text-align: right;
  margin-left: 1.1em;
}

.realtor-link {
  color: var(--midnight-blue-3);
}

.realtor-link:hover {
  text-decoration: underline;
}

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

.preloader-background {
  z-index: 1;
  background-color: var(--white);
  position: absolute;
  inset: 0%;
}

.preloader-background.grey-color-style {
  background-color: #313131;
}

.preloader-logo {
  z-index: 5;
  object-fit: contain;
  width: 1em;
  height: 1em;
  font-size: 12em;
  position: relative;
}

.blue-color {
  color: var(--midnight-blue);
}

.property-status {
  z-index: 5;
  color: var(--white);
  letter-spacing: .1em;
  text-transform: uppercase;
  background-color: #690c29c2;
  align-items: center;
  margin-bottom: 1.1em;
  margin-left: 1.1em;
  padding: .7em 1em;
  font-size: .7em;
  font-weight: 500;
  line-height: .9em;
  display: flex;
  position: absolute;
  inset: auto auto 0% 0%;
}

.property-status.is-avalaible {
  background-color: #0a5c3fb3;
}

.property-status.is-sold {
  background-color: #444444b3;
}

.nav-contact {
  z-index: 10;
  border-left: 1px solid var(--light-grey);
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-left: 1em;
  padding-left: 1.7em;
  padding-right: 1.7em;
  transition: background-color .3s;
  display: flex;
  position: relative;
}

.nav-contact:hover {
  background-color: var(--white-smoke);
}

.paragraph-17 {
  z-index: 5;
  color: #edededc7;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .6em;
  font-size: .9em;
  font-weight: 400;
  position: relative;
}

.location-flex {
  justify-content: space-between;
  width: 100%;
  display: flex;
}

.location-column {
  z-index: 5;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 30em;
  display: flex;
  position: relative;
}

.location-paragraph-3 {
  z-index: 5;
  color: var(--white);
  font-size: 1.7em;
}

.location-background-color {
  z-index: 3;
  background-color: #0a223fa1;
  position: absolute;
  inset: 0%;
}

.location-titles {
  z-index: 5;
  position: absolute;
}

.location-paragraph-2 {
  z-index: 5;
  color: #ffffffbd;
  letter-spacing: .3em;
  text-transform: uppercase;
  font-size: .9em;
  font-weight: 600;
}

.about-template-links {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding-top: 1em;
  display: flex;
}

.about-template-link {
  background-color: var(--white-smoke);
  color: var(--midnight-blue-2);
  border: 1px solid #e0e0e0;
  flex-direction: column;
  justify-content: space-between;
  align-self: stretch;
  align-items: center;
  width: 48%;
  margin-bottom: 4%;
  padding-top: 5em;
  padding-left: 5em;
  padding-right: 5em;
  font-weight: 400;
  transition: background-color .3s, color .3s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.about-template-link:hover {
  background-color: #e2e2e2;
  text-decoration: underline;
}

.about-template-link.small-at-link {
  border: 1px solid var(--light-grey);
  background-color: #0000;
  flex-direction: row;
  justify-content: center;
  margin-bottom: 0%;
  padding: 3.5em 5em;
  font-size: .8em;
}

.about-template-link.small-at-link:hover {
  background-color: var(--white-smoke);
}

.about-template-heading {
  text-align: center;
  margin-bottom: 1.5em;
  font-size: 1.9em;
}

.about-template-heading.in-vertical {
  margin-bottom: 0;
}

.about-template-toptitle {
  color: var(--white);
  text-align: center;
  letter-spacing: .1em;
  text-transform: uppercase;
  background-color: #4b4b4b;
  border-radius: 5em;
  margin-bottom: .6em;
  padding: .3em 1em;
  font-size: .8em;
  font-weight: 400;
}

.circle-background {
  z-index: 1;
  background-color: var(--white-smoke);
  border-radius: 50%;
  position: absolute;
  inset: 0%;
}

.featured-column-background {
  z-index: 1;
  background-color: var(--midnight-blue-2);
  position: absolute;
  inset: 0%;
}

.featured-column-background.grey-color-style {
  background-color: #1b1b1b;
}

.featured-line {
  background-color: #30609b;
  width: 100%;
  height: 1px;
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}

.featured-line.grey-color-style {
  background-color: #4e4e4e;
}

.realtor-photo-overflow {
  margin-bottom: 2em;
  overflow: hidden;
}

.radial-background {
  z-index: 10;
  opacity: .6;
  object-fit: contain;
  object-position: 50% 0%;
  width: 70em;
  height: 70em;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: auto 0% -42em;
}

.lighbox-background {
  z-index: 5;
  background-color: var(--midnight-blue-2);
  display: none;
  position: absolute;
  inset: 0%;
}

.amenitiy-list {
  flex-wrap: wrap;
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.amenitiy-item {
  text-align: left;
  justify-content: flex-start;
  align-items: center;
  width: 25%;
  padding-top: 1.3em;
  padding-bottom: 1.3em;
  padding-right: 2em;
  display: flex;
}

.amenitiy-paragraph {
  font-size: 1.2em;
  line-height: 1.2em;
}

.amenity-icon {
  object-fit: contain;
  width: 1em;
  height: 1em;
  margin-right: .6em;
  font-size: 1.9em;
}

.property-features-wrap {
  flex: 1;
  justify-content: flex-end;
  width: 100%;
  padding-left: 3em;
  display: flex;
}

.tak-a-tour-block {
  max-width: 26.5em;
  margin-left: auto;
  margin-right: auto;
}

.take-a-tour-column {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-top: 4em;
  margin-bottom: 4em;
  padding-left: 2em;
  padding-right: 2em;
  display: flex;
}

.take-a-tour-column.border-left {
  border-left: 1px solid var(--light-grey);
}

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

.amenity-page-wrap {
  width: 100%;
  max-width: 55em;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.amenity-page-list {
  flex-direction: column;
  flex: 1;
  display: flex;
}

.amenity-page-item {
  flex: 1;
  align-self: stretch;
  display: flex;
}

.amenity-page-link {
  border-bottom: 1px solid #07264b30;
  flex: 1;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1em;
  padding-top: 1.8em;
  padding-bottom: 1.8em;
  display: flex;
}

.amenity-page-link:hover {
  color: var(--midnight-blue);
  text-decoration: underline;
}

.amenity-page-paragraph {
  font-size: 2em;
}

.amenity-page-icon {
  width: 1em;
  height: 1em;
  margin-right: 1em;
  font-size: 2em;
}

.amenity-page-title {
  align-items: center;
  display: flex;
}

.padding-4em {
  padding-top: 4em;
  padding-bottom: 4em;
}

.listing-layout {
  padding-top: 8em;
}

.property-details {
  border-top: 1px solid var(--light-grey);
  color: var(--midnight-blue-2);
  justify-content: space-between;
  align-self: stretch;
  display: flex;
}

.property-detail-block {
  flex-direction: row;
  flex: 1;
  justify-content: center;
  align-items: center;
  padding: .8em;
  display: flex;
  position: relative;
}

.property-detail-amenity {
  justify-content: center;
  align-items: center;
  padding-left: .8em;
  padding-right: .8em;
  display: flex;
}

.property-detail-amenity-icon {
  width: 1em;
  height: 1em;
  margin-right: .4em;
  font-size: 1.2em;
}

.property-status-2 {
  z-index: 5;
  color: var(--white);
  letter-spacing: .1em;
  text-transform: uppercase;
  background-color: #690c29;
  align-items: center;
  padding: .7em 1em;
  font-size: .7em;
  font-weight: 500;
  line-height: .9em;
  display: flex;
}

.property-status-2.is-avalaible {
  background-color: #0a5c3f;
}

.property-status-2.is-sold {
  background-color: #444;
}

.heading-who-we-are {
  text-align: center;
  max-width: 16em;
  margin-bottom: 1.6em;
  margin-left: auto;
  margin-right: auto;
  font-weight: 200;
  line-height: 1.4em;
}

.realtor-link-profile {
  color: var(--midnight-blue-2);
}

.realtor-link-profile:hover {
  color: var(--chocolate);
}

.nav-contact-icon {
  opacity: .8;
  object-fit: contain;
  width: 1em;
  height: 1em;
  font-size: 1.4em;
}

.nav-contact-popup {
  border-bottom: 1px solid var(--light-grey);
  border-left: 1px solid var(--light-grey);
  background-color: var(--white);
  margin-top: 5em;
  padding: 3em;
  display: none;
  position: absolute;
  inset: 0% 0% auto auto;
}

.popup-contact-link {
  font-size: 1.5em;
}

.popup-contact-link:hover {
  color: var(--midnight-blue-3);
}

.popup-contact-title {
  color: #13355fa3;
  letter-spacing: .05em;
  text-transform: uppercase;
  max-width: 25em;
  margin-bottom: .3em;
  font-size: .9em;
  line-height: 1.6em;
}

.popup-contact-paragraph {
  max-width: 9.9em;
  margin-bottom: 1.7em;
}

.popup-contact-block {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 2em;
  display: flex;
}

.popup-contact-block.is-last {
  margin-bottom: 0;
}

.style-guide-color {
  background-color: var(--light-grey);
  border-radius: 50%;
  width: 5em;
  height: 5em;
  margin-top: 1em;
  margin-bottom: 1em;
  margin-right: 2.8em;
}

.style-guide-color.is-2nd {
  background-color: var(--midnight-blue);
}

.style-guide-color.is-3rd {
  background-color: var(--midnight-blue-2);
}

.style-guide-color.is-4th {
  background-color: var(--midnight-blue-3);
}

.style-guide-color.is-5th {
  background-color: var(--chocolate);
}

.style-guide-color.is-6th {
  background-color: var(--peru);
}

.style-guide-color.is-7th {
  background-color: var(--dark-green);
}

.style-guide-color.is-8th {
  background-color: var(--maroon);
}

.div-block-7 {
  flex-wrap: wrap;
  justify-content: flex-start;
  align-self: stretch;
  display: flex;
}

.about-template-screen {
  object-fit: cover;
  align-self: stretch;
  box-shadow: 0 50px 30px 20px #0000004f;
}

.about-template-padding {
  padding-top: 8em;
}

.about-template-title {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.heading-sellers {
  color: var(--white);
  text-align: center;
  font-size: 3em;
  font-weight: 300;
}

.heading-sellers-process {
  text-align: center;
  max-width: 10em;
  margin-bottom: 2em;
  margin-left: auto;
  margin-right: auto;
  font-family: IBM Plex Custom, sans-serif;
  font-size: 2.2em;
  font-weight: 600;
  line-height: 1.1em;
}

.temp-inner {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 77em;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.about-template-title-2 {
  color: var(--white);
  max-width: 11.7em;
  margin-bottom: 1em;
  font-size: 3.3em;
  font-weight: 200;
  line-height: 1.3em;
}

.in-nutshell-temp {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 5em;
  display: flex;
}

.in-nutshell-item-temp {
  align-self: stretch;
  width: 45%;
  padding-top: 1.3em;
  padding-bottom: 1.3em;
  overflow: hidden;
}

.padding-temp {
  padding-top: 10em;
  padding-bottom: 6em;
}

.in-nutshell-title-temp {
  color: #ffffffd9;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: .2em;
  font-size: 1em;
  font-weight: 300;
}

.heading {
  color: var(--blue);
  font-family: IBM Plex Custom, sans-serif;
}

.paragraph-18 {
  color: var(--white);
  font-size: 20px;
}

.link {
  color: var(--accent);
}

.lightbox-link, .image-2 {
  width: 100%;
}

.ck-modal__exit-btn {
  cursor: pointer;
  background-color: #f3f7f2;
  border-radius: .25rem;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  margin: 1.25rem 1.25rem -2.5rem auto;
  transition: background-color .2s cubic-bezier(.25, .46, .45, .94);
  display: flex;
  position: sticky;
  top: 1rem;
}

.ck-modal__exit-btn:hover {
  background-color: #515750;
}

.ck-modal__btns-w {
  background-color: #f3f7f2;
  border-radius: 0 0 .5rem .5rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  display: flex;
}

.ck-modal__btns-w.is--small {
  justify-content: flex-start;
  padding: 1.5rem;
}

.ck-attr-btn {
  width: 1px;
  height: 1px;
  margin: -1px;
  position: absolute;
  overflow: hidden;
}

.ck-button-w {
  background-color: var(--blue);
  color: #fff;
  text-align: center;
  border-radius: .25rem;
  padding: .875em 1.5em 1rem;
  font-size: .9375rem;
  transition: color .2s cubic-bezier(.25, .46, .45, .94), background-color .2s cubic-bezier(.25, .46, .45, .94);
}

.ck-button-w:hover {
  background-color: #0000;
}

.ck-modal__content-w {
  padding: 1.75rem 2rem;
}

.ck-modal__content-w.is--small {
  padding: 1.5rem;
}

.ck-txt-link {
  color: #515750;
  font-weight: 400;
  transition: color .15s cubic-bezier(.25, .46, .45, .94);
}

.ck-txt-link:hover {
  color: #262926;
}

.ck-cookie-w {
  z-index: 9500;
  max-width: 25rem;
  display: none;
  position: fixed;
  inset: auto 1.25rem 1.25rem auto;
}

.ck-sr__only {
  width: 1px;
  height: 1px;
  margin: -1px;
  position: absolute;
  overflow: hidden;
}

.ck-css-styles {
  display: none;
}

.ck-modal {
  color: #515750;
  background-color: #fff;
  border-radius: .5rem;
  flex-direction: column;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
  font-size: .9375rem;
  line-height: 1.4;
  display: flex;
  position: relative;
  box-shadow: 0 4px 1rem #2629260d;
}

.ck-title {
  color: #262926;
  margin-bottom: .1875em;
  font-size: 1.25rem;
  font-weight: 700;
}

.ck-title.is--small {
  font-size: 1.1875rem;
}

.ck__exitbtn__line {
  background-color: #515750;
  width: 1rem;
  height: 2px;
  position: absolute;
}

.ck__exitbtn__line.is--left {
  transform: rotate(45deg);
}

.ck__exitbtn__line.is--right {
  transform: rotate(-45deg);
}

.slider {
  height: 700px;
}

.image-3 {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 0 0;
  background-size: auto;
}

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

.slide-2 {
  background-image: url('../images/jpg-Oberndorf.jpg');
  background-position: 0 0;
  background-size: cover;
}

.collection-list-5 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: minmax(auto, 1fr) auto auto;
  grid-template-columns: minmax(200px, 1fr) minmax(200px, 1fr) minmax(200px, 1fr);
  grid-auto-columns: 1fr;
  display: grid;
}

.collection-item-3 {
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
  position: static;
}

.image-4 {
  object-fit: cover;
  height: 300px;
}

.collection-list-wrapper {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-content: start end;
  justify-items: end;
  display: block;
}

.collection-list-wrapper-2 {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: block;
}

.collection-list-6 {
  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-5, .image-6 {
  object-fit: cover;
}

.link-2 {
  color: var(--accent);
}

.div-block-8 {
  position: fixed;
  inset: 0% auto auto 0%;
}

.div-block-9 {
  position: absolute;
  inset: auto 0% 0% auto;
}

.div-block-10 {
  align-items: center;
  margin-bottom: 1.1em;
  margin-left: 1.1em;
  padding: .7em 1em;
  display: flex;
  position: absolute;
  inset: auto auto 0% 0%;
}

.div-block-11 {
  position: absolute;
}

.paragraph-19 {
  color: var(--white);
  background-color: #ad1102ab;
  padding: 5px 10px;
  font-family: IBM Plex Custom, sans-serif;
}

.image-7 {
  object-fit: contain;
  width: 100%;
  height: 38em;
}

.link-block {
  margin-right: 20px;
}

.paragraph-20 {
  font-family: IBM Plex Custom, sans-serif;
  font-size: 2em;
}

.slider-2 {
  background-color: var(--white);
  height: auto;
}

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

.container-2 {
  margin-bottom: 40px;
  padding-left: 10px;
  padding-right: 10px;
}

.image-9, .image-10, .image-11, .image-12, .image-13, .image-14, .image-15 {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.rich-text-block, .paragraph-21 {
  font-size: 15px;
}

.paragraph-22 {
  font-size: 1.2em;
  line-height: 1.2em;
}

.paragraph-23 {
  margin-top: 40px;
  font-family: IBM Plex Custom, sans-serif;
  font-size: 1.5em;
}

.button-2 {
  background-color: var(--blue);
  font-family: IBM Plex Custom, sans-serif;
  font-size: 1.2em;
}

.link-3 {
  color: var(--blue);
  text-decoration: underline;
}

.paragraph-24 {
  padding-left: 10px;
  padding-right: 10px;
  font-family: IBM Plex Custom, sans-serif;
}

.icon, .icon-2 {
  color: var(--light-grey);
}

.text-span {
  font-size: .7em;
}

.text-span-2 {
  font-size: 20px;
  line-height: 10px;
}

.image-16 {
  margin-left: 20px;
}

.icon-3 {
  color: #d1d1d1;
}

.inquiry-call-to-action-2 {
  z-index: 10;
  background-color: #0a223f;
  border-top: 1px solid #335783;
  padding-top: 5em;
  padding-bottom: 5em;
  position: relative;
}

.navbar-2 {
  z-index: 998;
  background-color: #fff;
  border-bottom: 1px solid #d1d1d1;
  min-height: 5em;
  display: flex;
  position: sticky;
  top: 0;
}

.menu-link-2 {
  color: #fff;
  width: 50%;
  padding-right: 5%;
  font-size: 3em;
  font-weight: 200;
  overflow: hidden;
}

.menu-link-2:hover {
  color: #fff;
}

.footer-contact-title-2 {
  color: #fff;
  margin-right: 1em;
  font-size: 2em;
  line-height: 1.5em;
}

.footer-contact-link-2 {
  color: #fffc;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .7em 1.5em;
  font-size: 1em;
  font-weight: 300;
  line-height: 1.2em;
}

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

.footer-contact-link-2.w--current {
  color: #fff;
  font-weight: 400;
}

.side-menu-2 {
  z-index: 10;
  cursor: pointer;
  border-right: 1px solid #d1d1d1;
  flex-direction: row;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  padding-left: 3em;
  padding-right: 2em;
  transition: padding .5s cubic-bezier(.075, .82, .165, 1);
  display: none;
  position: relative;
  overflow: hidden;
}

.side-menu-2:hover {
  padding-right: 3em;
}

.hero-claim-background-2 {
  z-index: 1;
  background-color: #fff;
  position: absolute;
  inset: 0%;
}

.link-4 {
  color: #364c63;
  text-decoration: underline;
}

.section-2 {
  z-index: 10;
  background-color: #fff;
  position: relative;
}

.section-2.overflow-hidden {
  background-image: url('../images/sunset-2570443_1920.jpg');
  background-position: 50%;
  background-size: cover;
  overflow: hidden;
}

.menu-2 {
  z-index: 999;
  color: #fff;
  display: none;
  position: fixed;
  inset: 0%;
}

.hero-button-2 {
  z-index: 2;
  color: #fff;
  letter-spacing: .05em;
  text-transform: uppercase;
  background-color: #364c63bf;
  align-items: center;
  margin-right: 1px;
  padding: 1.3em 2em;
  font-size: 1em;
  transition: background-color .3s, color .3s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hero-button-2:hover {
  background-color: #000;
}

.button-paragraph-2 {
  z-index: 10;
  color: #fff;
  font-size: 1em;
  position: relative;
}

.button-background-2 {
  z-index: 1;
  background-color: #13355f;
  display: none;
  position: absolute;
  inset: 0%;
}

.button-background-2.dark-blue-color {
  background-color: #0a223f;
}

.nav-link-2 {
  color: #0a223f;
  letter-spacing: .05em;
  text-transform: uppercase;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  padding: 2em 1.4em;
  font-size: 15px;
  font-weight: 400;
  display: flex;
}

.nav-link-2.w--current {
  color: #0a223f;
}

.burger-icon-line-2 {
  background-color: #000;
  width: 1.6em;
  height: 1px;
  margin-top: 4px;
  margin-bottom: 4px;
}

.background-reveal-2 {
  z-index: 2;
  background-color: #fff;
  display: none;
  position: absolute;
  inset: 0%;
}

.button-3 {
  z-index: 10;
  color: #fff;
  letter-spacing: .05em;
  text-transform: uppercase;
  white-space: nowrap;
  background-color: #f1b642;
  flex: none;
  align-items: center;
  padding: 1.3em 2em;
  font-size: 1em;
  font-weight: 500;
  line-height: 1em;
  display: flex;
  position: relative;
  overflow: hidden;
}

.button-3:hover {
  color: #fff;
}

.slider-3 {
  background-color: #fff;
  height: auto;
}

.paragraph-25 {
  color: #fff;
  font-size: 20px;
}

.footer-2 {
  z-index: 10;
  text-align: center;
  background-color: #364c63;
  align-items: flex-start;
  padding-top: 10em;
  position: relative;
}

.footer-link-2 {
  color: #fffc;
  padding: .2em .6em;
  font-size: 3em;
  font-weight: 200;
  line-height: 1.2em;
}

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

.footer-link-2.w--current {
  color: #fff;
  font-weight: 300;
}

.slider-4 {
  width: 383px;
  height: 210px;
}

.image-17, .slide-3 {
  object-fit: fill;
}

.text-block, .heading-2 {
  font-family: IBM Plex Custom, sans-serif;
}

.rich-text-block-2, .rich-text-block-3 {
  padding-left: 60px;
  padding-right: 60px;
  font-family: IBM Plex Custom, sans-serif;
}

.rich-text-block-4, .rich-text-block-5, .rich-text-block-6, .text-block-2, .text-block-3, .text-block-4, .heading-3 {
  font-family: IBM Plex Custom, sans-serif;
}

.image-18 {
  max-width: 80%;
  margin-right: 10px;
}

.heading-4 {
  color: var(--black);
  text-align: center;
  font-family: IBM Plex Custom, sans-serif;
  font-weight: 400;
}

.text-span-3, .text-span-4 {
  font-weight: 600;
}

.button-4 {
  background-color: var(--accent);
  font-family: IBM Plex Custom, sans-serif;
  font-size: 18px;
}

.ivd {
  margin-bottom: 0;
}

.image-19 {
  margin-left: 10px;
}

.image-20 {
  margin-right: 20px;
}

.text-block-5 {
  font-family: IBM Plex Custom, sans-serif;
  font-size: 25px;
}

.link-5 {
  color: var(--midnight-blue-2);
}

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

.text-span-5 {
  font-size: 20px;
  line-height: 10px;
}

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

.text-block-6 {
  font-family: IBM Plex Custom, sans-serif;
  font-size: 25px;
}

.running-container {
  display: flex;
  overflow: hidden;
}

.bilder-container {
  background-color: #fff;
  justify-content: space-around;
  align-items: center;
  min-width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  overflow: visible;
}

.bilder-container.cmsw {
  display: flex;
}

.bilder-container.cms {
  flex-flow: row;
  justify-content: space-around;
  align-items: center;
}

.referenzen {
  height: 200px;
  margin-right: 0;
}

.image-21 {
  object-fit: cover;
  height: 100px;
}

.text-block-7 {
  margin-bottom: 10px;
  font-family: IBM Plex Custom, sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.collection-list-wrapper-3 {
  flex-flow: row;
  justify-content: center;
  align-items: center;
  min-width: 100%;
  display: block;
}

.image-22 {
  object-fit: cover;
  width: 300px;
  height: 200px;
  margin-right: 0;
}

.collection-list-7 {
  justify-content: space-around;
  align-items: center;
  min-width: 100%;
  height: auto;
  display: flex;
}

.collection-item-4 {
  margin-right: 0;
}

@media screen and (min-width: 1440px) {
  body {
    font-size: 14px;
  }

  .section.overflow-hidden {
    height: 700px;
  }
}

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

  .container {
    padding-left: 60px;
  }

  .container.text {
    padding-left: 140px;
    padding-right: 140px;
  }

  .cover-image-absolute {
    object-position: 50% 50%;
  }

  .instruction-paragraph, .example-paragraph {
    line-height: 1.7em;
  }
}

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

  h1 {
    font-size: 4em;
  }

  h2 {
    font-size: 3.2em;
  }

  h3 {
    font-size: 2.5em;
  }

  .container {
    padding-left: 5em;
    padding-right: 5em;
  }

  .navbar-container {
    padding-right: 2em;
  }

  .logo {
    width: 9em;
  }

  .brand {
    padding-left: 1.5em;
    padding-right: 1.5em;
  }

  .nav-link {
    padding-left: 1em;
    padding-right: 1em;
    font-size: .9em;
  }

  .side-menu {
    padding-right: 1.5em;
  }

  .hero-heading.home-hero-2 {
    font-size: 4.1em;
  }

  .button.on-side {
    margin-top: 0;
  }

  .property-item {
    width: 50%;
  }

  .type-of-customer {
    flex-wrap: wrap;
    padding-bottom: 3em;
  }

  .customer-link {
    width: 100%;
    margin-bottom: 2em;
  }

  .flex-horizontal.contact-page {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .split-content-column {
    padding-left: 2em;
    padding-right: 2em;
  }

  .footer-link {
    font-size: 2.7em;
  }

  .featured-gallery-lightbox {
    height: 7em;
  }

  .design-system-inner {
    padding-top: 8em;
    padding-bottom: 8em;
  }

  .page-hero {
    padding-left: 5em;
    padding-right: 5em;
  }

  .button-paragraph {
    font-size: 1.1em;
  }

  .property-desc-block {
    width: auto;
  }

  .padding-8em.tab-4em {
    padding-top: 4em;
    padding-bottom: 4em;
  }

  .property-gallery-lightbox.is-bigger {
    height: 15em;
  }

  .price {
    margin-left: 3em;
    margin-right: 0;
  }

  .realtor-contacts.in-realtor-page {
    flex-flow: column wrap;
    align-items: stretch;
  }

  .financial, .button-contact {
    flex-wrap: wrap;
  }

  .button-contact.is-light {
    justify-content: space-between;
  }

  .financial-block {
    justify-content: space-between;
    width: 100%;
    margin-bottom: 2.5em;
  }

  .form-label {
    font-weight: 500;
  }

  .contact-tab-pane {
    padding-left: 3.5em;
    padding-right: 3.5em;
  }

  .realtor-item {
    width: 50%;
  }

  .social-icon {
    font-size: 1.5em;
  }

  .social-button {
    filter: none;
  }

  .bigger-paragraph {
    font-size: 2em;
  }

  .column-with-padding {
    padding-left: 3em;
    padding-right: 3em;
  }

  .heading-in-column {
    font-size: 2em;
  }

  .in-nutshell {
    flex-wrap: wrap;
  }

  .in-nutshell-item {
    width: 50%;
    margin-right: 0;
    padding-top: 2em;
    padding-bottom: 2em;
  }

  .sellers-process-item {
    font-size: .9em;
  }

  .heading-lifestyle.in-homepage {
    font-size: 2em;
  }

  .lifestyle-link.in-homepage {
    font-size: .5em;
  }

  .includes-lifestyle-item {
    background-image: none;
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
    flex-basis: 33.3333%;
  }

  .realtor-page-column {
    padding-left: 4em;
    padding-right: 4em;
  }

  .menu-column-left {
    padding-top: 5em;
    padding-bottom: 5em;
  }

  .menu-column-right {
    padding-top: 5em;
    padding-bottom: 5em;
    padding-right: 6em;
  }

  .menu-link {
    width: 100%;
    min-width: auto;
    padding-right: 0%;
  }

  .menu-link-paragraph {
    line-height: 1.9em;
  }

  .menu-sublinks {
    justify-content: center;
  }

  .menu-social-buttons {
    width: 100%;
    min-width: auto;
  }

  .menu-social-button {
    filter: none;
  }

  .utility-page-wrap {
    padding-left: 5em;
    padding-right: 5em;
  }

  .utility-page-form-submit, .utility-page-form-label {
    font-size: 1em;
  }

  .call-to-action-image {
    height: 18em;
  }

  .featured-wrapper {
    min-height: 59em;
  }

  .featured-background-color {
    height: 16em;
  }

  .featured-gallery-item {
    margin-left: .2em;
    margin-right: .2em;
  }

  .customer-link-2 {
    width: 100%;
  }

  .type-of-customer-2 {
    flex-wrap: wrap;
  }

  .customer-vertical-line {
    width: 100%;
    height: 1px;
  }

  .split-content-column-flex {
    padding-left: 2em;
    padding-right: 2em;
  }

  .realtor-item-in-column {
    width: 50%;
  }

  .ceo {
    font-size: 1em;
  }

  .blog-item {
    width: 50%;
  }

  .realtor-item-contact {
    padding-right: 2em;
  }

  .realtor-list-contact {
    flex-direction: row;
    justify-content: space-between;
  }

  .our-team-column {
    width: 100%;
  }

  .main-contacts-column {
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
  }

  .sticky-12 {
    position: relative;
    top: 0;
  }

  .our-team-block {
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    display: flex;
  }

  .agent-list-wrap-contact {
    width: 100%;
  }

  .contact-inquiry-wrap {
    flex-wrap: wrap;
    max-width: 40em;
    margin-left: auto;
    margin-right: auto;
  }

  .contact-inquiry-form {
    max-width: none;
  }

  .contact-inquiry-column {
    margin-bottom: 3.5em;
    padding-right: 0;
  }

  .contact-inquiry-heading {
    max-width: none;
  }

  .property-interior-list {
    width: 100%;
  }

  .property-interior-item {
    font-size: .75em;
  }

  .property-images {
    flex-direction: column;
    width: 40%;
  }

  .property-status {
    margin-bottom: .9em;
    margin-left: .9em;
    font-size: .8em;
  }

  .nav-contact {
    display: none;
  }

  .about-template-link {
    width: 100%;
  }

  .about-template-link.small-at-link {
    margin-bottom: 1em;
  }

  .about-template-heading {
    font-size: 2.5em;
  }

  .take-a-tour-column {
    border-left-width: 0;
    width: 100%;
  }

  .in-nutshell-temp {
    flex-wrap: wrap;
  }

  .in-nutshell-item-temp {
    font-size: .9em;
  }

  .paragraph-column {
    font-size: 1.2em;
  }

  .slider {
    height: auto;
  }

  .slide {
    background-image: url('../images/jpg-Oberndorf.jpg');
    background-size: cover;
    height: auto;
  }

  .mask {
    height: auto;
  }

  .menu-link-2 {
    width: 100%;
    min-width: auto;
    padding-right: 0%;
  }

  .side-menu-2 {
    padding-right: 1.5em;
  }

  .button-paragraph-2 {
    font-size: 1.1em;
  }

  .nav-link-2 {
    padding-left: 1em;
    padding-right: 1em;
    font-size: .9em;
  }

  .footer-link-2 {
    font-size: 2.7em;
  }
}

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

  p {
    font-size: 1.25em;
    line-height: 1.6em;
  }

  .navbar-container {
    padding-right: 0;
  }

  .logo {
    font-size: 1.2em;
  }

  .nav-menu {
    background-color: #fff;
    display: none;
    box-shadow: 0 30px 40px -20px #000000a6;
  }

  .menu-button {
    justify-content: center;
    align-items: center;
    padding: .5em 1.2em;
  }

  .menu-button.w--open {
    color: var(--midnight-blue);
    background-color: #e2e2e2;
  }

  .nav-link {
    text-align: center;
    font-size: 1.4em;
  }

  .side-menu {
    padding-left: 2em;
    display: flex;
  }

  .hero-claim {
    align-self: stretch;
  }

  .hero-heading {
    font-size: 3.3em;
    font-weight: 300;
  }

  .hero-heading.home-hero-2 {
    margin-bottom: 1em;
  }

  .hero-heading.home-hero-3 {
    font-size: 4.9em;
  }

  .button.on-side {
    margin-top: 2em;
    margin-bottom: 2em;
  }

  .burger-icon.in-menu-button {
    margin-left: .6em;
    margin-right: 0;
    font-size: .6em;
  }

  .property-list {
    margin-left: 0%;
    margin-right: 0%;
  }

  .property-item {
    width: 100%;
    margin-bottom: 1.5em;
    padding-left: 0%;
    padding-right: 0%;
  }

  .property-image-wrap {
    height: 13em;
  }

  .blue-dot {
    margin-left: 1em;
    margin-right: 1em;
  }

  .flex-horizontal.mobile-wrap, .flex-horizontal.contact-page {
    flex-wrap: wrap;
  }

  .flex-horizontal.mobile-vertical-reverse {
    flex-direction: column-reverse;
  }

  .split-content-column {
    width: 100%;
    min-height: auto;
    padding-left: 4.5em;
    padding-right: 4.5em;
  }

  .split-content-column.margin-mobile-3-0 {
    padding-top: 3em;
    padding-bottom: 0;
  }

  .split-content-column.min-80vh {
    height: 35em;
    min-height: auto;
    padding-top: 0;
    padding-bottom: 0;
  }

  .footer-contact-link {
    font-size: 1.1em;
  }

  .metrik-link {
    font-size: .9em;
  }

  .policy-link {
    font-size: 1.1em;
  }

  .menu-text-block {
    letter-spacing: .3em;
    text-transform: uppercase;
    font-size: .5em;
    font-weight: 500;
    line-height: 1em;
  }

  .menu-button-flex {
    align-items: center;
    display: flex;
  }

  .property-hero {
    min-height: auto;
  }

  .breadcrumbs {
    justify-content: flex-start;
    padding-left: 1.5em;
    padding-right: 1.5em;
  }

  .property-gallery-item.is-bigger {
    width: 50%;
  }

  .property-gallery-lightbox {
    height: 7em;
  }

  .price {
    margin-left: 0;
    margin-right: 3em;
  }

  .button-contact.mobile-bigger {
    font-size: 1.2em;
  }

  .financial-block {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .financial-heading {
    width: 100%;
    margin-bottom: .5em;
    margin-right: 0;
  }

  .property-image-2 {
    flex: 0 auto;
    height: 20em;
  }

  .property-inner-list {
    flex-wrap: wrap;
    min-height: auto;
  }

  .property-padding-list {
    flex: 0 auto;
    width: 100%;
  }

  .form-block {
    width: 100%;
  }

  .form {
    font-size: 1.3em;
  }

  .submit-form {
    text-align: left;
    background-position: 91%;
    padding-left: 10%;
    font-size: 1em;
  }

  .contact-tab-pane {
    padding-top: 5em;
    padding-bottom: 5em;
  }

  .contact-tab-inner {
    flex-direction: column;
  }

  .contact-type {
    justify-content: center;
    align-items: center;
    padding-top: 2em;
    padding-bottom: 2em;
  }

  .contact-tab-inner-column {
    padding-left: 0;
    padding-right: 0;
  }

  .tab-logo {
    margin-bottom: 1.4em;
  }

  .realtor-list {
    margin-left: 0%;
    margin-right: 0%;
  }

  .realtor-item {
    width: 100%;
    padding-left: 0%;
    padding-right: 0%;
  }

  .realtor-photography {
    height: auto;
  }

  .realtor-name {
    font-size: 2.1em;
  }

  .realtor-position {
    font-size: .9em;
  }

  .inquiry-paragraph {
    margin-bottom: 2em;
  }

  .tab-office-photo {
    margin-top: 3em;
  }

  .tab-office-titile {
    text-align: center;
  }

  .contact-address {
    justify-content: center;
    align-items: center;
  }

  ._2-column-flex {
    flex-wrap: wrap;
  }

  .column-with-padding {
    width: 100%;
    margin-bottom: 2.5em;
  }

  .column-picture {
    flex: 0 auto;
    height: 25em;
  }

  .paragraph-column {
    max-width: none;
    font-size: 1.2em;
  }

  .in-nutshell-number {
    font-size: 2.3em;
  }

  .in-nutshell-title, .form-inquiry-paragraph {
    font-size: 1.2em;
  }

  .dropdown-toggle {
    padding-left: 2.2em;
    padding-right: 2.2em;
  }

  .testimonial-inner {
    padding-left: 2.5em;
    padding-right: 2.5em;
  }

  .lifestyle-item.in-homepage {
    width: 100%;
  }

  .heading-lifestyle.in-homepage {
    font-size: 2.7em;
  }

  .heading-lifestyle.in-homepage-2 {
    font-size: 2.6em;
  }

  .lifestyle-link {
    font-size: .8em;
  }

  .lifestyle-link.in-homepage {
    font-size: .4em;
  }

  .includes-lifestyle-item {
    padding-left: 1.5em;
    padding-right: 1.5em;
  }

  .realtor-page {
    flex-flow: column-reverse wrap;
    min-height: auto;
    margin-top: 0;
  }

  .realtor-photo-column, .realtor-page-column {
    width: 100%;
  }

  .menu-content {
    flex-flow: column-reverse wrap;
  }

  .menu-column-left {
    flex-direction: column-reverse;
    width: 100%;
    padding-top: 8em;
    padding-bottom: 8em;
  }

  .menu-column-right {
    flex: 0 auto;
    width: 100%;
    padding-top: 7em;
    padding-left: 5em;
    padding-right: 5em;
  }

  .office-block {
    margin-right: 5em;
    font-size: 1.2em;
  }

  .menu-office-contacts {
    flex-direction: row;
    width: 100%;
    padding-top: .5em;
  }

  .menu-contact-link {
    margin-right: 2.5em;
    font-size: 1.3em;
  }

  .menu-link {
    width: 45%;
    font-size: 2.3em;
  }

  .menu-link-paragraph {
    line-height: 2.5em;
  }

  .menu-close {
    padding-top: 2.5em;
    padding-bottom: 2.5em;
  }

  .menu-brand {
    align-self: flex-start;
    margin-bottom: 4em;
    padding-left: 0;
    padding-right: 0;
  }

  .menu-brand-logo {
    width: 11em;
  }

  .menu-background-image {
    display: none;
  }

  .menu-background-image-mobile {
    z-index: 1;
    opacity: .08;
    object-fit: cover;
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    inset: 0%;
  }

  .menu-office-wrap {
    flex-wrap: wrap;
    display: flex;
  }

  .utility-page-content {
    align-self: stretch;
  }

  .motion-heading.in-contact {
    margin-bottom: 1em;
  }

  .motion-heading.in-blog {
    font-size: 3em;
    line-height: 1.3em;
  }

  .motion-heading.in-temp {
    margin-bottom: 1em;
  }

  .buttons-wrap {
    flex-wrap: wrap;
  }

  .call-to-action-image {
    width: 100%;
  }

  .design-system-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-flex {
    flex-wrap: wrap;
  }

  .circle-button {
    font-size: .8em;
  }

  .title-with-button {
    flex-wrap: wrap;
  }

  .mob-marting-right {
    margin-right: 1em;
  }

  .featured-block {
    flex-wrap: wrap;
  }

  .about-ceo {
    font-size: 1.3em;
    line-height: 1.7em;
  }

  .split-content-column-flex {
    width: 100%;
    min-height: auto;
    padding-left: 4.5em;
    padding-right: 4.5em;
  }

  .split-content-column-flex.mobile-less-margin {
    padding-top: 0;
  }

  .realtor-list-in-column {
    margin-left: 0%;
    margin-right: 0%;
  }

  .realtor-item-in-column {
    width: 100%;
    padding-left: 0%;
    padding-right: 0%;
  }

  .realtor-photo-in-column {
    height: auto;
  }

  .lifestyle-link-2 {
    font-size: .8em;
  }

  .property-list-horizontal {
    margin-left: 0%;
    margin-right: 0%;
  }

  .blog-item {
    width: 100%;
  }

  .blog-heading {
    font-size: 2.1em;
  }

  .realtor-item-contact {
    width: 100%;
    padding-left: 0%;
    padding-right: 0%;
  }

  .realtor-list-contact {
    margin-left: 0%;
    margin-right: 0%;
  }

  .our-team-column {
    border-left-color: #0000;
  }

  .sticky-12 {
    margin-bottom: 3em;
  }

  .contact-inquiry-wrap {
    max-width: 32em;
  }

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

  .property-tab-inner {
    flex-direction: column;
  }

  .property-desc-item {
    padding-left: 1.5em;
    padding-right: 1.5em;
  }

  .property-address-title {
    font-size: 1.6em;
  }

  .property-address-title.in-list {
    font-size: 1.9em;
  }

  .property-interior-item {
    padding-left: 1.5em;
    padding-right: 1.5em;
    font-size: .8em;
  }

  .property-images {
    width: 100%;
  }

  .location-flex {
    flex-wrap: wrap;
  }

  .location-column {
    width: 100%;
  }

  .about-template-link.small-at-link {
    font-size: .7em;
  }

  .amenitiy-item {
    width: 50%;
  }

  .amenitiy-paragraph {
    font-size: 1.3em;
  }

  .tak-a-tour-block {
    max-width: 29em;
  }

  .take-a-tour-column.border-left {
    border-left-color: #0000;
  }

  .property-details {
    font-size: 1.1em;
  }

  .realtor-link-profile {
    font-size: 1.2em;
  }

  .in-nutshell-item-temp {
    width: 100%;
    padding-top: .9em;
    padding-bottom: .9em;
  }

  .in-nutshell-title-temp {
    font-size: 1.1em;
  }

  .paragraph-column {
    font-size: 1.25em;
  }

  .ck-modal__exit-btn {
    margin-right: 1.25rem;
    top: -1rem;
  }

  .ck-modal__btns-w {
    padding: 1.5rem;
  }

  .ck-modal__content-w {
    padding-bottom: 1.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .menu-link-2 {
    width: 45%;
    font-size: 2.3em;
  }

  .footer-contact-link-2 {
    font-size: 1.1em;
  }

  .side-menu-2 {
    padding-left: 2em;
    display: flex;
  }

  .nav-link-2 {
    text-align: center;
    font-size: 1.4em;
  }

  .menu-button-2 {
    justify-content: center;
    align-items: center;
    padding: .5em 1.2em;
  }

  .menu-button-2.w--open {
    color: #0a223f;
    background-color: #e2e2e2;
  }
}

@media screen and (max-width: 479px) {
  p {
    font-size: 1.25em;
  }

  .container {
    padding-left: 8vw;
    padding-right: 8vw;
  }

  .container.viisi {
    max-width: none;
  }

  .section.overflow-hidden {
    background-image: url('../images/dawid-zawila--G3rw6Y02D0-unsplash.jpg');
  }

  .nav-menu {
    display: none;
  }

  .home-hero {
    padding-left: 8vw;
    padding-right: 8vw;
  }

  .side-menu {
    padding-left: 1.5em;
  }

  .hero-heading.home-hero-2 {
    font-size: 15vw;
  }

  .hero-heading.home-hero-3 {
    font-size: 3.8em;
    line-height: 1.1em;
  }

  .hero-button {
    justify-content: space-between;
    width: 100%;
    padding-left: 2.5em;
    padding-right: 2.5em;
  }

  .hero-button.with-margins {
    margin-left: 0;
    margin-right: 0;
  }

  .button {
    justify-content: space-between;
    width: 100%;
    margin-bottom: .3em;
    padding-left: 2.5em;
    padding-right: 2.5em;
  }

  .button.with-margins-left {
    margin-left: 0;
    margin-right: 0;
  }

  .button-arrow-right {
    margin-left: .5em;
  }

  .customer-link {
    padding-left: 2.5em;
    padding-right: 2.5em;
  }

  .flex-horizontal.justify-start {
    flex-wrap: wrap;
  }

  .split-content-column {
    padding-left: 0;
    padding-right: 0;
  }

  .footer {
    text-align: left;
  }

  .footer-link {
    text-align: center;
    padding-top: .5em;
    padding-bottom: .5em;
    padding-left: 0;
  }

  .footer-contact-link {
    padding-left: 0;
    padding-right: 2em;
  }

  .subfooter {
    padding-top: 2.5em;
    padding-bottom: 2.5em;
  }

  .metrik-link {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-contact {
    flex-wrap: wrap;
  }

  .footer-contact-title {
    text-align: center;
    margin-bottom: 1em;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-brand {
    text-align: center;
    display: block;
  }

  .footer-logo {
    width: 13em;
  }

  .policy-list {
    width: 100%;
  }

  .policy-link {
    margin-left: .8em;
    margin-right: .8em;
    font-size: 1.2em;
  }

  .property-paragraph {
    font-size: 1.1em;
  }

  .featured-gallery-lightbox {
    height: 6em;
  }

  .page-hero, .property-hero {
    padding-left: 8vw;
    padding-right: 8vw;
  }

  .property-desc-icon {
    margin-right: .4em;
  }

  .property-desc-paragraph {
    font-size: 1.2em;
  }

  .breadcrumbs {
    padding-left: 5vw;
    padding-right: 2.8em;
    overflow: auto;
  }

  .breadcrumb-icon-right {
    margin-left: .5em;
    margin-right: .5em;
    font-size: 1.3em;
  }

  .location-block {
    width: 100%;
    padding-top: .5em;
    padding-bottom: .5em;
  }

  .hero-buttons-wrap {
    flex-wrap: wrap;
    align-self: stretch;
  }

  .property-gallery-item {
    width: 33.3333%;
  }

  .property-gallery-lightbox.is-bigger {
    height: 11em;
  }

  .realtor-contacts {
    width: 100%;
  }

  .heading-also-like {
    margin-bottom: 1em;
  }

  .button-contact {
    flex: 1;
    justify-content: space-between;
  }

  .property-image-2 {
    width: 100%;
    height: 16em;
  }

  .property-inner-list {
    flex-wrap: wrap;
  }

  .property-padding-list {
    align-items: flex-start;
    padding: 2.2em;
  }

  .form-error-paragraph {
    font-size: 1em;
  }

  .form-error {
    padding: 1.7em;
  }

  .submit-form {
    width: 100%;
  }

  .form-success-title {
    font-size: 1.2em;
  }

  .main-tabs {
    flex-wrap: wrap;
  }

  .contact-tab-pane {
    padding-left: 7vw;
    padding-right: 7vw;
  }

  .main-tab-link {
    padding-top: 2.5em;
    padding-bottom: 2.5em;
  }

  .main-tab-link-title {
    font-size: .9em;
    line-height: 1.3em;
  }

  .realtor-name {
    font-size: 1.8em;
  }

  .inquiry-paragraph {
    margin-bottom: 3.5em;
    font-size: .9em;
  }

  .bigger-paragraph {
    font-size: 1.7em;
  }

  ._2-column-flex {
    margin-bottom: 2.5em;
  }

  .column-with-padding {
    padding-left: 0;
    padding-right: 0;
  }

  .column-picture {
    height: 20em;
  }

  .heading-in-column {
    font-size: 1.8em;
  }

  .in-nutshell-item {
    width: 100%;
    padding-top: .9em;
    padding-bottom: .9em;
  }

  .dropdown-toggle {
    flex-wrap: wrap;
    padding-left: 2em;
    padding-right: 2em;
  }

  .testimonial-inner {
    padding-left: 2em;
    padding-right: 2em;
  }

  .sellers-process-item {
    flex: 0 auto;
    width: 33.3333%;
  }

  .sellers-process-item.no-arrow-mobile {
    background-image: none;
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
  }

  .lifestyle-link {
    font-size: .7em;
  }

  .includes-lifestyle-item {
    flex-basis: 50%;
    padding: 2em 1.5em;
  }

  .paragraph-15 {
    margin-left: .9em;
    margin-right: .9em;
  }

  .subfooter-links {
    justify-content: center;
    width: 100%;
  }

  .menu {
    display: none;
  }

  .menu-content {
    justify-content: flex-end;
  }

  .menu-column-left {
    padding: 5em 10vw;
  }

  .menu-column-right {
    flex-direction: column;
    justify-content: space-between;
    padding: 3em 10vw;
  }

  .office-block {
    width: 100%;
  }

  .menu-office-contacts {
    flex-wrap: wrap;
  }

  .menu-contact-link {
    margin-bottom: 1.2em;
  }

  .menu-main-links {
    padding-bottom: 3em;
  }

  .menu-link-paragraph {
    font-size: 6.3vw;
    line-height: 3em;
  }

  .menu-link-paragraph.ref {
    line-height: 1.5em;
  }

  .menu-social-buttons {
    justify-content: center;
  }

  .menu-social-button {
    margin-right: 3.1em;
  }

  .utility-page-wrap {
    padding-left: 8vw;
    padding-right: 8vw;
  }

  ._404-icon {
    margin-bottom: .2em;
  }

  .div-block {
    flex-wrap: wrap;
  }

  .utility-page-form-submit {
    width: 100%;
    padding-top: 1.4em;
    padding-bottom: 1.4em;
    font-size: 1.1em;
  }

  .motion-heading.in-contact {
    font-size: 2.7em;
  }

  .motion-heading.in-temp {
    font-size: 2.5em;
    line-height: 1.4em;
  }

  .buttons-wrap {
    flex-wrap: wrap;
  }

  .call-to-action-image {
    height: 16em;
  }

  .call-to-action-image.visitenkarten {
    object-fit: contain;
    width: 90%;
    max-width: 80em;
    height: 200px;
  }

  .mob-marting-right {
    margin-right: 0;
  }

  .featured-wrapper {
    min-height: auto;
  }

  .featured-column-inner {
    flex-flow: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
  }

  .featured-flex {
    margin-right: 1.4em;
  }

  .featured-gallery {
    position: relative;
  }

  .featured-background-color {
    height: 19em;
  }

  .featured-gallery-list {
    flex-wrap: wrap;
  }

  .featured-gallery-item {
    flex-wrap: wrap;
    flex: 0 auto;
    width: 50%;
    margin-left: 0;
    margin-right: 0;
  }

  .customer-link-2 {
    padding-left: 2.5em;
    padding-right: 2.5em;
  }

  .split-content-column-flex {
    padding-left: 0;
    padding-right: 0;
  }

  .ceo-heading {
    font-size: 2.2em;
  }

  .lifestyle-link-2 {
    font-size: .7em;
  }

  .realtor-photo-circle {
    align-self: stretch;
    width: 7em;
    height: auto;
    margin-bottom: 0;
  }

  .realtor-contact {
    flex: 1;
  }

  .our-team-column, .main-contacts-column {
    padding-left: 0;
    padding-right: 0;
  }

  .office-address {
    font-size: 1.6em;
  }

  .property-desc-item {
    width: 100%;
    padding: 1.2em .6em;
  }

  .property-desc-item.mobile-vertical {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .property-address-title, .property-address-title.in-list {
    font-size: 1.7em;
  }

  .property-interior-item {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .amenity-wrap {
    justify-content: flex-start;
    align-items: flex-start;
    padding-left: 0;
  }

  .property-feature-list {
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 1em;
  }

  .property-feature-paragraph {
    margin-left: 0;
    margin-right: 1.2em;
  }

  .location-column {
    height: 20em;
  }

  .about-template-link {
    padding-left: 3em;
    padding-right: 3em;
  }

  .about-template-link.small-at-link {
    padding-top: 2.3em;
    padding-bottom: 2.3em;
  }

  .about-template-heading {
    font-size: 2em;
  }

  .radial-background {
    opacity: .73;
    bottom: -45.6em;
  }

  .amenitiy-list {
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 1em;
  }

  .property-features-wrap {
    justify-content: flex-start;
    align-items: flex-start;
    padding-left: 0;
  }

  .mobile-no-margins {
    padding: 0;
  }

  .take-a-tour-column {
    padding-left: 0;
    padding-right: 0;
  }

  .amenity-page-paragraph {
    font-size: 1.6em;
  }

  .amenity-page-icon {
    margin-right: .5em;
  }

  .property-detail-amenity {
    padding-left: .5em;
    padding-right: .5em;
  }

  .property-detail-amenity-icon {
    margin-right: .2em;
  }

  .heading-sellers-process {
    font-size: 3em;
  }

  .in-nutshell-item-temp {
    width: 100%;
    padding-top: .9em;
    padding-bottom: .9em;
  }

  .ck-modal__exit-btn {
    margin-top: 1rem;
    margin-right: 1rem;
  }

  .ck-modal__btns-w.is--small {
    padding: 1.25rem;
  }

  .ck-button-w {
    padding-left: 1.25em;
    padding-right: 1.25em;
  }

  .ck-modal__content-w.is--small {
    padding-bottom: 1.25rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .ck-cookie-w {
    max-width: 100%;
    inset: auto 0% 0%;
  }

  .ck-modal {
    max-width: 100%;
  }

  .collection-list-5 {
    place-content: stretch;
    place-items: stretch stretch;
  }

  .collection-item-3 {
    flex-direction: column;
  }

  .collection-list-6 {
    grid-template-columns: minmax(200px, 1fr);
  }

  .footer-contact-title-2 {
    text-align: center;
    margin-bottom: 1em;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-contact-link-2 {
    padding-left: 0;
    padding-right: 2em;
  }

  .side-menu-2 {
    padding-left: 1.5em;
  }

  .menu-2 {
    display: none;
  }

  .hero-button-2 {
    justify-content: space-between;
    width: 100%;
    padding-left: 2.5em;
    padding-right: 2.5em;
  }

  .button-3 {
    justify-content: space-between;
    width: 100%;
    margin-bottom: .3em;
    padding-left: 2.5em;
    padding-right: 2.5em;
  }

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

  .footer-link-2 {
    padding-top: .5em;
    padding-bottom: .5em;
    padding-left: 0;
  }

  .heading-4 {
    color: var(--black);
    text-align: center;
    font-family: IBM Plex Custom, sans-serif;
    font-weight: 400;
  }

  .link-5 {
    line-height: 1.5em;
  }

  .bilder-container {
    min-width: 300%;
  }

  .referenzen {
    height: 150px;
  }

  .image-22 {
    width: 200px;
    height: 150px;
  }
}

#w-node-b9a59fa0-947d-9236-bed1-3511d3373c7f-730c36a9 {
  justify-self: center;
}


@font-face {
  font-family: 'IBM Plex Custom';
  src: url('../fonts/IBMPlexSans-ExtraLightItalic.ttf') format('truetype');
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'IBM Plex Custom';
  src: url('../fonts/IBMPlexSans-Bold.ttf') format('truetype'), url('../fonts/IBMPlexSans-SemiBold.ttf') format('truetype'), url('../fonts/IBMPlexSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'IBM Plex Custom';
  src: url('../fonts/IBMPlexSans-BoldItalic.ttf') format('truetype'), url('../fonts/IBMPlexSans-MediumItalic.ttf') format('truetype'), url('../fonts/IBMPlexSans-Italic.ttf') format('truetype'), url('../fonts/IBMPlexSans-SemiBoldItalic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'IBM Plex Custom';
  src: url('../fonts/IBMPlexSans-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'IBM Plex Custom';
  src: url('../fonts/IBMPlexSans-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'IBM Plex Custom';
  src: url('../fonts/IBMPlexSans-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'IBM Plex Custom';
  src: url('../fonts/IBMPlexSans-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'IBM Plex Custom';
  src: url('../fonts/IBMPlexSans-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'IBM Plex Custom';
  src: url('../fonts/IBMPlexSans-ThinItalic.ttf') format('truetype');
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}