@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");
}

.p-banner-dark {
	position: relative;
	--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);
}

.p-banner-dark:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.55);
	z-index: 1;
}

.p-banner-dark__image {
	width: 100%;
	height: 31.25rem;
}

.p-banner-dark__image-mobile {
	width: 100%;
	display: none;
	height: 31.25rem;
}

.p-banner-dark img {
	object-fit: cover;
	width: 100%;
	height: 100%;
	position: absolute;
}

.p-banner-dark__content {
	position: absolute;
	left: 50%;
	max-width: 39.69rem;
	top: 50%;
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-align: center;
	align-items: center;
	row-gap: 1.5rem;
}

.p-banner-dark__title {
	font-family: var(--font-family-electrolux);
	font-size: var(--font-size-h2);
	line-height: var(--line-height-h2);
	color: var(--white);
	font-weight: 600;
}

.p-banner-dark__text {
	color: var(--white);
	letter-spacing: var(--letter-spacing-text);
	line-height: var(--line-height-text);
	text-align: center;
}

@media (max-width: 1023px) {

.p-banner-dark__image {
	display: none;
}

.p-banner-dark__image-mobile {
	display: block;
}

}

