* {
	margin: 0;
	padding: 0;
	font-family: Arial, Helvetica, sans-serif;
}
.products-download {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	row-gap: 10px;
	color: #706f6f;
}
.products-download a {
	text-decoration: none;
	color: #706f6f;
}
.download-file {
	width: 250px;
	display: flex;
	align-items: center;
	padding: 10px;
	border: 1px dashed #1b1b1b;
	border-radius: 15px;
	transition: 350ms;
}
.products-content {
	width: 100%;
	min-height: 100vh;
	box-sizing: border-box;
	padding-top: 150px;
}
.products-content-headline {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	box-sizing: border-box;
	padding: 5px;
	margin-top: 20px;
	margin-bottom: 25px;
}
.products-content-headline p {
	font-size: 25px;
	font-weight: 500;
	color: #3d3d3d;
	text-align: center;
	letter-spacing: 1.5px;
}
.products-content-headline div {
	width: 300px;
	height: 1px;
	background-color: #a33017;
	margin-top: 2px;
}

.products-content-product-box {
	width: 100%;
	min-height: 500px;
	position: relative;
	display: flex;
	align-items: center;
	margin-bottom: 25px;
}

.products-content-product-box-eye {
	width: 20%;
	display: flex;
	align-items: center;
	position: relative;
}
.products-content-eye {
	width: 130%;
	aspect-ratio: 1 / 1;
	padding: 15px;
	overflow: hidden;
	box-sizing: border-box;
	border-radius: 100%;
	box-shadow: 0px 0px 8px #76b82ab2;
	transition: 350ms;
	position: absolute;
	left: 0%;
	transform: translateX(-50%);
	user-select: none;
}
.products-content-eye img {
	width: 100%; /* Füllt die Breite des Containers */
	height: 100%; /* Füllt die Höhe des Containers */
	object-fit: cover; /* Schneidet das Bild zu, um den Container zu füllen */
	border-radius: 100%;
	display: block; /* Entfernt unerwünschte Lücken */
}
.products-content-product-box-text {
	width: 30%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	box-sizing: border-box;
	padding: 25px;
	font-size: 18px;
	line-height: 25px;
	color: #706f6f;
}
.products-content-product-box-text h2 {
	margin-bottom: 15px;
	color: #706f6f;
}
.products-content-product-box-text-draw {
	width: 100%;
	display: flex;
	overflow: hidden;
}
.products-content-product-box-text-draw img {
	width: 50%;
}
.products-content-product-box-video {
	width: 50%;
	box-sizing: border-box;
	padding: 35px;
	border-radius: 25px;
	overflow: hidden;
}
.products-content-product-box-video iframe {
	width: 100%;
	height: 450px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 25px;
}

@media (max-width: 1400px) {
	.products-content-product-box-text {
		width: 40%;
	}
	.products-content-product-box-video {
		width: 40%;
	}
	.products-content-product-box-video iframe {
		height: 350px;
	}
}
@media (max-width: 1000px) {
	.products-content-product-box-eye {
		width: 10%;
	}
	.products-content-product-box-text {
		width: 50%;
	}
	.products-content-product-box-video {
		width: 40%;
	}
	.products-content-eye {
		width: 180%;
		aspect-ratio: 1 / 1;
		padding: 10px;
	}
}
@media (max-width: 830px) {
	.products-content-product-box {
		flex-direction: column;
		position: relative;
		width: 100%;
	}
	.products-content-product-box-eye {
		position: absolute;
		left: 0;
		top: 50%;
		transform: translateY(-50%);
	}
	.products-content-eye {
		width: 300px;
	}
	.products-content-product-box-text {
		width: 60%;
	}
	.products-content-product-box-video {
		width: 70%;
	}
	.products-content-product-box-video iframe {
		height: 300px;
	}
}
@media (max-width: 700px) {
	.products-content-eye {
		width: 200px;
	}
}
@media (max-width: 500px) {
	.products-content-product-box-eye {
		display: none;
	}
	.products-content-product-box-text {
		width: 100%;
	}
	.products-content-product-box-video {
		width: 90%;
	}
	.products-content-product-box-video iframe {
		height: 250px;
	}
}
@media (max-width: 350px) {
	.products-content-headline div {
		width: 280px;
	}
	.products-content-product-box-eye {
		display: none;
	}
	.products-content-product-box-text {
		width: 100%;
	}
	.products-content-product-box-video {
		width: 100%;
	}
	.products-content-product-box-video iframe {
		height: 200px;
	}
}
