* {
	margin:0;
	padding:0;
}

:root {
	--source-sel-bg: #003b47;
	--source-sel-fg: #44ddff;
	--agency-sel-bg: #421c00;
	--agency-sel-fg: #ff8e3f;
	--darkteal: #000000;
	--bg1: #202426;
	--teal: rgba(68,221,255,1);
	--teal-dim: rgba(68,221,255,0.3);
	--white: #ffffff;
	--fg: #ffffffcc;
	--fg2: #bbbbbbff;
	--bgprocar: 2.0;
	--basew: 760px;
	--bgprocfontsz: 14px;
	--h1sz: 40px;
	--h2sz: 34px;
	--h3sz: 23px;
	--h4sz: 16px;
	--ulsz: 22px;
	--psz: 17px;
	--basesz: 14px;
}
html {
	scroll-behavior: smooth;
}
body {
	font-family:new-hero,HelveticaNeue,Helvetica,sans-serif;
	font-size:var(--basesz);
	color:var(--fg);
}
h1 {
	font-family: rift, sans-serif;
	font-size:var(--h1sz);
	padding:0;
	font-weight:600;
}
h2 {
	font-size:var(--h2sz);
	font-weight:300; 
	padding:0 0 12px 0;
}
h3 {
	font-size:var(--h3sz);
	font-weight:400; 
	padding:0 0 12px 0;
	line-height:30px;
}
h4 {
	font-size:var(--h4sz);
	font-weight:400; 
	padding:0;
	line-height:30px;
}
p {
	font-size:var(--psz);
	font-weight:400; 
	padding:0 0 12px 0;
	line-height:calc(1.6 * var(--psz));
	color:var(--fg);
}
a:hover {
	cursor:pointer;
}
.nosel {
	cursor: default;
	user-select: none;
	-webkit-user-select: none;
}
#nav {
	position:fixed;
	left:0px;
	padding:0 25px 0 25px;
	width:calc(100vw - 50px);
	height:90px;
	display:flex;
	flex-direction:row;
	align-items:center;
	justify-content:space-between;
	z-index:100;
}
#nav a {
	text-decoration:none;
	font-size:14px;
	padding: 0 10px 0 10px;
}
div.bigpad {
	padding:150px 0 150px 0; 
}
div.splash2 {
	color:var(--fg);
	width:100vw;
	max-width:100%;
	min-height:calc(100vh - 50px);
	background-image: url("/img/ndvi-blue.jpg");
	background-color: rgba(00, 15, 19, 1);
	background-position: center;
	background-repeat: no-repeat;
	background-size: auto;
	display:flex;
	flex-direction:column;
	align-items:center;
	justify-content:center;
}

a.squarebtn {
	display:inline-block;
	border:1px solid var(--teal);
	padding:10px 30px 10px 30px;
	margin:8px;
	text-decoration:none;
}
a.squarebtn:hover {
	background-color:var(--teal-dim);
}

button.squarebtn {
	font-size:14px;
	display:inline-block;
	border:1px solid var(--teal);
	padding:10px 30px 10px 30px;
	margin:8px;
	background-color:rgba(0,0,0,0);
	color:var(--teal);
	cursor:pointer;
}
button.squarebtn:disabled {
	font-size:14px;
	display:inline-block;
	border:1px solid lightgray;
	padding:10px 30px 10px 30px;
	margin:8px;
	background-color:rgba(128,128,128,0.25);
	color:lightgray;
	cursor:pointer;
}
button.squarebtn:hover:enabled {
	background-color:var(--teal-dim);
}


div.bodyholder {
	background-color: var(--darkteal);
	width:100vw;
	max-width:100%;
	display:flex;
	flex-direction:column;
	align-items:center;
	justify-content:center;
}
div.body {
	width:100%;
	text-align:center;
	display:flex;
	flex-direction:column;
	align-items:center;
}
div.body>div {
	max-width:var(--basew);
}
p.footer {
	text-align:center;
	font-size:12px;
	padding-top:20px;
	padding-bottom:16px;
	color:rgba(255,258,267,0.6);
}
a {
	color:var(--teal);
}
div.agencylogos {
	display:flex;
	flex-direction:row;
	align-items:center;
	justify-content:center;
	gap:30px;
}
div.agencylogos>img {
	display:block;
}
div.agencylogos>img:nth-child(1) {
	width:60px;
	height:60px;
}
div.agencylogos>img:nth-child(2) {
	width:80px;
	height:80px;
}
div.agencylogos>img:nth-child(3) {
	width:59px;
	height:59px;
}
div.agencylogos>img:nth-child(4) {
	width:100px;
	height:60px;
}
div.sidebyside {
	display:flex;
	flex-direction:row;
}


