﻿@charset "utf-8";

/*

   ERF Styles Sheet
   Author: David Forristall
   Date:   12/28/2022
   
   Filename: erf_styles.css

*/



/* HTML and Body Styles */
html {
	background-color: rgb(91, 132, 196);
}

body {
	color: rgb(91, 91, 91);
	background-color: white;
	font-family: Arial, Verdana, Geneva, sans-serif;
	-moz-box-shadow: rgba(31, 61, 31, 0.9) 10px 0px 50px,  rgba(31, 61, 31, 0.9) -10px 0px 50px;
	-webkit-box-shadow: rgba(31, 61, 31, 0.9) 10px 0px 50px,  rgba(31, 61, 31, 0.9) -10px 0px 50px;
	box-shadow: 10px 0px 50px rgba (31, 61, 31, 0.9),  -10px 0px 50px rgba(31, 61, 31, 0.9);
}


/* Heading Styles */
h1, h2 {
	color: white;
	background-color: rgb(8, 64, 161);
	text-align: center;
	line-height: 1.5em;
	font-family: Arial, Verdana, Geneva, sans-serif;
	letter-spacing: 0.1em;
}

/* Article Styles */
article {
	line-height: 1.5em;
}

article a {
	text-decoration: none;
	
}

article a:link {
	color: rgb(153, 0, 0); 
	
}

article a:visited {
	color: rgb(153, 0, 0); 
}

article a:hover {
	color: rgb(0, 0, 0); 
	font-size: 1.1em;
	text-shadow: rgba(153, 0, 0, 0.5) 5px 5px 8px;
}

article#services_erf img {
	float: right;
	margin: 0 15% 0 0;
	-webkit-box-shadow: rgba(31, 61, 31, 0.9) 10px 10px 20px;
	box-shadow: 10px 10px 20px rgba (31, 61, 31, 0.9);
	border-radius: 30px;
}

article#contact_erf img {
	float: right;
	margin: 0% 10% 0 0;
	-webkit-box-shadow: rgba(31, 61, 31, 0.9) 10px 10px 20px;
	box-shadow: 10px 10px 20px rgba (31, 61, 31, 0.9);
	border-radius: 30px;
}

/* Aside and Blockquote Styles */
aside blockquote {
	font-size: 0.85em;
	line-height: 1.5em;
	font-style: italic;
	/*color: rgb(8, 102, 161);*/
	margin: 20px 5px;
	quotes: "\201C" "\201D";
}

aside blockquote::before {
	content: open-quote;
	font-family: 'Times New Roman', Times, serif;
	font-size: 1.6em;
	font-weight: bold;
}

aside blockquote::after {
	content: close-quote;
	font-family: 'Times New Roman', Times, serif;
	font-size: 1.6em;
	font-weight: bold;
}

aside a {
	text-decoration: none; 
}
	
aside a:link {
	color: rgb(153, 0, 0); 
}

aside a:visited {
	color: rgb(153, 0, 0); 
}

aside a:hover {
	color: rgb(0, 0, 0); 
}

/* Navigation Styles */	
nav ul li {
	font-family: Arial, Verdana, Geneva, sans-serif;
	font-size: 1em;
}

nav ul li a:visited {
	background-color: rgb(8, 64, 161);
	color: white;
}
nav ul li a:hover {
	background-color: rgb(8, 64, 161);
	color: rgb(153, 0, 0);
	
}
/*  SEE ADDITIONAL STYLES Below for Mobile and Full Screen Settings */

/* List Styles */
dl {
	margin-left: 2%;
	font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, sans-serif;
}
dt {
	display: block;
	color: rgb(153, 0, 0);
	margin: 0;
	text-indent: 0;
	font-weight: bold;
	border-bottom: 1px solid rgba(168, 168, 168,1.00);
}
dd {
	display: block;
	margin: 0 3% 3% 3%;
	text-indent: 0;
}
dd > div {
	text-align: right;
	font-style: normal;
}
article#services_erf ul {
	margin: 0 0 0 5%;
}
article#testimonial_erf dd {
	font-style: italic;
}

/* Footer Styles */
body > footer {
	background-color: rgb(8, 64, 161);
	color: white; color: rgba(255, 255, 255, 0.7);
	font-family: Arial, Verdana, Geneva, sans-serif;
	text-align: center;
	line-height: 2em;
	font-size: 0.8em;
}

::cue {
	background: rgba(255, 255, 255, 0);
	color: rgb(153, 0, 0);
	font: 2.5em arial;
}

div#contactfloat {
	position: fixed;
	right: 20px;
	bottom: 20px;
	width: 100px;
	height: 20px;
	border: 1px solid;
	background-color: rgb(8, 64, 161); 
	color: white;
	padding: 5px 10px 10px 10px;
	vertical-align: middle;
	border-color: black;
	-webkit-box-shadow: rgba(31, 61, 31, 0.9) 10px 10px 20px;
	box-shadow: 10px 10px 20px rgba (31, 61, 31, 0.9);
	border-radius: 30px;
}
div#contactfloat  a {
	color: white;
	text-decoration: none;
}
	

/* Mobile Device - 480px or less */
@media only screen and (max-width: 480px) {

	aside {
		display: none;
	}
	
	body > article#about_erf {
		font-size: 16px;
		width: 90%;
		margin: 0 5% 0 3%;
	}

	body > article#services_erf, article#contact_erf, article#testimonial_erf {
		font-size: 16px;
		width: 90%;
		margin: 0 5% 0 3%;
	}

	body > article#services_erf img, article#contact_erf img {
		display: none;
	}
	body > article > form#contact {
		width: 95%;
	}
	
	a#navicon {
		display: block;
	}

	nav ul {
		display: none;
		list-style-type: none;
	}

	a#navicon:hover+ul, nav ul:hover {
		display: block;
	}

	nav ul li {
		text-align: left;
		border: thin solid white;
		border-collapse: collapse;
		line-height: 2em;
	}

	nav ul li a {
		background-color: rgb(8, 64, 161);
		color: white;
		text-decoration: none;
		width: 85%;
		display: block;
		padding-left: 10px;
		margin-bottom: 0%;
	}

}

/* Screen Width 481px and larger */
@media only screen and (min-width: 481px) {
	a#navicon {
		display: none;
	}

	nav ul li {
		display: table-cell;
		width: 15%;
		text-align: center;
		margin-right: 2%;
		border: thin solid white;
		border-collapse: collapse;
		line-height: 2em;
	}

	nav ul li a {
		background-color: rgb(8, 64, 161);
		color: white;
		text-decoration: none;
		display: block;
		margin-bottom: 0%;
		max-height: 2em;
	}

	nav ul li a {
		margin-bottom: 0;
	}
	nav {
		display: table;
		width: 96%;
		margin: 0 auto;
		float: none;
	}
	nav ul {
		display: table-row;
		margin: 0;
	}
	nav ul li:last-of-type {
		margin-right: 0%;
	}

	nav ul li a:focus {
		outline: thin dotted;
	}
	nav ul li a:hover, nav ul li a:active {
		outline: 0;
	}

}
audio, video {
	filter: drop-shadow(8px 8px 15px rgb(51, 51, 51));
	display: block;
	margin: 10px auto;
	width: 60%;
}


