@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-video {
	--padding: 5rem 0;
	--font-size-video-title: 1.75rem;
	padding: var(--padding);
	background-color: #DFE7EA;
}

.p-video__wrap {
	display: -ms-flexbox;
	display: flex;
	column-gap: 1.25rem;
}

.p-video__content {
	width: 45%;
}

.p-video__frame {
	width: 55%;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.p-video .title {
	font-size: var(--font-size-h3);
	font-family: var(--font-family-electrolux);
	line-height: var(--line-height-h3);
	color: var(--blue-800);
	font-weight: 600;
}

.p-video .text {
	line-height: var(--line-height-text);
}

.p-video .p-video__iframe {
	padding-bottom: 56%;
	position: relative;
}

.p-video iframe {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
}

@media (max-width: 1023px) {

.p-video {
	--padding: 3rem 0;
	--font-size-video-title: 1.13rem;
}

.p-video__wrap {
	-ms-flex-direction: column;
	flex-direction: column;
	row-gap: 2rem;
}

.p-video__content {
	width: 100%;
}

.p-video__frame {
	width: 100%;
}

}

