@charset "utf-8";
/* CSS Document */
:root {
  	--main-bg-color: white;
  	--panel-bg-color: #E9EDEE;
  	--dark-cyan: #1E5D81;
	--cyan: #1BAFDD;
	--coral: #F16A6A;
	--gold: #FFB453;
	--pearl-gray: #FDFEFF;
	--midnight:#1C3F54;
	--blue-black: #000408;
	--announcement-width: clamp(360px, 40vw, 1175px);
	--announcement-margin: calc( (100vw - var(--announcement-width))/2 );
 	transition: 0.5s;
}
* {
  box-sizing: border-box;
}

@font-face {
  font-family: "Raleway";
  src: url("/fonts/Raleway-VariableFont_wght.ttf") format("ttf");
}

html, body {
	box-sizing:border-box;
	background-color: var(--pearl-gray);
	font-family: "Segoe UI Semi-Light", Arial, sans-serif;
	line-height: 1.5em;
	color: #203040;
	font-size: 16px;
}

ul.pdf {
	list-style-image: url("/images/pdfTiny.png");
}

/* Computer */
body {
	margin: 52px 0 30px 0;
	padding:0;
}

article {
	width: 80vw;
	min-width: 300px;
	margin: 0 auto;
	padding-bottom: 30px;
	background:white;
}
h1 {
	font-family: Raleway, Verdana, Geneva, sans-serif;
	color: var(--cyan);
}

.flex-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: calc(100vw - 30px);
	min-height: 60vh;
	padding: 20px; 
	border: none;
	margin: 5px auto;
	box-shadow: 5px 5px 5px rgba(0,0,0,0.35);
	background: #F8F8FB;
}
 
.flex-item {
	background-color: #f4f4f4;
	width: 200px;
	height: 200px;
	margin: 20px;
	border: 1px solid black;
}


/* Mobile Devices */
@media (max-width: 520px) {
	body {
		margin: 48px 0 30px 0;
		padding: 0;
	}
	article {
		padding:0;
		width: 100vw;
		margin: 0;
		padding-bottom: 30px;
		background:white;
	}
	.flex-container {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-around;
		width: 100vw;
		min-height: 60vh;
		padding: 0; 
		border: none;
		margin: 0;
		box-shadow: none;
		background: #F8F8FB;
	}
	.flex-item {
		background-color: #f4f4f4;
		width: 200px;
		height: 200px;
		margin: 20px;
		border: 1px solid black;
	}
}


/* Image */
img {
	border: 1px solid var(--midnight);	
}

/**********************
* Structural elements *
**********************/
/* Nav bar */
nav {
	position: fixed;
	top:0;
	display:flex;
	justify-content: space-between;
	flex-direction: row;
	align-items: center;
	
	background: var(--blue-black);
	
	width:100vw;
	height: 51px;
	color: white;
	font-size: 16px;
	font-family: "Segoe UI Light", Arial, Helvetica, Sans-Serif;
	padding:0;
	margin:0;
	margin-bottom: 20px;
	z-index:99;
}

nav.child {
	margin: auto;
	display:flex;
	justify-content: space-between;
	flex-direction: row;
	align-items: center;
	text-align:center;
	width: 120px;
	font-family:"Segoe UI Light", Verdana, Arial, Helvetica, Sans-Serif;
  	vertical-align: middle;
}

#navButton {
	margin-left:10px;
	cursor:pointer;
  	vertical-align: middle;
	
}
.rotated {
	/* Firefox */
	-moz-transform: rotate(90deg);
	/* WebKit */
	-webkit-transform: rotate(90deg);
	/* Opera */
	-o-transform: rotate(90deg);
	/* Standard */
	transform: rotate(90deg);
 	transition: 0.5s;
}

.rotate180 {
	/* Firefox */
	-moz-transform: rotate(180deg);
	/* WebKit */
	-webkit-transform: rotate(180deg);
	/* Opera */
	-o-transform: rotate(180deg);
	/* Standard */
	transform: rotate(180deg);
 	transition: 0.5s;
}

#upDownArrow {
	border:none;
	margin:0;
	padding:0;
}
#upDown {
	padding: 0;	
	line-height:24px;
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#45484d+0,000000+100;Black+3D+%231 */
	background: var(--blue-black); /* Old browsers */
	/* background: -moz-linear-gradient(top, #45484d 0%, #000000 100%); FF3.6-15 */
	/* background: -webkit-linear-gradient(top, #45484d 0%,#000000 100%); Chrome10-25,Safari5.1-6 */
	/* background: linear-gradient(to bottom, #45484d 0%,#000000 100%); W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	/* filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#45484d', endColorstr='#000000',GradientType=0 ); IE6-9 */

}
#navOwner {
	margin-right:10px;
}
#navDate {
	font-size:1.5rem;
}

/* Left Panel */
#leftPanel {
	box-sizing:border-box;
	position:fixed;
	z-index:30;
	width: 300px;
	padding: 3px;
	color: white;
	top: 52px;
	height: calc(100% - 79px);
    display:flex;
	flex-direction: column;
	align-items:flex-start;
 	transition: 0.8s;
}
#leftPanel.closed {
	left: -300px;
	background: rgba(0,0,0,0.25);
}

#leftPanel.open {
	left: 0px;
	background: rgba(0,0,0,0.95);
}
#leftPanel.open label, #leftPanel.open p {
	color:white !important;
}
#leftPanel.open a {
	color: var(--coral);
}
#leftPanel input {
	margin:0;
}

/* Bottom Panel */
#bottomPanel {	
  transition: 0.5s;
  z-index:50;
}
#bottomPanel.closed {
	position:fixed;
	bottom:0;
	height: 28px;
	width:100%;
	z-index:50;
	background: rgba(153,153,153,0.75);
}
#bottomPanel.open {
	position:fixed;
	bottom:0;
	/* Subtract the header size */
	height: calc(100% - 51px);
	overflow: auto;
	width:100%;
	z-index:50;
	background: var(--pearl-gray);
	
}
#upDown {
	padding: 0;
	width:100%;
	text-align:center;
	cursor: pointer;
	border-bottom:groove 3px #CCC;
	border-top: solid 1px white;
	color: black;
}

button {
	border-radius: 5px;
	border: solid 1px var(--midnight);
	barckground: var(--gold);
	color: var(--midnight);
}
#hero {
	margin:0 auto;
	padding: 5px;
	width:100vw;
	height: 30vh;
	background: var(--pearl-gray);
}

/*.container:hover {
      cursor: pointer;                   
      filter: brightness(120%); 
	  border: 2px solid white;                   
}*/

/* Typography */
h1 {
	line-height: 150%;
}

p, textarea {
	font-family:"Segoe UI Light", Verdana, Arial, Helvetica, Sans-Serif;
}