@font-face {
  font-family: Alga;
  src: url('../fonts/Alga-Regular.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: Barlow;
  src: url('../fonts/Barlow-Regular.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: Barlow;
  src: url('../fonts/Barlow-Medium.ttf') format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: block;
}

:root {
  --white: #fffdfb;
  --brown: #444037;
  --link-gold: #a09475;
  --gold: #b5a887;
  --beige: #f7f4ed;
  --navbar-accent-color: #b5a887;
  --transparent: transparent;
  --grey: #8e8b85;
  --navbar-shadow: transparent;
  --cyan: #93c8ca;
  --gold-60: #b5a88799;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

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

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

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

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

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

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

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

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

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  background-color: var(--white);
  color: var(--brown);
  font-family: Barlow, Arial, sans-serif;
  font-size: 16px;
  line-height: 24px;
}

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Alga, Times New Roman, sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 46px;
}

h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Alga, Times New Roman, sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 44px;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Alga, Times New Roman, sans-serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 32px;
}

h4 {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
}

p {
  margin-bottom: 0;
}

a {
  color: var(--link-gold);
  text-decoration: none;
}

strong {
  font-weight: 500;
}

.link-block-cta {
  text-decoration: none;
  display: block;
}

.right-side-buttons {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  margin-left: 25px;
  display: flex;
}

.paragraph-9 {
  text-align: left;
  max-width: 71%;
  margin-right: auto;
  font-size: 14px;
}

.cta-button-container-header {
  background-color: var(--gold);
  color: #fff;
  cursor: pointer;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  width: 210px;
  padding-left: 14px;
  padding-right: 14px;
  transition: color .3s cubic-bezier(.455, .03, .515, .955), border-color .3s cubic-bezier(.455, .03, .515, .955), background-color .3s cubic-bezier(.455, .03, .515, .955);
  display: flex;
}

.cta-button-container-header:hover {
  background-color: var(--brown);
}

.cta-button-container-header.cookie {
  justify-content: center;
  margin-top: 0;
}

.cta-button-header {
  float: none;
  clear: both;
  object-fit: none;
  padding-top: 9px;
  padding-bottom: 9px;
  font-weight: 700;
  display: block;
  position: static;
}

.cta-button-header.cookie {
  font-size: 16px;
  font-weight: 500;
}

.cookie-outer {
  z-index: 1000;
  background-color: #fff;
  width: 100%;
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  box-shadow: 2px -2px 50px 3px #0000001a;
}

.content-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  text-align: center;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 50px;
  padding-right: 50px;
  display: block;
  position: relative;
}

.content-wrapper.cookie {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  justify-content: space-between;
  align-items: center;
  font-weight: 400;
}

.link-5 {
  color: var(--link-gold);
  display: inline-block;
}

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

.div-block-30 {
  justify-content: space-between;
  align-items: center;
  margin-top: 45px;
  margin-bottom: 45px;
  display: flex;
}

