*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-text);
  line-height: var(--lh-text);
  color: var(--color-text);
  background-color: var(--color-surface);
  overflow-x: hidden;
}
@media (min-width: 768px) {
  address {
    margin-bottom: 0rem;
  }
}

.row.down {
  align-items: flex-end;
}

body.no-scroll {
  overflow: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: var(--lh-titel);
  margin: 0;
  color: var(--color-text);
}

h1 {
  font-size: var(--fs-hero);
}

h2 {
  font-size: var(--fs-titel);
}

h3 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--fs-titel-2);
}

p {
  margin: 0 0 var(--space-3);
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-base);
}

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

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

ul {
  padding-left: 1.25em;
}

:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: var(--space-2);
  z-index: 2000;
  background: var(--color-primary);
  color: var(--color-weiss);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  transition: top var(--transition-base);
}

.skip-link:focus {
  top: var(--space-2);
}
