:root {
  --accent: #b7c839;
  --green: #488214;
  --orange: #f06d11;
  --dark: #444;
  --text: #222;
  --glass: rgba(255, 255, 255, 0.86);
  --panel: rgba(255, 255, 255, 0.93);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Roboto, sans-serif;
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text);
  background: #ccc url('assets/images/bg.jpg') no-repeat center fixed;
  background-size: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: min(1200px, 94vw);
  margin: 0 auto;
}

.top-ribbon {
  display: none;
}

.ribbon-inner {
  min-height: 30px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.75rem;
}

.site-header {
  background: #fff;
  margin: 10px auto 0;
  min-height: 140px;
  max-width: 1200px;
  width: min(1200px, 94vw);
  box-shadow: 1px 1px 6px #b3b3b3;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-header .container {
  width: 100%;
}

.nav-wrap {
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.4rem;
  padding: 0 18px;
}

.logo img {
  width: 300px;
  margin-top: -10px;
  display: block;
}

.nav-wrap nav {
  flex: 1;
  margin-left: 2cm;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 2rem;
  color: #333;
}

.main-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: 'Advent Pro', sans-serif;
}

.main-menu > li {
  position: relative;
}

.main-menu > li > a {
  display: block;
  font-size: 1.17rem;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  font-weight: 500;
  padding-bottom: 25px;
  white-space: nowrap;
}

.main-menu > li > a:hover,
.main-menu > li > a.is-active {
  color: var(--orange);
}

.main-menu > li > a.is-active {
  border-bottom: 2px solid var(--orange);
}

.submenu {
  display: none;
  position: absolute;
  top: calc(100% - 15px);
  left: 0;
  min-width: 250px;
  list-style: none;
  margin: 0;
  padding: 0.35rem;
  background: rgba(0, 0, 0, 0.8);
}

.submenu li {
  margin: 5px 0;
}

.submenu a {
  display: block;
  background: #444;
  color: #fff;
  padding: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.86rem;
  font-family: 'Advent Pro', sans-serif;
  font-weight: 600;
}

.has-submenu:hover .submenu {
  display: block;
}

.fixed-action {
  position: fixed;
  right: 0;
  width: 50px;
  height: 50px;
  background: var(--green);
  color: #fff;
  z-index: 1200;
  display: grid;
  place-items: center;
}

.fixed-action .fa {
  font-size: 2em;
}

.action-mail {
  top: 100px;
}

.action-phone {
  top: 155px;
}

.page {
  background: transparent;
  margin: 0 auto;
  max-width: 1200px;
  position: relative;
}

.hero {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: translateX(100%);
  transition: transform 0.95s ease;
  z-index: 1;
}

.slide.is-active {
  transform: translateX(0);
  z-index: 2;
}

.slide.is-leaving {
  transform: translateX(-100%);
  z-index: 3;
}

.hero-overlay {
  position: absolute;
  top: 92px;
  left: 121px;
  color: #fff;
  background: transparent;
  padding: 12px 30px;
  z-index: 3;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}

.hero-overlay h1,
.hero-overlay h2 {
  margin: 0;
  font-family: 'Roboto Condensed', sans-serif;
  text-transform: uppercase;
}

.hero-overlay h1 {
  font-size: 1.9rem;
  letter-spacing: 6px;
  font-weight: 500;
}

.hero-overlay h2 {
  margin-top: 8px;
  font-size: 1rem;
  letter-spacing: 2px;
  font-weight: 500;
}

.intro-section {
  display: grid;
  grid-template-columns: 70fr 30fr;
  gap: 1rem;
  margin-top: 0.9cm;
  padding-bottom: 10px;
}

.card-white {
  background: var(--panel);
  box-shadow: 1px 1px 4px #888;
  padding: 20px 22px 30px 30px;
}

.intro-main h2,
.page-content h2,
.panel h3,
.contact-side h3,
.legal-body h2,
.legal-body h3 {
  margin-top: 0;
  font-family: 'Roboto Condensed', sans-serif;
  text-transform: uppercase;
}

.intro-main h2 {
  color: var(--accent);
  font-size: 1.6rem;
  letter-spacing: 1px;
  font-weight: 300;
}

.page-content h1,
.page-content h2,
.page-content h3 {
  color: var(--accent);
  font-family: 'Roboto Condensed', sans-serif;
  text-transform: uppercase;
  font-size: 1.6rem;
  letter-spacing: 1px;
  font-weight: 300;
}

.intro-main p,
.contact-side p {
  text-align: justify;
}

