@charset 'UTF-8';
@import url('http://fonts.googleapis.com/css?family=Open+Sans:400,300,300italic,600,700|Open+Sans+Condensed:300,700');
@import url('font-awesome.min.css');

/*
	Michael D. Savage
	Portfolio  Website
	style.css
	Main CSS File
	Created Feb 22 2015
*/

/*********************************************************************************/
/* The Basic Goods                                                               */
/*********************************************************************************/

	body
	{
		background: #191919;
		font-family: 'Open Sans', sans-serif;
		font-size: 11pt;
		font-weight: 300;
		color: #bbbbbb;
	}

	body,input,textarea,select
	{
	}

	h1, h2, h3, h4, h5, h6
	{
		text-transform: uppercase;
		font-family: 'Open Sans Condensed', sans-serif;
		font-weight: 700;
	}
	
		h1 a, h2 a, h3 a, h4 a, h5 a, h6 a
		{
			color: inherit;
			text-decoration: none;
		}

	strong, b
	{
		font-weight: bold;
	}
	
	em, i
	{
		font-style: italic;
	}
	
	sub
	{
		position: relative;
		top: 0.5em;
		font-size: 0.8em;
	}
	
	sup
	{
		position: relative;
		top: -0.5em;
		font-size: 0.8em;
	}
	
	hr
	{
		border: 0;
		border-top: solid 1px #ddd;
	}
	
	blockquote
	{
		border-left: solid 0.5em #ddd;
		padding: 1em 0 1em 2em;
		font-style: italic;
	}
	
	p, ul, ol, dl, table
	{
		margin-bottom: 1em;
	}
	
	p
	{
		line-height: 2.25em;
	}

	br.clear
	{
		clear: both;
	}
	
	a
	{
		color: #bbbbbb;
	}
	
	a:hover
	{
		text-decoration:  ;
	}

	/* Sections/Articles */
	
		section,
		article
		{
			margin-bottom: 3em;
		}
		
		section > :last-child,
		article > :last-child
		{
			margin-bottom: 0;
		}

		section:last-child,
		article:last-child
		{
			margin-bottom: 0;
		}

	/* Images */

		.image
		{
			display: inline-block;
		}
		
			.image img
			{
				display: block;
				width: 100%;
			}

			.image-full
			{
				display: block;
				width: 100%;
				margin: 0 0 2em 0;
			}
			
			.image-left
			{
				float: left;
				margin: 0 2em 2em 0;
			}
			
			.image-centered
			{
				display: block;
				margin: 0 0 2em 0;
			}

				.image-centered img
				{
					margin: 0 auto;
					width: auto;
				}

	/* Lists */

		ul.style1
		{
		}
		
			ul.style1 li
			{
				padding: 0.50em 0em;
			}

		ul.contact
		{
			margin: 0;
			padding: 2em 0em 0em 0em;
			list-style: none;
			cursor: default;
		}
		
			ul.contact li
			{
				display: inline-block;
				padding: 0em 0.25em;
				font-size: 1.2em;
			}
			
			ul.contact li span
			{
				display: none;
				margin: 0;
				padding: 0;
			}
			
			ul.contact li a
			{
				color: #FFF;
			}
			
			ul.contact li a:before
			{
				display: inline-block;
				background: #2e2e2e;
				-webkit-transition: all .25s ease-in-out;
				-moz-transition: all .25s ease-in-out;
				-ms-transition: all .25s ease-in-out;
				-o-transition: all .25s ease-in-out;
				transition: all .25s ease-in-out;
				width: 60px;
				height: 60px;
				line-height: 60px;
				border-radius: 30px;
				text-align: center;
				color: #939291;
			}

			ul.contact li a:hover:before
			{
				background: #393939;
				-webkit-transition: all .25s ease-in-out;
				-moz-transition: all .25s ease-in-out;
				-ms-transition: all .25s ease-in-out;
				-o-transition: all .25s ease-in-out;
				transition: all .25s ease-in-out;
				color: #FFF;
			}
			
			ul.contact li a:active:before
			{
				background: #2b2b2b;
				-webkit-transition: all .25s ease-in-out;
				-moz-transition: all .25s ease-in-out;
				-ms-transition: all .25s ease-in-out;
				-o-transition: all .25s ease-in-out;
				transition: all .25s ease-in-out;
				color: #FFF;
			}

	/* Forms */

		form
		{
		}
		
			form label
			{
				display: block;
			}
		
			form input.text,
			form select,
			form textarea
			{
				-webkit-appearance: none;
				display: block;
				border: 0;
				background: #ccc;
				width: 100%;
			}

				form input.text:hover,
				form select:hover,
				form textarea:hover
				{
				}

				form input.text:focus,
				form select:focus,
				form textarea:focus
				{
				}
				
				form textarea
				{
					min-height: 9em;
				}

				form .formerize-placeholder
				{
					color: #555 !important;
				}

				form ::-webkit-input-placeholder
				{
					color: #555 !important;
				}

				form :-moz-placeholder
				{
					color: #555 !important;
				}

				form ::-moz-placeholder
				{
					color: #555 !important;
				}

				form :-ms-input-placeholder
				{
					color: #555 !important;
				}

				form ::-moz-focus-inner
				{
					border: 0;
				}
			
	/* Tables */
	
		table
		{
			width: 100%;
		}
		
			table.style1
			{
				width: 100%;
			}
			
				table.style1 tbody tr:nth-child(2n+2)
				{
					background: #f4f4f4;
				}
				
				table.style1 td
				{
					padding: 0.5em 1em 0.5em 1em;
				}
				
				table.style1 th
				{
					text-align: left;
					font-weight: bold;
					padding: 0.5em 1em 0.5em 1em;
				}
			
				table.style1 thead
				{
					background: #444;
					color: #fff;
				}
				
				table.style1 tfoot
				{
					background: #eee;
				}
				
				table.style1 tbody
				{
				}

	/* Buttons */
		
		.button
		{
			display: inline-block;
			background: #b84752;
			border-radius: 5px;
			line-height: 3.2em;
			padding: 0 2em;
			-webkit-transition: all .25s ease-in-out;
			-moz-transition: all .25s ease-in-out;
			-ms-transition: all .25s ease-in-out;
			-o-transition: all .25s ease-in-out;
			transition: all .25s ease-in-out;
			letter-spacing: 0.2em;
			text-decoration: none;
			text-transform: uppercase;
			outline: 0;
			white-space: nowrap;
			font-family: 'Open Sans Condensed', sans-serif;
			font-weight: 700;
			font-size: 0.90em !important;
			color: #fff !important;
		}

			.button:hover
			{
				background: #c1525d;
				-webkit-transition: all .25s ease-in-out;
				-moz-transition: all .25s ease-in-out;
				-ms-transition: all .25s ease-in-out;
				-o-transition: all .25s ease-in-out;
				transition: all .25s ease-in-out;
			}
			
			.button:active
			{
				background: #ae424d;
				-webkit-transition: all .25s ease-in-out;
				-moz-transition: all .25s ease-in-out;
				-ms-transition: all .25s ease-in-out;
				-o-transition: all .25s ease-in-out;
				transition: all .25s ease-in-out;
			}
		
			.button-alt
			{
				background: #2e2e2e;
			}

				.button-alt:hover
				{
					background: #393939;
				}
				
				.button-alt:active
				{
					background: #2b2b2b;
				}
		
			.button-big
			{
				line-height: 3.5em;
				padding: 0 3em;
				font-size: 1.1em !important;
			}

	/* Header */
	
		header
		{
			margin-bottom: 1.5em;
		}

			header h2
			{
				letter-spacing: 0.10em;
				text-transform: uppercase;
				font-size: 1.2em;
				color: #FFF;
			}

