@font-face {
  font-family: 'IBM Plex Sans';
  src: url('../fonts/ibmplexsans-text.woff') format('woff'),
       url('../fonts/ibmplexsans-text.eot');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'IBM Plex Sans';
  src: url('../fonts/ibmplexsans-light.woff') format('woff'),
       url('../fonts/ibmplexsans-light.eot');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'IBM Plex Sans';
  src: url('../fonts/ibmplexsans-semibold.woff') format('woff'),
       url('../fonts/ibmplexsans-semibold.eot');
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: 'IBM Plex Sans';
  src: url('../fonts/ibmplexsans-medium.woff') format('woff'),
       url('../fonts/ibmplexsans-medium.eot');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'IBM Plex Sans';
  src: url('../fonts/ibmplexsans-extralight.woff') format('woff'),
       url('../fonts/ibmplexsans-extralight.eot');
  font-weight: 200;
  font-style: normal;
}
:root {
  --text: #252541;
  --accent: #7daf3b;
  --beate-blue: #314EA3;
  --muted: #565b6d;
  --surface: rgb(195, 205, 221);
  --background-start: rgb(215, 219, 229);
  --background-end: rgb(190, 201, 219);
  --header-border: rgba(37,37,65,0.08);
  color-scheme: light;
  color: var(--text);
  background-color: var(--surface);
  font-family: 'IBM Plex Sans', Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.65;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(to bottom, var(--background-start), var(--background-end));
  color: var(--text);
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
button {
  font: inherit;
}
.site-shell {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--beate-blue);
  border-bottom: 1px solid var(--header-border);
}
.site-header .container,
.site-footer .container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}
.logo {
  display: inline-flex;
  align-items: center;
}
.logo img {
  width: 220px;
  height: auto;
}
.main-nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.main-nav a {
  display: inline-flex;
  align-items: center;
  padding: 0.8rem 1rem;
  color: #fff;
  font-weight: 200;
	font-size: 18px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(255,255,255,0.35);
  background: transparent;
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 999px;
}
.slider {
  position: relative;
  width: 100%;
  height: 100%;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.slide.active {
  opacity: 1;
}
.slide picture {
  display: block;
  width: 100%;
  height: 100%;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-footer {
  background: var(--beate-blue);
  border-top: 1px solid rgba(37,37,65,0.08);
  padding: 2rem 0;
}
.footer-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.footer-grid h3 {
  margin-bottom: 0.75rem;
  font-size: 1rem;
}
.footer-grid p,
.footer-grid a {
  color: var(--text);
}
.footer-links {
  display: grid;
  gap: 0.5rem;
}
.footer-links a {
  color: var(--text);
}
.footer-bottom {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.95rem;
  color: var(--muted);
}
@media (max-width: 900px) {
  .header-inner {
    flex-wrap: wrap;
  }
  .main-nav {
    gap: 0.6rem;
  }
}
@media (max-width: 720px) {
  .main-nav {
    display: none;
  }
  .menu-toggle {
    display: inline-flex;
  }
  .site-header.open .main-nav {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0 0 1rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

.home-page,
.site-page {
  --page-header-height: 130px;
  overflow-x: hidden;
}

.home-page .site-shell,
.site-page .site-shell {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  padding-top: var(--page-header-height);
}

.home-page .site-header,
.site-page .site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  border-bottom: 0;
  background: #314ea3;
}

.page-header__inner {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  width: min(960px, calc(100% - 60px));
  min-height: var(--page-header-height);
  margin: 0 auto;
  padding: 30px 0 20px;
}

.page-header__logo {
  position: absolute;
  left: 0;
  top: 30px;
}

.page-header__logo img {
  width: 264px;
  height: auto;
}

.page-header__nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.page-header__nav a {
  padding: 6px 0 6px 40px;
  color: #fff;
  font-size: 18px;
  line-height: 22px;
  font-weight: 200;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
}

.page-header__nav a:hover {
  text-decoration: none;
}

.page-header__nav a.active,
.page-header__nav a[aria-current='page'] {
  font-weight: 400;
}

.page-header__toggle {
  display: none;
  position: absolute;
  top: 28px;
  right: 0;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
}

.page-header__toggle-line {
  position: absolute;
  left: 0;
  width: 24px;
  height: 1px;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.page-header__toggle-line:nth-child(1) {
  top: 4px;
}

.page-header__toggle-line:nth-child(2) {
  top: 11px;
}

.page-header__toggle-line:nth-child(3) {
  top: 18px;
}

.page-header.open .page-header__toggle-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.page-header.open .page-header__toggle-line:nth-child(2) {
  opacity: 0;
}

.page-header.open .page-header__toggle-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.home-main,
.page-main {
  flex: 1;
}

.page-hero {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.page-slider {
  position: relative;
  width: 100%;
  height: 75vh;
  min-height: 560px;
  margin: 0;
  overflow: hidden;
  background: #d7dbe5;
}

.page-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.page-slide.active {
  opacity: 1;
}

.page-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-intro {
  padding-top: 50px;
}

.home-intro__inner {
  width: min(960px, 100%);
  margin: 0 auto;
  padding: 20px 20px 0;
  color: #252541;
}

.page-content {
  padding-top: 31px;
  margin-bottom: 40px;
}

.page-content__inner {
  width: min(930px, calc(100% - 40px));
  margin: 0 auto;
  padding: 20px 20px 0;
  color: #252541;
}

.sortiment-page .page-content__title,
.sortiment-page .page-content__subtitle,
.service-page .page-content__title,
.service-page .page-content__subtitle,
.ueber-uns-page .page-content__title,
.ueber-uns-page .page-content__subtitle,
.kontakt-page .page-content__title,
.kontakt-page .page-content__subtitle {
  text-align: center;
}

.page-content__title {
  margin: 0;
  color: #252541;
  font-size: 60px;
  line-height: 66px;
  font-weight: 600;
}

.home-intro__inner .page-content__title {
  text-align: center;
}

.page-content__subtitle {
  display: block;
  margin: 0;
  padding-top: 14px;
  padding-bottom: 38px;
  color: #252541;
  font-size: 36px;
  line-height: 40px;
  font-weight: 600;
}

.page-content__body h2,
.page-content__body h3 {
  margin: 0;
  padding-bottom: 12px;
  padding-left: 10px;
  padding-right: 10px;
  color: #252541;
  font-size: 24px;
  line-height: 29px;
  font-weight: 600;
}

.page-content__body p + h2,
.page-content__body ul + h2 {
  margin-top: 18px;
}

.page-content__body p,
.page-content__body li,
.page-content__list li {
  margin: 0;
  padding: 0 0 12px;
  color: #252541;
  font-size: 20px;
  line-height: 24px;
  font-weight: 300;
}

.page-content__body p {
  padding-left: 10px;
  padding-right: 10px;
}

.page-content__body a {
  color: #252541;
  text-decoration: none;
  font-weight: 400;
}

.page-content__body a:hover {
  text-decoration: underline;
}

.page-content__body strong,
.page-content__body b {
  color: #252541;
}

.page-content__body ul,
.page-content__list {
  margin: 0;
  padding: 0 0 0 34px;
}

.page-content__body li::marker,
.page-content__list li::marker {
  color: #252541;
}

.impressum-page .page-content {
  padding-top: 56px;
  margin-bottom: 60px;
}

.impressum-page .page-content__inner {
  padding-top: 0;
}

.impressum-page .page-content__title {
  padding: 0 8px 24px;
  font-size: 44px;
  line-height: 48px;
}

.impressum-page .page-content__body h2 {
  padding: 24px 10px 8px;
  font-size: 20px;
  line-height: 24px;
}

.impressum-page .page-content__body p {
  padding: 0 10px 8px;
  font-size: 16px;
  line-height: 19px;
}

.impressum-page .page-content__body p + h2,
.impressum-page .page-content__body ul + h2 {
  margin-top: 0;
}

.agb-page .page-content {
  padding-top: 56px;
  margin-bottom: 60px;
}

.agb-page .page-content__inner {
  padding-top: 0;
}

.agb-page .page-content__title {
  padding: 0 8px 24px;
  font-size: 44px;
  line-height: 48px;
}

.agb-page .page-content__body h2 {
  padding: 0 10px 8px;
  font-size: 20px;
  line-height: 24px;
}

.agb-page .page-content__body h3 {
  margin: 0;
  padding: 24px 10px 8px;
  font-size: 18px;
  line-height: 22px;
  font-weight: 600;
}

.agb-page .page-content__body ol {
  margin: 0;
  padding: 0 10px 8px 38px;
}

.agb-page .page-content__body li {
  padding: 0 0 8px;
  font-size: 16px;
  line-height: 19px;
  font-weight: 300;
}

.agb-page .page-content__body p {
  padding: 0 10px 8px;
  font-size: 16px;
  line-height: 19px;
}

.agb-page .page-content__body p + h3,
.agb-page .page-content__body ol + h3 {
  margin-top: 0;
}

.datenschutz-page .page-content {
  padding-top: 56px;
  margin-bottom: 60px;
}

.datenschutz-page .page-content__inner {
  padding-top: 0;
}

.datenschutz-page .page-content__title {
  padding: 0 8px 24px;
  font-size: 44px;
  line-height: 48px;
}

.datenschutz-page .page-content__body h2 {
  padding: 24px 10px 8px;
  font-size: 20px;
  line-height: 24px;
}

.datenschutz-page .page-content__body h2:first-child {
  padding-top: 0;
}

.datenschutz-page .page-content__body p {
  padding: 0 10px 8px;
  font-size: 16px;
  line-height: 19px;
}

.datenschutz-page .page-content__body p + h2 {
  margin-top: 0;
}

.datenschutz-page .page-content__body .datenschutz-page__source {
  font-size: 12px;
  line-height: 14px;
}

.kontakt-page .page-hero {
  position: relative;
}

.contact-hero-brand {
  position: absolute;
  left: 0;
  bottom: 78px;
  z-index: 2;
  width: auto;
  max-width: 100vw;
  padding: 20px 20px 20px max(30px, calc((100vw - 960px) / 2));
  background: #314ea3;
}

.contact-hero-brand__logo {
  display: block;
  width: 380px;
}

.contact-hero-brand__logo img {
  width: 100%;
  height: auto;
}

.contact-map {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-bottom: 40px;
}

.contact-map__inner {
  width: 100%;
  padding: 0;
}

.contact-map__inner iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

.kontakt-page .contact-map {
  margin-bottom: 0;
}

.kontakt-page .site-footer-content {
  margin-top: 0;
}

.contact-team-grid {
  display: grid;
  width: 100%;
  margin: 0 auto;
  grid-template-columns: repeat(2, max-content);
  justify-content: center;
  column-gap: 36px;
  row-gap: clamp(32px, 4.2vw, 56px);
  padding-top: 12px;
  padding-bottom: 36px;
}

.contact-team-card {
  display: grid;
  align-content: start;
}

.contact-team-card h2 {
  margin: 0;
  padding-bottom: 4px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 300;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-team-card p {
  margin: 0;
  padding-bottom: 0;
}

.contact-team-card__name {
  display: block;
  margin-bottom: 4px;
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
}

.contact-team-card__email {
  display: block;
  margin-top: 4px;
}

.home-velux {
  width: min(960px, calc(100% - 40px));
  margin: 44px auto;
}

.home-velux__label {
  margin: 0 0 12px;
  color: #565b6d;
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.home-velux__embed {
  width: 100%;
}

.site-footer-content {
  margin-top: 20px;
  padding: 30px 0 13px;
  background: #314ea3;
  color: #fff;
}

.site-footer-content__inner {
  display: grid;
  grid-template-columns: max-content max-content max-content;
  grid-template-areas:
    'contact hours legal'
    'copyright copyright copyright';
  justify-content: space-between;
  column-gap: 0;
  row-gap: 16px;
  width: min(960px, calc(100% - 40px));
  margin: 0 auto;
  align-items: start;
}

.site-footer-content__inner p,
.site-footer-content__inner a {
  margin: 0;
  color: #fff;
  font-size: 16px;
  line-height: 21px;
  font-weight: 200;
  text-decoration: none;
}

.site-footer-content__inner a:hover {
  text-decoration: underline;
}

.site-footer-content__inner .site-footer-content__company {
  padding-bottom: 6px;
  font-weight: 600;
}

.site-footer-content__contact {
  grid-area: contact;
  display: grid;
  align-content: start;
  row-gap: 6px;
  justify-self: start;
}

.site-footer-content__contact p {
  padding-bottom: 0;
}

.site-footer-content__hours {
  grid-area: hours;
  display: grid;
  align-content: start;
  row-gap: 0;
  width: max-content;
  max-width: 100%;
  justify-self: start;
}

.site-footer-content__inner .site-footer-content__hours-title {
  margin: 0;
  margin-bottom: 6px;
  padding-bottom: 0;
  font-weight: 600;
}

.site-footer-content__legal a {
  padding-bottom: 6px;
}

.site-footer-content__hours-list {
  display: grid;
  grid-template-columns: max-content max-content;
  column-gap: 18px;
  row-gap: 6px;
  align-items: start;
}

.site-footer-content__hours-day,
.site-footer-content__hours-time {
  margin: 0;
  color: #fff;
  font-size: 16px;
  line-height: 21px;
  font-weight: 200;
  text-align: left;
  white-space: nowrap;
}

.site-footer-content__hours-time {
  white-space: normal;
}

.site-footer-content__hours-time span {
  font-size: 14px;
  line-height: 18px;
}

.site-footer-content__hours-note {
  width: auto;
  max-width: none;
  margin-top: 8px !important;
  padding: 8px 10px;
  background: #af3b3b;
  color: #fff;
  font-size: 16px;
  line-height: 21px;
  font-weight: 400;
}

.site-footer-content__legal {
  grid-area: legal;
  display: grid;
  align-content: start;
  row-gap: 6px;
  justify-self: start;
  justify-items: end;
}

.site-footer-content__legal a,
.site-footer-content__contact a {
  font-weight: 400;
}

.site-footer-content__copyright {
  grid-area: copyright;
  justify-self: start;
  text-align: left;
  font-size: 10px !important;
  line-height: 14px;
}

.cookie-banner {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 60;
  padding: 26px 5% 20px;
  background: rgba(255, 255, 255, 0.9);
  color: #494949;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}

.cookie-banner p {
  margin: 0;
}

.cookie-banner a {
  color: #494949;
  text-decoration: underline;
}

.cookie-banner__actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-left: 8px;
}

.cookie-banner__accept {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 3px;
  background: #7daf3b;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.25);
}

.cookie-banner__accept:hover {
  color: #fff;
  text-decoration: none;
}

.cookie-banner__close {
  position: absolute;
  top: -28px;
  right: 5%;
  padding: 2px 10px;
  border: 0;
  background: rgba(255, 255, 255, 0.9);
  color: #494949;
  cursor: pointer;
}

@media (min-width: 769px) and (max-width: 960px) {
  .page-header__logo {
    top: 30px;
  }

  .page-header__nav a {
    padding-left: 14px;
  }

  .page-slider {
    width: 100%;
    height: 62vh;
    min-height: 480px;
  }

  .contact-hero-brand {
    width: auto;
    max-width: 100vw;
    padding: 20px;
    bottom: 78px;
  }

  .contact-hero-brand__logo {
    width: min(380px, calc(100vw - 40px));
  }

  .home-velux {
    width: min(900px, calc(100% - 60px));
    margin-top: 60px;
  }

  .site-footer-content__inner {
    grid-template-columns: 229px minmax(0, 1fr);
    grid-template-areas:
      'contact hours'
      'legal legal'
      'copyright copyright';
    width: min(960px, calc(100% - 60px));
  }

  .site-footer-content__hours {
    justify-self: end;
  }

  .site-footer-content__legal {
    justify-self: start;
    justify-items: start;
  }

  .site-footer-content__copyright {
    justify-self: start;
    padding-top: 10px;
  }
}

@media (max-width: 768px) {
  .home-page,
  .site-page {
    --page-header-height: 80px;
  }

  .page-header__inner {
    align-items: center;
    width: calc(100% - 40px);
    padding: 16px 0;
  }

  .page-header__logo {
    top: 16px;
  }

  .page-header__logo img {
    width: 182px;
  }

  .page-header__toggle {
    display: block;
  }

  .page-header__nav {
    position: absolute;
    top: 100%;
    left: -20px;
    right: -20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #314ea3;
  }

  .page-header.open .page-header__nav {
    display: flex;
    width: auto;
    padding: 0;
  }

  .page-header__nav a {
    padding: 19px 20px;
    border-top: 1px solid #fff;
    text-align: center;
  }

  .page-slider {
    width: 100%;
    height: 58vh;
    min-height: 360px;
  }

  .contact-hero-brand {
    width: auto;
    max-width: 100vw;
    padding: 20px;
    bottom: 58px;
  }

  .contact-hero-brand__logo {
    width: min(380px, calc(100vw - 40px));
  }

  .home-intro {
    padding-top: 30px;
  }

  .home-intro__inner {
    width: 100%;
  }

  .page-content {
    padding-top: 30px;
  }

  .page-content__inner {
    width: 94%;
  }

  .page-content__title {
    font-size: 60px;
    line-height: 66px;
  }

  .page-content__subtitle {
    padding-bottom: 38px;
    font-size: 36px;
    line-height: 40px;
  }

  .page-content__body h2,
  .page-content__body h3 {
    line-height: 29px;
  }

  .page-content__body p,
  .page-content__body li,
  .page-content__list li {
    font-size: 20px;
    line-height: 24px;
  }

  .impressum-page .page-content {
    padding-top: 52px;
    margin-bottom: 56px;
  }

  .impressum-page .page-content__title,
  .agb-page .page-content__title,
  .datenschutz-page .page-content__title {
    padding: 0 0 22px;
    font-size: 38px;
    line-height: 42px;
  }

  .impressum-page .page-content__body h2 {
    padding: 24px 0 8px;
    font-size: 18px;
    line-height: 22px;
  }

  .impressum-page .page-content__body p {
    padding: 0 0 8px;
    font-size: 15px;
    line-height: 18px;
  }

  .agb-page .page-content {
    padding-top: 52px;
    margin-bottom: 56px;
  }

  .agb-page .page-content__body h2 {
    padding: 0 0 8px;
    font-size: 18px;
    line-height: 22px;
  }

  .agb-page .page-content__body h3 {
    padding: 24px 0 8px;
    font-size: 18px;
    line-height: 22px;
  }

  .agb-page .page-content__body ol {
    padding: 0 0 8px 28px;
  }

  .agb-page .page-content__body p,
  .agb-page .page-content__body li {
    padding: 0 0 8px;
    font-size: 15px;
    line-height: 18px;
  }

  .datenschutz-page .page-content {
    padding-top: 52px;
    margin-bottom: 56px;
  }

  .datenschutz-page .page-content__body h2 {
    padding: 24px 0 8px;
    font-size: 18px;
    line-height: 22px;
  }

  .datenschutz-page .page-content__body h2:first-child {
    padding-top: 0;
  }

  .datenschutz-page .page-content__body p {
    padding: 0 0 8px;
    font-size: 15px;
    line-height: 18px;
  }

  .datenschutz-page .page-content__body .datenschutz-page__source {
    font-size: 9px;
    line-height: 11px;
  }

  .home-velux {
    width: 94%;
    margin-top: 60px;
  }

  .site-footer-content {
    padding-bottom: 12px;
  }

  .site-footer-content__inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      'contact'
      'hours'
      'legal'
      'copyright';
    width: 94%;
    gap: 35px;
  }

  .site-footer-content__hours {
    justify-self: start;
  }

  .site-footer-content__legal {
    justify-self: start;
    justify-items: start;
  }

  .site-footer-content__copyright {
    justify-self: start;
    padding-top: 0;
  }

  .cookie-banner {
    padding-top: 32px;
  }

  .cookie-banner__actions {
    margin-top: 12px;
    margin-left: 0;
  }

  .contact-team-grid {
    width: 100%;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 550px) {
  .home-page,
  .site-page {
    --page-header-height: 68px;
  }

  .page-header__inner {
    min-height: 68px;
    padding: 11px 0;
  }

  .page-header__logo img {
    width: 172px;
  }

  .page-header__toggle {
    top: 22px;
  }

  .page-slider {
    height: 48vh;
    min-height: 275px;
  }

  .contact-hero-brand {
    width: auto;
    max-width: 100vw;
    padding: 18px 18px 18px 20px;
    bottom: -18px;
  }

  .contact-hero-brand__logo {
    width: min(273px, calc(100vw - 38px));
  }

  .page-content {
    padding-top: 20px;
  }

  .page-content__title {
    font-size: 48px;
    line-height: 53px;
  }

  .page-content__subtitle {
    padding-bottom: 30px;
    font-size: 30px;
    line-height: 33px;
  }

  .kontakt-page .page-content__title {
    font-size: 0;
    line-height: 0;
  }

  .kontakt-page .page-content__subtitle {
    padding-top: 0;
    padding-bottom: 30px;
    font-size: 48px;
    line-height: 53px;
  }

  .page-content__body h2,
  .page-content__body h3 {
    line-height: 24px;
    padding-right: 0;
    padding-left: 0;
  }

  .page-content__body p,
  .page-content__body li,
  .page-content__list li {
    font-size: 16px;
    line-height: 19px;
    padding-right: 0;
    padding-left: 0;
  }

  .impressum-page .page-content {
    padding-top: 48px;
    margin-bottom: 52px;
  }

  .impressum-page .page-content__title,
  .agb-page .page-content__title,
  .datenschutz-page .page-content__title {
    padding: 0 0 20px;
    font-size: 34px;
    line-height: 38px;
  }

  .impressum-page .page-content__body h2 {
    line-height: 22px;
  }

  .impressum-page .page-content__body p {
    font-size: 15px;
    line-height: 18px;
  }

  .agb-page .page-content {
    padding-top: 48px;
    margin-bottom: 52px;
  }

  .agb-page .page-content__body h2,
  .agb-page .page-content__body h3 {
    font-size: 18px;
    line-height: 22px;
  }

  .agb-page .page-content__body p,
  .agb-page .page-content__body li {
    font-size: 15px;
    line-height: 18px;
  }

  .agb-page .page-content__body ol {
    padding-left: 26px;
  }

  .datenschutz-page .page-content {
    padding-top: 48px;
    margin-bottom: 52px;
  }

  .datenschutz-page .page-content__body h2 {
    font-size: 18px;
    line-height: 22px;
  }

  .datenschutz-page .page-content__body p {
    font-size: 15px;
    line-height: 18px;
  }

  .datenschutz-page .page-content__body .datenschutz-page__source {
    font-size: 9px;
    line-height: 11px;
  }

  .contact-team-card h2 {
    font-size: 14px;
    line-height: 18px;
  }

  .contact-team-card__name {
    font-size: 16px;
    line-height: 19px;
  }

  .contact-map__inner iframe {
    height: 360px;
  }

  .home-velux {
    width: 100%;
    margin-top: 60px;
    margin-bottom: 20px;
  }

  .site-footer-content__hours {
    width: 100%;
  }

  .site-footer-content__hours-list {
    grid-template-columns: 1fr;
  }

  .site-footer-content__hours-day {
    white-space: normal;
  }

  .site-footer-content__hours-note {
    width: auto;
    display: inline-block;
  }

  .site-footer-content__copyright {
    justify-self: start;
  }
}

@media (max-width: 320px) {
  .page-header__logo img {
    width: 151px;
  }

  .page-header__toggle {
    top: 20px;
  }

  .page-slider {
    height: 40vh;
    min-height: 212px;
  }

  .contact-hero-brand {
    width: auto;
    max-width: 100vw;
    bottom: 0;
    padding: 12px;
  }

  .contact-hero-brand__logo {
    width: min(280px, calc(100vw - 24px));
  }

  .home-intro {
    padding-top: 0;
  }

  .page-content__title {
    font-size: 40px;
    line-height: 44px;
  }

  .page-content__subtitle {
    padding-bottom: 24px;
    font-size: 24px;
    line-height: 26px;
  }

  .page-content__body p,
  .page-content__body li,
  .page-content__list li {
    padding-right: 0;
    padding-left: 0;
  }

  .page-content__inner,
  .site-footer-content__inner {
    width: calc(100% - 40px);
  }

  .contact-map__inner iframe {
    height: 280px;
  }

  .cookie-banner__close {
    top: -36px;
  }
}
