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


/*___________________________________________________________Color pallette*_____________________________________________*/




/*

#fb3f05 color description : Vivid red
#3f516f color description : Very dark desaturated blue.
*/




/*_______________________________________________________________layout___________________________________________________*/

html {
	box-sizing: border-box; /*  This changes the box model for the entire site to include padding and border as part of the box size */
}
*, *:before, *:after {
	box-sizing: inherit;/*  This changes the box model for the entire site to include padding and border as part of the box size */
}



body {
	margin: 0;
	font-family: Anton-Regular, Baskerville, "Palatino Linotype", Palatino, "Century Schoolbook L", "Times New Roman", "serif";
	font-size: 62.5%; /* This sets the default text size to 10px, 1 em = 10px*/
	color: white;
	background-image: linear-gradient(to right, rgba(36, 44, 63, .9), rgba(47, 63, 89, .9), rgba(53, 77, 105, .9), rgba( 	57, 77, 110, .9), rgba( 57, 77, 110, .9), rgba(53, 77, 105, .9), rgba(47, 63, 89, .9), rgba(36, 44, 63, .9) ), url(images/NoiseTransparent3.png);
}


.wrapper {
	min-width: 100vw;
	min-height: 100vh;
	margin: 0 auto;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr 6fr 1fr;
	grid-template-rows: 50px 300px 1fr auto;
	grid-template-areas: ". nav ." ". header ." ". main ." "footer footer footer";
	grid-gap: 10px;
	border-top: solid 4px #FB3F05;
}
.wrapper > div {
	padding: 20px;
	font-size: 150%;
}
.nav {
	grid-area: nav;
	width: 50vw;
	position: fixed;
	margin: 0 auto;
	margin-top: -4px;
	left: 0; /* fixed elements need this to center */
	right: 0;
	text-align: center; /* need to center navigation, see under .nav ul to see other needed part*/
	border-top: solid 4px #FB3F05;
	-webkit-box-shadow: 0 8px 6px -6px white;       /*Drop Shadow on the bottom*/
	-moz-box-shadow: 0 8px 6px-6px white; 			/*Drop Shadow on the bottom*/
	box-shadow: -8 8px 16px -6px white; 			/*Drop Shadow on the bottom*/
	z-index: 10;
	border-bottom-left-radius: 30px;
	border-bottom-right-radius: 30px;
	background-color: #000;
	background: linear-gradient(to top, rgba(0, 0, 0,.9), rgba(255,255,255,.2), rgba(0, 0, 0,.9));
	background-color: #FB3F05;
}
.header {
	grid-area: header;
	
}

