@font-face {
  font-family: "Comfortaa";
  src: url(../fonts/Comfortaa-VariableFont_wght.ttf);
  font-display: swap;
}
:root {
  --brightgreen-100: #028062;
  --darkgreen-100: #01503e;
  --grey-0: #ffffff;
  --grey-10: #e8e9e2;
  --grey-75: #4d503f;
  --grey-100: #1c1d16;
  --grey-40: #a1a58d;
  --yellow-100: #ffe607;
  --max-width-content: 73.75rem;
  --font-heading: 'Comfortaa', ui-sans-serif, system-ui, sans-serif;
  --font-sans: 'Roboto', 'Roboto Fallback', ui-sans-serif, system-ui, sans-serif;
}

body {
  font-family: var(--font-sans);
  color: var(--grey-100);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.33;
}

.text-h1 {
  font-size: 2rem;
  line-height: 1.33;
}
.text-h2 {
  font-size: 1.5rem;
  line-height: 1.33;
}
.text-h3 {
  font-size: 1.25rem;
  line-height: 1.33;
}
.text-h4 {
  font-size: 1.125rem;
  line-height: 1.33;
}
.text-h5 {
  font-size: 1rem;
  line-height: 1.33;
}
.text-small {
  font-size: 0.875rem;
  line-height: 1.25;
}
.text-label {
  font-size: 0.75rem;
  line-height: 1.25;
}

@media (min-width: 992px) {
  .text-h1 {
    font-size: 2.5rem;
  }
  .text-h2 {
    font-size: 2rem;
  }
  .text-h3 {
    font-size: 1.5rem;
  }
}

.bg-brightgreen-100 {
  background-color: var(--brightgreen-100);
}
.bg-darkgreen-100 {
  background-color: var(--darkgreen-100);
}
.bg-grey-0 {
  background-color: var(--grey-0);
}
.bg-grey-10 {
  background-color: var(--grey-10);
}
.bg-yellow-100 {
  background-color: var(--yellow-100);
}

.text-grey-0 {
  color: var(--grey-0);
}
.text-grey-75 {
  color: var(--grey-75);
}
.text-grey-100 {
  color: var(--grey-100);
}
.text-brightgreen-100 {
  color: var(--brightgreen-100);
}

.border-brightgreen-100 {
  border-color: var(--brightgreen-100) !important;
}

.btn-brightgreen {
  background-color: var(--brightgreen-100);
  color: var(--grey-0);
  font-family: var(--font-heading);
  font-weight: 700;
  border: none;
  padding: 0.375rem 1.5rem;
  border-radius: 0.5625rem;
  transition: background-color 0.15s;
}
.btn-brightgreen:hover {
  background-color: var(--darkgreen-100);
  color: var(--grey-0);
}

.header-shadow {
  box-shadow: 0 0 0.75rem 0 rgba(204, 204, 204, 0.5);
}

.link-underline {
  color: var(--brightgreen-100);
  text-decoration: underline;
}
.link-underline:hover {
  color: var(--darkgreen-100);
}

.hero-image {
  object-fit: cover;
  border-radius: 0.75rem;
  width: 100%;
  height: 8rem;
}

.bundesland-card {
  display: flex;
  align-items: center;
  border: 1px solid var(--brightgreen-100);
  border-radius: 9999px;
  background-color: var(--grey-0);
  padding: 0.125rem;
  transition: background-color 0.15s;
  color: var(--grey-100);
  text-decoration: none;
  padding: 12px;
}
.bundesland-card:hover {
  background-color: #e1fbeb;
}
.bundesland-card img {
  width: 1.75rem;
  height: 1.75rem;
  object-fit: cover;
  border-radius: 50%;
}

.carousel-logos {
  display: flex;
  overflow-x: auto;
  gap: 0.75rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.carousel-logos::-webkit-scrollbar {
  display: none;
}

details summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--grey-75);
  padding: 0.75rem 0;
}
details summary::-webkit-details-marker {
  display: none;
}
details summary svg {
  transition: transform 0.2s;
  margin-left: 1rem;
  width: 1.5rem;
  height: 1.5rem;
}
details[open] summary svg {
  transform: rotate(180deg);
}

.max-w-content {
  max-width: var(--max-width-content);
  margin-left: auto;
  margin-right: auto;
}

.rich-text p {
  margin-top: 0.9375rem;
  margin-bottom: 0.9375rem;
}
.rich-text h2 {
  margin-top: 3rem;
  margin-bottom: 1.125rem;
}
.rich-text img {
  max-width: 100%;
  height: auto;
}

@media (min-width: 768px) {
  .hero-image {
    height: 10rem;
  }
}
@media (min-width: 992px) {
  .hero-image {
    height: 14rem;
  }
}

.animate-arrow path {
  fill: transparent;
  animation: arrowAnim 1.2s infinite;
}
.animate-arrow path:nth-child(2) {
  animation-delay: 0.24s;
}
.animate-arrow path:nth-child(3) {
  animation-delay: 0.48s;
}
@keyframes arrowAnim {
  0% {
    fill: #01503E;
  }
  20% {
    fill: #028062;
  }
  40% {
    fill: #66BBA8;
  }
  60% {
    fill: transparent;
  }
}
@media screen and (max-width: 767.98px) {
  .btn-box {
    display: none;
  }
  body {
    word-break: break-word;
  }
}
#cards .row {
  margin-left: 0;
  margin-right: 0;
}