.literature-container {
	display: flex;
	background-color: #ebebee;
	border-radius: 30px;
}
.brochure-container,
.spec-container {
	display: flex;
	align-items: center;
}
a#downloadbro,
a#downloadspec {
	position: relative;
	color: #00a7b5;
}
a#downloadbro:hover,
a#downloadspec:hover {
	color: #00a7b5;
	font-weight: 600;
}
a#downloadbro::after,
a#downloadspec::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -2px;
	width: 0;
	height: 1px;
	background-color: #00a7b5;
	transition: width 0.3s ease;
	transform: translateX(-50%);
}
a#downloadbro:hover::after,
a#downloadspec:hover::after {
	width: 100%;
}
img.literature-image {
	height: -webkit-fill-available;
}
@media screen and (min-width: 1px) and (max-width: 900px) {
	.literature-container,
	.brochure-container,
	.spec-container {
		flex-direction: column;
	}
	.literature-container {
		padding: 30px;
	}
	a#downloadbro,
	a#downloadspec {
		font-size: 14px;
		top: -3px;
	}
}
@media screen and (min-width: 901px) and (max-width: 9000px) {
	.literature-container {
		flex-direction: row;
	}
	.brochure-container,
	.spec-container {
		flex-direction: column;
	}
	.literature-container {
		padding: 20px 40px 0 40px;
	}
	a#downloadbro,
	a#downloadspec {
		font-size: 14px;
		top: 50px;
	}
}
