@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-text__container {
	display: -ms-flexbox;
	display: flex;
	column-gap: 2rem;
}

.p-text__title {
	width: 45%;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	font-size: var(--font-size-h2);
	line-height: var(--line-height-h2);
	font-family: var(--font-family-electrolux);
	font-weight: 600;
	color: var(--blue-800);
}

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

@media (max-width: 1023px) {

.p-text__container {
	-ms-flex-direction: column;
	flex-direction: column;
	row-gap: 1rem;
}

.p-text__title {
	width: 100%;
}

}