.intro-image {
  float: left;
  max-width: 350px;
  margin: 0 20px 12px -75px;
}

.schrift {
  color: var(--green);
  font-family: Caveat, cursive;
  font-size: 1.25em;
}

.contact-side h3 {
  color: #000;
  border-bottom: 0;
  padding-bottom: 0;
  font-weight: 300;
  letter-spacing: 0.5px;
  font-size: 1.17em;
}

.contact-side img {
  display: block;
  width: 100%;
  margin-bottom: 0.75rem;
}

.zoom-link {
  position: relative;
  display: block;
}

.zoom-link .andrea-zoom-in {
  position: absolute;
  right: 10px;
  bottom: 14px;
  width: 34px;
  height: 34px;
  background: url('assets/images/zoom.svg') no-repeat center;
  background-size: 100% 100%;
  pointer-events: none;
  transition: transform 0.2s ease;
}

.zoom-link:hover .andrea-zoom-in {
  transform: scale(1.06);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.87);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: min(1000px, 92vw);
  max-height: 86vh;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.35);
}

.lightbox-close {
  position: absolute;
  top: 12px;
  right: 18px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 2.2rem;
  cursor: pointer;
}

.contact-side a {
  color: #222;
  font-weight: 400;
}

.contact-row {
  position: relative;
  margin: 0 0 0.35rem;
  padding-left: 44px;
  color: #222;
  font-weight: 400;
}

.contact-note {
  color: #222;
  font-weight: 400;
}

.contact-row::before {
  position: absolute;
  left: 0;
  top: -1px;
  width: 34px;
  text-align: center;
  color: var(--accent);
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
}

.contact-tel::before {
  content: "\f098";
  font-size: 24px;
}

.contact-fax::before {
  content: "\f1ac";
  font-size: 20px;
}

.contact-mail::before {
  content: "\f0e0";
  font-size: 20px;
}

.intro-combined {
  background: var(--panel);
  box-shadow: 1px 1px 4px #888;
  padding: 20px 22px 30px 30px;
  column-gap: 1.5cm;
  margin-top: 3mm;
}

