hidden@charset "UTF-8";

@import url(https://fonts.googleapis.com/css?family=DM+Sans:400,500,700);

/************ Unity App Stylesheet ************/
/************ Copyright (c) 2020 *************/
/**************** 30/05/2020 ***************/

/* HEADINGS */
h1, h2, h3, h4, h5, h6 { /*reset for mobile browsers */
	font-weight: normal;
	margin:0px;
	padding:0px;
}

h1 {
	font-family: 'Poppins';
	color: #FB8122;
	font-size: 3.5rem;
	font-weight: bold;
}

h2 {
	font-family: 'Poppins';
	color: #FB8122;
	font-size: 2.4rem;
	font-weight: bold;
}

h3 {
	font-family: 'Poppins';
	color: #444;
	font-size: 2.4rem;
	padding-top:50px;
	font-weight: bold;
}

h4 {
	color: #444;
	margin-top: 50px;
	margin-bottom:20px;
}



/* HYPERLINK STYLES */
a:link, a:visited, a:active {
	text-decoration: underline;
	word-wrap: break-word;
	position: relative;
	color: #1c1c1c;
	transition: all 0.3s ease-in-out 0s;
	line-height:inherit;
}

a:hover {
  text-decoration: none;
  transition: all 0.3s ease-in-out 0s;
}

.underline::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #fff;
  visibility: hidden;
  transform: scaleX(0);
  transition: all 0.3s ease-in-out 0s;
}

.active:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 2px;
	bottom: 0;
	left: 0;
	background-color: #fff;
	visibility: visible;
	transform: scaleX(1);
}

.underline-dark::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #7f8c8d;
  visibility: hidden;
  transform: scaleX(0);
  transition: all 0.3s ease-in-out 0s;
}

.active-dark:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 2px;
	bottom: 0;
	left: 0;
	background-color: #7f8c8d;
	visibility: visible;
	transform: scaleX(1);
}

.underline:hover::before, .underline-dark:hover::before {
  visibility: visible;
  transform: scaleX(1);
}

menu a:link, a:visited, a:active {
	text-decoration: underline;
	line-height: 1.8;
	font-weight:500;
	margin: 0 30px;
	transition: all 0.3s ease-in-out 0s;
}

menu a:hover {
	text-decoration: none;
	transition: all 0.3s ease-in-out 0s;
}

.menu-white a:link, .menu-white a:visited, .menu-white a:active, .menu-white a:hover {
	color:#fff;
}

.menu-dark a:link, .menu-dark a:visited, .menu-dark a:active, .menu-dark a:hover {
	color:#7f8c8d;
}

a img {
	pointer-events: all;
}


/* MAIN BODY STYLE */
* {
  box-sizing: border-box;
}

html {
	font-size:100%;
	margin:0px !important;
	padding:0px !important;
}

body {
	margin: 0px !important;
	padding: 0px !important;
	width: 100%;
	height: 100%;
	background:#f2f2f2;
	-webkit-font-smoothing: antialiased;
	font-family: 'Muli', Helvetica, Arial, sans-serif;	
	font-size: 1.5rem;
	color: #7f8c8d;
	line-height:1.6;
}

::selection {
  background: #FF6600; /* WebKit/Blink Browsers */
  color: #fff;
}

::-moz-selection {
  background: #FF6600; /* Gecko Browsers */
  color: #fff;
}

p {
	margin:0px !important;
	overflow:hidden;
}

p strong {
	font-weight:800;
}

video {
  /* override other styles to make responsive */
  width: 100%    !important;
  height: auto   !important;
}

img {
	pointer-events: none;
}

ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

.with-bullets ul {
	list-style: disc;
	list-style-position: inside;
}

menu {
	display:flex;
	flex-wrap: nowrap;
	align-items:center;
	justify-content:center;
	font-size: 1.1rem;
	padding:0px;
	margin:0px;
}

menu li {
	list-style: none;
	min-width: 50px;
}

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

.shadow {
    box-shadow: inset 0px 0px 10px 0px rgba(0,0,0,0.1);
}

.flex-line-top {
	display: flex;
	flex-wrap: wrap;
	align-items:top center;
	justify-content:space-between;
}

.flex-line-center {
	display:flex;
	flex-wrap: wrap;
	align-items:center;
	justify-content:space-between;
}

.flex-line-center > * {
  flex: 1 1 200px;
  margin: 10px;
}

.pad-100 {
	width:60% !important;
	padding-top:25px;
}

.rotateimg {
  -webkit-transform:rotate(15deg);
  -moz-transform: rotate(15deg);
  -ms-transform: rotate(15deg);
  -o-transform: rotate(15deg);
  transform: rotate(15deg);
}



/* HEADER */
header {
	width:100%;
	min-height:700px;
	height:100vh;
	margin:0px !important;
	padding:0px !important;
	background-color: #FF6600;
	color:#fff;
	overflow: hidden !important;
}

#header-content {
	width:85%;
	margin:0 auto;
	padding-top: 20px;
}

#header-topline {
	display: flex;
	align-items:center;
	justify-content: space-between;
	padding-bottom: 30px;
	width: 100%;
}

#header-midline {
	display: flex;
	align-items:top center;
	justify-content: center;
	flex-wrap: wrap;
}

#logo {
	display:flex;
	align-items:center;
	padding:0px;
}

#top-headline {
	width: 50%;
	margin-top: 100px;
}

#headline {
	font-size: 6rem; 
	font-weight:450;
}

#subheadline {
	font-size:1.9rem;
	font-weight:300;
	max-width: 500px;
	display: block;
}

#top-phone {
	width: 50%;
	max-height:700px;
	display:block;
}