/*********************************************************************************/
/* Icons                                                                         */
/*********************************************************************************/

	.icon
	{
		text-decoration: none;
	}

		.icon:before
		{
			display: inline-block;
			font-family: FontAwesome;
			font-size: 1.25em;
			text-decoration: none;
			font-style: normal;
			font-weight: normal;
			line-height: 1;
			-webkit-font-smoothing:antialiased;
			-moz-osx-font-smoothing:grayscale;
		}

/*******************************************************************************************/
/* Candy Wrappers (Just kidding these are CSS wrappers) [Not to be confused with rappers]  */
/******************************************************************************************/

	#header-wrapper
	{
		position: relative;
		background: #1c1c1c;
		border-bottom: 1px solid #232323;
		z-index: 4;
	}
	
	#banner-wrapper
	{
		position: relative;
		background: #333;
	}
	
	#features-wrapper
	{
		position: relative;
		background: #fff;
	}
	
	#main-wrapper
	{
		position: relative;
		overflow: hidden;
		background: #1c1c1c;
	}
	
	.homepage #main-wrapper
	{
		background: #1c1c1c;
	}
	
	#footer-wrapper
	{
		position: relative;
	}

/*********************************************************************************/
/* M Shield Logo                                                                 */
/*********************************************************************************/

	#logo
	{
		position: absolute;
		z-index: 1;
		top: 0;
		left: 50%;
		background: #b84752;
		text-align: center;
		text-transform: uppercase;
		font-weight: normal;
	}
		#logo img{
			margin: 5px 0 0 0;
		}
	
		#logo:after
		{
			content: '';
			position: absolute;
			left: 0;
			border-top: solid 1px #b84752;
			border-left: solid 1px rgba(64,64,64,0);
			border-right: solid 1px rgba(64,64,64,0);
		}
		
		#logo a
		{
			position: relative;
		 	display:inline-block;
			vertical-align: middle;
			border: 0;
			color: #fff;
		}
		
			#logo a > span
			{
				display: inline-table;
				border-top: solid 2px;
				border-bottom: solid 2px;
				border-color: rgba(255,255,255,0.2);
				letter-spacing: 0.15em;
				line-height: 1.0em;
				text-align: center;
			}
			
			#logo a > span b:last-child
			{
				display: block;
			}