.tagline {
	position: relative;
	top: 200px;
	left: 0;
	z-index: 5;
}
.tagline h1 {
	display: inline;
	line-height: 50px;
	text-transform: lowercase;
	font-family: Appendix;
	color: #D3671E;
	margin: 0;
	padding: 0;
	background-color: transparent;
	font-size: 5em;
	border-bottom: none;
	background: -webkit-linear-gradient(#FB3F05, #FB3F05, #fff );
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.tagline sub {
	display: inline;
	text-transform: lowercase;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 1.5em;
	vertical-align: baseline;
	color: #FFF;
	margin: 0;
}
.main {
	grid-area: main;
	margin-bottom: 10px;
}
.footer {
	grid-area: footer;
	border-top: solid 4px #FB3F05;
	-webkit-box-shadow: 0 -8px 6px -3px black;       /*Drop Shadow on the top*/
	-moz-box-shadow: 0 -8px 6px -3px black; 		/*Drop Shadow on the top*/
	box-shadow: 0 -8px 16px -6px black; 			/*Drop Shadow on the top*/
	background: linear-gradient(to top, rgba(15, 66, 100,.9), rgba(255,255,255,0)), repeating-radial-gradient( circle, #334460, #334460 10px, #FB3F05 10px, #FB3F05 20px);
}
.footer-grid {
	margin: 0 auto;
	width: 92.1875%;
	height: auto;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-template-rows: 1fr;
	grid-template-areas: "footer-nav1 footer-nav2 footer-nav3";
	grid-gap: 10px;
}
.footer-nav1 {
	grid-area: footer-nav1;
	background-color: #40556F;
	background-image: url("images/FooterBackground.png");
	opacity: 0.9;
	border-top-left-radius: 75px;
	padding-left: 20px;
	background-image: radial-gradient(circle at bottom right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0) 40px, tranparent 40px);
	overflow: hidden;
}
.footer-nav2 {
	grid-area: footer-nav2;
	background-color: #40556F;
	opacity: 0.9;
	background-image: url("images/FooterBackground.png");
}
.footer-nav3 {
	grid-area: footer-nav3;
	background-color: #40556F;
	opacity: 0.9;
	background-image: url("images/FooterBackground.png");
	border-top-right-radius: 75px;
}





/**********************************************************donut ring*******************************************************************/
.donut-ring {
    position: relative;
    width: 10em;
    height: 10em;
	float: right;
	right: 25%;

}

.ring {
    position: absolute;
    width: 50%;
    height: 50%;
}

.ring.lefttop {
    top: 0;
    left: 0;
    background-color: #FB3F05;
    border-radius: 100% 0 0 0;
	background-image: url(images/NoiseTransparent2.png);
}

.ring.righttop {
    top: 0;
    right: 0;
    background-image: url(images/NoiseTransparent2.png);
    border-radius: 0 100% 0 0;
}

.ring.leftbottom {
    bottom: 0;
    left: 0;
    background-image: url(images/NoiseTransparent2.png);
    border-radius: 0 0 0 100%;
}

.ring.rightbottom {
    bottom: 0;
    right: 0;
    background-color: #FB3F05;
	background-image: url(images/NoiseTransparent2.png);
    border-radius: 0 0 100% 0;
}

.cutout {
    width: 75%;
    height:75%;
    background-color: #3D516A;
	background-image: url(images/NoiseTransparent.png);
	position: absolute;
    top: 13%;
    left: 13%;
    border-radius: 50%;
    pointer-events: none;
}

/* _________________________________________________________Chevron___________________________________________________*/  

.chevron {
	position: relative;
	top: 35%;
	left: 0;
	text-align: center;
	padding: 0px;
	margin-bottom: 6px;
	height: 15px;
	width: 370px;
}
.chevron:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 51%;
	border: #fff thin solid;
	background-image: linear-gradient(to right, rgba(36, 44, 63, .9), rgba(47, 63, 89, .9), rgba(53, 77, 105, .9), rgba( 	57, 77, 110, .9), rgba( 57, 77, 110, .9), rgba(53, 77, 105, .9), rgba(47, 63, 89, .9), rgba(36, 44, 63, .9) ), url(images/NoiseTransparent3.png);
	transform: skew(0deg, 5.7deg);
}
.chevron:after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: 50%;
	border: #fff thin solid;
	border-left: none;
	background-image: linear-gradient(to right, rgba(36, 44, 63, .9), rgba(47, 63, 89, .9), rgba(53, 77, 105, .9), rgba( 	57, 77, 110, .9), rgba( 57, 77, 110, .9), rgba(53, 77, 105, .9), rgba(47, 63, 89, .9), rgba(36, 44, 63, .9) ), url(images/NoiseTransparent3.png);
	transform: skew(0deg, -5.9deg);
}
/*___________________________________________________________navigation___________________________________________________*/


/*________________________________________________hyperlinks______________*/

a:link {
	text-decoration: none;
}
a:visited {
	text-decoration: underline;
}
a:hover {
	text-decoration: none;
}
a:active {
	text-decoration: none;
}
/*_________________________________________Horizontal Navigation______________*/

.nav ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
	text-align: center;
	clear: left;
}
.nav ul li {
	display: block;
	float: left;
	text-align: center;
	line-height: 40px;
	padding: 0;
	margin: 0;
	border-bottom: 0px;
	background-color: transparent;
	border-right: #000 1px solid;
}
.nav ul li a {
	display: block;
	line-height: 40px;
	background-color: transparent;
	padding: 0px 20px;
	margin: 0;
	text-decoration: none;
	font-size: 1em;
	font-weight: bold;
}
.nav ul li a:link {
	color: #fff;
	text-decoration: none;
}      /* unvisited link */
.nav ul li a:visited {
	color: #fff;
	text-decoration: none;
}  /* visited link */
.nav ul li a:hover {
	color: #fff;
	background-color: transparent;
	transition: transform 1s;
	transform: scale(1.3);
	text-decoration: underline;
}
/* mouse over link */
.nav ul li a:active {
	color: #fff;
	background-color: transparent;
	text-decoration: none;
}  /* selected link */
/*_____________________________________________vertical navigation____________*/

.footer ul {
	margin: 0;
	padding: 20px 20px;
	list-style-type: none;
}
.footer ul li {
	margin: 0;
	padding: 10px 0;
	list-style-type: none;
	border-bottom: 1px dashed #fff;/*font-size set under ul*/
}
.footer ul li a:link {
	color: #ffffff;
	text-decoration: none;
	padding-bottom: 10px;    /* unvisited link */
}

