.image-container {
  height: 700px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

#home, .swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  position: relative;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}



#waves {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 150px;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
}

path.wave {
  fill: var(--background); 
}

.tagline {
  text-align: center;
  padding: 30px;
  max-width: 50%;
  margin: auto;
  font-size: calc(30px * var(--font-size-modifier));
  font-family: var(--font-family-secondary);
  color: var(--accent-text);
  text-decoration: bold;
  font-weight: bolder;
  margin-bottom: 30px;
}
