:root {
  --indian-red: #cb5439;
  --white: white;
  --black: #333;
}

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

body {
  color: var(--indian-red);
  font-family: Sofia Sans Semi Condensed, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
}

h1 {
  color: var(--indian-red);
  margin-top: 0;
  margin-bottom: 60px;
  font-size: 56px;
  font-weight: 400;
  line-height: 64px;
}

h2 {
  color: var(--indian-red);
  margin-top: 0;
  margin-bottom: 35px;
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
}

a {
  color: var(--indian-red);
  text-decoration: none;
  transition: color .2s;
}

a:hover {
  color: var(--white);
}

.header {
  z-index: 100;
  background-color: var(--white);
  align-items: flex-end;
  height: 200px;
  min-height: 100px;
  max-height: 180px;
  padding-bottom: 25px;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.header.fixed {
  position: static;
}

.lg-container {
  flex-direction: row;
  align-items: stretch;
  max-width: 950px;
  display: flex;
}

.lg-container.hero {
  z-index: 100;
  flex: 1;
  justify-content: space-between;
}

.lg-container.wrapper {
  background-color: #a75b51;
  border-radius: 10px;
  justify-content: center;
  padding-top: 75px;
  padding-bottom: 85px;
}

.lg-container.cookie {
  flex: 1;
  justify-content: space-between;
}

.logo-wrapper {
  width: 240px;
  margin-right: auto;
  transition: opacity .2s, color .2s;
}

.logo-wrapper:hover {
  opacity: .75;
}

.logo-wrapper.w--current {
  cursor: pointer;
  transition: opacity .2s, color .2s;
}

.header-sub-wrapper {
  flex: 0 auto;
  width: 250px;
}

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

.claim {
  padding-top: 120px;
  padding-bottom: 135px;
}

.md-container {
  justify-content: center;
  max-width: 825px;
}

.md-container.inside {
  flex: 1;
}

.bold-text {
  font-size: 56px;
  font-weight: 600;
}

.team {
  padding-top: 100px;
  padding-bottom: 95px;
}

.team.color {
  background-color: #cb543914;
  padding-top: 120px;
  padding-bottom: 110px;
}

.lead {
  margin-bottom: 0;
  font-size: 22px;
  font-weight: 400;
  line-height: 32px;
}

.angebote {
  padding-top: 130px;
  padding-bottom: 120px;
}

.sm-container {
  max-width: 780px;
  position: relative;
}

.angebot-wrapper {
  padding-top: 25px;
  padding-bottom: 40px;
}

.btn-primary {
  color: #fff;
  letter-spacing: .8px;
  background-color: #a75b51;
  border: 2px solid #a75b51;
  border-radius: 200px;
  flex: 0 auto;
  align-items: center;
  height: 65px;
  padding: 20px 55px;
  font-weight: 500;
  line-height: 0;
  transition: border-color .3s, color .4s, background-color .4s;
  display: flex;
}

.btn-primary:hover {
  color: #a75b51;
  background-color: #0000;
}

.btn-primary.negativ {
  box-shadow: none;
  color: #fff;
  letter-spacing: .8px;
  background-color: #0000;
  border-color: #fff;
}

.btn-primary.negativ:hover {
  color: #a75b51;
  background-color: #fff;
}

.btn-wrapper {
  justify-content: center;
  margin-top: 70px;
  display: flex;
}

.btn-wrapper.flex-left {
  justify-content: flex-start;
}

.lead-xl {
  margin-bottom: 0;
  font-size: 38px;
  font-weight: 300;
  line-height: 52px;
}

.negativ {
  color: #fff;
}

.footer {
  background-color: var(--indian-red);
  color: #fff;
  flex-direction: column;
  flex: 0 auto;
  justify-content: center;
  align-self: stretch;
  align-items: stretch;
  padding-top: 60px;
  padding-bottom: 70px;
}

.footer-grid {
  grid-column-gap: 45px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
  grid-auto-rows: min-content;
  align-items: end;
  min-width: 100%;
}

.footer-text {
  font-size: 17px;
  line-height: 28px;
}

.footer-text.right {
  margin-left: auto;
}

.bold-footer {
  font-weight: 700;
}

.footer-link {
  color: #fff;
  text-decoration: none;
  transition: color .2s, box-shadow .2s, color .2s;
  box-shadow: inset 0 -1px #fff;
}

.footer-link:hover {
  color: #f7efee;
  box-shadow: inset 0 0 #fff;
}

.footer-link.team {
  box-shadow: inset 0 -1px 0 0 var(--indian-red);
  color: var(--indian-red);
  cursor: pointer;
  padding-top: 0;
  padding-bottom: 0;
  transition: color .2s, box-shadow .2s;
  display: inline;
}

.footer-link.team:hover {
  box-shadow: inset 0 0 0 0 var(--black);
  color: #3336;
}

.heading {
  font-size: 21px;
}

.team-grid {
  grid-column-gap: 50px;
  grid-row-gap: 45px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
}

.team-img-wrapper {
  justify-content: center;
  align-items: center;
  display: flex;
  overflow: hidden;
}

.img {
  background-color: #fff;
}

.img.google-map {
  object-fit: cover;
}

.name {
  color: var(--indian-red);
  margin-top: 20px;
  font-size: 26px;
  line-height: 30px;
}

.location-wrapper {
  grid-column-gap: 55px;
  grid-row-gap: 35px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.loc-img-wrapper {
  overflow: hidden;
}

.google-map {
  transition: opacity .2s, color .2s;
  display: flex;
  overflow: hidden;
}

.google-map:hover {
  opacity: .74;
}

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

.link-wrapper {
  cursor: pointer;
  margin-left: 50px;
}

.underline {
  background-color: var(--indian-red);
  cursor: pointer;
  width: 0%;
  height: 2px;
  margin-top: 2px;
  transition: color .2s;
  display: block;
}

.underline:hover, .underline.w--current {
  width: 100%;
}

.link-text {
  cursor: pointer;
  font-size: 22px;
  transition: color .2s;
}

.link-text:hover {
  color: var(--indian-red);
}

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

.header-trigger {
  z-index: -10000;
  height: 200px;
  position: absolute;
  inset: 0% 0% auto;
}

.page-wrapper {
  flex-direction: column;
}

.cookie-banner {
  background-color: var(--indian-red);
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 35px;
  display: none;
  position: fixed;
  inset: auto 0% 0%;
}

.cookie-close {
  color: #fff;
  cursor: pointer;
  align-self: center;
  width: 21px;
  height: auto;
  font-size: 0;
  line-height: 0;
  transition: color .2s;
}

.cookie-close:hover {
  color: #33333380;
}

.cookie-text {
  color: var(--white);
  flex: 1;
  margin-right: 20px;
}

.sub-title {
  margin-bottom: 75px;
  font-size: 38px;
  line-height: 42px;
}

.column {
  padding-left: 20px;
  padding-right: 20px;
}

.columns {
  justify-content: center;
  margin-left: -20px;
  margin-right: -20px;
  display: flex;
}

.title-small {
  margin-bottom: 20px;
  font-size: 30px;
  font-weight: 400;
}

.nowrap {
  white-space: nowrap;
}

.heading-margin {
  margin-bottom: 75px;
}

.footer-block {
  margin-bottom: 25px;
}

.datenschutz-block {
  margin-top: 35px;
}

@media screen and (min-width: 1280px) {
  body {
    font-size: 22px;
    line-height: 30px;
  }

  h1 {
    margin-bottom: 60px;
    font-size: 68px;
    line-height: 72px;
  }

  h2 {
    font-size: 28px;
  }

  .header {
    min-height: 120px;
  }

  .lg-container {
    max-width: 1220px;
  }

  .logo-wrapper {
    width: 310px;
  }

  .md-container {
    max-width: 1060px;
  }

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

  .team {
    border-top: 1px solid var(--indian-red);
  }

  .lead {
    font-size: 26px;
    line-height: 38px;
  }

  .angebote {
    border-top: 1px solid var(--indian-red);
  }

  .sm-container {
    max-width: 854px;
  }

  .btn-primary {
    align-items: center;
    padding: 15px 60px;
    font-size: 21px;
    display: flex;
  }

  .footer-grid {
    grid-template-columns: .25fr .5fr .25fr;
    align-items: end;
    width: 100%;
  }

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

  .team-grid {
    grid-column-gap: 75px;
    grid-row-gap: 55px;
  }

  .img {
    object-fit: cover;
  }

  .name {
    color: var(--indian-red);
    font-size: 28px;
  }

  .link-wrapper, .underline {
    cursor: pointer;
  }

  .link-text {
    cursor: pointer;
    font-size: 24px;
    line-height: 30px;
  }

  .link-text.w--current {
    cursor: pointer;
  }

  .sub-title {
    font-size: 44px;
    line-height: 48px;
  }

  .title-small {
    font-size: 36px;
  }

  .bold-text-2 {
    font-size: 64px;
  }

  .heading-3 {
    margin-bottom: 61px;
  }
}

@media screen and (max-width: 991px) {
  body {
    font-size: 18px;
  }

  h1 {
    margin-bottom: 30px;
    font-size: 34px;
    line-height: 42px;
  }

  h2 {
    margin-bottom: 20px;
    font-size: 22px;
    line-height: 30px;
  }

  .header {
    min-height: 85px;
    max-height: 100px;
  }

  .lg-container {
    max-width: 680px;
  }

  .lg-container.wrapper {
    border-radius: 0;
    max-width: 770px;
    padding: 65px 45px 75px;
  }

  .logo-wrapper {
    width: 200px;
  }

  .header-sub-wrapper {
    width: 220px;
  }

  .text-sm {
    font-size: 16px;
    line-height: 22px;
  }

  .claim {
    padding-top: 70px;
    padding-bottom: 85px;
  }

  .md-container {
    max-width: 680px;
  }

  .bold-text {
    font-size: 46px;
    line-height: 50px;
  }

  .team {
    padding-top: 75px;
    padding-bottom: 70px;
  }

  .team.color {
    padding-top: 80px;
    padding-bottom: 80px;
  }

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

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

  .sm-container {
    max-width: 680px;
  }

  .angebot-wrapper {
    padding-top: 15px;
    padding-bottom: 25px;
  }

  .btn-primary {
    letter-spacing: 1px;
    flex: 0 auto;
    justify-content: center;
    height: 65px;
    margin-left: 0;
    margin-right: 0;
    padding: 0 40px;
    font-size: 18px;
  }

  .btn-wrapper {
    flex-direction: column;
    flex: 1;
    justify-content: flex-start;
    align-items: stretch;
  }

  .btn-wrapper.flex-left {
    align-items: flex-start;
    margin-top: 55px;
  }

  .lead-xl {
    font-size: 32px;
    line-height: 46px;
  }

  .footer {
    padding-top: 60px;
    padding-bottom: 80px;
  }

  .footer-grid {
    grid-template-columns: auto;
  }

  .footer-text {
    font-size: 16px;
    line-height: 26px;
  }

  .footer-text.right {
    margin-left: 0;
  }

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

  .name {
    margin-bottom: 6px;
    font-size: 22px;
    line-height: 26px;
  }

  .location-wrapper {
    grid-column-gap: 25px;
  }

  .link-wrapper {
    margin-left: 40px;
  }

  .underline {
    margin-top: 0;
  }

  .link-text {
    font-size: 18px;
    line-height: 24px;
  }

  .header-trigger {
    height: 120px;
  }

  .sub-title {
    margin-bottom: 60px;
    font-size: 32px;
    line-height: 36px;
  }

  .title-small {
    margin-bottom: 5px;
    font-size: 26px;
  }

  .bold-text-2 {
    font-size: 40px;
    line-height: 46px;
  }

  .heading-2 {
    font-size: 38px;
    line-height: 46px;
  }

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

  .footer-block {
    margin-top: 25px;
    margin-bottom: 0;
  }
}

@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
    line-height: 22px;
  }

  h1 {
    margin-top: 0;
    margin-bottom: 25px;
    font-size: 28px;
    line-height: 36px;
  }

  h2 {
    font-size: 20px;
  }

  .header {
    padding-top: 50px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .lg-container {
    max-width: 420px;
  }

  .lg-container.hero {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }

  .lg-container.wrapper {
    padding-left: 30px;
    padding-right: 30px;
  }

  .logo-wrapper {
    width: 180px;
    margin-right: 0;
  }

  .header-sub-wrapper {
    width: 200px;
    margin-top: 20px;
  }

  .text-sm {
    font-size: 14px;
    line-height: 20px;
  }

  .claim {
    padding: 45px 30px 50px;
  }

  .md-container {
    max-width: 420px;
  }

  .bold-text {
    font-size: 36px;
    line-height: 44px;
  }

  .team {
    margin-top: 0;
    padding: 60px 30px 65px;
  }

  .team.color {
    padding-top: 60px;
    padding-bottom: 70px;
  }

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

  .angebote {
    padding: 60px 30px 65px;
  }

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

  .btn-primary {
    text-align: center;
    min-width: 100%;
    max-width: none;
    height: 55px;
    margin-left: 0;
    margin-right: 0;
    padding-bottom: 0;
    font-size: 16px;
  }

  .btn-wrapper.flex-left {
    margin-top: 45px;
  }

  .lead-xl.negativ {
    font-size: 28px;
    line-height: 38px;
  }

  .footer {
    padding-left: 30px;
    padding-right: 30px;
  }

  .footer-text {
    font-size: 14px;
    line-height: 24px;
  }

  .footer-link.team {
    padding-left: 0;
    padding-right: 0;
  }

  .team-grid {
    grid-column-gap: 20px;
    grid-template-columns: 1fr 1fr;
  }

  .name {
    font-size: 20px;
    line-height: 24px;
  }

  .location-wrapper {
    grid-row-gap: 35px;
    grid-template-columns: 1fr;
  }

  .nav-wrapper {
    flex: 1;
    justify-content: flex-end;
  }

  .link-wrapper {
    margin-left: 25px;
  }

  .link-text {
    font-size: 16px;
    line-height: 20px;
  }

  .cookie-banner {
    padding-left: 30px;
    padding-right: 30px;
  }

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

  .text-block-5 {
    font-size: 15px;
  }

  .columns {
    flex-direction: column;
    margin-left: 0;
    margin-right: 0;
  }

  .title-small {
    font-size: 22px;
    line-height: 24px;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    margin-bottom: 16px;
    font-size: 24px;
    line-height: 30px;
  }

  h2 {
    margin-bottom: 20px;
  }

  .header {
    align-items: flex-start;
    min-height: 70px;
    max-height: 120px;
    padding-top: 20px;
    padding-bottom: 0;
  }

  .lg-container {
    flex-direction: column;
  }

  .lg-container.hero {
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
  }

  .lg-container.cookie {
    flex-direction: row;
  }

  .logo-wrapper {
    width: 180px;
  }

  .claim {
    padding-top: 35px;
    padding-bottom: 50px;
  }

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

  .bold-text {
    font-size: 28px;
    font-weight: 700;
    line-height: 32px;
  }

  .team.color {
    padding-top: 55px;
  }

  .lead {
    margin-bottom: 0;
    font-size: 18px;
    line-height: 26px;
  }

  .btn-primary {
    text-align: center;
    flex: 1;
    align-items: flex-start;
    min-width: auto;
    max-width: none;
    max-height: 50px;
    margin-left: 0;
    margin-right: 0;
    padding: 10px 25px 38px;
    font-size: 14px;
    line-height: 28px;
  }

  .btn-wrapper.flex-left {
    align-items: stretch;
  }

  .lead-xl.negativ {
    font-size: 22px;
    line-height: 32px;
  }

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

  .nav-wrapper {
    flex: 0 auto;
    justify-content: flex-start;
    height: 40px;
    margin-top: 0;
    overflow: hidden;
  }

  .link-wrapper {
    margin-left: 0;
    margin-right: 25px;
  }

  .header-trigger {
    height: 140px;
  }

  .sub-title {
    margin-bottom: 40px;
    font-size: 26px;
    line-height: 30px;
  }

  .title-small {
    font-size: 20px;
    line-height: 20px;
  }

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

#w-node-_6c84f064-3570-21df-cca2-fc19a9774efc-b58d907f, #w-node-_7f72be68-f4f6-1817-295c-ab735ff9bc6e-b58d907f, #w-node-_4d89f9af-f13e-a873-9a6d-0b6b0444c967-b58d907f, #w-node-_35bbe525-dab3-c0db-295a-6a58efe65548-b58d907f, #w-node-_09f79933-c103-cdc7-cf31-a5899282fae5-b58d907f, #w-node-_72ff204d-ec18-3c4e-7307-daf2a68c07ac-b58d907f, #w-node-_3b28de47-1bbe-5f72-21cf-5ade19e85e6e-b58d907f, #w-node-_384b519a-c383-dbb4-2c9f-ddf43eeb5e9d-b58d907f, #w-node-d398de05-740f-76e8-910f-c04c0ba58f1c-b58d907f, #w-node-_2ef29b2d-bb6c-952c-c769-9c09560a04cb-b58d907f, #w-node-_621213fc-fa43-3ba3-0229-a27cec980f04-b58d907f, #w-node-_61d63aef-6768-f7ba-d4b9-039b6fdd67d0-b58d907f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_8758c0c5-9989-b8be-75a9-bc6dc5732bbe-b58d907f {
  grid-area: 2 / 1 / 3 / 3;
}

#w-node-_7ffc44c6-d9b3-ae5e-e41b-653bd44ebcbe-b58d907f {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_97777bfe-7186-1961-63c1-2267c88435c3-b58d907f {
  grid-area: 2 / 1 / 5 / 2;
  align-self: start;
}