.unity-preview {
	margin:0px;
  	margin-left:auto; 
  	max-width: 333px;
  	min-height:676px;
  	border-radius: 40px; 
  	border:19px solid white;
  	display: block;
  	background-image: url('images/video-bg.png');
  	background-repeat: no-repeat;
  	background-size: 100%;
  	background-position: center top;
}

.button-back {
	background-color:#fff;
	color: #ff6600;
	padding:20px;
	border-radius: 40px; 
}

.clear-underline:link, .clear-underline:active, .clear-underline:visited {
	text-decoration: none !important;
}



/* BODY STYLES */
#content-box {
	display:flex;
	align-content: center;
	justify-content: center;
	flex-direction: column;
	width:100%;
	height:auto;
	min-height:750px;
}

.dark {
	color:#f9f9f9;
	background-color: #1b1c1d;
}

.white {
	background-color: #ffffff;
}

.orange {
	color:#f7f7f7;
	background-color: #ff8928;
}

#content-inner {
	width:100%;
	margin: 0;
}

.pad-wide {
	padding: 150px 2.5% 0px 2.5%;
}

.pad-normal {
	padding: 80px 7.5%;
}

.pad-narrow {
	padding: 80px 12.5%;
}

.pad-none {
	padding: 120px 0% 50px 0%;
}

#grid {
	width:100%;
	display: flex;
	align-content: center;
	justify-content: space-between;
	flex-wrap: wrap;
}

#grid-item {
	flex: 1 1 15%;
	padding:50px;
	text-align:center;
}

#grid-item img {
	width: 64px;
}

#wide-grid-item {
	display: block;
	flex: 1 1 45%;
	height:auto;
	max-width:45%;
	text-align:left;
	padding: 50px 0;
}

.align-top {
	align-items: top center;
}

.align-center {
	align-items: center;
}

#no-pullout {
	font-family:'DMSansBold';
	color:black;
	font-weight:bold;
	font-size:1.6rem;
	color: #f39c12;
}

#section-header {
	display:block;
	margin:0 auto;
	padding:0;
	max-width: 450px;
}

#section-header-left {
	display:block;
	position: relative;
	margin-left:0;
	max-width: 480px;
}

#section-header-right {
	margin:auto;
	margin-right:0;
	width:46%;
	text-align:right;
	vertical-align: middle;
}

#main-subhead {
	margin:0px auto;
	text-align: center;
}

#shot-right, #device-right {
	display: block;
	position: relative;
	margin:auto;
	margin-right:0;
	text-align:right;
}

#shot-right {
	width: 48%;
}

#device-right {
	min-width: 100%;
	text-align:center;
}

#device-right img {
	max-width:100%;
	max-height:600px;
}

#shot-right img {
	max-height:700px;
}

#img-wrap {
	position:absolute; 
}

.graph {
	background-image:url('images/graph.png');
	background-repeat: no-repeat;
	background-size: cover;

}

.gradient-headline {
	max-width:750px;
	margin: 0 auto;
	padding: 0 25px;
	background-repeat: no-repeat;
	background-image:url('images/headline-bg.png');
	background-size: cover;
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
	font-size: 4.2rem;
}

.screenshot {
	flex: 1 1 1 19%;
	margin-left:0.5%;
	margin-right:0.5%;
}

.screenshot img {
	width:100%;
	min-width: 150px;
	max-width:400px;
}

#phone-2 {
	margin-top:5%;
}

#phone-4 {
	margin-top:5%;
}


/* FOOTER */
footer {
	padding-top:75px;
	padding-bottom:75px;
	background-color: #111;
	text-align: center;
}

#footer-content {
	width:85%;
	margin: 0 auto;
	color: #7f8c8d;
	font-size: 1rem;
	text-align: center;
}

.menu-footer {
	padding-top:40px;
}

#footer-info {
	width:100%;
}

/* Responsive Styling */
@media (max-width: 1000px) {
	.gradient-headline {
		font-size:3.6rem;
	} 
	
	header {
		height:inherit;
	}
	
	#top-headline {
		width: 100%;
		text-align:center;
		margin-top: 10px;
		margin-bottom: 60px;
	}
	
	#subheadline {
		margin: 0 auto;
	}

	#top-phone {
		width: 100%;
		overflow: hidden !important;
		text-align:center;
	}
	
	.unity-preview {
  		margin: 0 auto;
  		max-width: 367px;
  		min-height:744px; 
  	}
  	
  	#wide-grid-item {
		min-width:100%;
		padding: 50px 0;
		text-align: center;
	}
	
	#shot-right {
		min-width:100%;
		text-align:center;
	}
	
	#section-header-left {
		text-align:center;
		padding-bottom: 60px;
	}
	
	.flex-line-top, .flex-line-center {
		justify-content: center;
	}
}

@media (max-width: 650px) {
	.gradient-headline {
		font-size:3.2rem;	
	} 
	
	menu a:link, a:visited, a:active {
		margin: 0 20px;
	}
}

@media (max-width: 400px) {
	body {
		font-size: 1.3rem;
	}

	.gradient-headline {
		font-size: 2.4rem;	
	}
	
	h1 {
		font-size: 2.6rem;
	}
	
	h2, h3 {
		font-size: 2.2rem;
	}
	
	#shot-right img {
		max-height:450px;
	}
	
	menu {
		flex-wrap: wrap;
		flex-direction: column;
		flex: 1;
	}
	
	menu li {
		margin: 5px 0;
	}
	
	#grid-item {
		padding:35px;
	}
	
	#grid-item img {
		width: 50px;
	}
	
	#wide-grid-item {
		flex: 1;
		max-width:100%;
	}
	
	.pad-narrow {
		padding: 80px 5%;
	}
	
	.unity-preview {
		max-width: 300px;
		min-height:614px;
		border:15px solid white;
  	}
  	
  	#top-phone {
		max-height:546px;
	}
}