.intro-combined .card-white {
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.feature-band {
  margin-top: 3mm;
  width: min(1200px, 94vw);
  margin-left: auto;
  margin-right: auto;
  border-top: 5px solid var(--accent);
  border-bottom: 5px solid var(--accent);
  background: rgba(90, 90, 90, 0.8);
  padding: 28px 0 22px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  text-align: center;
}

.feature-icon {
  width: 100px;
  height: 100px;
  margin: 0.9cm auto 0.75rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  border: 4px solid #fff;
  font-size: 2rem;
}

.feature-title {
  display: block;
  color: var(--accent);
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.feature-item:hover .feature-icon {
  background: #fff;
  color: var(--accent);
}

.gallery-strip {
  background: rgba(255, 255, 255, 0.8);
  padding: 0;
}

.thumbs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.5px;
}

.thumbs img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.sub-hero {
  height: 320px;
  background-size: cover;
  background-position: center;
  position: relative;
}

body:not(.leistungen-page) .sub-hero {
  height: 600px;
  background-position: center;
}

.sub-hero-overlay {
  position: absolute;
  left: 60px;
  bottom: 40px;
  background: transparent;
  color: #fff;
  padding: 12px 20px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}

.sub-hero-overlay h1 {
  margin: 0;
  font-family: 'Roboto Condensed', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.page-content {
  padding: 0 0 2rem;
  margin-top: 3mm;
}

body:not(.leistungen-page) .page-content {
  background: var(--panel);
  box-shadow: 1px 1px 4px #888;
  padding: 20px 22px 30px 30px;
}

body:not(.leistungen-page) .page-content .panel,
body:not(.leistungen-page) .page-content .card-white {
  background: transparent;
  box-shadow: none;
  border-right: 0;
  padding: 0;
}

body:not(.leistungen-page) .page-content.content-with-aside {
  column-gap: 1.5cm;
}

.content-with-aside {
  display: grid;
  grid-template-columns: 70fr 30fr;
  gap: 1rem;
}

.panel {
  background: #fff;
  border-right: 8px solid #ccc;
  padding: 14px 16px;
}

.panel h2,
.panel h3 {
  color: var(--green);
}

.page-content .panel:not(.legal-body) > h2:first-of-type,
.leistungen-page .leistungen-lead,
.vorsorge-page .vorsorge-lead {
  color: #222;
  text-transform: none;
  font-size: calc(1.6rem - 2px);
  letter-spacing: 0;
  line-height: 1.15;
  font-weight: 400;
  margin-top: 18px;
}

.panel h1 {
  margin: 0 0 0.45rem;
}

.panel ul {
  margin-top: 0.8rem;
  margin-bottom: 0.8rem;
}

.panel li {
  margin: 0.35rem 0;
}

.panel hr {
  border: 0;
  border-top: 1px solid #bdbdbd;
}

.leistungen-page .sub-hero-overlay h1 {
  font-size: 2rem;
  letter-spacing: 1px;
  text-transform: none;
  line-height: 1.2;
}

.leistungen-page .sub-hero {
  height: 600px;
  background-position: center;
}

.leistungen-page .panel {
  min-height: 620px;
}

.leistungen-page .panel ul {
  list-style: none;
  padding-left: 0;
  display: table;
}

.leistungen-page .panel li::before {
  content: "\f0da";
  color: #b5cb28;
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  display: inline-block;
  width: 1em;
}

.leistungen-page .bild {
  max-width: 350px;
  height: auto;
  float: left;
  margin-right: 20px;
  margin-bottom: 10px;
  margin-top: 11px;
  margin-left: 0;
  display: block;
}

.leistungen-page .page-content {
  padding-top: 0;
}

.leistungen-page .leistungen-combined {
  background: var(--panel);
  box-shadow: 1px 1px 4px #888;
  padding: 0 20px 26px 24px;
  gap: 1rem;
  overflow: visible;
}

.leistungen-page .leistungen-combined .panel,
.leistungen-page .leistungen-combined .card-white {
  background: transparent;
  box-shadow: none;
  border-right: 0;
}

.leistungen-page .leistungen-combined .panel {
  padding: 25px 16px 0;
}

.leistungen-page .leistungen-combined .card-white {
  padding: 48px 0 0;
}

.leistungen-page .panel h1 {
  margin-bottom: 0.8rem;
}

.leistungen-page .leistungen-combined .contact-side {
  padding: 48px 0 0;
}

.vorsorge-page .bild {
  max-width: 350px;
  height: auto;
  float: left;
  margin-right: 20px;
  margin-bottom: 10px;
  margin-top: 11px;
  margin-left: 0;
  display: block;
}

.vorsorge-page .sub-hero-overlay {
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
}

.vorsorge-page .panel ul {
  list-style: none;
  padding-left: 0;
  display: table;
}

.vorsorge-page .panel li::before {
  content: "\f0da";
  color: #b5cb28;
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  display: inline-block;
  width: 1em;
}

.dokumente-page .panel ul {
  list-style: none;
  padding-left: 0;
  display: table;
}

.dokumente-page .panel li::before {
  content: "\f0da";
  color: #b5cb28;
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  display: inline-block;
  width: 1em;
}

.dokumente-page .dokumente-subhead {
  color: #222;
  text-transform: none;
  font-size: 1.18rem;
  letter-spacing: 0;
  font-weight: 400;
  margin-top: 1rem;
  margin-bottom: 0.4rem;
}

.dokumente-page .download-link {
  color: #222;
  font-weight: 400;
}

.dokumente-page .download-mark {
  color: var(--green);
  font-weight: 700;
}

.ruheforste-page .ruheforste-overview {
  padding-top: 18px;
}

.ruheforste-page .ruheforste-intro h2 {
  margin: 0;
  text-align: center;
  letter-spacing: 2px;
  color: var(--accent);
  font-size: 1.6rem;
  font-weight: 300;
}

.ruheforste-page .ruheforste-intro {
  position: relative;
  top: -0.5cm;
}

.ruheforste-sep {
  width: 92px;
  height: 2px;
  background: #c7c7c7;
  margin: 12px auto 18px;
}

.ruheforste-page .ruheforste-cards {
  gap: 1.25rem;
}

.ruheforste-page .page-content .ruheforste-main {
  padding-top: 1cm !important;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
}

.ruheforste-page .forest-card {
  border-right: 0;
  padding: 0;
}

.forest-thumb-link {
  display: block;
  position: relative;
}

.forest-thumb {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.ruheforste-page .forest-titlebar {
  margin: 0;
  position: absolute;
  left: 0;
  right: 0;
  width: auto;
  transform: none;
  bottom: 14px;
  min-height: 30px;
  padding: 6px 16px;
  background: var(--accent);
  color: #fff;
  font-size: calc(1.6rem - 4px);
  font-weight: 300;
  text-transform: none;
  letter-spacing: 1.4px;
  text-align: center;
  z-index: 2;
}

.eberswalde-page .bild {
  max-width: 385px;
  height: auto;
  float: left;
  margin-right: 20px;
  margin-bottom: 10px;
  margin-top: 11px;
  margin-left: 0;
  display: block;
}

.eberswalde-page .eberswalde-lead,
.nauen-page .nauen-lead {
  color: #222;
  text-transform: none;
  letter-spacing: 0;
  font-size: calc(1.6rem - 2px);
  line-height: 1.15;
  font-weight: 400;
  margin-top: 18px;
}

.nauen-page .bild {
  max-width: 385px;
  height: auto;
  float: left;
  margin-right: 20px;
  margin-bottom: 10px;
  margin-top: 11px;
  margin-left: 0;
  display: block;
}

.cards-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.page-link {
  display: inline-block;
  color: var(--green);
  border-bottom: 1px solid var(--green);
  font-family: 'Roboto Condensed', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.kontaktformular {
  margin-top: 1rem;
}

.form-card {
  background: #fff;
  border-right: 8px solid #ccc;
  padding: 14px;
}

.form-card h3 {
  color: var(--green);
  margin-top: 0;
}

form {
  display: grid;
  gap: 0.65rem;
}

.form-row {
  display: grid;
  grid-template-columns: 170px 1fr;
  align-items: center;
  gap: 0.75rem;
}

.form-row-textarea {
  align-items: start;
}

label {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 0.95rem;
}

input,
textarea,
button {
  font: inherit;
}

input,
textarea {
  border: 1px solid #d2d2d2;
  padding: 0.55rem 0.65rem;
  border-radius: 7px;
}

.checkline {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-left: calc(170px + 0.75rem);
}

.submit-row {
  margin-left: calc(170px + 0.75rem);
  width: calc(100% - (170px + 0.75rem));
  display: flex;
  justify-content: center;
}

.checkline input {
  width: auto;
  margin-top: 0.2rem;
}

button[type='submit'] {
  border: 0;
  background: var(--accent);
  color: #fff;
  width: fit-content;
  padding: 0.6rem 1rem;
  text-transform: uppercase;
  font-family: 'Roboto Condensed', sans-serif;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: 7px;
}

@media (max-width: 760px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .checkline {
    margin-left: 0;
  }

  .submit-row {
    margin-left: 0;
    width: 100%;
  }
}

.legal-body h2 {
  color: var(--green);
}

.legal-body h3 {
  color: #333;
  margin-top: 1.4rem;
}

.impressum-page .legal-title,
.datenschutz-page .legal-title {
  color: var(--accent);
  text-transform: none;
  letter-spacing: 1px;
  font-weight: 300;
}

.impressum-page .legal-title span,
.datenschutz-page .legal-title span {
  color: #111;
  font-size: 0.56em;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  margin-left: 8px;
}

.impressum-page .legal-body h3 {
  color: #111;
  text-transform: none;
  letter-spacing: 0;
  font-size: 1rem;
  font-weight: 700;
  margin-top: 1rem;
  margin-bottom: 0.35rem;
}

.datenschutz-page .legal-body p > strong {
  color: #111;
  font-size: 1rem;
  font-weight: 700;
}

.impressum-page .adobe-stock-original {
  background: transparent;
  padding: 24px 28px 34px;
  margin: 0.4rem 0 1rem;
}

.impressum-page .adobe-stock-original h4 {
  margin: 0 0 20px;
  font-size: 1.8rem;
  font-weight: 700;
  color: #111;
}

.impressum-page .adobe-stock-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 28px 22px;
}

.impressum-page .adobe-stock-table td {
  width: 33.333%;
  vertical-align: top;
}

.impressum-page .adobe-stock-table img {
  width: 100%;
  max-width: 300px;
  height: 170px;
  object-fit: cover;
  display: block;
}

.impressum-page .adobe-stock-table .credit {
  font-size: 0.95rem;
  line-height: 1.2;
  color: #222;
  padding-top: 2px;
}

@media (max-width: 760px) {
  .impressum-page .adobe-stock-original h4 {
    font-size: 1.35rem;
  }

  .impressum-page .adobe-stock-table {
    border-spacing: 10px 12px;
  }

  .impressum-page .adobe-stock-table img {
    height: 110px;
  }
}

.site-footer {
  background: #444;
  color: #fff;
  padding: 2rem 0;
  width: min(1200px, 94vw);
  margin-left: auto;
  margin-right: auto;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 2fr 1fr;
  align-items: center;
  gap: 1rem;
  padding-left: 24px;
  padding-right: 24px;
}

.footer-links {
  justify-self: center;
  display: flex;
  gap: 1.25rem;
}

.footer-links a:hover,
.to-top:hover {
  color: var(--accent);
}

.to-top {
  justify-self: end;
}

@media (max-width: 1200px) {
  .logo img {
    width: 240px;
  }

  .main-menu > li > a {
    font-size: 0.95rem;
    letter-spacing: 0.8px;
  }

  .hero {
    height: 520px;
  }

  .hero-overlay {
    left: 60px;
  }

  .feature-title {
    font-size: 1rem;
  }
}

@media (max-width: 1080px) {
  .fixed-action {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  .main-menu {
    position: absolute;
    top: 140px;
    right: 3vw;
    left: 3vw;
    background: #fff;
    border: 1px solid #ddd;
    padding: 0.75rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
  }

  .main-menu.open {
    display: flex;
  }

  .main-menu > li > a {
    padding: 0.45rem 0;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
  }

  .nav-wrap nav {
    margin-left: 0;
  }

  .submenu {
    position: static;
    display: block;
    padding: 0;
    background: transparent;
    margin-top: 0.35rem;
  }

  .submenu a {
    background: #efefef;
    color: #222;
  }

  .intro-section,
  .content-with-aside,
  .cards-2 {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .intro-image {
    float: none;
    margin: 0 0 12px;
    max-width: 300px;
  }

  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links,
  .to-top {
    justify-self: center;
  }
}

@media (max-width: 769px) {
  body {
    font-size: 1rem;
    line-height: 1.6;
  }

  .top-ribbon {
    display: none;
  }

  .site-header {
    margin: 0 auto;
  }

  .hero {
    height: 380px;
  }

  .hero-overlay {
    left: 14px;
    top: 50px;
    padding: 10px 14px;
  }

  .hero-overlay h1 {
    font-size: 1rem;
    letter-spacing: 0;
  }

  .hero-overlay h2 {
    font-size: 0.75rem;
    letter-spacing: 0;
  }

  .page-content {
    padding-left: 16px;
    padding-right: 16px;
  }

  .panel,
  .contact-side {
    padding: 14px 14px 18px;
  }

  .panel p,
  .legal-body p,
  .contact-side p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .sub-hero {
    height: 220px;
  }

  body:not(.leistungen-page) .sub-hero {
    height: 380px;
  }

  .sub-hero-overlay {
    left: 14px;
    bottom: 14px;
  }

  .leistungen-page .sub-hero-overlay h1 {
    font-size: 1.15rem;
    line-height: 1.25;
  }

  .page-content .panel:not(.legal-body) > h2:first-of-type,
  .leistungen-page .leistungen-lead,
  .vorsorge-page .vorsorge-lead {
    font-size: 1.35rem;
  }

  .leistungen-page .sub-hero {
    height: 380px;
  }

  .leistungen-page .bild {
    max-width: 300px;
    margin-top: 6px;
    margin-left: 0;
  }

  .vorsorge-page .bild {
    max-width: 300px;
    margin-top: 6px;
    margin-left: 0;
  }

  .eberswalde-page .bild {
    max-width: 330px;
    margin-top: 6px;
    margin-left: 0;
  }

  .nauen-page .bild {
    max-width: 330px;
    margin-top: 6px;
    margin-left: 0;
  }

  .forest-thumb {
    height: 220px;
  }

  input,
  textarea,
  select {
    font-size: 16px;
  }
}

@media (max-width: 530px) {
  .site-header {
    min-height: 118px;
  }

  .nav-wrap {
    min-height: 118px;
  }

  .logo img {
    width: 190px;
    margin-top: 0;
  }

  .main-menu {
    top: 118px;
  }

  .main-menu > li > a {
    font-size: 1rem;
    line-height: 1.35;
  }

  .thumbs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .thumbs img {
    height: 125px;
  }

  .feature-title {
    font-size: 0.9rem;
  }

  .feature-icon {
    width: 82px;
    height: 82px;
    font-size: 1.5rem;
  }

  .feature-band {
    padding-top: 1.1rem;
    padding-bottom: 1.1rem;
  }

  .leistungen-page .bild {
    max-width: 100%;
    margin-left: 0;
    float: none;
  }

  .vorsorge-page .bild {
    max-width: 100%;
    margin-left: 0;
    float: none;
  }

  .eberswalde-page .bild {
    max-width: 100%;
    margin-left: 0;
    float: none;
  }

  .nauen-page .bild {
    max-width: 100%;
    margin-left: 0;
    float: none;
  }

  .ruheforste-page .forest-titlebar {
    bottom: 10px;
  }
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
