@font-face {
	font-family: "Electrolux";
	font-weight: 700;
	src: url("../webfonts/electrolux/ElectroluxSans_5_Bold.otf") format("opentype");
}

@font-face {
	font-family: "Electrolux";
	font-weight: 600;
	src: url("../webfonts/electrolux/ELECTROLUXSANS_4_SEMIBOLD.ttf") format("truetype");
}

@font-face {
	font-family: "Electrolux";
	font-weight: 400;
	src: url("../webfonts/electrolux/ElectroluxSans_3_Regular.otf") format("opentype");
}

@font-face {
	font-family: "Noto Sans";
	font-weight: 400;
	src: url("../webfonts/noto/NotoSans-Regular.ttf") format("truetype");
}

@font-face {
	font-family: "Noto Sans";
	font-weight: 600;
	src: url("../webfonts/noto/NotoSans-SemiBold.ttf") format("truetype");
}

.n-teaser {
	--color-button: var(--blue-800);
	--bg-color-button: var(--white);
	--border-button: var(--white);
	--color-hover-button: var(--white);
	--bg-color-hover-button: var(--white);
	--border-hover-button: var(--white);
}

.n-teaser__wrap {
	position: relative;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-align: center;
	align-items: center;
}

.n-teaser__wrap:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.4);
	z-index: 1;
	transition: all 0.2s;
}

.n-teaser__wrap:hover:before {
	background-color: rgba(0, 0, 0, 0.65);
	transition: all 0.2s;
}

.n-teaser__content {
	position: absolute;
	left: 50%;
	bottom: 1.5rem;
	width: 70%;
	z-index: 2;
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-align: center;
	align-items: center;
}

.n-teaser__title {
	font-size: var(--font-size-h4);
	line-height: var(--line-height-h4);
	font-weight: 600;
	color: var(--white);
	text-align: center;
	font-family: var(--font-family-electrolux);
	margin-bottom: 1.5rem;
}

.n-teaser .teaser-image {
	width: 100%;
	position: relative;
	padding-bottom: 67%;
}

.n-teaser .teaser-image img {
	width: 100%;
	height: 100%;
	position: absolute;
	object-fit: cover;
}

.n-solution-teaser .n-teaser__content {
	width: 80%;
}

@media (max-width: 1023px) {

.n-teaser .teaser-image {
	padding-bottom: 70%;
}

.n-solution-teaser .n-teaser__content {
	width: 90%;
}

}

