:root {
	--primary: rgba(35, 31, 32, 1);
	--secondary: rgba(245, 103, 97, 1);

	--primary20:rgba(35, 31, 32, .2);
	--primary40:rgba(35, 31, 32, .4);
	--primary60:rgba(35, 31, 32, .6);
	--primary80:rgba(35, 31, 32, .8);

	--secondary20:rgba(245, 103, 97, .2);
	--secondary40: rgba(245, 103, 97, .4);
	--secondary60:rgba(245, 103, 97, .6);
	--secondary80:rgba(245, 103, 97, .8);

	--white:rgba(255,255,255,1);
	--black:rgba(0,0,0,1);
	--grey:rgba(125,125,125,1);

	--h1prime: 72px;
	--h2prime: 64px;
	--h3prime: 54px;
	--h4prime: 48px;
	--h5prime: 36px;
	--h6prime: 24px;

	--h1second: 64px;
	--h2second: 54px;
	--h3second: 48px;
	--h4second: 36px;
	--h5second: 24px;
	--h6second: 18px;
}

/* Colors */

.primary { color: var(--primary);}
.primary-bg { background:var(--primary); }

.secondary { color:var(--secondary); }
.secondary-bg { background:var(--secondary); }

.white { color:var(--white); }
.white-bg { background:var(--white); }

.black { color:var(--black); }
.black-bg { background:var(--black); }

.grey { color:var(--grey); }
.grey-bg { background:var(--grey); }

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

body {
	font-family: "Roboto Mono", monospace;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	font-size: 16px;
	background: var(--primary);
}

.roboto-mono {
  font-family: "Roboto Mono", monospace;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

a {}
a:link {}
a:hover {}

p { margin:1.4em; line-height:1.2em; }

h1 { font-size: var(--h1prime); }
h2 { font-size: var(--h2prime); }
h3 { font-size: var(--h3prime); }
h4 { font-size: var(--h4prime); }
h5 { font-size: var(--h5prime); }
h6 { font-size: var(--h6prime); }

@media screen and (max-width:720px) {
	h1 { font-size: var(--h1second); }
	h2 { font-size: var(--h2second); }
	h3 { font-size: var(--h3second); }
	h4 { font-size: var(--h4second); }
	h5 { font-size: var(--h5second); }
	h6 { font-size: var(--h6second); }

}

hr {
	border: 2px solid var(--secondary20);
	margin:1em 0em;
}


/* Helpers */

.space1 { width:100%; height:1em; }
.space2 { width:100%; height:2em; }
.space5 { width:100%; height:5em; }
.space10 { width:100%; height:10em; }


.center {
	text-align: center;
}

.centerPos {
	display: flex;
	flex-flow: row;
	margin: auto auto;
	align-items: center;
}

.list {
	display: flex;
	flex-grow: 1;
	flex-flow: column;
	padding:1em 2em;
}


/* Styles */

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
	background: var(--primary);
  box-shadow: inset 0 0 4px black;
}

::-webkit-scrollbar-thumb {
  background: var(--secondary60);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--secondary40);
}


/* Brand + Icons */

.icon {
	display: inline-flex;
	flex-grow: 1;
	background: url(/img/parallex-icon-color.svg) no-repeat;
	object-fit:cover;
}

.ico-large {
	display: flex;
	width:128px;
	height: 128px;
	transition: all 300ms;
	transition-timing-function: ease-out;
}

#icoTile {
	width: 100%;
	height: auto;
}

#icoTile p {
	text-transform: uppercase;
}

#icoTile:hover {
	cursor: pointer;
}

#icoTile:hover p {
	color: var(--secondary60);
}

#icoTile:hover .ico-large {
	scale:120%;
}


.indu-1 {
	background: url(/img/ico-firstResponder.svg) no-repeat;
	object-fit:cover;
}

.indu-2 {
	background: url(/img/ico-fieldOps.svg) no-repeat;
	object-fit:cover;
}

.indu-3 {
	background: url(/img/ico-lawEnforcement.svg) no-repeat;
	object-fit:cover;
}

.indu-4 {
	background: url(/img/ico-defense.svg) no-repeat;
	object-fit:cover;
}

.indu-5 {
	background: url(/img/ico-specialForces.svg) no-repeat;
	object-fit:cover;
}

.indu-6 {
	background: url(/img/ico-intelligence.svg) no-repeat;
	object-fit:cover;
}

.logo {
	background: url(/img/parallex.svg) no-repeat;
	width:330px;
	min-height: 80px;
	background-size: contain;
	margin:2em 0em;
}

.footer {
	width: 100%;
	padding:2em 0em;
}

.footer p {
	color: var(--secondary);
}

.footer .logo {
	width:165px;
	min-height: 40px;
	background-size: contain;
	margin:2em 0em;
	margin: auto auto;
}



.banner {
	width: 100%;
	height: auto;
	padding: 4em;
	color: var(--primary);
}

.banner-primary {
	width: 100%;
	height: auto;
	padding: 4em;
	background: var(--primary);
	color: var(--secondary);
	display: flex;
	flex-flow: column;
	justify-content: center;
}

.banner-primary .content {
	width: 66%;
	margin: auto auto;
}

.content h5 {
	font-size: var(--h5second);
	text-transform: uppercase;
}

.content h5 + p {
	margin-bottom: 3.5em;
}

.banner-secondary {
	width: 100%;
	height: auto;
	padding: 4em;
	background: var(--secondary);
	color: var(--primary);
}


.container {
	display: flex;
	flex-grow: 1;
	flex-direction: column;
	justify-content: flex-start;

}

.topoDark {
	background: url(/img/topoDark.png) no-repeat;
	background-size: cover;
}

.topoLight {
	background: url(/img/topoLight.png) no-repeat;
	background-size: cover;
}

.industry {
	display:grid;
	grid-template-columns: 33% 33% 33%;
	grid-gap: 1em;
	justify-content: center;
	text-align: center;
	padding: 2em 0em;
}

@media only screen and (max-width:720px) {

.industry {
	display:block;
	width:100%;
	text-align: center;
	padding: 0;
	margin: 0;
}

#icoTile {
	display: block;
	width: 100%;
	height: auto;
	margin-bottom: 2em;
}

#icoTile .ico-large {
	scale:120%;
}

#icoTile:hover .ico-large {
	scale:140%;
}

#icoTile p {
	padding-bottom:2em;
}

}



/* -- Video -- */

.videoText {
	position: absolute;
	top: 33%;
	padding:0 4em;
	z-index: 1000;
	animation-name: fade;
	animation-duration: 5s;
}

@keyframes fade {
  0% { opacity:0; }
  100% { opacity:1; }
}

mark {
	background: var(--secondary);
	padding:.375em 1em;
}

.videoText mark {
  -webkit-animation: 1.5s highlight 1.5s 1 normal forwards;
          animation: 1.5s highlight 1.5s 1 normal forwards;
  background-color: none;
  background: linear-gradient(90deg, var(--secondary) 50%, rgba(255, 255, 255, 0) 50%);
  background-size: 200% 100%;
  background-position: 100% 0;
  padding:0 .375em;
}

@keyframes highlight {
  to {
    background-position: 0 0;
  }
}


.video-container {
  position: relative;
  width: 100%;
  height: 92vh;
  overflow: hidden;
  top:0;
  left:0;
  padding: 0;
  margin: 0;
}

.video-container video {
  position: absolute;
  width: 100vw;
  min-height: 92vh;
  object-fit: cover;

}
