@charset "UTF-8";
/* CSS Document */

a:link {color:inherit; text-decoration:none;}
a:visited {color:inherit; text-decoration:none;} 
a:hover {color:inherit; text-decoration:none;}  
a:active {color:inherit; text-decoration:none;}

p, div, img, td, table, tr, h1, h2, h3, h4, h5, h6, hr{margin:0px;padding: 0px;border:0px;}

div{background-repeat: no-repeat;}

body
{
	background-color:#f5f5f5;
	margin: 0px;
	padding: 0px;
	/*font-family: "franklin-gothic-urw", serif;*/
	font-family: "open-sans", sans-serif;
}

#header
{
	height: 50px;
	width: 100%;
	z-index: 100;
	background-color:rgba(245, 245, 245, .95);
	border-bottom:1px solid #fff;
	position: fixed;
	top: 0px;
	transform-origin:top center;
	transition:.5s ease-out;
}

#header.open{
	background-color:rgba(26, 26, 26, .95);
	border-bottom:1px solid #555;
}


#logo{
	height:30px;
	width:130px;
	margin:9px 0px 0px 15px;
	background-image:url(Assets/Logo/Logo_Full_Color.svg);
	transition:.5s ease-out;}

#logo.open{background-image:url(Assets/Logo/Logo_White.svg);}

#head{
	display:flex;
	max-width:1200px;
	margin:0px auto;
	-webkit-justify-content:space-between;
	justify-content:space-between;
}

#hlinks1{
	padding-right:10px;
}

#hlinks1 p, #hlinks2 p{
	text-align:center;
	letter-spacing:.015em;
	align-content:center;
}

#hlinks1 p{
	display:flex;
	margin:5px 0px 0px;
	height:40px;
	width:100px;
	font-size:12px;
	line-height:40px;
	justify-content:space-around;

}

#mNav{
	display:none;
	opacity:0;
	background-color:rgba(26, 26, 26, .95);
	border-top: 1px solid #555;
	height:75px;
	width:100%;
	top:50px;
	position:fixed;
	z-index:101;
	justify-content:space-around;
	transition:opacity .5s ease-out;
	align-items:center;
}

#mNav.open{
	opacity:1;
}

#hlinks2{display:flex;width:100%;justify-content:space-around;margin:11px 5%;}

#hlinks2 p{
	display:inline;
	height:50px;
	width:150px;
	color:#fff;
	font-size:18px;
	line-height:50px;	
}

#hlinks1 p:hover, #hlinks2 p:hover{
	text-align:center;
	background-color:rgba(223, 223, 223, 1);/*#DFDFDF*/
	position:relative; 
	border-radius:7.5px;
}

#hlinks2 p:hover{background-color:rgba(17, 17, 17, .90);}

navIcon, nav Icon span{
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
}

#navIcon{
  display:flex;
  width: 25px;
  height: 30px;
  position: absolute;
  right:15px;
  top:15px;
  margin: 0px auto;
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

#navIcon span {
  display: block;
  height: 3px;
  width: 100%;
  background: #000;
  opacity: 1;
  position: absolute;
  left: 0;
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

#navIcon span:nth-child(1) {top: 0px;}

#navIcon span:nth-child(2) {top: 7px;}

#navIcon span:nth-child(3) {top: 14px;}

#navIcon.open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: -3px;
  left: 4px;
  background-color:#fff;
}

#navIcon.open span:nth-child(2) {width: 0%;opacity: 0;}

#navIcon.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 15px;
  left: 4px;
  background-color:#fff;
}

@media only screen and (min-width: 0px) {
	#head{height:50px;}
	#hlinks1{display:none;}
	#navIcon{display:flex;}
	#mNav{height: 100%;}
	#hlinks2 p:nth-child(1){margin-bottom: 20px;}
	#hlinks2{width:400px; height: 150px;}
}

@media only screen and (min-width: 670px) {
	#hlinks2 p:nth-child(1){margin-bottom: 20px;}
	#hlinks2{width:400px; height: 100px; margin-top:-10px;}
	#mNav{height: 175px;}
	
}

@media only screen and (min-width: 769px) {
	#navIcon{display:none;}
	#mNav{display:none;}
	#hlinks1{display:flex;}}


.center{
	margin-left:auto;
	margin-right:auto;
}

.wrap, .tcover a{
	-webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

.justA, .justB, .justC, .alignC{
	display: -webkit-flex;
	display: flex;
}

.justA{
	-webkit-justify-content:space-around;
    justify-content:space-around;
}
.justB{
	-webkit-justify-content: space-between;
    justify-content: space-between;
}

.justC{
	-webkit-justify-content: center;
    justify-content: center;
}
.justL{
	-webkit-justify-content:flex-start;
    justify-content:flex-start;
}

.alignC{
	-webkit-align-content:center;
	align-content:center;
}
.alignL{
	-webkit-align-content:flex-start;
	align-content:flex-start;
}

#fWrap{width:100%; background-color:#f5f5f5;position:relative;}

#footer{
	z-index:105;
	display:flex;
	min-height:75px;
	background-color:#f5f5f5;
	border-top:1px solid #fff;
	justify-content:center;
	position:relative;
	top:-1px;
	
}

#footer p{
	display:block;
	width:100%;
	text-align:center;
	padding: 0px 30px;
}

#footer p:nth-child(1){
	margin-top:20px;
	font-size:12px;
	letter-spacing:.01em;
	line-height:16px;
	margin-bottom:5px;
	font-weight:400;}

#footer p:nth-child(2){
	font-weight:300;
	font-size:11px;
	letter-spacing:.04em;
	margin-bottom: 30px;
}

#footer a:hover{color:#f04925;}