@charset "UTF-8";

/* reset  

html, body{ font-size:1.5rem; font-weight:400; line-height:2rem; text-transform:initial; letter-spacing:initial; font-weight:400; color:var(--c-text); border: 1px solid var(--c-border);}

@media (min-width: 40em){ html, body{ font-size:1.4rem; } }

html, body, button{ font-family:-apple-system, BlinkMacSystemFont, San Francisco, Segoe UI, Roboto, Helvetica Neue, sans-serif; }

html{ position:relative; font-size:62.5%; -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale; -webkit-text-size-adjust:100%; -moz-text-size-adjust:100%; text-size-adjust:100%; text-rendering:optimizeLegibility; }

body{ min-height:100%; margin:0; padding:0; background-color: var(--bg-global); }

*, *::before, *::after{ box-sizing:border-box; }

h1, h2, h3, h4, h5, h6, p{ margin:0; font-size:1em; font-weight:400; }
a{
	text-decoration: none;
	color: var(--c-text);
}
*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, img,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
article, footer, header, nav, section{
	margin:0;
	padding:0;
	/*border: 1px solid red;*/
	font-size:1em;
	background:transparent;
}

html, body {
	line-height:1em;
	background: var(--bg-global);
	color: var(--c-main-text);
	font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, San Francisco, Segoe UI, Roboto, Helvetica Neue, sans-serif;
}

body {
	display: grid;
	grid-template-rows: auto 1fr auto;
}

main {
	padding: 0;
}

section {	
	box-sizing: border-box;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
	display:block;
}

nav ul {
	list-style:none;
}

a {
	margin:0;
	padding:0;
	vertical-align:baseline;
	text-decoration: none;
	color: inherit;
	background:transparent;
}

p {
	line-height: 1.3em;
	font-size: 1.2em;
}

input, select {
	vertical-align:middle;
}

hr {
	background: var(--c-border);
	height: 0.1em;
	width: 100%;
	margin-top: 1.2em;
	margin-bottom: 1.2em;
}

img {
	object-fit: cover;
	object-position: center;
}

/* header {
} */

/* global properties */
:root {
	--bg-global: #EEEEEE;
	--bg-container: #066163;
	--c-main-text: #00092C;
	--c-alt-text: #EEEEEE;
	--c-border:  #B20600;
	--c-alt-border: #066163;
	--c-saturate: #FF5F00;
}

/* components */

.call-to-action {
	padding: 1.5em 3em 1.5em 3em;
	text-align: center;
	font-size: 1.3em;
	border: 1px solid transparent;
	border-radius: 0 0 1.5rem 1.5em;
	letter-spacing: 0.3em;
}

.container {
	padding: 2em;
	align-content: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	border: 1px solid transparent;
	border-radius: 0 0 3rem 3em;
	background: var(--bg-container);
	color: var(--c-alt-text);
}

.container-hero {
	background: var(--bg-global);
	color: var(--c-main-text);
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	/*border: 0.3em solid var(--c-alt-border);
	border-radius: 3rem 3em 0 0;*/
}

.container-hero-image {
	flex: 1 1 40%; /*  Stretching: */
	margin: 1em;
}

.container-hero-text {
	flex: 1 1 40%; /*  Stretching: */
	margin: 1em;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

.container-nav {
	background: var(--bg-global);
	color: var(--c-main-text);
	width: 100%;
	height: 100%;
}

.container-text {
	text-align: center;
}

.footer-item {
	text-align: center;
	align-content: center;
	border: 0.3em solid var(--c-border);
	padding: 1.5em;
	border-radius: 1.5rem 1.5em 0 0;	
}

.heading {
	font-size: 2em;
	font-weight: 500;
	line-height: 1.3;
	text-align: center;
}

.heading-l {
	font-size: 3.5em;
	font-weight: 900;
	line-height: 1.2;
	text-align: center;
}

.heading-s {
	font-size: 1.5em;
	font-weight: 400;
	line-height: 1.4;
	text-align: center;
}

.hero-image {
	width: 100%;
	height: 70%;
	border-radius: 1rem;
}

.image-responsive--large {
	width: 100%;
	height: 100%;
}

.image-square--small {
	width: 4em;
	height: 4em;
}

.image-screenshot {
	width: 100%;
}

.lean-section {
	background: var(--bg-global);
	color: var(--c-main-text);
	display: flex;
	flex-wrap: wrap;
}

.lean-container {
	flex: 1 1 45%; /* No stretching: */
	margin: 1em;
}

.link-button {
	min-width: 6em;
	height: 1.5em;
	text-align: center;
	padding: 0.25em 1em 0.25em 1em;
	font-size: 1.3em;
	font-weight: 600;
	background: var(--c-saturate);
	color: var(--c-alt-text);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	border: 1px solid transparent;
	border-radius: 0.75rem;
}

.list {
	display: flex;
	flex-direction: row;
	place-items: center start;
	padding: 2em;
}

.list-footer {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	padding: 1.5em;
}

.logo {
	font-size: 1.8em;
	font-weight: 800;
	text-align: center;
	align-content: center;
	text-decoration: underline var(--c-border) solid 0.3em;
}

.logo > a {
	text-decoration: underline var(--c-border) solid 0.3em;
}

.mini-center {
	justify-content: center;
	align-items: center;
}

.mini-around {
	justify-content: space-around;
	align-items: center;
}

.mini-between {
	justify-content: space-between;
	align-items: stretch;
}

.mini-border {
	border: 0.3em solid var(--c-saturate);
	border-radius: 0.75rem;
}

.mini-column {
	display: flex;
	flex-direction: column;
	row-gap: 1em;
}

.mini-glow {
	box-shadow: -3px 2px 24px 0px var(--c-saturate);
	-webkit-box-shadow: -3px 2px 24px 0px var(--c-saturate);
	-moz-box-shadow: -3px 2px 24px 0px var(--c-saturate);
	border: 1px solid transparent;
	border-radius: 0.75rem;
}

.mini-glow--withPadding {
	padding: 1em;
	box-shadow: -3px 2px 24px 0px var(--c-saturate);
	-webkit-box-shadow: -3px 2px 24px 0px var(--c-saturate);
	-moz-box-shadow: -3px 2px 24px 0px var(--c-saturate);
	border: 1px solid transparent;
	border-radius: 0.75rem;
}

.mini-row {
	display: flex;
	flex-direction: row;
	column-gap: 1em;
}

.mini-tight {
	padding: 0.5em 1.5em 0.5em 1.5em;
}

.sizer {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.sizer-item {
	flex: 1 1 60%; /*  Stretching: */
	margin: 1em;
}

.sizer-item--const {
	flex: 0 1 20%; /* No stretching: */
	margin: 1em;
}


@media(min-width: 600px){
	.main {
		padding: 0 6em 0 6em;
	}
	.list {
		padding: 2em 6em 2em 6em;
	}
	.container {
		padding: 2em 6em 2em 6em;
	}
	.heading-l {
		font-size: 2.6em;
		text-align: center;
	}
}

@media(min-width: 1000px){
	.main {
		padding: 0 10em 0 10em;
	}
	.list {
		padding: 2em 10em 2em 10em;
	}
	.container {
		padding: 2em 10em 2em 10em;
	}
	.mini-tight {
		padding: 0.8em 3em 0.8em 3em;
	}
	.heading-l {
		font-size: 3.5em;
	}
}

@media(min-width:  1200px){
	.heading-l {
		font-size: 4.5em;
	}
}