#opieheadlogo {
	width:368px;
	height:100px;
	background-image:url('/img/opie-teal.svg');
	background-size: auto;
	background-repeat: no-repeat;
}
#opiespellout {
	padding: 14px 0 0 0;
	font-size:40px;
	font-family:rift,sans-serif;
/* 	color:rgba(240,245,255,0.87); */
	color:var(--teal);
}
#opiespellout b {
	font-weight:600;
}



div.gradtext {
	text-align:left;
	background: rgb(255,0,251);
	background-image:linear-gradient(330deg, rgba(0,247,255,1) 0%, rgba(255,0,251,1) 100%);
	background-size: cover;
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	padding:8px 0 26px 15px;
	line-height:46px;
}
div.appsheadtext {
	text-align:left;
	padding:8px 0 26px 15px;
	line-height:46px;
}

.nograd {
	-webkit-text-fill-color: var(--fg2);
}
.nogradwhite {
	-webkit-text-fill-color: white;
	font-weight:300;
}

#flowchart {
	align-items:center;
}
#flowchart>div:nth-child(1)>img {
	width:calc(224px * 1.5);
	height:calc(312px * 1.5);
}
#flowcharttext {
}
#api {
	align-items:center;
}
#api>div:nth-child(2)>img {
	width:calc(224px * 1.5);
	height:calc(312px * 1.5);
}
#api>div:nth-child(1) {
	text-align:left;
}
#apitext {
}
#datatext {
}
#sources {
	display:flex;
	flex-direction:column;
	align-items:center;
}
#sources>div>img {
	padding:32px calc(var(--basew) * 0.01) 10px calc(var(--basew) * 0.01);
	width:calc(var(--basew) * 0.065);
	height:calc(var(--basew) * 0.065);
	opacity:75%;
}
#sourcestext {
	text-align:center;
}
#agenciestext {
	text-align:left;
	height:18px;
	padding:10px 0 10px 0;
	font-size:18px;
}
#datasets {
	text-align:left;
	height:28px;
	padding:0px 0 10px 0;
}
#datasets>div {
	display:none;
	padding:16px 0 0 0;
}
#datasets>div>div:nth-child(1) {
	display:flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	padding:18px 0 0 0;
}
#datasets>div>div:nth-child(1)>div:nth-child(1)>img {
	width:60px;
	height:60px;
}
#datasets>div>div:nth-child(1)>div:nth-child(2) {
	font-size:26px;
	padding:0 0 0 18px;
	color:white;
}
#datasets>div>p {
	padding:10px 0 0 20px;
	text-align:center;
}
#agenciesbar {
	padding:35px 0 0px 0;
}
#opiebar {
	padding:60px 0 14px 0;
}
#opiebar>div {
	padding: 10px 15px 6px 15px;
	border: 1px solid var(--fg2);
	border-radius: 8px;
}

#bgproc {
	position:relative;
	width:var(--basew);
	height:calc(var(--basew) * (1.0 / var(--bgprocar)));
}
#bgproc>div {
	position:absolute;
	left:0px;
	top:0px;
}
#bgproc>div>div {
	position:absolute;
	left:0px;
	top:0px;
	width:var(--basew);
	height:calc(var(--basew) * (1.0 / var(--bgprocar)));
	text-align:left;
}
#bgproc>div:nth-child(2)>img {
	width:var(--basew);
	height:calc(var(--basew) * (1.0 / var(--bgprocar)));
}
#bgproctext {

	text-align:center;
	padding:0px 0 20px 0;
	
}
#testdrivetext {
	padding:80px 0 40px 0;
	
}
#bgprocbinary {
	transform:translate(3px,-1px);
	font-family: Menlo,Monaco,mono;
	font-size: var(--bgprocfontsz);
	color:rgba(100,130,160,0.75);
	overflow:hidden;
}
#bgprocimg {
	position:relative;
	width:calc((var(--basew) * 0.3) - 18px);
	height:calc(var(--basew) * 0.22);
	transform:translate(calc(var(--basew) * 0.7), calc(var(--basew) * (1.0 / var(--bgprocar)) * 0.5 - (var(--basew) * 0.11)));
	z-index:10;
	background-color:rgba(100,130,120,0.45);
	border-radius: 12px 26px 26px 12px;
	overflow:hidden;
}
#bgprocimgimg {
	position:absolute;
	left:0;
	top:0;
	width:calc((var(--basew) * 0.3) - 18px);
	height:calc(var(--basew) * 0.22);
}
#chevron {
	width:40px;
	height:20px;
	padding:10px 0 0 0;
}
.menuitemhamburger {
	width:32px;
	height:32px;
	display:none;
}
#hmenu {
	position:fixed;
	z-index: 500;
	width:100vw;
	height:100vh;
	background-color:#0e0e0e;
	display:none;
}
#hmenu>div:nth-child(1) {
	position:absolute;
	width:32px;
	height:32px;
	right:20px;
	top:10px;
}
#hmenu>div:nth-child(2) {
	position:absolute;
	width:100vw;
	height:100vh;
	display:flex;
	flex-direction:column;
	align-items:center;
	justify-content:center;
	gap:14px;
	font-size:20px;
}

