.header-container {
  position: relative;
  overflow: hidden;
  color: white;
  background: linear-gradient(180deg, rgb(0, 0, 0) 0%, rgba(237, 221, 83, 0) 75%);
}
.header-container .header-text {
  padding: 2.25rem;
}
.header-container .header-text h1 {
  margin-bottom: 1rem;
}
.header-container img {
  position: absolute;
  z-index: -1;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: -webkit-fill-available;
}

.card-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
  padding: 0;
}
.card-container .card-item {
  margin: 0;
  padding: 1rem 2rem 1.5rem 2rem;
  background-color: white;
  border-radius: 1rem;
  box-shadow: 0 10px 25px 0 rgba(0, 0, 0, 0.1019607843);
  height: 100%;
}
.card-container .card-item .card-title {
  margin-bottom: 1.5rem;
  font-weight: bold;
}
.card-container .card-item .card-title a {
  color: #3C3C3C;
}

.card-container.container-service-teaser {
  height: 100%;
}

.view-content {
  margin: 0;
  height: -moz-fit-content;
  height: fit-content;
}