.faq-container {
  grid-column-gap: 13px;
  grid-row-gap: 13px;
  flex-flow: column;
  width: 100%;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.btn-container {
  grid-column-gap: 30px;
  grid-row-gap: 20px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  display: flex;
}

.btn-container.header-btn {
  margin-top: 60px;
  margin-bottom: 100px;
  position: relative;
}

.btn-container.quer-and-below {
  display: none;
}

.btn-container.quer-and-below.margin-top-60px-40px-mobil {
  margin-top: 60px;
}

.btn-container.header-btns-kontakt {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 251px;
  margin-top: 60px;
  margin-bottom: 100px;
  position: relative;
}

.slide {
  text-align: center;
}

.h2 {
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Alga, Times New Roman, sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 44px;
}

.h2.centering.margin-bottom-60px.z-index-1 {
  z-index: 1;
  position: relative;
}

.h2.no-margin-bottom {
  margin-bottom: 0;
}

.footer-logo-wrap {
  margin-bottom: 30px;
  text-decoration: none;
}

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

.section.more-space-top {
  padding-top: 140px;
}

.section.more-space-top.bg-beige {
  background-color: var(--beige);
}

.section.more-space-bottom {
  padding-bottom: 140px;
}

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

.section.more-space-top-bottom.vorteile-bg {
  background-image: url('../images/michaela-deininger-immobilienmakler-ammersee-hintergrund.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.section.more-space-top-bottom.angebote-bg {
  background-image: url('../images/michaela-deininger-immobilienmakler-ammersee-angebote-hintergrund.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.section.more-space-top-bottom.deininger-quote {
  background-image: url('../images/deininger-immobilien-immobilienmakler-ammersee-michaela-unternehmen.webp');
  background-position: 13%;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 60px;
}

.section.more-space-top-bottom.deininger-quote-verkauf {
  background-image: url('../images/michaela-deininger-immobilienmakler-ammersee-michaela-verkauf.webp');
  background-position: 21%;
  background-repeat: no-repeat;
  background-size: cover;
}

.section.more-space-top-bottom.verkauf-ergebnisse-bg {
  background-image: url('../images/michaela-deininger-immobilienmakler-ammersee-angebote-hintergrund.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.section.more-space-top-bottom.bg-beige {
  background-color: var(--beige);
}

.section.no-space-top-more-space-bottom {
  padding-top: 0;
  padding-bottom: 140px;
}

.section.no-space-bottom {
  padding-bottom: 0;
}

.section.immobilienfotografie {
  background-image: url('../images/michaela-deininger-immobilienmakler-ammersee-immobilienfotografie.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.slide-testimonial-text {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.footer-logo {
  width: 100%;
  max-width: 170px;
}

.margin-bottom-30px {
  margin-bottom: 30px;
}

.splide__list {
  justify-content: flex-start;
  align-items: flex-start;
  padding-left: 0;
}

.splide__slide {
  flex-direction: column;
  flex: none;
  justify-content: space-between;
  align-items: center;
  list-style-type: none;
  display: flex;
}

.splide__slide:first-child {
  padding-left: 0;
}

.faq-title-wrap {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

.faq-icon {
  z-index: 1;
  flex: none;
  width: 12px;
  height: 12px;
  position: relative;
}

.btn-container-left {
  grid-column-gap: 30px;
  grid-row-gap: 20px;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.hero-section {
  background-color: var(--brown);
  flex-flow: column;
  justify-content: space-between;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.footer-link {
  display: block;
}

.faq-icon-plus {
  background-color: #b5a887;
  width: 2px;
  height: 100%;
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
}

.social-media-icon {
  height: 24px;
  transition: color .3s;
}

.footer-text-wrap {
  width: 100%;
  max-width: 305px;
}

.icon-map {
  color: #c7b17f;
  width: 20px;
  height: 19px;
  padding-top: 3px;
}

.footer-text-wrap-left {
  width: 100%;
  max-width: 450px;
  margin-bottom: 30px;
}

.vorteile-grid-item.right-aligned {
  text-align: right;
}

.splide {
  position: relative;
}

.splide.testimonial-slider {
  max-width: 678px;
  margin-left: auto;
  margin-right: auto;
}

.burger-line {
  background-color: var(--navbar-accent-color);
  width: 30px;
  height: 2px;
  margin-top: 3px;
  margin-bottom: 3px;
}

.burger-line.line-1 {
  width: 20px;
}

.burger-line.line-1-close {
  width: 20px;
  transform: translate(0, 8px)rotate(45deg);
}

.burger-line.line-2-close {
  width: 20px;
}

.burger-line.line-3-close {
  width: 20px;
  transform: translate(0, -8px)rotate(-45deg);
}

.burger-line.line-2, .burger-line.line-3 {
  width: 20px;
}

.nav-logo-svg {
  color: var(--brown);
  width: 110px;
  padding-bottom: 2px;
  line-height: 0;
}

.btn-wrap {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  border: 1px solid var(--gold);
  background-color: var(--gold);
  color: var(--white);
  background-image: none;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  padding: 10px 20px 12px;
  font-weight: 500;
  line-height: 1;
  transition: border-color .3s, background-color .3s;
  display: inline-flex;
}

.btn-wrap:hover {
  border-color: var(--brown);
  background-color: var(--brown);
}

.btn-wrap.w--current:hover {
  background-color: #c7b17f;
}

.btn-wrap.nav-item {
  background-image: none;
  transition: border-color .3s, color .3s, background-color .3s;
}

.btn-wrap.nav-item:hover {
  border-color: var(--brown);
}

.btn-wrap.nav-item-mobil {
  border-color: var(--white);
  background-color: var(--transparent);
  margin-top: 25px;
  padding-left: 40px;
  padding-right: 40px;
}

.btn-wrap.nav-item-mobil:hover {
  border: 1px solid var(--gold);
  background-color: var(--gold);
}

.btn-wrap.fixed-width-230px {
  width: 230px;
}

.btn-wrap.fixed-width-230px.centering {
  margin-left: auto;
  margin-right: auto;
}

.btn-wrap.btn-header-wrap:hover {
  border-color: var(--white);
  background-color: var(--white);
  color: var(--gold);
}

.btn-wrap.btn-full-width-wrap {
  width: 100%;
}

.btn-wrap.btn-full-width-wrap:hover {
  border-color: var(--white);
  background-color: var(--white);
  color: var(--gold);
}

.faq-text-wrap {
  width: 95%;
  padding-bottom: 0;
  overflow: hidden;
}

.menu-items-grid {
  align-self: flex-start;
  display: none;
}

.footer-copyright-text {
  color: #aeaeae;
  text-align: center;
}

.footer-copyright-text.copyright-middle-padding {
  border-right: 1px solid var(--grey);
  border-left: 1px solid var(--grey);
  padding-left: 10px;
  padding-right: 10px;
}

.icon-handy-footer {
  flex-flow: row;
  width: 13px;
  height: 20px;
}

.centering {
  text-align: center;
}

.faq-icon-border {
  border: 2px solid var(--gold);
  border-radius: 50%;
  padding: 6px;
}

.menu-button-mobile {
  z-index: 2;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  width: 20px;
  height: 50px;
  margin-top: auto;
  margin-bottom: auto;
  margin-right: 30px;
  display: flex;
  position: absolute;
  inset: 0% 0 0% auto;
}

.footer-bottom-layout {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  border-bottom: 1px solid var(--white);
  color: var(--white);
  justify-content: space-between;
  padding-bottom: 60px;
  display: flex;
  position: relative;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

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

.container.static {
  position: static;
}

.nav-logo-link {
  z-index: 2;
  justify-content: center;
  align-items: center;
  padding: 10px;
  display: flex;
  position: relative;
}

.footer-kontakt-link-block {
  color: var(--white);
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 10px;
  transition: color .3s;
  display: flex;
}

.footer-kontakt-link-block:hover {
  color: var(--gold);
}

.footer-kontakt-link-block.margin-bottom-5px {
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 5px;
}

.footer-kontakt-link-block.margin-bottom-30px {
  margin-bottom: 30px;
}

.h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

.h3.margin-bottom-30px {
  margin-bottom: 30px;
}

.menu-desktop {
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.footer-section {
  z-index: 2;
  background-color: var(--brown);
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  padding-top: 60px;
  padding-bottom: 20px;
  position: relative;
  overflow: clip hidden;
}

.faq {
  border-bottom: 1px solid var(--gold);
  padding-top: 10px;
  padding-bottom: 0;
}

.kontaktformular-submit-button {
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: relative;
  bottom: 0;
  left: 0;
}

.nav-link-mobil {
  color: var(--white);
  margin-top: 20px;
  margin-bottom: 5px;
  font-size: 20px;
  transition: color .3s;
}

.nav-link-mobil:hover, .nav-margin-top:hover {
  color: var(--gold);
}

.header-video {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.menu-items {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 350px;
  padding-bottom: 20px;
  display: flex;
}

.testimonial-author-name {
  color: var(--grey);
}

.social-media-icons-footer {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  display: flex;
}

.full-screen-menu {
  z-index: 1;
  background-color: var(--brown);
  will-change: opacity, backdrop-filter, display;
  flex-flow: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  height: 100lvh;
  padding: 50px;
  display: none;
  position: fixed;
  inset: 0% 0% 0;
  overflow: scroll;
}

.form-2 {
  overflow: visible;
}

.faq-text {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 24px;
}

.footer-bottom-middle {
  transition: color .3s;
}

.footer-copyright-text-wrap {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: wrap;
  justify-content: center;
  padding-top: 20px;
  display: flex;
}

.section-row {
  position: relative;
  overflow: visible;
}

.section-row.nav-bar-wrapper {
  z-index: 999;
  background-color: var(--transparent);
  box-shadow: 0 2px 5px 0 var(--navbar-shadow);
  height: 100px;
  transition: background-color .2s;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.splide__track {
  overflow: hidden;
}

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

.white {
  color: #fbf9f8;
}

.copyright-brandingstuff-link {
  color: #999;
  font-weight: 500;
}

.copyright-brandingstuff-link:hover {
  color: #fff;
}

.copyright-brandingstuff-link:active {
  font-weight: 500;
}

.menu-button-mobile-close {
  z-index: 2;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 50px;
  margin-top: auto;
  margin-bottom: auto;
  margin-right: 30px;
  display: none;
  position: absolute;
  inset: 0 0 0% auto;
}

.footer-kontakt-item {
  vertical-align: middle;
  flex: 0 auto;
  align-self: flex-start;
  padding-left: 10px;
  display: block;
}

.footer-kontakt-item.location-underline {
  color: var(--grey);
  padding-left: 25px;
}

.testimonial-text {
  padding: 30px 20px 20px;
  font-size: 18px;
  font-style: italic;
  line-height: 24px;
}

.icon-telefon-footer {
  justify-content: center;
  align-items: center;
  width: 17px;
  height: 17px;
  display: flex;
}

.small-p {
  font-size: 16px;
  line-height: 23px;
}

.small-p.grey {
  color: #aeaeae;
}

.small-p.grey.margin-bottom-40px.margin-left-29px {
  margin-left: 30px;
}

.common-content.about-heading {
  text-align: left;
  margin-bottom: 0;
}

.faq-icon-minus {
  background-color: #b5a887;
  width: 100%;
  height: 2px;
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
}

.menu {
  color: var(--gold);
  text-decoration: none;
}

.menu:hover {
  color: #c7b17f;
}

.menu.mobile-kontakt {
  color: var(--navbar-accent-color);
  font-weight: 500;
}

.menu.mobile-kontakt:hover {
  color: var(--gold);
}

.section-spacing {
  padding-left: 30px;
  padding-right: 30px;
}

.footer-link-text {
  color: #fbf9f8;
  margin-bottom: 10px;
  transition: color .3s;
}

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

.checkbox-field {
  margin-top: 20px;
}

.hero-content-home {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: calc(100svh - 250px);
  min-height: 450px;
}

.topline {
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 4px;
  font-family: Barlow, Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.h3-footer {
  color: #fbf9f8;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
}

.footer-social-media-link-icon {
  color: var(--white);
  transition: color .3s;
}

.footer-social-media-link-icon:hover {
  color: var(--gold);
}

.nav-bar {
  z-index: 999;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-left: 20px;
  padding-right: 70px;
  display: flex;
}

.icon-mail-footer {
  justify-content: center;
  align-items: center;
  width: 18px;
  height: 18px;
  display: flex;
}

.h1 {
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Alga, Times New Roman, sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 46px;
}

.h1.philosophie-header {
  max-width: 400px;
  margin-top: 140px;
}

.colors-holder-item-bottom {
  background-color: #f9f9f9;
  padding: 16px;
}

.div-block-36 {
  flex-flow: column;
  display: flex;
}

.style-gide-nav-link {
  color: #0c0407;
  border-radius: 4px;
  justify-content: flex-start;
  align-items: center;
  padding: 12px;
  font-weight: 600;
  text-decoration: none;
  display: block;
}

.style-gide-nav-link.w--current {
  color: #fbf9f8;
  background-color: #2a2529;
}

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

.style-gide-group-title-wrap {
  margin-bottom: 8px;
}

.style-gide-button-holder-layout {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.style-gide-color {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

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

.code-embed-3 {
  color: #c7b17f;
  width: 97px;
  height: auto;
  margin-bottom: -11px;
  position: absolute;
  inset: auto auto 1px calc(50% - 48.5px);
}

.style-gide-headings-holder-item {
  background-color: #f9f9f9;
  border-radius: 8px;
  flex-flow: column;
  padding: 24px;
  display: flex;
}

.style-gide-button-holder-item {
  padding: 15px;
}

.style-gide-headings-holder {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  display: flex;
}

.colors-holder-item {
  border-radius: 8px;
  width: 100%;
  max-width: 235px;
  overflow: hidden;
}

.h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Barlow, Arial, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
}

.h4.margin-bottom-20px {
  margin-bottom: 20px;
}

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

.h4.gold-text.margin-bottom-10px {
  margin-bottom: 10px;
}

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

.style-gide-right {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  flex-flow: column;
  flex: 1;
  display: flex;
}

.style-gide-nav {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  flex-flow: column;
  display: flex;
}

.privacy-hero-title {
  letter-spacing: -.05em;
  line-height: 96%;
}

.link-6 {
  color: #999;
  font-weight: 700;
}

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

.style-gide-layout {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.colors-holder {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.style-gide-group-title {
  color: #0c0407;
  font-weight: 600;
  line-height: 112%;
}

.colors-holder-item-top {
  background-color: #c7b17f;
  width: 100%;
  height: 150px;
}

.colors-holder-item-top._4 {
  background-color: #fbf9f8;
}

.colors-holder-item-top.gold-dark {
  background-color: #b5a887;
}

.style-gide-left {
  width: 100%;
  max-width: 300px;
  position: sticky;
  top: 20px;
}

.privacy-hero-title-wrap {
  margin-bottom: 20px;
}

.btn-primary {
  color: #fff;
  text-align: center;
  transform-style: preserve-3d;
  background-color: #5ebfcb;
  border: 1px solid #354747;
  border-radius: 8px;
  justify-content: center;
  padding: 18px 24px;
  font-weight: 500;
  line-height: 1.125em;
  text-decoration: none;
  transition: border-color .3s, background-color .3s, transform .3s, color .3s;
}

.btn-primary:hover {
  color: #fff;
  background-color: #5ebfcb;
  border-color: #5ebfcb;
  transform: scale3d(1.06, 1.06, 1.01);
}

.btn-primary.bg-secondary-blue {
  background-color: #1d2451;
  border-color: #1d2451;
}

.btn-primary.bg-secondary-blue:hover {
  background-color: #1d2451;
  border-color: #354747;
}

.btn-primary.bg-secondary-blue.small {
  align-self: flex-start;
  padding-left: 40px;
  padding-right: 40px;
  font-weight: 500;
  transition: border-color .3s, background-color .3s, transform .3s;
}

.btn-primary.bg-secondary-blue.small:hover {
  background-color: #1d2451;
  border-color: #1d2451;
}

.btn-primary.bg-secondary-blue.small.margin-top-40px {
  margin-top: 40px;
}

.p-big {
  font-size: 20px;
  line-height: 28px;
}

.p-big.margin-bottom-60px-40px-mobil {
  margin-bottom: 60px;
}

.p-big.unternehmen-header {
  max-width: 400px;
  margin-top: 140px;
}

.btn-wrap-outline {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  border: 1px solid var(--gold);
  background-color: var(--white);
  color: var(--gold);
  background-image: none;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  padding: 10px 20px 12px;
  font-weight: 500;
  line-height: 1;
  transition: border-color .3s, background-color .3s;
  display: inline-flex;
}

.btn-wrap-outline:hover {
  background-color: var(--gold);
  color: var(--white);
}

.btn-wrap-outline.w--current:hover {
  background-color: #c7b17f;
}

.btn-wrap-outline.fixed-width-230px {
  width: 230px;
}

.paragraph-10 {
  line-height: 24px;
}

.header-video-ananas {
  box-sizing: border-box;
  align-self: center;
  max-height: 300px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.header-video-text-1 {
  box-sizing: border-box;
  align-self: center;
  width: 100%;
  max-width: 1200px;
  max-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.header-video-text {
  color: var(--white);
  text-align: center;
  font-family: Alga, Times New Roman, sans-serif;
  font-size: 30px;
  line-height: 36px;
}

.header-band-wrapper {
  background-color: var(--cyan);
  width: 100%;
  position: absolute;
  bottom: 0;
  overflow: hidden;
}

.header-band {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  color: var(--white);
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
}

.band-text {
  color: var(--white);
  white-space: nowrap;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 17px;
  padding-bottom: 17px;
  font-family: Alga, Times New Roman, sans-serif;
  font-size: 26px;
  line-height: 1;
}

.band-text.tablet-and-below, .band-icon.tablet-and-below {
  display: none;
}

.margin-bottom-60px {
  margin-bottom: 60px;
}

.number-subtitle {
  font-size: 14px;
  line-height: 21px;
}

.counter-single {
  padding-inline: clamp(30px, 6.97vw - 39.13px, 50px);
  position: relative;
}

.counter-single.border-1 {
  padding-left: 0;
}

.counter-single.border-3 {
  padding-right: 0;
}

.number {
  color: var(--gold);
  text-align: center;
  white-space: nowrap;
  margin-bottom: 8px;
  font-family: Alga, Times New Roman, sans-serif;
  font-size: 33px;
  line-height: 38px;
}

.counter-part {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr) 1px minmax(0, 1fr);
  grid-auto-columns: 1fr;
  justify-content: space-between;
  margin-bottom: 60px;
  display: grid;
}

.count {
  grid-column-gap: 2px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.counter-content {
  flex-flow: column;
  width: 100%;
  display: flex;
}

.intro-grid {
  grid-column-gap: 40px;
  grid-template-rows: auto auto auto;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: stretch;
  display: grid;
}

.text-part {
  align-self: center;
  min-width: 0;
  margin-top: 40px;
}

.image-part {
  background-image: url('../images/michaela_deininger-immobilienmakler-ammersee.jpg');
  background-position: 50% 30%;
  background-size: cover;
  border-radius: 6px;
}

.button-part {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 40px;
  display: flex;
}

.divider {
  background-color: var(--gold-60);
  width: 1px;
}

.quote-icon {
  color: var(--gold);
  width: 29px;
  height: 26px;
}

.vorteile-grid-ananas {
  max-width: none;
  margin-bottom: 20px;
  display: block;
}

.ananas-sticky-bg {
  opacity: .08;
}

.ananas-sticky-bg-container {
  display: none;
}

.sticky-bg {
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
  position: static;
}

.auszeichnungen-wrapper {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  color: var(--white);
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
}

.auszeichnung-img {
  height: 120px;
}

.right-col-content-text {
  align-self: flex-start;
  width: 50%;
  padding-right: 30px;
}

.left-col-content-text {
  flex: 0 auto;
  align-self: flex-start;
  width: 50%;
  display: block;
  overflow: hidden;
}

.two-col-layout-text {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.immobilien-angebot-container {
  background-color: var(--white);
  border-radius: 6px;
  justify-content: space-between;
  display: flex;
}

.immobilien-angebot-container.margin-bottom-80px {
  margin-bottom: 80px;
}

.immobilien-angebot-container.margin-bottom-80px.revert-order {
  flex-flow: row-reverse;
}

.left-col-angebot {
  aspect-ratio: 5 / 4;
  background-image: url('../images/deininger-immobilien-angebote-01.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  width: 33%;
  position: relative;
}

.left-col-angebot.revert-order {
  border-radius: 0 6px 6px 0;
}

.right-col-angebot {
  width: 66%;
  padding: 40px 30px;
}

.angebot-adresse {
  color: var(--gold);
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 10px;
  display: flex;
}

.angebot-adresse:hover {
  color: #c7b17f;
}

.angebot-adresse-icon {
  height: 18.16px;
}

.angebot-adresse-text {
  vertical-align: middle;
  flex: 0 auto;
  align-self: flex-start;
  padding-left: 10px;
  display: block;
}

.angebot-features {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  place-items: center start;
  margin-bottom: 20px;
  display: flex;
}

.angebot-feature-item {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: flex-start;
  align-items: stretch;
  display: inline-flex;
}

.angebot-divider {
  background-color: var(--brown);
  width: 1px;
  height: 19px;
}

.tag {
  background-color: var(--white);
  border-radius: 6px;
  margin: 20px;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 33px;
  display: inline-block;
}

.angebot-bottom-status {
  background-color: var(--cyan);
  text-align: center;
  text-transform: uppercase;
  border-bottom-left-radius: 6px;
  line-height: 33px;
  position: absolute;
  inset: auto 0% 0%;
}

.angebot-bottom-status.revert-order {
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 0;
}

.angebot-bottom-status-text {
  color: var(--white);
  font-weight: 500;
}

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

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

.no-arrow-button-container {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.immobilien-verkauft-container {
  grid-column-gap: 20px;
  grid-row-gap: 40px;
  background-color: var(--white);
  border-radius: 6px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  display: grid;
}

.immobilien-verkauft-container.margin-bottom-60px-40px-mobil {
  margin-bottom: 60px;
}

.immobilien-verkauft-container.margin-bottom-100px-quer-80px {
  margin-bottom: 100px;
}

.image-col-verkauft {
  align-self: center;
  position: relative;
}

.verkauft-bottom-status {
  background-color: var(--cyan);
  text-align: center;
  text-transform: uppercase;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
  line-height: 33px;
  position: absolute;
  inset: auto 0% 0%;
}

.verkauft-bottom-status-text {
  color: var(--white);
  font-weight: 500;
}

.text-col-verkauft {
  padding-right: 30px;
}

.text-col-verkauft.revert-order {
  padding-left: 30px;
  padding-right: 0;
}

.preis-vermarktungszeit-container {
  grid-column-gap: 60px;
  grid-row-gap: 20px;
  flex-flow: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  place-items: center start;
  margin-bottom: 40px;
  display: flex;
}

.verkauft-quote-block {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  border-left: 1px solid var(--gold);
  flex-flow: column;
  margin-right: 0;
  padding-left: 20px;
  display: flex;
}

.img-wrapper {
  position: relative;
}

.img-verkauft {
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: 6px;
  width: 100%;
}

.partnerschaften-band-wrapper {
  overflow: hidden;
}

.partnerschaften-band {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  color: var(--white);
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  display: flex;
}

.partnerschaften-img {
  height: 140px;
}

.footer-adresse-icon {
  height: 18.2px;
  margin-top: 2px;
}

.footer-adresse-icon.gold {
  color: var(--gold);
}

.social-media-block-footer {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.together-block {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  display: flex;
}

.philosophie-header-grid {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 190px 1fr;
  grid-auto-columns: 1fr;
  align-content: center;
  margin-top: 120px;
  margin-bottom: 120px;
  display: grid;
}

.philosophie-header-grid-ananas {
  max-width: none;
  margin-bottom: 0;
  display: block;
}

.philosophie-header-grid-item {
  color: var(--white);
}

.philosophie-header-grid-item.right-aligned {
  text-align: right;
}

.hero-section-philosophie {
  background-color: var(--brown);
  background-image: linear-gradient(#0009, #0009), url('../images/deininger-immobilien-immobilienmakler-ammersee-unternehmen.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  flex-flow: column;
  justify-content: center;
  min-height: 100vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.fixed-with-text-block-820px {
  text-align: center;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.fixed-with-text-block-820px.text-left-aligned-desktop {
  text-align: left;
}

.unterschied-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 40px;
}

.unterschied-grid-item {
  background-color: var(--brown);
  color: var(--white);
  text-align: center;
  border-radius: 6px;
  padding: 60px 30px;
}

.p-unterschied-grid-item {
  font-size: 20px;
  line-height: 28px;
}

.deininger-quote-wrapper {
  float: right;
}

.deininger-quote-block {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  border-left: 1px solid var(--gold);
  flex-flow: column;
  max-width: 50vw;
  padding-left: 20px;
  display: flex;
}

.deininger-quote-name {
  color: var(--brown);
}

.deininger-quote-img-mobil {
  display: none;
}

.deininger-quote-name-bold {
  font-weight: 500;
}

.hero-section-verkauf {
  background-color: var(--brown);
  background-image: url('../images/ammersee-immobilienmakler-michaela-deininger-immobilienverkauf-header.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  flex-flow: column;
  justify-content: center;
  min-height: 100vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.verkauf-two-column-wrapper {
  color: var(--white);
  justify-content: space-between;
  align-items: center;
  padding-top: 140px;
  padding-bottom: 120px;
  display: flex;
}

.verkauf-hero-left-side {
  width: 40%;
  position: relative;
}

.verkauf-hero-right-side {
  aspect-ratio: 3 / 2;
  border: 1px solid var(--white);
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  flex-flow: column;
  justify-content: space-between;
  align-self: stretch;
  width: 50%;
  display: flex;
  box-shadow: 0 0 0 100vmax #0009;
}

.verkauf-hero-box-title {
  background-color: var(--white);
  color: var(--brown);
  text-align: center;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  padding-top: 6px;
  padding-bottom: 6px;
}

.verkauf-hero-box-bottom {
  background-image: linear-gradient(#0000 2%, #0009 76%);
  justify-content: space-between;
  padding: 20px 17px 8px;
  display: flex;
}

.deininger-quote-verkauf-mobil-space-block {
  display: none;
}

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

.checkmark-grid.margin-to-buttom {
  margin-bottom: 30px;
}

.custom-list {
  margin-bottom: 0;
  padding-left: 0;
  list-style-type: none;
}

.custom-list-item {
  background-image: url('../images/checkmark.svg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 30px 30px;
  margin-bottom: 30px;
  padding-bottom: 2px;
  padding-left: 45px;
  font-size: 20px;
  line-height: 28px;
}

.immobilienfotografie-flex-box {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  aspect-ratio: 2.39;
  color: var(--white);
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.immobilienfotogtafie-left {
  border: 1px solid var(--white);
  justify-content: center;
  align-items: center;
  width: 66%;
  height: 100%;
  display: flex;
  box-shadow: 0 0 0 100vmax #000000b3;
}

.immobilienfotografie-right {
  width: 33%;
}

.kamera-snapchot {
  max-width: 30%;
}

.home-staging-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
  display: flex;
}

.home-staging-col-left {
  width: 33%;
}

.home-staging-col-right {
  width: 66%;
}

.handle-wrapper {
  aspect-ratio: 3 / 2;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-right: 0;
  display: flex;
  position: relative;
  overflow: hidden;
}

.image-right {
  z-index: 0;
  width: 100%;
  position: absolute;
}

.image-left {
  z-index: 1;
  position: absolute;
}

.handle-bar {
  z-index: 10;
  color: #0000;
  cursor: grab;
  background-color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1px;
  height: 100%;
  display: flex;
  position: relative;
}

.circle-wrapper {
  cursor: grab;
  background-color: #fff;
  background-image: url('../images/cd-arrows-black.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 40px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  position: absolute;
}

.before {
  z-index: 3;
  background-color: #0003;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100px;
  transition: opacity .2s ease-in-out;
  display: flex;
  position: absolute;
  inset: 20px auto auto 20px;
}

.handle {
  color: #fff;
  text-align: center;
  width: auto;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Barlow, Arial, sans-serif;
  font-size: 16px;
  line-height: 30px;
}

.after {
  z-index: 3;
  background-color: #0003;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100px;
  padding: 0 10px;
  transition: opacity .2s ease-in-out;
  display: flex;
  position: absolute;
  inset: 20px 20px auto auto;
}

.home-staging-50-50 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: space-between;
  height: 100%;
  display: flex;
}

.home-staging-before-after-50-50 {
  width: 50%;
  height: 100%;
}

.one-third-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.two-third {
  width: 33%;
}

.one-third {
  width: 66%;
}

.ananas-sticky-verkauf-bg-container {
  z-index: 0;
  pointer-events: none;
  position: absolute;
  inset: 0;
}

.unterseite-ergebnisse-grid {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.fixed-with-text-block-650px {
  text-align: center;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.headline-wrapper-450px {
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
}

.headline-wrapper-500px {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.ananas-2-sticky-bg {
  opacity: .12;
}

.hero-section-erbschaft {
  background-color: var(--brown);
  background-image: linear-gradient(#0000004d, #0000004d), url('../images/deininger-immobilien-immobilienmakler-ammersee-erbschaftsimmobilien.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  flex-flow: column;
  justify-content: center;
  min-height: 100vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.header-erbschaft-quote-block {
  background-color: var(--white);
  border-radius: 6px;
  width: 50%;
  height: 100%;
  margin-top: 120px;
  margin-bottom: 120px;
  padding: 30px;
  position: relative;
}

.quote-icon-gold {
  color: var(--gold);
  width: 62px;
  height: 42px;
  position: absolute;
  inset: -25px 0% auto auto;
}

.erbschaft-quote-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: space-between;
  display: flex;
}

.erbschaft-quote-right-col {
  align-self: center;
  padding-left: 30px;
}

.erbschaft-quote-left-col {
  align-self: center;
  width: 50%;
  position: relative;
}

.deininger-quote-auszeichnung-erbschaft {
  width: 100px;
  position: absolute;
  inset: auto auto 20px 20px;
}

.image-with-rounded-bordert {
  border-radius: 6px;
}

._50-50-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: space-between;
  display: flex;
}

.col-50-50-left-text {
  align-self: center;
  width: 50%;
  padding-right: 30px;
  position: relative;
}

.col-50-50-right-text {
  align-self: center;
  width: 50%;
  padding-left: 30px;
}

.col-50-50-right-text.top-aligned {
  align-self: flex-start;
}

.ananas-3-sticky-bg {
  opacity: .12;
  width: 140px;
}

.strong {
  font-weight: 500;
}

.faq-list-item {
  margin-bottom: 5px;
}

.zitat-text {
  font-size: 18px;
  font-style: italic;
  line-height: 24px;
}

.hero-section-kontakt {
  background-color: var(--brown);
  background-image: linear-gradient(90deg, #0006, #fff0 57%), url('../images/deininger-immobilien-immobilienmakler-ammersee-kontakt-michaela.webp');
  background-position: 0 0, 60%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  flex-flow: column;
  justify-content: center;
  min-height: 100vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.kontakt-header-text-box {
  color: var(--white);
  max-width: 465px;
  margin-top: 120px;
  margin-bottom: 120px;
}

.text-field-left-col-2 {
  background-color: #fff0;
  border: 1px solid #aeaeae;
  padding-top: 20px;
  padding-bottom: 20px;
  line-height: 26px;
  transition: border-color .3s;
}

.text-field-left-col-2:focus {
  border-color: var(--gold);
}

.checkbox-contact-form {
  margin-top: 6px;
}

.column-18 {
  padding-right: 0;
}

.select-field-2 {
  background-color: #fff0;
  border: 1px solid #aeaeae;
  height: 42px;
  margin-bottom: 25px;
  padding-left: 12px;
  padding-right: 20px;
  line-height: 26px;
  transition: border-color .3s;
}

.select-field-2:focus {
  border-color: var(--gold);
}

.cta-button-2 {
  background-color: var(--gold);
  color: var(--white);
  cursor: pointer;
  border-radius: 6px;
  width: 230px;
  padding: 10px 20px 12px;
  font-weight: 500;
  line-height: 1;
  transition: background-color .3s;
  display: block;
}

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

.cta-button-2.submit, .cta-button-2.submit.g-recaptcha {
  display: none;
}

.column-19 {
  padding-right: 0;
}

.oeffnungszeiten-2-cols {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  display: flex;
}

.columns-8 {
  margin-left: 0;
  margin-right: 0;
  padding-bottom: 15px;
}

.kontaktformular-wrap {
  border: 1px solid #aeaeae;
  border-radius: 6px;
  padding: 40px 30px;
}

.gold-text {
  color: #c0a761;
}

.columns-9 {
  margin-bottom: 15px;
  margin-left: 0;
  margin-right: 0;
}

.link-7 {
  transition: color .3s;
  display: inline-block;
}

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

.textarea-3 {
  background-color: #fff0;
  border: 1px solid #aeaeae;
  min-height: 200px;
  padding-bottom: 20px;
  line-height: 26px;
  transition: border-color .3s;
}

.textarea-3:focus {
  border-color: var(--gold);
  color: var(--brown);
}

.column-20 {
  padding-left: 0;
}

.text-field-right-col-2 {
  float: none;
  background-color: #fff0;
  border: 1px solid #aeaeae;
  margin-right: 10px;
  padding-top: 20px;
  padding-bottom: 20px;
  line-height: 26px;
  transition: border-color .3s;
}

.text-field-right-col-2:focus {
  border-color: var(--gold);
}

.kontakt-link-block {
  justify-content: flex-start;
  align-items: flex-start;
  transition: color .3s;
  display: flex;
}

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

.karte-embedded {
  margin-bottom: 30px;
}

.first-section-container {
  text-align: center;
  margin-top: 60px;
}

.standard-link:hover {
  color: #d6be7b;
}

.mobile-kontakt {
  display: block;
}

.mobile-deleted-text {
  display: inline;
}

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

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 400px;
  display: flex;
}

.page-not-found-img {
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 1280px) {
  .content-wrapper {
    padding-left: 50px;
    padding-right: 50px;
  }

  .section.more-space-top-bottom.deininger-quote, .section.more-space-top-bottom.deininger-quote-verkauf {
    background-position: 50%;
  }

  .btn-text {
    vertical-align: middle;
    transition: color .3s, background-color .3s;
  }

  .footer-text-wrap-left {
    max-width: 550px;
  }

  .nav-logo-svg {
    width: 129px;
  }

  .btn-wrap.nav-item {
    border-color: var(--navbar-accent-color);
    background-color: var(--transparent);
    color: var(--navbar-accent-color);
    padding-left: 40px;
    padding-right: 40px;
  }

  .btn-wrap.nav-item:hover {
    border-color: var(--gold);
    background-color: var(--gold);
    color: var(--white);
  }

  .menu-items-grid {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: space-between;
    align-self: center;
    place-items: stretch end;
    display: flex;
  }

  .menu-button-mobile {
    display: none;
  }

  .nav-logo-link {
    height: 100%;
  }

  .menu-desktop {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: row;
    grid-template-rows: auto;
    grid-template-columns: 1.25fr 1fr;
    justify-content: space-between;
    justify-items: stretch;
    display: flex;
  }

  .nav-margin-top {
    align-self: center;
    align-items: center;
  }

  .section-row.nav-bar-wrapper {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    height: 130px;
    display: block;
    position: fixed;
    inset: 0% 0% auto;
  }

  .menu-button-mobile-close {
    display: none;
  }

  .menu {
    color: var(--navbar-accent-color);
    font-weight: 500;
    transition: color .3s;
  }

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

  .nav-bar {
    flex-flow: row;
    justify-content: space-between;
    align-items: center;
    width: 1200px;
    max-width: 1200px;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
    display: flex;
  }

  .number-subtitle {
    font-size: 16px;
    line-height: 24px;
  }

  .counter-single {
    padding-inline: clamp(30px, 6.97vw - 39.13px, 38px);
  }

  .number {
    font-size: 38px;
    line-height: 44px;
  }

  .intro-grid {
    grid-column-gap: 80px;
  }

  .image-part {
    background-position: 50%;
  }

  .immobilien-angebot-container {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .left-col-angebot {
    width: 50%;
    position: relative;
  }

  .right-col-angebot {
    width: 50%;
  }

  .immobilien-verkauft-container {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .image-col-verkauft {
    position: relative;
  }

  .preis-vermarktungszeit-container {
    margin-bottom: 10px;
  }

  .verkauft-quote-block {
    margin-right: 30px;
  }

  .verkauft-quote-block.revert-order {
    margin-left: 30px;
    margin-right: 0;
  }

  .p-unterschied-grid-item {
    font-size: 20px;
    line-height: 28px;
  }

  .mobile-kontakt {
    display: none;
  }
}

@media screen and (min-width: 1440px) {
  .section.more-space-top-bottom.deininger-quote, .section.more-space-top-bottom.deininger-quote-verkauf {
    background-position: 50% 0;
  }

  .deininger-quote-block {
    max-width: 600px;
  }
}

@media screen and (min-width: 1920px) {
  .section.more-space-top-bottom.deininger-quote, .section.more-space-top-bottom.deininger-quote-verkauf {
    border-radius: 6px;
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-section, .hero-section-philosophie, .hero-section-verkauf, .hero-section-erbschaft {
    background-position: 100% 100%;
  }

  .hero-section-kontakt {
    background-position: 50%;
  }
}

@media screen and (max-width: 991px) {
  .link-block-cta {
    display: block;
  }

  .right-side-buttons {
    flex-flow: column;
    align-self: center;
    width: 100%;
    display: flex;
  }

  .paragraph-9 {
    max-width: 63%;
  }

  .cta-button-container-header.cookie {
    justify-content: center;
    padding-right: 20px;
    display: flex;
  }

  .cta-button-header {
    display: block;
  }

  .content-wrapper {
    max-width: 100%;
    padding-left: 25px;
    padding-right: 25px;
  }

  .faq-container {
    max-width: none;
  }

  .btn-container.quer-and-below {
    display: none;
  }

  .btn-container.quer-and-below.margin-top-60px-40px-mobil.z-index-1 {
    z-index: 1;
    position: relative;
  }

  .section.more-space-top {
    padding-top: 100px;
  }

  .section.more-space-bottom {
    padding-bottom: 100px;
  }

  .section.more-space-top-bottom {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .section.more-space-top-bottom.deininger-quote {
    background-image: none;
    background-repeat: repeat;
    background-size: auto;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 80px;
  }

  .section.more-space-top-bottom.deininger-quote-verkauf {
    background-image: url('../images/michaela-deininger-immobilienmakler-ammersee-michaela-verkauf-mobil.webp');
    background-position: 50% 100%;
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 0;
  }

  .section.no-space-top-more-space-bottom {
    padding-bottom: 100px;
  }

  .btn-container-left.tablet-centering {
    justify-content: center;
    align-items: center;
  }

  .hero-section {
    flex-flow: column;
    justify-content: space-between;
  }

  .footer-text-wrap {
    max-width: 400px;
  }

  .footer-text-wrap-left {
    max-width: 100%;
  }

  .footer-bottom-layout {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-flow: column;
  }

  .footer-section {
    padding-bottom: 20px;
  }

  .footer-bottom-middle {
    order: 9999;
  }

  .footer-copyright-text-wrap {
    padding-top: 20px;
  }

  .footer-bottom-left {
    width: 480px;
  }

  .splide__track {
    z-index: 20;
  }

  .vorteile-grid {
    z-index: 1;
    grid-template-columns: 1fr 1fr;
    position: relative;
  }

  .text-wrap, .common-content.about-heading {
    max-width: 100%;
  }

  .menu:hover {
    color: #fbf9f8;
  }

  .section-spacing {
    padding-left: 60px;
    padding-right: 60px;
  }

  .nav-bar {
    padding-left: 20px;
  }

  .h1.philosophie-header {
    text-align: center;
    margin-top: 0;
  }

  .changelog-hero-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .style-gide-nav {
    display: none;
  }

  .style-gide-layout {
    flex-flow: column;
  }

  .style-gide-left {
    z-index: 10;
    background-color: #fff;
    border-radius: 8px;
    max-width: 100%;
  }

  .p-big.unternehmen-header {
    margin-top: 0;
  }

  .header-band {
    justify-content: flex-start;
    align-items: center;
  }

  .band-text.tablet-and-below, .band-icon.tablet-and-below {
    display: block;
  }

  .number-subtitle {
    padding-right: 0;
    font-size: 16px;
    line-height: 22px;
  }

  .counter-single {
    padding: 20px 0;
    padding-inline: unset;
    justify-content: space-between;
    align-items: flex-start;
  }

  .counter-single.border-2 {
    border-top: 1px solid var(--gold-60);
    border-bottom: 1px solid var(--gold-60);
    border-right-style: none;
  }

  .counter-single.border-1 {
    border-right-style: none;
    padding-top: 40px;
    padding-bottom: 20px;
  }

  .counter-single.border-3 {
    padding-top: 20px;
  }

  .number {
    font-size: 38px;
    line-height: 44px;
  }

  .counter-part {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
    margin-bottom: 40px;
    padding-left: 50px;
    padding-right: 80px;
  }

  .intro-grid {
    grid-column-gap: 0px;
    flex-flow: column;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 1fr;
  }

  .text-part {
    text-align: center;
    width: 100%;
    margin-top: 0;
  }

  .image-part {
    background-position: 50% 0;
    width: 100%;
    padding-bottom: 20px;
    padding-left: 0;
  }

  .button-part {
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
  }

  .divider {
    width: 0;
  }

  .vorteile-grid-ananas {
    display: none;
  }

  .ananas-sticky-bg-container {
    z-index: 0;
    pointer-events: none;
    display: block;
    position: absolute;
    inset: 0%;
  }

  .sticky-bg {
    height: auto;
    position: sticky;
    top: 25vh;
  }

  .auszeichnungen-wrapper {
    grid-column-gap: 45px;
    grid-row-gap: 45px;
  }

  .auszeichnung-img {
    height: 90px;
  }

  .right-col-content-text {
    width: 100%;
    padding-bottom: 20px;
    padding-left: 0;
  }

  .left-col-content-text {
    width: 100%;
  }

  .two-col-layout-text, .immobilien-angebot-container, .immobilien-angebot-container.margin-bottom-80px.revert-order {
    flex-flow: column;
  }

  .left-col-angebot {
    border-top-right-radius: 6px;
    border-bottom-left-radius: 0;
    width: 100%;
  }

  .left-col-angebot.revert-order {
    border-top-left-radius: 6px;
    border-bottom-right-radius: 0;
  }

  .right-col-angebot {
    width: 100%;
  }

  .angebot-features.verkauft {
    grid-column-gap: 13px;
    grid-row-gap: 13px;
  }

  .angebot-bottom-status {
    border-bottom-left-radius: 0;
  }

  .angebot-bottom-status.revert-order {
    border-bottom-right-radius: 0;
  }

  .no-arrow-button-container {
    justify-content: center;
    align-items: center;
  }

  .immobilien-verkauft-container {
    flex-flow: column;
  }

  .immobilien-verkauft-container.margin-bottom-60px-40px-mobil {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  .image-col-verkauft {
    border-top-right-radius: 6px;
    border-bottom-left-radius: 0;
    width: 100%;
  }

  .verkauft-bottom-status {
    border-bottom-left-radius: 6px;
  }

  .text-col-verkauft {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .text-col-verkauft.revert-order {
    padding-left: 0;
  }

  .preis-vermarktungszeit-container {
    margin-bottom: 0;
  }

  .partnerschaften-band-wrapper {
    margin-left: -60px;
    margin-right: -60px;
    overflow: hidden;
  }

  .together-block {
    grid-column-gap: 45px;
    grid-row-gap: 45px;
  }

  .philosophie-header-grid {
    z-index: 1;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
    position: relative;
  }

  .philosophie-header-grid-ananas {
    width: 80px;
    padding-bottom: 40px;
  }

  .philosophie-header-grid-item {
    text-align: center;
  }

  .hero-section-philosophie {
    flex-flow: column;
    justify-content: center;
  }

  .fixed-with-text-block-820px.text-left-aligned-desktop {
    text-align: center;
  }

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

  .deininger-quote-wrapper {
    float: none;
  }

  .deininger-quote-block {
    max-width: 100%;
  }

  .deininger-quote-img-mobil {
    border-radius: 6px;
    margin-bottom: 60px;
    display: inline-block;
  }

  .hero-section-verkauf {
    flex-flow: column;
    justify-content: center;
  }

  .deininger-quote-verkauf-mobil-space-block {
    aspect-ratio: 1;
    display: block;
  }

  .immobilienfotografie-flex-box {
    flex-flow: column-reverse;
  }

  .immobilienfotografie-right {
    text-align: center;
    width: 100%;
    max-width: 820px;
    position: relative;
  }

  .home-staging-wrapper {
    flex-flow: column;
    margin-bottom: 30px;
  }

  .home-staging-col-left {
    text-align: center;
    width: 100%;
    max-width: 820px;
  }

  .home-staging-col-right {
    width: 100%;
  }

  .handle-wrapper {
    max-width: none;
    margin-right: 0;
  }

  .image-left {
    width: auto;
  }

  .handle-bar {
    height: 500px;
  }

  .home-staging-50-50 {
    flex-flow: column;
  }

  .home-staging-before-after-50-50 {
    width: 100%;
  }

  .one-third-wrapper {
    flex-flow: column;
  }

  .one-third-wrapper.reverse-cols {
    flex-flow: column-reverse;
  }

  .two-third {
    text-align: center;
    width: 100%;
  }

  .one-third {
    width: 100%;
  }

  .ananas-sticky-verkauf-bg-container {
    display: block;
  }

  .unterseite-ergebnisse-grid {
    z-index: 1;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    position: relative;
  }

  .hero-section-erbschaft {
    flex-flow: column;
    justify-content: center;
  }

  .header-erbschaft-quote-block {
    width: auto;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .erbschaft-quote-wrapper {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    flex-flow: column;
  }

  .erbschaft-quote-right-col {
    padding-left: 0;
  }

  .erbschaft-quote-left-col {
    width: 100%;
  }

  .image-with-rounded-bordert {
    aspect-ratio: 1;
    object-fit: cover;
    object-position: 50% 10%;
  }

  ._50-50-wrapper {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    flex-flow: column;
  }

  ._50-50-wrapper.revert-order {
    flex-flow: column-reverse;
  }

  .col-50-50-left-text {
    width: 100%;
    padding-right: 0;
  }

  .col-50-50-right-text {
    width: 100%;
    padding-left: 0;
  }

  .text-align-center-tablet-and-below {
    text-align: center;
  }

  .hero-section-kontakt {
    background-image: linear-gradient(90deg, #0006, #fff0 55%), url('../images/deininger-immobilien-immobilienmakler-ammersee-kontakt-michaela.webp');
    background-position: 0 0, 63%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
    flex-flow: column;
    justify-content: center;
  }
}

@media screen and (max-width: 767px) {
  .link-block-cta {
    align-self: stretch;
  }

  .right-side-buttons {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    margin-top: 25px;
    margin-left: 0;
  }

  .paragraph-9 {
    max-width: 100%;
  }

  .cta-button-container-header {
    width: 100%;
  }

  .div-block-30 {
    flex-direction: column;
  }

  .btn-container.quer-and-below {
    display: flex;
  }

  .btn-container.quer-and-below.margin-top-60px-40px-mobil {
    margin-top: 40px;
  }

  .btn-container.header-btns-kontakt {
    margin-top: 40px;
    margin-bottom: 0;
  }

  .h2.no-margin-bottom.deininger-quote-h2 {
    font-size: 26px;
    line-height: 32px;
  }

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

  .section.more-space-top {
    padding-top: 80px;
  }

  .section.more-space-bottom {
    padding-bottom: 80px;
  }

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

  .section.more-space-top-bottom.deininger-quote {
    padding-bottom: 60px;
  }

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

  .section.immobilienfotografie {
    background-image: url('../images/michaela-deininger-immobilienmakler-ammersee-immobilienfotografie-mobil.webp');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .vorteile-grid-item, .vorteile-grid-item.right-aligned {
    text-align: center;
  }

  .text-span-2 {
    word-break: break-all;
  }

  .footer-bottom-layout {
    padding-bottom: 40px;
  }

  .menu-items {
    border-right-style: none;
    border-right-width: 0;
    min-height: 450px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .full-screen-menu {
    flex-flow: column;
    justify-content: flex-start;
  }

  .footer-bottom-left {
    width: 100%;
  }

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

  .section-spacing {
    height: auto;
    padding-left: 30px;
    padding-right: 30px;
  }

  .hero-content-home {
    min-height: 350px;
  }

  .h1 {
    margin-bottom: 17px;
  }

  .h4 {
    font-size: 18px;
    line-height: 26px;
  }

  .privacy-hero-text {
    font-size: 14px;
  }

  .privacy-hero-title {
    font-size: 48px;
  }

  .style-gide-layout {
    flex-flow: column;
  }

  .colors-holder {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    display: flex;
  }

  .style-gide-left {
    z-index: 10;
    background-color: #fff;
    border-radius: 8px;
    max-width: 100%;
  }

  .text-span-4 {
    white-space: nowrap;
    word-break: keep-all;
  }

  .btn-primary {
    padding: 14px 20px;
  }

  .p-big.margin-bottom-60px-40px-mobil {
    margin-bottom: 40px;
  }

  .header-video-ananas {
    max-height: 200px;
  }

  .header-video-text {
    font-size: 28px;
    line-height: 34px;
  }

  .counter-single {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-right: 0;
  }

  .counter-single.border-2 {
    border-top-style: solid;
    border-bottom-style: solid;
    border-right-style: none;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .counter-single.border-1 {
    padding-top: 0;
    padding-bottom: 30px;
  }

  .counter-single.border-3 {
    padding-top: 30px;
    padding-bottom: 0;
  }

  .number {
    line-height: 1;
  }

  .counter-part {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: auto auto auto auto auto;
    grid-template-columns: 1fr;
    margin-bottom: 40px;
    padding-left: 0;
    padding-right: 0;
  }

  .count {
    justify-content: center;
    align-items: center;
  }

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

  .intro-grid {
    grid-template-rows: auto auto auto auto;
    grid-template-columns: minmax(0, 1fr);
  }

  .text-part {
    align-self: stretch;
    width: 100%;
  }

  .image-part {
    aspect-ratio: 2 / 3;
    background-position: 50%;
    width: 100%;
    max-width: 490px;
  }

  .auszeichnungen-wrapper {
    grid-column-gap: 45px;
    grid-row-gap: 45px;
  }

  .right-col-content-text {
    width: 100%;
  }

  .left-col-content-text {
    align-self: stretch;
    width: 100%;
  }

  .angebot-features.verkauft {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .angebot-bottom-status-text {
    font-size: 14px;
  }

  .immobilien-verkauft-container {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  .immobilien-verkauft-container.margin-bottom-60px-40px-mobil {
    margin-bottom: 40px;
  }

  .immobilien-verkauft-container.margin-bottom-60px {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  .immobilien-verkauft-container.margin-bottom-100px-quer-80px {
    margin-bottom: 80px;
  }

  .verkauft-bottom-status-text {
    font-size: 14px;
  }

  .partnerschaften-band-wrapper {
    margin-left: -30px;
    margin-right: -30px;
  }

  .partnerschaften-img {
    height: 105px;
  }

  .social-media-block-footer {
    flex-flow: wrap-reverse;
  }

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

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

  .philosophie-header-grid-item, .philosophie-header-grid-item.right-aligned {
    text-align: center;
  }

  .unterschied-grid {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-rows: auto auto auto auto auto auto;
    grid-template-columns: 1fr;
  }

  .deininger-quote-name {
    font-size: 14px;
    line-height: 22px;
  }

  .hero-section-verkauf {
    background-image: url('../images/ammersee-immobilienmakler-michaela-deininger-immobilienverkauf-header-mobil.webp');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .verkauf-two-column-wrapper {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    flex-flow: column;
    padding-top: 120px;
  }

  .verkauf-hero-left-side {
    text-align: center;
    width: 100%;
    max-width: 600px;
  }

  .verkauf-hero-right-side {
    align-self: center;
    width: 80%;
  }

  .checkmark-grid {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    margin-bottom: 10px;
  }

  .checkmark-grid.margin-to-buttom {
    margin-bottom: 10px;
  }

  .immobilienfotogtafie-left {
    width: 80%;
  }

  .unterseite-ergebnisse-grid {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  .ergebniise-unterseite-grid-item {
    text-align: center;
  }

  .hero-section-erbschaft {
    background-image: linear-gradient(#0000004d, #0000004d), url('../images/deininger-immobilien-immobilienmakler-ammersee-erbschaftsimmobilien_1.webp');
    background-position: 0 0, 50% 100%;
    justify-content: flex-start;
  }

  .header-erbschaft-quote-block {
    padding-left: 20px;
    padding-right: 20px;
  }

  .quote-icon-gold {
    width: 40px;
    height: 28px;
    top: -18px;
    right: 8px;
  }

  .hero-section-kontakt {
    background-image: linear-gradient(107deg, #0006, #fff0 24%), linear-gradient(0deg, #0006, #0006 41%, #0000 64%, #0000), url('../images/deininger-immobilien-immobilienmakler-ammersee-kontakt-michaela-mobil2.jpg');
    background-position: 0 0, 0 0, 50% 0;
    background-repeat: repeat, repeat, no-repeat;
    background-size: auto, auto, cover;
    justify-content: flex-end;
    align-items: center;
  }

  .kontakt-header-text-box {
    text-align: center;
    flex-flow: column;
    align-items: center;
    max-width: 100%;
    margin-bottom: 100px;
    display: flex;
  }

  .text-field-left-col-2 {
    max-width: 100%;
  }

  .column-18 {
    padding-bottom: 8px;
    padding-left: 0;
  }

  .column-19 {
    padding-left: 0;
  }

  .columns-8 {
    padding-bottom: 0;
  }

  .kontaktformular-wrap {
    width: 100%;
  }

  .column-20 {
    padding-bottom: 8px;
    padding-right: 0;
  }

  .mobile-deleted-text {
    display: none;
  }
}

@media screen and (max-width: 479px) {
  .link-block-cta {
    text-align: center;
    margin-top: 5px;
  }

  .right-side-buttons {
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    width: 100%;
    margin-top: 15px;
  }

  .cta-button-container-header {
    width: 100%;
  }

  .content-wrapper {
    padding-left: 25px;
    padding-right: 25px;
  }

  .btn-container {
    flex-flow: column-reverse;
    width: 100%;
  }

  .btn-container.header-btn {
    margin-bottom: 90px;
  }

  .h2 {
    margin-bottom: 20px;
    font-size: 32px;
    line-height: 38px;
  }

  .h2.centering.margin-bottom-60px {
    margin-bottom: 60px;
  }

  .footer-logo {
    max-width: 120px;
  }

  .hero-section {
    min-height: 100svh;
  }

  .nav-logo-svg {
    width: 100px;
  }

  .btn-wrap.nav-item-mobil {
    padding-left: 24px;
    padding-right: 24px;
  }

  .faq-text-wrap {
    width: 100%;
  }

  .footer-copyright-text.copyright-middle-padding {
    border-left-width: 0;
    border-right-width: 0;
  }

  .menu-button-mobile {
    margin-right: 20px;
  }

  .faq {
    border-radius: 2px;
  }

  .section-row.nav-bar-wrapper {
    height: 80px;
  }

  .menu-button-mobile-close {
    margin-right: 20px;
  }

  .footer-kontakt-item {
    flex: 1;
  }

  .footer-kontakt-item.map-padding-left {
    padding-left: 9px;
  }

  .testimonial-text {
    font-size: 16px;
    line-height: 24px;
  }

  .small-p.grey.margin-bottom-40px.margin-left-29px {
    margin-left: 29px;
  }

  .section-spacing {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-spacing.slider {
    padding-left: 10px;
    padding-right: 10px;
  }

  .topline {
    font-size: 14px;
    line-height: 22px;
  }

  .h3-footer {
    font-size: 20px;
    line-height: 30px;
  }

  .nav-bar {
    height: 80px;
    padding-left: 10px;
    padding-right: 60px;
  }

  .h1 {
    margin-bottom: 10px;
    font-size: 32px;
    line-height: 38px;
  }

  .style-gide-button-holder-layout {
    grid-template-columns: 1fr;
  }

  .style-gide-headings-holder-item {
    padding: 16px;
    overflow: hidden;
  }

  .colors-holder-item, .style-gide-right {
    max-width: 100%;
  }

  .privacy-hero-title {
    font-size: 36px;
  }

  .colors-holder {
    flex-flow: column;
  }

  .btn-primary {
    width: 100%;
  }

  .p-big {
    font-size: 16px;
    line-height: 24px;
  }

  .header-video-text {
    font-size: 23px;
    line-height: 28px;
  }

  .header-band {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .band-text {
    font-size: 20px;
  }

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

  .number {
    font-size: 40px;
  }

  .button-part {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column-reverse;
    width: 100%;
  }

  .auszeichnungen-wrapper {
    grid-column-gap: 28px;
    grid-row-gap: 28px;
  }

  .right-col-angebot {
    padding-left: 20px;
    padding-right: 20px;
  }

  .angebot-adresse-text {
    flex: 1;
  }

  .angebot-features {
    grid-column-gap: 7px;
    grid-row-gap: 7px;
    font-size: 14px;
    line-height: 22px;
  }

  .angebot-feature-item {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
  }

  .no-arrow-button-container {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column-reverse;
    width: 100%;
  }

  .preis-vermarktungszeit-container {
    grid-row-gap: 14px;
    font-size: 14px;
    line-height: 22px;
  }

  .partnerschaften-band-wrapper {
    margin-left: -20px;
    margin-right: -20px;
  }

  .social-media-block-footer {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    display: flex;
  }

  .together-block {
    grid-column-gap: 28px;
    grid-row-gap: 28px;
    flex-flow: wrap;
  }

  .hero-section-philosophie {
    min-height: 100svh;
  }

  .unterschied-grid {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .unterschied-grid-item {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .p-unterschied-grid-item {
    font-size: 16px;
    line-height: 24px;
  }

  .deininger-quote-block {
    border-left-style: none;
    padding-left: 0;
  }

  .hero-section-verkauf {
    background-position: 62%;
    min-height: 100svh;
  }

  .verkauf-two-column-wrapper {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    padding-top: 107px;
    padding-bottom: 90px;
  }

  .verkauf-hero-right-side {
    width: 100%;
  }

  .deininger-quote-verkauf-mobil-space-block {
    aspect-ratio: auto;
    min-height: 420px;
  }

  .checkmark-grid.margin-to-buttom {
    margin-bottom: 14px;
  }

  .custom-list-item {
    background-size: 26px;
    margin-bottom: 26px;
    padding-left: 39px;
    font-size: 16px;
    line-height: 24px;
  }

  .immobilienfotografie-flex-box {
    aspect-ratio: 3 / 2;
  }

  .immobilienfotogtafie-left {
    width: 100%;
  }

  .handle-bar {
    height: 300px;
  }

  .hero-section-erbschaft {
    min-height: 100svh;
  }

  .image-with-rounded-bordert {
    aspect-ratio: auto;
  }

  .zitat-text {
    font-size: 16px;
    line-height: 24px;
  }

  .hero-section-kontakt {
    min-height: 100svh;
  }

  .text-field-left-col-2 {
    padding-top: 25px;
    padding-bottom: 25px;
    font-size: 17px;
    line-height: 27px;
  }

  .select-field-2 {
    height: 52px;
  }

  .cta-button-2.submit.g-recaptcha {
    width: 100%;
  }

  .kontaktformular-wrap {
    border-style: none;
    padding-left: 0;
    padding-right: 0;
  }

  .textarea-3 {
    font-size: 17px;
    line-height: 27px;
  }

  .text-field-right-col-2 {
    margin-right: 0;
    padding-top: 25px;
    padding-bottom: 25px;
    font-size: 17px;
    line-height: 27px;
  }
}

#w-node-_06c63b73-2d8b-ce0f-8446-a6fc442ad75d-c247657f {
  grid-area: span 3 / span 1 / span 3 / span 1;
}

#w-node-_53f7842c-5df4-404b-3572-f59507eb796e-c247657f {
  place-self: start stretch;
}

#w-node-_8418aa49-dad5-5152-6baf-82a8d7434caf-c247657f {
  grid-area: 1 / 2 / 4 / 3;
  place-self: stretch center;
}

#w-node-_05e23805-198f-cf57-f7b0-ca0c622eeddd-c247657f {
  align-self: center;
}

#w-node-_05e23805-198f-cf57-f7b0-ca0c622eede5-c247657f, #w-node-_05e23805-198f-cf57-f7b0-ca0c622eedeb-c247657f, #w-node-_05e23805-198f-cf57-f7b0-ca0c622eedf1-c247657f {
  place-self: center;
}

#w-node-dc059e72-547d-00bd-acf1-b8f4641b0692-c247657f {
  grid-area: 2 / 1 / 3 / 3;
}

#w-node-_37647128-63ab-40fb-1233-ba9a5852ca93-5d368fa5 {
  align-self: center;
}

#w-node-_37647128-63ab-40fb-1233-ba9a5852ca9b-5d368fa5, #w-node-_37647128-63ab-40fb-1233-ba9a5852caa1-5d368fa5, #w-node-_37647128-63ab-40fb-1233-ba9a5852caa7-5d368fa5 {
  place-self: center;
}

#w-node-_37647128-63ab-40fb-1233-ba9a5852cab5-5d368fa5 {
  grid-area: 2 / 1 / 3 / 3;
}

#w-node-ea16943d-7f3a-df57-8275-7aa495e20996-5d368fa5 {
  align-self: center;
}

#w-node-ea16943d-7f3a-df57-8275-7aa495e2099e-5d368fa5, #w-node-ea16943d-7f3a-df57-8275-7aa495e209a4-5d368fa5, #w-node-ea16943d-7f3a-df57-8275-7aa495e209aa-5d368fa5 {
  place-self: center;
}

#w-node-ea16943d-7f3a-df57-8275-7aa495e209b8-5d368fa5 {
  grid-area: 2 / 1 / 3 / 3;
  justify-self: baseline;
}

#w-node-ea16943d-7f3a-df57-8275-7aa495e209be-5d368fa5 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_31c0fd94-65b6-8ae5-58fe-128ce549bd87-5d368fa5, #w-node-_31c0fd94-65b6-8ae5-58fe-128ce549bd8d-5d368fa5, #w-node-_31c0fd94-65b6-8ae5-58fe-128ce549bd93-5d368fa5, #w-node-_31c0fd94-65b6-8ae5-58fe-128ce549bdb4-5d368fa5, #w-node-_31c0fd94-65b6-8ae5-58fe-128ce549bdba-5d368fa5, #w-node-_31c0fd94-65b6-8ae5-58fe-128ce549bdc0-5d368fa5 {
  place-self: center;
}

#w-node-_0d36578b-37d8-3a13-05af-d19d113a19af-76701dac {
  align-self: center;
}

#w-node-_0d36578b-37d8-3a13-05af-d19d113a199a-76701dac {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: stretch center;
}

#w-node-_0d36578b-37d8-3a13-05af-d19d113a19b4-76701dac, #w-node-c7b62d86-03c5-8139-841d-1eb7a3f22cfb-92f73ca2 {
  align-self: center;
}

#w-node-c7b62d86-03c5-8139-841d-1eb7a3f22d03-92f73ca2, #w-node-c7b62d86-03c5-8139-841d-1eb7a3f22d09-92f73ca2, #w-node-c7b62d86-03c5-8139-841d-1eb7a3f22d0f-92f73ca2 {
  place-self: center;
}

#w-node-c7b62d86-03c5-8139-841d-1eb7a3f22d1d-92f73ca2 {
  grid-area: 2 / 1 / 3 / 3;
  align-self: baseline;
}

#w-node-c7b62d86-03c5-8139-841d-1eb7a3f22d23-92f73ca2 {
  grid-area: 1 / 1 / 2 / 2;
}

@media screen and (min-width: 1280px) {
  #w-node-dc059e72-547d-00bd-acf1-b8f4641b0692-c247657f {
    grid-column-end: 2;
  }

  #w-node-_05e23805-198f-cf57-f7b0-ca0c622eedd7-c247657f {
    grid-area: span 2 / span 1 / span 2 / span 1;
  }

  #w-node-_37647128-63ab-40fb-1233-ba9a5852cab5-5d368fa5 {
    grid-column-end: 2;
  }

  #w-node-_37647128-63ab-40fb-1233-ba9a5852cabb-5d368fa5 {
    grid-area: span 2 / span 1 / span 2 / span 1;
  }

  #w-node-ea16943d-7f3a-df57-8275-7aa495e209b8-5d368fa5 {
    grid-column: 2 / 3;
  }

  #w-node-ea16943d-7f3a-df57-8275-7aa495e209be-5d368fa5 {
    grid-area: 1 / 1 / 3 / 2;
  }

  #w-node-c7b62d86-03c5-8139-841d-1eb7a3f22d1d-92f73ca2 {
    grid-column: 2 / 3;
  }

  #w-node-c7b62d86-03c5-8139-841d-1eb7a3f22d23-92f73ca2 {
    grid-area: 1 / 1 / 3 / 2;
  }
}

@media screen and (max-width: 991px) {
  #w-node-_06c63b73-2d8b-ce0f-8446-a6fc442ad75b-c247657f {
    grid-area: span 1 / span 3 / span 1 / span 3;
    align-self: auto;
  }

  #w-node-_06c63b73-2d8b-ce0f-8446-a6fc442ad75d-c247657f {
    grid-area: 3 / 1 / 4 / 3;
  }

  #w-node-_53f7842c-5df4-404b-3572-f59507eb7979-c247657f, #w-node-_53f7842c-5df4-404b-3572-f59507eb7983-c247657f {
    place-self: auto;
  }

  #w-node-_53f7842c-5df4-404b-3572-f59507eb798d-c247657f {
    place-self: center stretch;
  }

  #w-node-_375ec9f6-8650-b1de-6d63-cf7e8c257839-c247657f {
    grid-area: 2 / 1 / 3 / 4;
  }

  #w-node-dc059e72-547d-00bd-acf1-b8f4641b0692-c247657f {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_05e23805-198f-cf57-f7b0-ca0c622eedd7-c247657f {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_37647128-63ab-40fb-1233-ba9a5852cab5-5d368fa5 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_37647128-63ab-40fb-1233-ba9a5852cabb-5d368fa5 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-ea16943d-7f3a-df57-8275-7aa495e209b8-5d368fa5 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-ea16943d-7f3a-df57-8275-7aa495e209be-5d368fa5 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_0d36578b-37d8-3a13-05af-d19d113a19af-76701dac {
    grid-area: span 1 / span 1 / span 1 / span 1;
    place-self: auto center;
  }

  #w-node-_0d36578b-37d8-3a13-05af-d19d113a199a-76701dac {
    grid-area: 1 / 1 / 2 / 2;
    align-self: center;
  }

  #w-node-_0d36578b-37d8-3a13-05af-d19d113a19b4-76701dac {
    justify-self: center;
  }

  #w-node-c7b62d86-03c5-8139-841d-1eb7a3f22d1d-92f73ca2 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-c7b62d86-03c5-8139-841d-1eb7a3f22d23-92f73ca2 {
    grid-area: 1 / 1 / 2 / 2;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_06c63b73-2d8b-ce0f-8446-a6fc442ad75b-c247657f {
    grid-column: span 1 / span 1;
  }

  #w-node-_06c63b73-2d8b-ce0f-8446-a6fc442ad75d-c247657f {
    grid-area: 4 / 1 / 5 / 2;
    justify-self: center;
  }

  #w-node-_53f7842c-5df4-404b-3572-f59507eb7979-c247657f, #w-node-_53f7842c-5df4-404b-3572-f59507eb7983-c247657f, #w-node-_53f7842c-5df4-404b-3572-f59507eb798d-c247657f {
    align-self: auto;
  }

  #w-node-_375ec9f6-8650-b1de-6d63-cf7e8c257839-c247657f {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-dc059e72-547d-00bd-acf1-b8f4641b0692-c247657f, #w-node-_37647128-63ab-40fb-1233-ba9a5852cab5-5d368fa5, #w-node-ea16943d-7f3a-df57-8275-7aa495e209b8-5d368fa5 {
    grid-column: span 1 / span 1;
  }
}


@font-face {
  font-family: 'Alga';
  src: url('../fonts/Alga-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: 'Barlow';
  src: url('../fonts/Barlow-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: 'Barlow';
  src: url('../fonts/Barlow-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: block;
}