@charset "utf-8";
/* CSS Document */

/***** IMAGES NEED TO BE NO LARGER THAN 960x640*****/
/***** THUMBNAILS NEED TO BE 210x140 *****/

* {
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
	list-style: none;	
}

*,
*:after,
*::before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html, body {
	height: 100%;
	background-color:#FFFFFF;
}

.material-symbols-outlined {
	font-variation-settings:
		'FILL' 1,
		'wght' 400,
		'GRAD' 0,
		'opsz' 48;
	position: relative;
	top: 7px;
}

	
/***********************************************

MAIN NAVIGATION

***********************************************/

#name_header{
	width:100%;
	height:75px;
	margin: 0px auto 0px auto;
	z-index:-2;
}

#main_header{
	width: 100%;
	height: 50px;
	margin: 0px auto 0px auto;
	z-index:-1;
}

#main_nav{
	width: 960px;
	height: 40px;
	margin: 0px auto 0px auto;
	text-align: center;
	border-top: #cccccc solid 1px;
	border-bottom: #cccccc solid 1px;	
}

#main_nav a {
	display: inline-block;
	margin: 12px 10px 0px 10px;
	color: #000000;
	font-size: 14px;
	font-family: 'Crimson Text', serif;
}

#main_nav a.hover {
	color: #FF4800;
}

#main_nav a.selected {
	color: #FF4800;
}


/***********************************************

CONTAINER and CLASS CSS

***********************************************/

.container {
	width: 100%;
	height: auto;
	margin: 40px auto 0px auto;
}
	
.content {
	width: 960px;
	margin: 40px auto 0px auto;
	padding: 0px 0px 0px 0px;
	
}

.content img{
	width: 100%;
	margin-bottom: 40px;
	
}

	.content img:last-of-type{
		margin-bottom: 0px;
	}


iframe {
	margin-bottom: 40px;	
}


/* THUMBNAILS GALLERY */


.thumbnails {
	margin: 0px auto 0px auto;
	max-width: 960px;
}

.thumbnails a {
	float: left;
	width: 49%;
	margin: 2px 0.5%;
}
	.thumbnails img
	{
		width: 100%;
		opacity:1.0;
		transition: opacity .3s ease-in-out;
		-moz-transition: opacity .3s ease-in-out;
		-webkit-transition: opacity .3s ease-in-out;
		
		-webkit-backface-visibility: hidden; /* Fix with jitter*/
    	-webkit-transform: translateZ(0) scale(0.8, 0.8);
		border: 1px solid #ffffff;
	}
	
	.thumbnails img:hover
	{
		width: 100%;
		opacity:1.0;
		transition: opacity .3s ease-in-out;
		-moz-transition: opacity .3s ease-in-out;
		-webkit-transition: opacity .3s ease-in-out;
		-o-transition: opacity .3s ease-in-out;
		
		-webkit-backface-visibility: hidden; /* Fix with jitter*/
    	-webkit-transform: translateZ(0) scale(1.0, 1.0);
		border: 1px solid #cccccc;
	}
	
/***********************************************

FOOTER

***********************************************/

.footer {
	width: 100%;
	height: 100px;
	font-size: 12px;
	font-family: 'Open Sans', sans-serif;
	clear: both;
}

.footer-content {
	margin: 0px auto;
	width: 960px;	
}

.footer p {
	text-align: center;
}


/***********************************************

TEXT STYLES

***********************************************/

.container h1 {
	font-family: 'Open Sans', sans-serif;
	color: #000000;
	font-size:20px;
	font-weight: 300;
	padding-bottom: 10px;
}

.container h2 {
	font-family: 'Roboto Condensed', sans-serif;
	color: #000000;
	font-size: 14px;
	font-weight:normal;
	text-transform:uppercase;
	letter-spacing:1px;
	padding-bottom: 10px;
}

#name_header h1 {
	font-family: 'Open Sans', sans-serif;
	color: #000000;
	font-size: 20px;
	font-weight: 300;
	text-align: center;
	padding-top: 25px;
}

.container p {
	font-family: 'Crimson Text', sans-serif;
	color: #000000;
	font-size: 16px;
	font-weight: 300;
	padding-bottom: 25px;
	line-height: 150%;
}

.footer p{
	color: #000000;
	padding-top: 40px;
}

a {
	color: #FF4800;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}
