:root{
	--main-bg-color: #08090A;
	--navigation-bar-color: #ff6600;
	--content-box-color: #111314;
	--font-color: #F4F5F6;
	--alset-font-color: #fffef7;
	--alset-link-color: #9bc3e8;
	--text-max-width: 650px;
	--footer-font-color: #fffef7;
	--footer-color: #000000;
}

@keyframes fadein{
	from { opacity: 0; }
	to { opacity: 1; }
}

body{
	margin: 0;
	background-color: var(--main-bg-color);
	color: var(--font-color);
	font-family: "Lucida Sans Unicode", Times, Sans;
	text-align: justify;
	height: 100%;
}

h1{
	font-size: 64px;
	text-align: center;
}

h2{
	font-size: 32px;
	text-align: center;	
}

h3{
	
	font-size: 18px;
	text-align: left;
	margin: 0px;
	
	/* Maintain width bounds */
	max-width: var(--text-max-width);
	margin-left: auto;
	margin-right: auto;
}

h4{
	color: #808798;
	font-weight: normal;
	font-style: normal;
	font-size: 14px;
	margin-top: 0px;
	margin-bottom: 16px;

	/* Maintain width bounds */
	max-width: var(--text-max-width);
	margin-left: auto;
	margin-right: auto;
}

p{
	text-align: top;
	margin: 0px;
	text-align: left;
	font-size: 14px;
	
	/* Maintain width bounds */
	max-width: var(--text-max-width);
	margin-left: auto;
	margin-right: auto;
}

a{
	color: var(--navigation-bar-color);
}

/* Navigation bar */
ul.nav{
	list-style-type: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
	background-color: var(--navigation-bar-color);
	
	/* Make it follow top of screen */
	position: fixed;
	top: 0;
	
	/* Center content */
	display: flex;
	justify-content: center;

	/* Render on top of everything else */
	z-index: 1000;
	
	opacity: 0.95;
	width: 100%;
	box-shadow: 0px 0px 10px var(--main-bg-color);
}

ul.nav li{
	float: left;
}

ul.nav a{
	display: block;
	padding: 14px 16px;
	color: var(--font-color);
	text-align: center;
	text-decoration: none;
	height: 100%; /* Expand clickable area */
}

ul.nav a:hover{
	background-color: #5e2403;
}

ul.nav a:active{
	background-color: #5e2403;
}

@media only screen and (max-width: 450px){
	ul.nav{
		position: fixed;
	}
	
	/* Shrink on smaller screens */
	ul.nav a{
		padding: 10px 4px;
	}
}

@media only screen and (max-height: 450px){
	ul.nav{
		position: static;
	}
}

ul.smi{
	position: fixed;
	
	list-style-type: none;
	margin-left: 32px;
	padding: 0;
	overflow: hidden;

	top: 40px;

	/* Render on top of everything else */
	z-index: 999;
}

ul.smi li{
	float: left;
	padding: 10px;
}

.image{
	opacity: 1;
	display: block;
	margin-left: auto;
	margin-right: auto;
	padding-top: 16px;
	padding-bottom: 16px;
}

/* Icon */
.icon{
	width: 48px;
	height: 48px;
	opacity: 1;
	display: block;
}

@media only screen and (max-width: 800px){
	.icon{
		width: 32px;
		height: 32px;
	}
	
	ul.smi li{
		padding-top: 0px;
	}
}

.parallaxBanner{
	/* Transform */
	height: 100vh;
	
	min-width: 100%;
	max-width: 500px;
	
	/* Background */
	background-image: url("images/logos/subfrost_logo_both_vector_white.svg");
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: auto 30vh;
}

@media only screen and (max-height: 800px) {
	.parallaxBanner{
		max-height: 50%;
		max-height: 30vh;
		background-size: auto 25vh;
	}
}

.parallaxImage{
	background-image: url("images/cobots/bg1.png");
	
	height: 350px;
	
	background-attachment: fixed;
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
	
	opacity: 1.0;
	
	/*
	 Orange border. Removed it since it added unneccessary clutter.
	 Might instead want to tweak the images, and give them more contrast and saturation.
	*/
	/*
	border-style: solid none solid none;
	border-color: var(--navigation-bar-color);
	border-width: 10px;
	*/
}

@media only screen and (max-height: 800px) {
	.parallaxImage{
		height: 20vh;
	}
}

.contentBox{
	background-color: var(--content-box-color);
	margin: 0;
	padding: 50px;
	position: relative;
}

.alset{
	color: var(--alset-font-color);
}

.alset a{
	color: var(--alset-link-color);
}

.alset .contentBox{
	background-color: var(--content-box-color);
	
	margin: 0;
	min-height: 512px;
	position: relative;
}

.footer{
	position: fixed;
	bottom: 0%;
	width: 100%;
	height: 30px;
	display: flex;
	table-layout: fixed;
	word-break: break-all;
	margin-right: 0px;
}

.footer p{
	margin-right: 0px;
	padding-right: 16px;
	opacity: 50%;
}

.cheesyVideo{
	position: fixed;
	min-width: 100%;
	min-height: 100%;
	
	top: 0%;
	right: 0;
	margin-left: -50%;
	text-align: center;
	
	z-index: -9999;
	animation: fadein 3s ease;
}

p.quote{
	color: grey;
	text-align: center;
	font-style: italic;
	padding: 10px;
}

.breakLine{
	border-style: solid none none none;
	border-width: 1px;
	border-color: var(--font-color);
	width: var(--text-max-width);
	max-width: 80vw;
	height: 5px;
	margin-left: auto;
	margin-right: auto;
}

/* Mobile */
@media only screen and (max-width: 800px){
	a.scrollLink{
		display: none;
	}
}

a.scrollLink{
	position: absolute;
	bottom: 0;
	left: 0;
	margin: 44px;
	
	width: 64px;
	height: 64px;
	
	background-image: url("images/icons/arrows.png");
	background-repeat: no-repeat;
	background-position: bottom left;
	background-size: 100%;
}

#SGC {
	position: fixed;
	background-color: #ff6600;
	background-image: url("images/cobots/web_sga_1.png");
	min-height: 100%;
	min-width: 100%;
}









