.wave-container {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.wave-container .image-container {
	width: 100%;
	height: 10%;
	max-height: 500px;
	overflow: hidden;
}

.wave-container .image-container img {
	width: 100%;
	height: 500px;
	object-fit: cover;
	object-position: 50% 50%;
}

.headline-overlay {
	position: absolute;
	top: 50%;
	left: 60%;
	min-width: 60%;
	height: fit-content;
	max-height: 50%;
	transform: translate(-70%, -50%);
	background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
	padding-left: 20px;
	color: white;
	text-align: left;
	z-index: 2;
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.wave {
	position: absolute;
	width: 100%;
	height: 20%;
	left: 0;
}

.waves-top {
	top: 0;
}

.waves-bottom {
	bottom: 0;
	margin-bottom: -2px;
}

.wave path {
	fill: rgba(255, 255, 255, 1);
}

.wave:nth-of-type(1) path,
.wave:nth-of-type(2) path {
	fill: rgba(255, 255, 255, 0.7);
}

.wave:nth-of-type(3) path {
	fill: rgba(255, 255, 255, 0.5);
}

.wave:nth-of-type(4) path,
.wave:nth-of-type(5) path {
	fill: rgba(255, 255, 255, 0.7);
}

.wave:nth-of-type(6) path {
	fill: rgba(255, 255, 255, 0.5);
}

@media screen and (max-width: 768px) {
  .headline-overlay {
    left: 50%;
  }
}