/*********************************************************************************/
/* Footer                                                                        */
/*********************************************************************************/

	#footer
	{
		text-align: center;
	}
	
	#footer h2
	{
		font-weight: 700;
	}
	
	#footer p
	{
		letter-spacing: 0.10em;
	}

/*********************************************************************************/
/* Copyright                                                                     */
/*********************************************************************************/

	#copyright 
	{
		overflow: hidden;
		text-align: center;
		color: #61666c;
	}

/*********************************************************************************/
/* Slider                                                                        */
/*********************************************************************************/

	#slider
	{
		position: relative;
		margin: 0 auto;
		width: 100%;
		cursor: default;
	}
	
		#slider .caption
		{
			position: absolute;
			bottom: 0;
			left: 0;
			width: 100%;
			background-color: rgba(32,32,32,0.75);
			z-index: 3;
			text-align: center;
		}
		
			#slider .caption h2
			{
				font-weight: 700;
				color: #ffffff;
				text-transform: uppercase;
			}
			
			#slider .caption p
			{
				opacity: 0.5;
				font-weight: 700;
				color: #ffffff;
				font-family: 'Open Sans Condensed', sans-serif;
				text-transform: uppercase;
				margin: 0;
			}

/*********************************************************************************/
/* Intro                                                                         */
/*********************************************************************************/
	
	#intro
	{
		overflow: hidden;
		text-align: center;
	}	
	
		#intro header h2
		{
			font-weight: 700;
		}
		
		#intro .number
		{
			display: inline-block;
			background: #2e2e2e;
			width: 80px;
			height: 80px;
			line-height: 80px;
			border-radius: 40px;
			letter-spacing: 0.10em;
			font-family: 'Open Sans Condensed', sans-serif;
			text-align: center;
			font-weight: 700;
			color: #FFF;
		}
		
		#intro .number img
		{
			display: inline-block;
			padding: 15px 0 0 0;
		}
		
		#intro section:last-child
		{
			border-right: none;
		}