/* Reset base styling (do not change) */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p,
blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img,
ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center,
dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody,
tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure,
figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary,
time, mark, audio, video { margin: 0; padding: 0; border: 0; font-size: 100%;
font: inherit; vertical-align: baseline; }
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav,
section { display: block; }
body { line-height: 1; }
ol, ul { list-style: none; }
blockquote, q { quotes: none;}
blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none; }
table { border-collapse: collapse; border-spacing: 0; }

@font-face { /* titillium-web-regular - latin */
	font-family: 'Titillium Web';
	font-style: normal;
	font-weight: 400;
	src: url('../fonts/titillium-web-v9-latin-regular.woff2') format('woff2'),
		url('../fonts/titillium-web-v9-latin-regular.woff') format('woff');
}

@font-face {
	font-family: 'Noto Sans';
	src: url('../fonts/NotoSans-Light.woff2') format('woff2'),
		url('../fonts/NotoSans-Light.woff') format('woff');
	font-weight: 300;
	font-style: normal;
}

@font-face {
	font-family: 'Noto Sans';
	src: url('../fonts/NotoSans-Regular.woff2') format('woff2'),
		url('../fonts/NotoSans-Regular.woff') format('woff');
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family: 'Noto Sans';
	src: url('../fonts/NotoSans-Bold.woff2') format('woff2'),
		url('../fonts/NotoSans-Bold.woff') format('woff');
	font-weight: 700;
	font-style: normal;
}

html, body {
	overflow-x: hidden;
}

body {
	position: relative;
	width: 100vw;
	font-family: "Noto Sans", sans-serif;
	font-size: 1.25rem;
	line-height: 1.5rem;
	text-align: center;
	background-color: #000;
	background-image: url(../img/background.png);
	color: #999;
	overflow-y: scroll;
}

/**************/
/* Navigation */
/******************************************************************************/
body > nav {
	position: fixed;
	left: 0;
	right: 0;
	width: 100vw;
	top: 0;
	background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.0));
	background-origin: border-box;
	background-clip: border-box;
	background-size: 100vw 100%;
	z-index: 1000;
}

body > nav .container {
	box-sizing: border-box;
	margin: 0 auto;
	width: 100%;
	max-width: 1200px;
	padding: 1rem 2rem;
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
}

body > nav .logo {
	flex: 0;
	font-family: "Titillium Web", sans-serif;
	font-size: 1.2rem;
	padding-left: 1.8rem;
	padding-top: 0.3rem;
	padding-bottom: 0.3rem;
	background-position: 0 50%;
	background-size: 1.6rem 1.6rem;
	background-repeat: no-repeat;
	color: #ccc;
	filter: saturate(5%);
	transition-duration: 2s;
}

body > nav .logo:hover {
	flex-basis: 34%
	color: #fff;
	filter: inherit;
	transition-duration: 0.5s;
}

body > nav a {
	text-decoration: none;
	color: #999;
}

body > nav .menu {
	flex-basis: 34%
	flex: 1;
	display: flex;
	flex-flow: wrap row;
	justify-content: right;
	padding: 0.3rem 0;
	font-weight: 600;
	font-size: 1.0rem;
	color: #999;
	overflow: hidden;
}

