/* frames */

section.section > .scene > .frame {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
section.section > .scene > .frame.left,
section.section > .scene > .frame.right {
	position: relative;
	width: 500px;
}
section.section > .scene > .frame.shadow {
	--shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
	-webkit-box-shadow: var(--shadow);
	-moz-box-shadow: var(--shadow);
	box-shadow: var(--shadow);
}
@media screen and (max-width: 999px) {
	section.section > .scene > .frame,
	section.section > .scene > .frame.left,
	section.section > .scene > .frame.right {
		width: 100%;
	}
}

/* titles & texts */

section.section > .scene .titles,
section.section > .scene .texts {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
}
section.section > .scene .titles .title,
section.section > .scene .texts .text,
section.section > .scene .boxes .title,
section.section > .scene .boxes .text {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
}
section.section > .scene .titles .title,
section.section > .scene .boxes .title {
	text-transform: uppercase;
	font-family: "MuseoSans-100";
	color: #000;
}
section.section > .scene .texts .wui-svgicon.ldquo,
section.section > .scene .texts .wui-svgicon.rdquo,
section.section > .scene .boxes .wui-svgicon.ldquo,
section.section > .scene .boxes .wui-svgicon.rdquo {
	flex-shrink: 0;	
	flex-basis: 30px;
	width: 30px;
	height: 30px;
}
section.section > .scene .texts .wui-svgicon.ldquo,
section.section > .scene .boxes .wui-svgicon.ldquo {
	align-self: flex-start;
}
section.section > .scene .texts .wui-svgicon.rdquo,
section.section > .scene .boxes .wui-svgicon.rdquo {
	align-self: flex-end;
}
section.section > .scene .titles .title {
	font-size: 28px;
}
section.section > .scene .texts .text {
	flex-direction: column;
	line-height: 1.3;
	font-size: 17px;
}
section.section > .scene .texts .highlight {
	color: var(--hightlight-color);
}
section.section > .scene .boxes {
	flex-direction: row;
	flex-wrap: wrap;
	padding-top: 20px;
	padding-bottom: 20px;
}
section.section > .scene .boxes .title {
	font-size: 24px;
}
section.section > .scene .boxes .text {
	font-size: 15px;
}
section.section > .scene .buttons {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	padding-top: 20px;
	padding-bottom: 40px;
}
section.section > .scene .buttons .wui-button {
	width: 240px;
	margin-left: 15px;
	margin-right: 15px;
	margin-bottom: 20px;
}
@media screen and (max-width: 999px) {
	section.section > .scene .titles,
	section.section > .scene .texts {
		width: 100%;
		padding-left: 20px;
		padding-right: 20px;
		align-items: center;
	}
	section.section > .scene .titles .title,
	section.section > .scene .texts .text {
		left: 0;
		right: 0;
		max-width: 100%;
	}
	section.section > .scene .titles .title,
	section.section > .scene .boxes .title {
		font-family: "MuseoSans-100";
	}
	section.section > .scene .texts .wui-svgicon.ldquo,
	section.section > .scene .texts .wui-svgicon.rdquo,
	section.section > .scene .boxes .wui-svgicon.ldquo,
	section.section > .scene .boxes .wui-svgicon.rdquo {
		flex-basis: 24px;
		width: 24px;
		height: 24px;
	}
	section.section > .scene .titles .title {
		font-size: 28px;
	}
	section.section > .scene .texts .text {
		font-size: 17px;
	}
	section.section > .scene .boxes .title {
		font-size: 22px;
	}
	section.section > .scene .boxes .text {
		font-size: 15px;
	}
}

/* animation */

section.section > .scene .animation {
	display: flex;
	position: relative;
	justify-content: center;
	align-items: center;
}
section.section > .scene .animation .text {
	font-size: 17px;
}
@media screen and (max-width: 999px) {
	section.section > .scene .animation .text {
		font-size: 17px;
	}
}