.carousel-container {
	position: absolute;
	position: relative;
//	top: 3vw;
	width: 100%;
	max-width: 100vw;
	height: 70vh;
	padding: 5vw 0;
	overflow: hidden;
	margin: auto;
	//perspective: 2000px;
	perspective: 80vw;
}

.carousel-track {
	display: flex;
	margin-top: 5vw;
	transition: transform 0.5s ease;
	transform-style: preserve-3d;
}

.carousel-item {
	flex: 0 0 19.2vw;
	height: 20vw;
	margin-right: 1vw;
	border-radius: 1vw;
	background-color: #f0f0f0;
	text-align: center;
//	display: flex;
	align-items: center;
	justify-content: center;
//	cursor: pointer;
	transform: scale(0.7);
	transition:
		transform 0.5s ease,
		opacity 0.5s ease,
		z-index 0.5s ease,
		color 1s;
}

.carousel-item:last-child {
	margin-right: 0;
}

.carousel-button {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(0, 0, 0, 0.4);
	border: none;
	color: white;
	font-size: 3vw;
	padding: 1vw;
	cursor: pointer;
	z-index: 10;
	border-radius: 1vw;
}

.carousel-button.prev {
	left: 1vw;
}

.carousel-button.next {
	right: 1vw;
}

.pos--2 {
	transform: scale(0.7) translateZ(-4vw) rotateY(20deg);
	opacity: 0.4;
	opacity: 0.4;
	z-index: 1;
}

.pos--1 {
	transform: scale(0.9) translateZ(-1vw) rotateY(10deg);
	opacity: 0.7;
	z-index: 2;
}

.pos-0 {
	transform: scale(1.2) translateZ(5vw);
	opacity: 1;
	z-index: 5;
}

.pos-1 {
	transform: scale(0.9) translateZ(-1vw) rotateY(-10deg);
	opacity: 0.7;
	z-index: 2;
}

.pos-2 {
	transform: scale(0.7) translateZ(-4vw) rotateY(-20deg);
	opacity: 0.4;
	z-index: 1;
}

.carousel-itemtext {
	color: rgba(49, 122, 158, 1);
	font-family: "Font-Regular";
	font-size: 1.1em;
	text-align: center;
	padding: 1vw;
}

.carousel-itemhead {
	color: rgba(49, 122, 158, 1);
	font-family: "Font-Regular";
	font-size: 1em;
	font-weight: bold;
	text-align: center;
}

.carousel-itemfoot {
	color: rgba(49, 122, 158, 1);
	font-family: "Font-Regular";
	font-size: 0.9em;
	text-align: center;
}

#carousel_referenzen h2 {
	position: absolute;
	top: 0;
	width: 100%;
	text-align: center;
	color: rgba(235, 216, 76, 1);
	font-family: "Font-Regular";
	font-size: 2em;
}

#carousel_solutions h2 {
	position: absolute;
	top: 0;
	width: 100%;
	text-align: center;
	color: rgba(49, 122, 158, 1);
	font-family: "Font-Regular";
	font-size: 2em;
}

#carousel_solutions h3 {
	position: absolute;
	bottom: 0vw;
	width: 100%;
	text-align: center;
	color: rgba(49, 122, 158, 1);
	font-family: "Font-Regular";
	font-size: 2em;
}