body > nav ul.menu > li { margin-left: 1rem; }
body > nav ul.menu > li:before {
	margin-right: 1rem;
	content: '·';
}
body > nav ul.menu > li:first-child:before { content: ''; }
body > nav ul.menu > li a:hover { color: #fff; }
body > nav .menu-button { display: none; }

.popup li a, body > nav.popup .blue-button {
	display: block;
	color: #eee;
	padding: 0 1rem;
	background: none;
	border: none;
	text-shadow: none;
	text-align: left;
	border-radius: 0;
	box-shadow: none;
	font-size: 1.0rem;
	line-height: 2.1rem;
	height: auto;
}

.popup li a:hover {
	background-color: #2786B9;
	color: #fff;
	box-shadow: none;
	transition-duration: 0.2s;
}

.popup hr {
	border: none;
	background-color: #333;
	height: 1px;
}

.popup .sub-menu {
	display: none;
	position: absolute;
	top: 48px;
	/*border: 1px solid #333;
	background-color: #111;
	line-height: 2.1rem;
	padding: 0.3rem 1rem;*/
}

.popup .sub-menu.open {
	display: block;
}

.popup .sub-menu li a {
	text-align: left;
}

.popup.open .sub-menu {
	position: static;
	display: block;
	border: none;
	box-shadow: none;
	width: 100%;
	border-top: 1px solid #333;
	border-bottom: 1px solid #333;
}
.popup.open .popup > a:first-child {
	display: none;
}

body > nav.popup .menu-button {
	display: block;
	background: none;
	color: white;
	border: none;
	outline: none;
}

body > nav.popup .menu {
	width: 80vw;
	display: none;
}

body > nav.popup.open .menu, .popup .sub-menu {
	width: min-content;
	position: absolute;
	border: 1px solid #333;
	background-color: #222;
	box-shadow: 0 0 20px black,
		inset 0 0 20px rgba(0, 0, 0, 0.2);
}

body > nav.popup.open .menu {
	display: block;
	right: 24pt;
	top: 40pt;
}

body > nav.popup .menu li:before {
	margin-right: 0;
	content: '';
}

body > nav.popup .menu li {
	display: block;
	margin: 4pt 0;
}


/**********/
/* Footer */
/******************************************************************************/

footer {
	max-width: 1200px;
	margin: 0 auto;
	padding: 1rem 2rem;
	font-size: 0.9rem;
}

footer ul {
	display: flex;
	justify-content: center;
	margin-bottom: 1em;
}

footer ul li {
	margin-right: 1rem;
	white-space: nowrap;
}
footer ul li:before {
	margin-right: 1rem;
	content: '·';
}
footer ul li:first-child:before {
	content: '';
}

footer a {
	text-decoration: none;
	color: #aaa;
}

footer a:hover {
	color: #ddd;
}


/***********/
/* Content */
/******************************************************************************/

picture {
	display: block;
	line-height: 0;
}
picture img {
	width: 100%;
	height: 100%;
}

header, section {
	padding: 4rem 0;

	/* debug */
	/*background-color: rgba(255, 0, 0, 0.08);
	border-bottom: 1px solid #400;*/
}

section section {
	padding-bottom: 0;
}

header a, section a {
	color: #ccc;
	text-decoration: underline;
}

header a:hover, section a:hover {
	color: #fff;
}

section > p {
	max-width: 600px;
	padding: 0 2rem;
	margin-left: auto;
	margin-right: auto;
}

header > p {
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	font-size: 1.4rem;
	font-weight: 300;
	padding: 0 2rem;
	color: #999;
	margin-top: 0.25em;
	line-height: 1.5em;
}

header > nav, section > nav {
	margin-top: 4rem;
}

.brand {
	font-family: "Titillium Web", sans-serif;
}

.section-divider {
	max-width: 1200px;
	margin: 0 auto;
	height: 4rem;
	line-height: 4rem;
	background-image: linear-gradient(#444 0% 100%);
	background-repeat: no-repeat;
	background-size: 80% 1px;
	background-position: 50% 50%;
}

.section-divider.fancy {
	max-width: 200px;
	background-image: linear-gradient(90deg, #fc764c, #8c4abb);
	background-size: 100% 2px;
}

.divider-text {
	display: inline-block;
	width: auto;
	background-color: black;
	padding: 0 2rem;
	padding-bottom: 1rem;
	vertical-align: middle;
	font-size: 2.4rem;
	line-height: 2.4rem;
	color: #ddd;
}

h1, h2, h3, h4, h5, [role=doc-subtitle], .discover {
	font-family: "SF Pro Display", "SF Pro Icons", "Segoe UI", "Helvetica Neue", "Roboto Sans", "Noto Sans", sans-serif;
	flex-basis: 100%;
}

section > h1, section > h2, section > h3, section > h4, section > h5, section > [role=doc-subtitle],
header > h1, header > h2, header > h3, header > h4, header > h5, header > [role=doc-subtitle] {
	padding-left: 2rem;
	padding-right: 2rem;
}


h1 { font-size: 2.0rem; padding-top: 0.6rem; padding-bottom: 1.2rem; margin-top: 6rem; color: #fff; }
h2 { font-size: 2.2rem; font-weight: bold; line-height: 2.4rem; color: #fff; }
h3 { font-size: 1.5rem; font-weight: 600; line-height: 2.1rem; color: #fff; }
h4 { font-size: 1.25rem; font-weight: 400; color: #fff; }
p { font-size: 1.0rem; margin-top: 1.2rem; margin-bottom: 1.2rem; line-height: 1.5rem; color:#999;}
p:first-of-type { margin-top: 2em; }

h1 + [role=doc-subtitle] { font-size: 3.6rem; font-weight: bold; margin-bottom: 3rem; margin-top: 1rem; line-height: 3.6rem; color: #fff; padding-top: 1rem;  }
h2 + [role=doc-subtitle] { font-family: "Noto Sans", sans-serif; font-size: 1.4rem; letter-spacing: -0.05rem; font-weight: 300; color: #999; margin-top: 0.25em; line-height: 1.5em; }
h3 + [role=doc-subtitle] { font-family: "Noto Sans", sans-serif; font-size: 1.25rem; font-weight: 300; color: #999 }

h2 .heading-logo {
	max-height: 3.6rem;
	vertical-align: middle;
	margin-right: 0.6rem;
	margin-bottom: 0.6rem;
}
.section-logo {
	margin-bottom: 2rem;
}

em { font-weight: 400; }


/*
	New kind of page layout start
*/

.section-blocks {
	display: flex;
	flex-flow: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: stretch;
	margin: 0 auto;
	max-width: 1200px;
	margin-top: 3rem;
}

.section-blocks:first-child {
	margin-top: 0;
}

.section-blocks > div {
	position: relative;
	box-sizing: border-box;
	margin-top: 3rem;

	/*border: 1px dashed #522;*/
}

.section-blocks > .text {
	padding: 3rem;
	text-align: left;
}

.section-blocks > .text h2 {
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.2rem;
	padding-bottom: 1rem;
	color: #aaa;
}

.section-blocks > .text h2 + [role=doc-subtitle] {
	font-weight: 600;
	color: white;
	margin-top: -0.5rem;
}

.section-blocks > .center-block {
	display: flex;
	align-items: center;
	justify-content: center;
}

.block-2-3 {
	flex-basis: 66%;
	/*flex-grow: 4;
	flex-shrink: 1;*/
}

.block-1-3 {
	flex-basis: 33%;
	/*flex-grow: 2;*/
}

.block-1-2 {
	flex-basis: 50%;
	/*flex-grow: 1;*/
}

.block-1 {
	flex-basis: 100%;
	/*flex-grow: 6;*/
}


/*
	New kind of page layout end
*/

div.col-2, div.col-2l, div.col-2r, div.col-3 {
	max-width: 1200px;
	box-sizing: border-box;
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	text-align: left;
	margin: 3rem auto;
}

div.col-2:first-child, div.col-2l:first-child, div.col-2r:first-child {
	margin-top: 0;
}

div.col-2 > div, div.col-2l > div, div.col-2r > div {
	flex-basis: 35%;
	flex-grow: 1;
	padding: 1rem 3rem;
}

div.col-2l > div:nth-child(1), div.col-2l > div:nth-child(2) {
	flex-basis: 42%;
}

div.col-2l > div:nth-child(2), div.col-2r > div:nth-child(1) {
	flex-basis: 26%;
	flex-grow: 1;
	padding: 1rem 6rem;
}

div.col-3 {
	box-sizing: border-box;
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	text-align: left;
}

div.col-3 > div {
	flex-basis: 20%;
	flex-grow: 1;
	min-width: 200px;
	padding: 1rem 3rem;
}

.fancy-1, .fancy-2, .fancy-3, .fancy-4 {
	padding-bottom: 1rem;
	background-size: 100% 2px;
	background-repeat: no-repeat;
	background-position: 0 1.9rem;
	white-space: nowrap;
	text-shadow: 0 0 3px black, 0 0 3px black, 0 0 3px black, 0 0 3px black
}

.fancy-1 { background-image: linear-gradient(to right, #47beaf, #8b49bb); }
.fancy-2 { background-image: linear-gradient(to right, #8b4abb, #47beaf); }
.fancy-3 { background-image: linear-gradient(to right, #fd764c, #8b49ba); }
.fancy-4 { background-image: linear-gradient(to right, #8b49ba, #fd764c); }


div.flex-container {
	display: flex;
	max-width: 1200px;
	margin: 0 auto;
	flex-wrap: wrap;
	align-items: center;
}

div.flex-container > div {
	flex-basis: 40%;
	margin: 2rem;
	text-align: center;
	flex-grow: 1;
}
div.flex-container > div.shallow {
	flex-basis: 20%;
}

div.flex-container.right > div {
  text-align: right;
}

div.flex-container.left > div {
  text-align: left;
}

div.release-notes {
	display: block;
	text-align: center;
	padding-top: 1rem;
	font-size: 1rem;
	font-weight: lighter;
	height: 60px;
	width: 100%;
}

div.release-notes a:link {
	color: #ff0000;
	  background-color: transparent;
}

div.release-notes a:visited {
	color: #999;
}

div.release-notes a:active {
	color: #fff;
	  text-decoration: underline;
}

div.release-notes a:hover {
	color: #fff;
	  text-decoration: underline;
}


.early-access-img h2 {
	padding-top: 1.5rem;
	padding-bottom: 1.5rem;
}

.early-access-img h2 .full-price {
	  text-decoration-line: line-through;
}

.early-access-img h6 {
	text-decoration: underline;
	padding-top: 0.5rem;
}


.pro:after {
	content: "PRO";
	margin-left: 0.5rem;
	font-size: 0.7rem;
	font-weight: bold;
	vertical-align: top;
	color: #5da665;
}

h4.pro:after { line-height: 1.5rem; }

a.discover {
	color: #13a5ff;
	text-decoration: none;
	font-weight: normal;
	font-size: 1.2rem;
	line-height: 1.5rem;
	white-space: nowrap;
}

a.discover.inline {
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
}

a.discover::after {
	display: inline-block;
	padding-left: 0.4rem;
	content: ">";
	text-decoration: none;
}

a.discover:hover {
	color: #13a5ff;
	text-decoration: underline;
}

.buy-button {
	color: white;
	display: block;
	margin: auto;
	text-align: center;
	font-size: 1.4rem;
	font-weight: bold;
	text-shadow: 0px -1px #555;
	height: 50px;
	width: 40%;
	background-image: linear-gradient(-180deg, #0B83CD, #0E6397);
	border: 1px #0B8AD9;
	border-style: double;
	border-radius: 4px;
}

.flex-container.right .flex-item .buy-button { margin-right: 0; }
.flex-container.left .flex-item .buy-button { margin-left: 0; }

.nav-button, .blue-button, .gray-button, .icon-button {
	display: inline-block;
	padding: 0 20pt;
	margin: 2pt 10pt;
	height: 50px;
	line-height: 50px;
	text-align: center;
	text-decoration: none;
	vertical-align: middle;
	font-size: 1.25rem;
	font-weight: bold;
	color: white;
	border: 1.5px solid #378EBC;
	border-radius: 10px;
	white-space: nowrap;
}

.nav-button:hover {
	background-color: #022030;
}

.blue-button, .gray-button, .icon-button {
	background-color: #2786B9;
	border: 1px solid #5badda;
	text-shadow: 0 0 15px #000;
	box-shadow: 0 0 30px black;
	transition-duration: 0.2s;

	background-image: url(../img/triangles.png), url(../img/triangles.png);
	background-size: 640px 128px, 640px 128px;
	animation: triangle-scroll 10s linear infinite;
}

.gray-button {
	background-color: #000;
	border: 1px solid #444;
	animation: none;
}

@keyframes triangle-scroll {
	0% {
		background-position: 0 0, -65px 0;
	}
	100% {
		background-position: 0 128px, -65px 256px;
	}
}


.blue-button:hover, .gray-button:hover, .icon-button:hover {
	background-color: #3E9ED0;
	border-color: #5AA9D2;
	box-shadow: 0 0 30px #005785;
	text-decoration: none !important;
}

.gray-button:hover {
	background-color: #333;
	border-color: #555;
	box-shadow: 0 0 30px #222;
	text-decoration: none !important;
}

body > nav .blue-button {
	height: 24px;
	line-height: 22px;
	border-radius: 12px;
	padding: 0 14px 0 14px;
	margin: -4px 0 0 0;
	font-size: 1.0rem;
}

.icon-button {

}

.icon-button > div {
	display: inline-block;
	width: 60px;
	height: 60px;
	margin: -5px 12px 0 -32px;
	background-size: 60px 60px;
	background-repeat: no-repeat;
	vertical-align: middle;
}

.aspect-beta-icon { background-image: url('../img/appicon_earlyaccess.png'); }


.early-access-font {
	font-size: 0.9rem;
}

.early-access-version-font {
	font-size: 0.9rem;
	font-weight: lighter;
	text-align: center;
	font-weight: 100;
}

form {
	margin-top: 2rem;
}

.form-line {
	margin-bottom: 1em;
}
.form-line label {
	font-size: 1.0rem;
	font-weight: bold;
}
.form-line input[type="checkbox"] + label {
	font-weight: normal;
}
.form-line input[type="text"], .form-line input[type="email"], .form-line select {
	box-sizing: border-box;
	display: block;
	width: 100%;
	height: 2.1rem;
	margin: 0;
	margin-top: 0.3rem;
	padding: 0.3rem;
	border-radius: 5px;
	border: 1px solid white;
	background-color: #eee;
	outline: none;
	font-size: 1.0rem;
	color: #000;
}
.form-line input[type="text"]:focus, .form-line input[type="email"]:focus, .form-line select:focus {
	box-shadow: 0 0 30px #005785;
}
.form-line select:-ms-expand { display: none; }
.form-line select {
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 16 16' width='24' height='24' xmlns='http://www.w3.org/2000/svg'><g><path d='M4,6L8,10L12,6' style='fill:none;stroke-linecap:round;stroke-linejoin:round;stroke:black;stroke-width:2px;'/></g></svg>");
	background-repeat: no-repeat;
	background-position: right center;
}
.form-line input[type="checkbox"] {
	display: inline-block;
}
.form-block {
	margin-top: 3rem;
	margin-bottom: 2rem;
}
.error {
	color: #ff3010;
}

.price-timeline {
	background-image:
		linear-gradient(90deg, #000 0% 15%, rgba(0, 0, 0, 0.0) 25% 75%, #000 85% 100%),
		linear-gradient(90deg, rgba(0, 0, 0, 0.0) 0% 16px, #777 16px 17px, rgba(0, 0, 0, 0.0) 17px 100%);
	background-size: 100% 20px, 32px 10px;
	background-repeat: no-repeat, repeat-x;
	background-position: 50% 50%, 50% 50%;

	display: grid;
	grid-template-columns: auto 192px 192px 192px auto;
	grid-template-rows: 64px 32px 64px;
	font-weight: bold;
}

.price-timeline .price {
	grid-column-start: 3;
	align-self: end;
	color: #33ADEE;
	font-size: 2.6rem;
	line-height: 2.6rem;
	padding-bottom: 4px;
}

.price-timeline .final-price {
	grid-column-start: 4;
	align-self: end;
	padding-bottom: 4px;
}

.price-timeline .date {
	grid-column-start: 3;
	align-self: start;
	color: #ddd;
}

.price-timeline .dash {
	grid-column-start: 3;
	background-image: linear-gradient(90deg, #aaa 0% 100%);
	background-position: 50% 50%;
	background-size: 2px 20px;
	background-repeat: no-repeat;
}

.price-timeline .final-dash {
	grid-column-start: 4;
	background-image: linear-gradient(90deg, #666 0% 100%);
	background-position: 50% 50%;
	background-size: 2px 20px;
	background-repeat: no-repeat;
}


.price-timeline .final-date {
	grid-column-start: 4;
	align-self: start;
}


/******************/
/* Privacy Policy */
/******************/

.legal-text {
	text-align: left;
}

.legal-text p, .legal-text ul {
	max-width: 1200px;
	font-size: 1rem;
	margin: 1rem auto;
	line-height: 1.75rem;
	margin-bottom: 0.75em;
}

.legal-text p:first-of-type {
	margin-top: 1em;
}

.legal-text ul {
	list-style: initial;
	padding-left: 2em;
}

.legal-text h1, .legal-text h2, .legal-text h3 {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

.legal-text h2 {
	font-size: 1.5rem;
	margin-top: 1.5em;
}

.legal-text h3 {
	margin-top: 1.25em;
	font-weight: bold;
}

.legal-text strong {
	color: #bbb;
	font-weight: bold;
}


/************/
/* Graphics */
/******************************************************************************/

.bildhuus-logo {
	background-image: url("../img/bildhuus-logo.png");
}


.dropdown-icon {
	background-image: url("../img/bildhuus-logo.png");
}

.aspect-header {
	margin-left: auto;
	margin-right: auto;
	width: min-content;
	padding-left: 3.2rem;
	white-space: nowrap;
	background-size: 2.8rem 2.8rem;
	background-repeat: no-repeat;
	background-image: url("../img/aspect-logo.png");
}

.os-img {
	margin: 1.2rem auto;
	width: 110px;
	height: 30px;
	font-size: 1.25rem;
	line-height: 1.8rem;
	color: #fff;
	background-position: right top;
	background-repeat: no-repeat;
	background-image: url("../img/OS.png");
}

.halo {
	position: relative;
}
.halo::before, .halo::after {
	position: absolute;
	display: block;
	content: " ";
	border-radius: 20px;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.halo::before {
	box-shadow: 0 0 150px #222;
}


.video-thumbnail {
	position: relative;
	display: block;
	margin: 0 auto;
	background-color: #000;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	box-shadow: 0 0 10px #000;
	border: 1px solid #000;
	max-width: 360px;
	max-height: 202px;
	width: 30vw;
	height: 16.875vw;
}

.video-thumbnail.halo::before {
	box-shadow: 0 0 50px #333;
}

.docs-page .video-thumbnail {
	box-shadow: 0 0 16px #808080;
}

.video-thumbnail::after {
	position: absolute;
	content: "";
	z-index: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/* NOTE: second image is just for pre-loading */
	background-image:
		url(../img/video-button.png),
		url(../img/video-button-hover.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 116px 116px, 0 0;
}

.video-thumbnail:hover::after {
	background-image: url(../img/video-button-hover.png);
}

.video-thumbnail.intro {
	background-image: url(../img/video-thumb-intro.jpg);
}

.early-access-img {
	padding-top: 7rem;
	background-position: center top;
	background-size: 96px;
	background-repeat: no-repeat;
	background-image: url("../img/appicon_earlyaccess@2x.png");
	background-image: image-set(
		url("../img/appicon_earlyaccess.png") 1x,
		url("../img/appicon_earlyaccess@2x.png") 2x,
	);
}

/************************/
/* Responsive overrides */
/******************************************************************************/

@media (max-width: 767.99px) { /* phone */
	h1 + [role=doc-subtitle] { font-size: 3.0rem; }
	footer ul li:before { margin-right: 0; content: none; }
	h3.fancy-1, h3.fancy-2, h3.fancy-3, h3.fancy-4 {
		width: min-content;
		white-space: nowrap;
		margin-left: auto;
		margin-right: auto;
	}
	.section-blocks > div { margin-top: 0;}
	.video-thumbnail {
		width: 80vw;
		height: 45vw;
	}
	.heading-logo { display: block; margin: 0.6rem auto !important; }

	.flex-container > div, .col-2 > div, .col-2r > div, .col-2l > div, div.col-3 > div {
		text-align: center !important;
		padding: 1rem 2rem !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
		flex-basis: 100% !important;
	}
	.price-timeline { grid-template-columns: auto 96px 96px 96px auto; font-size: 0.9rem; }
	.price-timeline .price { font-size: 1.8rem; }

	.block-2-3 { flex-basis: 100%; }
	.block-1-3 { flex-basis: 100%; }
	.block-1-2 { flex-basis: 100%; }
}

@media ((max-width: 991.99px) and (min-width: 768px)) { /* tablet */
	.block-2-3 { flex-basis: 50%; }
	.block-1-3 { flex-basis: 50%; }
}

@media ((max-width: 1199.99px) and (min-width: 992px)) { /* small screen */
	.flex-container.left div.organization-img {
		margin: -24vw !important;
		padding: 24vw !important;
	}
	.flex-container.left div.organization-img {
		background-size: 24vw 51.6666667vw;
		width: 24vw;
		height: 51.6666667vw;
	}
}


@media only screen and (-o-min-device-pixel-ratio: 5/4),
	only screen and (-webkit-min-device-pixel-ratio: 1.25),
	only screen and (min--moz-device-pixel-ratio: 1.25),
	only screen and (min-device-pixel-ratio: 1.25),
	only screen and (min-resolution: 1.25dppx)
{
	.video-thumbnail::after { background-image: url(../img/video-button@2x.png), url(../img/video-button-hover@2x.png); }
	.video-thumbnail:hover::after { background-image: url(../img/video-button-hover@2x.png); }
	.video-thumbnail.intro { background-image: url(../img/video-thumb-intro@2x.jpg); }
	.video-thumbnail.first-use-tutorial { background-image: url(../img/video-thumb-first-use@2x.jpg); }

	body { background-size: 256px 256px; }
}