#w-node-_350b58e5-4d8c-2f24-eb5b-7c22916c5125-b58d907f {
  grid-area: 4 / 1 / 5 / 2;
}

#w-node-b3669c04-76c5-9cd4-1b5e-c48ea51aaa30-b58d907f {
  grid-area: 3 / 1 / 4 / 2;
  align-self: end;
}

#w-node-_0e6042c7-b39b-0a7e-655f-2cd33768aabe-b58d907f {
  grid-area: 2 / 2 / 3 / 3;
  align-self: start;
}

#w-node-fda519c9-9c33-a8ff-10e7-a0280546e587-b58d907f {
  grid-area: 3 / 2 / 4 / 3;
  align-self: start;
}

#w-node-_12db5eeb-1df6-7fe4-c995-4965e926bb46-b58d907f {
  grid-area: 4 / 2 / 5 / 3;
  align-self: start;
}

@media screen and (min-width: 1280px) {
  #w-node-_97777bfe-7186-1961-63c1-2267c88435c3-b58d907f {
    grid-area: 2 / 1 / 4 / 2;
    align-self: start;
  }

  #w-node-b3669c04-76c5-9cd4-1b5e-c48ea51aaa30-b58d907f {
    grid-area: 2 / 1 / 4 / 2;
    align-self: auto;
  }
}

@media screen and (max-width: 991px) {
  #w-node-_97777bfe-7186-1961-63c1-2267c88435c3-b58d907f {
    grid-row-end: 3;
  }

  #w-node-_350b58e5-4d8c-2f24-eb5b-7c22916c5125-b58d907f {
    grid-row: 6 / 7;
  }

  #w-node-b3669c04-76c5-9cd4-1b5e-c48ea51aaa30-b58d907f {
    grid-row-end: 3;
  }

  #w-node-_0e6042c7-b39b-0a7e-655f-2cd33768aabe-b58d907f {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-fda519c9-9c33-a8ff-10e7-a0280546e587-b58d907f {
    grid-area: 4 / 1 / 5 / 2;
  }

  #w-node-_12db5eeb-1df6-7fe4-c995-4965e926bb46-b58d907f {
    grid-area: 5 / 1 / 6 / 2;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_8758c0c5-9989-b8be-75a9-bc6dc5732bbe-b58d907f {
    grid-row: 3 / 4;
    grid-column-end: 2;
  }
}


