@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-full {
	--padding-text-wrap: 3rem 0 3rem 3rem;
	--margin-bottom-title: 2rem;
	position: relative;
}

.p-banner-full__title {
	font-size: var(--font-size-h2);
	font-family: var(--font-family-electrolux);
	color: var(--blue-800);
	line-height: var(--line-height-h2);
	margin-bottom: var(--margin-bottom-title);
	font-weight: 600;
}

.p-banner-full__text {
	letter-spacing: var(--letter-spacing-text);
	line-height: var(--line-height-text);
}

.p-banner-full__link {
	margin-top: 2rem;
}

.p-banner-full__image {
	width: 100%;
}

.p-banner-full__image img {
	width: 100%;
	height: auto;
}

.p-banner-full__content {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
}

.p-banner-full .container {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: end;
	justify-content: flex-end;
	height: 100%;
	position: relative;
}

.p-banner-full .container:after {
	content: "";
	background-color: var(--white);
	right: 1px;
	width: calc((100vw - 1278px) / 2);
	height: 100%;
	position: absolute;
	-ms-transform: translateX(calc(100% - 20px));
	transform: translateX(calc(100% - 20px));
}

.p-banner-full__text-wrap {
	width: 50%;
	background-color: var(--white);
	padding: var(--padding-text-wrap);
}

@media (max-width: 1023px) {

.p-banner-full {
	--padding-text-wrap: 1.5rem 0 0 0;
	--margin-bottom-title: 1rem;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
}

.p-banner-full__content {
	position: initial;
}

.p-banner-full__text-wrap {
	width: 100%;
}

}

