﻿/* RESETS & BASIC PAGE SETUP */
*, *:before, *:after {
    margin: 0px;
    padding: 0px;
	box-sizing: border-box;
	list-style-type: none;
}

html {
	overflow: scroll;
	font-size: 16px;
}

 /* ELIMINATE SMALL SPACE UNDER IMAGE */
img {
    display: block;
}

body {
	/* font: 62.5% 'Lucida Sans Unicode','Lucida Grande',sans-serif;		 */
	background: #000033;
	color:white;
}

p { 
    font-size: 1.0rem;
    line-height: 1.4rem;
    margin-bottom: 1.0rem;
    margin-top:.3rem;
}

p a, h5 a, h4 a, h3 a, h2 a {
	color: #08c;
    text-decoration:none
}

p a:hover, h2 a:hover, h1 a:hover {
	color: white;
}

h1 {
	font: size 19px;;
}

h2 {
	font-size:22px;
}

h3 {
	font-size:20px;
}

h4 {
	font-size:18.7px;
}

h5 {
	font-size:17.3px;
}

h6 {
	font-size:16px;
}

ul, ol {
	margin-bottom:4px;
	font-size: 1rem;
}

ul a, ol a, ul li a {
	color:#08C;
	text-decoration:none;}

ul a:hover, ol a:hover, ul li a:hover {
	color: orange;
}

.imageMain ol li {
	margin-left: 30px;
}

/* STRUCTURE */
#pageWrap {
	max-width: 1180px;
	margin: 0 auto;
	padding:10px 10px 10px 20px;	
}

/* MENU */

.hamburger-tab {
	width: 25px;
	height: 30px;
	background-color: orange;
	position: fixed;
	top: 50%;
	left: 0px;
	border-radius: 5px;
	cursor: pointer;
	z-index: 999;
	transition: transform .5s;
}

.bar{
	width: 15px;
	height: 2px;
	background-color: #000033;
	dispLay: block;
	transform: translate(6px, 10px);
  }
  
  .bar:nth-child(2){
	margin: 2px 0;
  }

.orange-edge {
	width: 10px;
	height: 2000px;
	position: fixed;
	top: 0px;
	left: 0px;
	background-color: orange;
	cursor: pointer;
	z-index: 900;
	transition: transform .5s;
}

  .hamburger-tab.active,
  .site-navigation.active,
  .orange-edge.active {
		transform: translateX(160px);
		transition: transform 1.5s;
  }

/* CUSTOMIZING SCROLLBAR */

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

/* SOCIAL */

/* .social {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-around;
}

	.social img {
		height:60px;
		width:60px;
		object-fit: cover;
		object-position: bottom;
    }

		.social img:hover {
			object-position: top;
        } */
	
/* MAIN CONTENT: FEATURE */

.feature {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom:10px;
}

	.feature div {
		width: 244px;
		margin:auto;
		margin-top: 10px;
		border: 1px #999 solid;
		background-color: #010144;
		/* position:relative; */
		}
		
	.feature div h2, .feature div p {
		color:white;
		margin:10px;
		}

	.feature div:hover {
		background-color: #010154;
		}

			
/* CONTENT STYLING */

.iframeResponsive {
	padding-bottom:56.25%;
	position:relative;
	height:0px;
	width:100%;
	margin-top:10px;
	border: 1px solid #999;
	/* margin-left: 10px; */
}

.iframeResponsive iframe {
	height:100%;
	width:100%;
	position:absolute;
}

/* IMAGEMAIN (when there is an image in the block), SPECMAIN (just text) */

.imageMain {
	border:1px #999 solid;
	margin: 10px 0px 10px 0px;
	position:relative;
	clear:both;
	overflow: hidden;
}

.imageMain li, .imageMain {
	font-size:1.0rem;
	list-style:disc;
	list-style-position:inside;
	/* margin-left:20px; */
	list-style-position:outside;
}

.imageMain img {
	width: 100%;
	height: auto;
}

.imageMain p {
	margin: 10px;	
}

.img-25-r {
	float: right;
	max-width: 25%;
	height: auto;
	margin: -10px -10px -10px 10px;
}

.img-50-r {
	float: right;
	max-width: 50%;
	height: auto;
	margin: -10px -10px -10px 10px;
}

.imageMain h1,
.imageMain h2,
.imageMain h3,
.imageMain h4,
.imageMain h5,
.imageMain ul {
	margin-left:10px;
	margin-top: 5px;
}

.specMain {
	border:1px #999 solid;
	margin: 10px 0px 0px 0px;
	position:relative;
	clear:both;
	overflow: hidden;
	padding: 10px;
}

.specMain li, .specMain div {
	font-size:1.0rem;
	list-style:disc;
	list-style-position:inside;
	margin-left:20px;
	list-style-position:outside;
}

/* .specMain li a {
	color: white;
}

.specMain li a:hover {
	color: orange;
} */


/* FLEX COLUMNS */

.twoColumns {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
}

@media (min-width: 1200px){
	.site-navigation { 
		transform: translateX(160px);
		/* border-right: #333 1px solid; */
	 }
	 
	.hamburger-tab,
	.orange-edge {
		visibility: hidden;;
	}

	#pageWrap {
		padding-left: 160px;
	}
}

.red_border {
	border-left: solid 2px red;
}

.button_gray, .button_gray:hover {
	background-color: gray;
	cursor: default;
}