#hmenu a {
	text-decoration: none;
}

#canvas_testdrive {
	position:relative;
	top:-270px;
	width:calc(100vw - 16px);
	height:600px;
	padding:0;
	margin:0;
	z-index:1;
}

#testdrivecollector {
	padding:32px 18px 34px 18px;
	border:4px solid #00ddff22;
	background-color:#00202888;
	border-radius:16px;
	text-align:left;
	color:#00eeffaa;
}

#testdrivecollector input {
	font-family:helvetica,arial,sans-serif;
	font-size:16px;
	background-color:#00ddff33;
	border:none;
	padding:4px;
	color: #99ffff;
}

#testdrivecollector select {
	font-family:helvetica,arial,sans-serif;
	border:none;
	padding:16px 28px 16px 28px;
	font-size:14px;
/* 	max-width:285px; */
	background-color:#00ddff33;
	color: #99ffff;
	cursor:pointer;
}

#testdrivecollector button {
	font-weight: 500;
	border:none;
	padding:16px 28px 16px 28px;
	font-size:20px;
	background-color:#00ddff33;
	border-radius:8px;
	color:#00eeff;
	font-style:italic;font-weight:700;
	cursor:pointer;
}

#testdrivecollector button:disabled {
	color:#88888888;
	background-color:#aaaaaa44;
}

div.signuptables {
	display:flex;
	flex-direction:row;
	flex-wrap:wrap;
	justify-content:center;
}

div.signuptables table tr {
	padding-right:18px;
}
div.signuptables table td,th {
	font-weight:400;
	padding:2px;
}
div.signuptables table th {
	text-align:right;
}
div.signuptables table td {
	text-align:left;
}

#signupdiv {
	display:flex;
	z-index:12;
	width:100vw;
	flex-direction:row;
	justify-content:center;
}


.footer a {
	color:inherit;
}

#datavid {
	width:800px;
/* 	height:400px; */
	max-width:calc(100vw - 20px);
}



div.agenciesbar {
	display:flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 6px;
	color: var(--fg2);
	padding:0 0 18px 0;
}

div.agenciesbar>div {
	padding: 6px 15px 6px 15px;
	border: 1px solid var(--fg2);
	border-radius: 8px;
	font-weight:600;
}

div.agenciesbar>div.sel {
	background-color: var(--agency-sel-bg);
	border: 1px solid var(--agency-sel-fg);
	color:var(--agency-sel-fg);
}



div.datasetsbar {
	display:flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 6px;
	color: var(--fg2);
	padding:18px 0 0 0;
	justify-content: center;
}

div.datasetsbar>div {
	padding: 6px 15px 6px 15px;
	border: 1px solid var(--fg2);
	border-radius: 8px;
}

div.datasetsbar>div.sel {
	background-color: var(--source-sel-bg);
	border: 1px solid var(--source-sel-fg);
	color:var(--source-sel-fg);
}




.birthable {
	transition: opacity 0.7s, transform 0.45s;
}

.unborn {
	opacity:0.0;
	transform: translateY(60px);
}

.unbubbsed {
	transform: translateY(12px);
}
.unbubbsed0 {
	opacity:0.0;
	transform: translateX(80px);
}
.unbubbsed1 {
	opacity:0.0;
	transform: translateX(-80px);
}






.bubbs {
	transition: transform 0.75s;
	position:absolute;
	display:flex;
	flex-direction:column;
	align-items:flex-start;
	justify-content:flex-start;
	overflow:hidden;
}
.bubbs>div {
	transition: opacity 0.3s, transform 0.5s;
	position:relative;
	overflow:hidden;
}
div.twoby {
	display:flex;
	flex-direction:row;
	align-items:center;
	justify-content:center;
}
div.datatypes {
	height:650px;
}
div.datatypes>div {
	padding:0 10px 0 10px;
}
div.datatypes>div:nth-child(1) {
	min-width:150px;
}
div.datatypes>div:nth-child(2) {
	overflow:hidden;
	height:650px;
	min-width:270px;
}
div.datatypes>div:nth-child(3) {
	text-align:left;
}