.footer ul li a:visited {
	color: #ffffff;
	text-decoration: none; /* visited link */
}
.footer ul li a:hover {
	color: #fff;
	background-color: transparent;
	text-decoration: underline;
}
.footer ul li a:active {
	color: #fff;
	text-decoration: underline;/* selected link */
}
/*_________________________________________________________Typography (Generic)_______________________________________________*/




/*_____________________________________________ Fonts________________*/

@font-face {
	font-family: Sammiessansserif;
	src: url(fonts/Sammiessansserif.woff2); /* Headers Font*/
}
@font-face {
	font-family: Anton-Regular;
	src: url(fonts/Anton-Regular.woff2); /* Tagline Header Font*/
}

@font-face {
	font-family: Appendix;
	src: url(fonts/Appendix.woff2); /* body Font*/
}



/*_______________________________________________headers______________*/


.main > h1, h2, h3, h4, h5, h6 {
	color: #FB3F05;
	background: -webkit-linear-gradient(#FB3F05, #FB3F05, #fff );
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-family: Sammiessansserif;
}
h1 {
	font-size: 2.6em;
	font-weight: 100;
	padding: 10px 10px 10px 0px;
	background: -webkit-linear-gradient(#FB3F05, #FB3F05, #fff );
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
h2 {
	font-size: 2.2em;
	text-align: left;
	padding: 10px 10px 10px 0px;
}
h3 {
	background-color: transparent;
	font-size: 1.8em;
	text-align: left;
	padding: 10px 10px 10px 0px;
}
h4 {
	background-color: transparent;
	font-size: 1.5em;
	text-align: left;
	padding: 10px 10px 10px 0px;
}
h5 {
	background-color: transparent;
	font-size: 1.2em;
	text-align: left;
	padding: 10px 10px 10px 0px;
}
h6 {
	background-color: transparent;
	font-size: .9em;
	text-align: left;
	padding: 10px 10px 10px 0px;
}
p {
	font-size: 1.2em;
	}

/* _________________________________________Lists____________ */

ul {
	list-style: square;
	font-size: 1.3em;
}
ol {
	font-size: 1.3em;
	list-style: lower-roman;
}
ol a:link {
	text-decoration: none;
}
ol a:visited {
	text-decoration: underline;
}
ol a:hover {
	text-decoration: none;
}
ol a:active {
	text-decoration: none;
}
ul ul {
	font-size: 1.0em;
	margin: 0 0 0 10px;
	list-style: circle;
} /* nested list items */
dl {
	font-size: 1.3em;
	margin-left: 10px;
}
dt {
	font-weight: bold;
}
dd {
	font-style: italic;
	font-weight: normal;
	padding-left: 10px;
}
/* ___________________________________Other blocks of content and Misc.*/

blockquote {
	font-size: 1.3em;
	font-style: italic;
	text-align: justify;
	margin: 30px;
}
code {
	font-size: 1.3em;
	display: block;
	border-color: #FB3F05;
	border-width: 1px;
	border-style: solid;
	padding: 10px;
	margin: 10px 10px;
}
pre {
	font-size: 1.3em;
	display: block;
	margin: 0 0 10px 0;
	white-space: pre-wrap;
	word-wrap: break-word;  /* Pre will push a liquid website past its viewport without this attribute*/
}
hr {
	margin-bottom: 10px;
	color: #FB3F05
}
sup {
	vertical-align: super;
	color: #FB3F05
}
sub {
	vertical-align: sub;
	color: #FB3F05
}
address {
	font-size: 1em;
	text-align: center;
}
/*___________________________________________________________@media _____________________________________________________*/




@media screen and (max-width: 600px) {
.wrapper {
	grid-template-areas: "header" "nav" "main" "footer";
	grid-template-columns: 100%;
	grid-template-rows: 0 50px 1fr auto;
}
	
.header {
	margin-top: 50px;
	
}
.main {
	margin-top: 300px;
}
.footer-grid {
	grid-template-areas: "footer-nav1" "footer-nav2" "footer-nav3";
	grid-template-columns: 100%;
	grid-template-rows: 1fr;
	grid-gap: 10px;
}
.nav {
	width: 100%;/* This makes the navigation stack and fit in the viewport */
}
.nav ul li {
	width: 100%;
	border-right: none;
	float: none;/* This makes the navigation stack and fit in the viewport */
} 
	

}

@media screen and (max-width: 1100px) {
	
	.donut-ring{ 
		display: none;
	
	}
	.chevron {
	display:none;
} 
	.tagline sub span {
	 display: block;
}
}