#sensorrow {
	position:relative;
	top:10px;
	display:flex;
	flex-direction:column;
	gap:12px;
	color:rgb(210,209,214);
}
#sensorrow>div {
	display:flex;
	flex-direction:row;
	align-items:center;
	background-color:black;
	border-radius:24px;
	gap:8px;
	padding:6px 20px 6px 20px;
}
#sensorrow img {
	width:32px;
	height:32px;
	opacity:0.8;
}



#sampleapps {
	display:flex;
	flex-direction:column;
	align-items:flex-start;
	justify-content:center;
	gap:28px;
}
#sampleapps>div {
	display:flex;
	flex-direction:row;
	text-align:left;
	align-items:flex-end;
}
#sampleapps>div img {
	width:100px;
	height:100px;
	padding:0 14px 0 0;
}
#sampleapps h4 {
/* 	font-family: acumin-pro-condensed, sans-serif; */
	font-size:21px;
	padding:0;
}
#sampleapps a {
	color:inherit;
	text-decoration: none;
}


#sampleapps a.openinbrowser {
	display:inline-block;
	width:calc(99px - 6px);
	height:calc(33px - 9px);
	border:none;
	border-radius:5px;
	font-size:10px;
	text-decoration:none;
	font-weight:700;
	color:white;
	background-color:black;
	padding:9px 0 0 6px;
	margin:10px 0 0 0;
}




.lds-roller {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-roller div {
  animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 40px 40px;
}
.lds-roller div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(68,221,255,1);
  margin: -4px 0 0 -4px;
}
.lds-roller div:nth-child(1) {
  animation-delay: -0.036s;
}
.lds-roller div:nth-child(1):after {
  top: 63px;
  left: 63px;
}
.lds-roller div:nth-child(2) {
  animation-delay: -0.072s;
}
.lds-roller div:nth-child(2):after {
  top: 68px;
  left: 56px;
}
.lds-roller div:nth-child(3) {
  animation-delay: -0.108s;
}
.lds-roller div:nth-child(3):after {
  top: 71px;
  left: 48px;
}
.lds-roller div:nth-child(4) {
  animation-delay: -0.144s;
}
.lds-roller div:nth-child(4):after {
  top: 72px;
  left: 40px;
}
.lds-roller div:nth-child(5) {
  animation-delay: -0.18s;
}
.lds-roller div:nth-child(5):after {
  top: 71px;
  left: 32px;
}
.lds-roller div:nth-child(6) {
  animation-delay: -0.216s;
}
.lds-roller div:nth-child(6):after {
  top: 68px;
  left: 24px;
}
.lds-roller div:nth-child(7) {
  animation-delay: -0.252s;
}
.lds-roller div:nth-child(7):after {
  top: 63px;
  left: 17px;
}
.lds-roller div:nth-child(8) {
  animation-delay: -0.288s;
}
.lds-roller div:nth-child(8):after {
  top: 56px;
  left: 12px;
}
@keyframes lds-roller {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}




@media only screen and (max-width: 695px) {
	:root {
		--h1sz: 28px;
		--h2sz: 26px;
		--h3sz: 18px;
		--h4sz: 15px;
		--ulsz: 16px;
		--psz: 14px;
		--basew: calc(100vw - 20px);
	}
	div.sidebyside {
		flex-direction:column;
	}
	#flowcharttext {
		padding:28px 12px 0 12px;
		text-align:center;
	}
	.menuitemexpanded {
		display:none;
	}
	.menuitemhamburger {
		display:block;
	}
	#canvas_testdrive {
		width:calc(100vw - 16px);
		height:500px;
	}
	#sampleapps {
		gap:16px;
	}
	#sampleapps>div img {
		width:90px;
		height:90px;
	}
	#sampleapps h4 {
		font-size:15px;
	}
	#opiegrad {
		width:300px;
		height:60px;
	}

	#testdrivecollector {
		padding:22px 8px 24px 8px;
		border:4px solid #00ddff22;
		background-color:#00202888;
		border-radius:16px;
		text-align:left;
		color:#00eeffaa;
	}

	div.gradtext {
		padding:8px 0 26px 8px;line-height:34px;
	}
	div.appsheadtext {
		padding:8px 0 26px 8px;line-height:34px;
	}
	
	div.bigpad {
		padding:60px 0 60px 0;
	}
	
	#apitext {
		text-align:center;
	}
	#datatext {
		text-align:center;
		padding:48px 0 0 0;
	}
	div.twoby {
		flex-direction:column;
	}
	div.datatypes {
		height:700px;
	}
	div.datatypes>div:nth-child(1) {
		min-width:230px;
	}
	div.datatypes>div:nth-child(3) {
		padding:30px 20px 50px 20px;
	}
	
	#opieheadlogo {
		width:276px;
		height:75px;
	}
	#opiespellout {
		font-size:32px;
	}

}

