/*
Author:			Dylan Richards
Title:			CSS
Website:		Tint Pros
Version:		Development
Last Revision:	January 7, 2016 - rev. 1.12
Copyright:		(C) 2016 DylRicho. All Rights Reserved.
URL:			http://dylricho.com/
*/


/* ------------------------------------------------------------------ */
/* Generic HTML */
/* ------------------------------------------------------------------ */
::-moz-selection {
	background: #9a371a;
	color: #e7e7e7;
}
::selection {
	background: #9a371a;
	color: #e7e7e7;
}
body {
	background: #d6d6d6 url('../i/bg.jpg') repeat 0 0;
	color: #262626;
	font-family: Ubuntu, "Segoe UI", Calibri, Helvetica, Verdana, sans-serif;
	font-size: 1.25em;
	line-height: 1.5;
	margin: 0 auto;
	max-width: 900px;
	/*overflow-x: hidden;*/
}
body p {
	margin: 1em 0;
}
h1 {
	font-size: 1.25em;
}

@media screen and (min-width: 640px) {
h1 {
	font-size: 1.5em;
}
}


/* ------------------------------------------------------------------ */
/* No JS */
/* ------------------------------------------------------------------ */



/* ------------------------------------------------------------------ */
/* Header Notice */
/* ------------------------------------------------------------------ */
div#notice {
	-moz-box-shadow: 0 0 2em rgba(0, 0, 0, 0.5), 0 0 2em rgba(0, 0, 0, 0.25) inset;
	-moz-border-radius: 0.25em;
	-webkit-box-shadow: 0 0 2em rgba(0, 0, 0, 0.5), 0 0 2em rgba(0, 0, 0, 0.25) inset;
	-webkit-border-radius: 0.25em;
	background: #ca8025;
	border-radius: 0.25em;
	box-shadow: 0 0 2em rgba(0, 0, 0, 0.5), 0 0 2em rgba(0, 0, 0, 0.25) inset;
	color: #efefef;
	margin: 2em 0 3em 0;
	text-align: center;
}
div#notice p {
	margin: 0;
	padding: 1em;
}
div#notice p i {
	font-size: 28px;
	margin-right: 0.5em;
	vertical-align: bottom;
}


/* ------------------------------------------------------------------ */
/* Mobile Navigation */
/* ------------------------------------------------------------------ */
#mobile-nav {
	background: #9a371a;
	overflow: hidden;
	text-align: left;
}
#mobile-nav ul li {
	display: block;
	list-style: none;
	margin: 0;
}
#mobile-nav ul li a:link, #mobile-nav ul li a:visited {
	-moz-box-shadow: 0 0 2em rgba(0, 0, 0, 0.25) inset;
	-webkit-box-shadow: 0 0 2em rgba(0, 0, 0, 0.25) inset;
	background: #9a371a;
	box-shadow: 0 0 2em rgba(0, 0, 0, 0.25) inset;
	color: #efefef;
	display: block;
	font-weight: bold;
	padding: 1em;
	text-decoration: none;
}
#mobile-nav ul li a:focus, #mobile-nav ul li a:hover {
	-moz-box-shadow: 0 0 2em rgba(0, 0, 0, 0.5) inset;
	-webkit-box-shadow: 0 0 2em rgba(0, 0, 0, 0.5) inset;
	background: #7d2d15;
	box-shadow: 0 0 2em rgba(0, 0, 0, 0.5) inset;
}
#mobile-nav ul li a:active {
	background: #262626;
}
#mobile-nav ul li a i {
	font-size: 28px;
	margin-right: 0.5em;
	vertical-align: bottom;
}

@media screen and (min-width: 1024px) {
#mobile-nav {
	display: none;
}
}


/* ------------------------------------------------------------------ */
/* Main Navigation */
/* ------------------------------------------------------------------ */
#nav {
	background: #9a371a;
	display: none;
	overflow: hidden;
	text-align: left;
}
#nav ul li {
	display: block;
	list-style: none;
	margin: 0;
}
#nav ul li a:link, #nav ul li a:visited {
	-moz-box-shadow: 0 0 2em rgba(0, 0, 0, 0.25) inset;
	-webkit-box-shadow: 0 0 2em rgba(0, 0, 0, 0.25) inset;
	background: #9a371a;
	box-shadow: 0 0 2em rgba(0, 0, 0, 0.25) inset;
	color: #efefef;
	display: block;
	font-weight: bold;
	padding: 1em;
	text-decoration: none;
}
#nav ul li a:focus, #nav ul li a:hover {
	-moz-box-shadow: 0 0 2em rgba(0, 0, 0, 0.5) inset;
	-webkit-box-shadow: 0 0 2em rgba(0, 0, 0, 0.5) inset;
	background: #7d2d15;
	box-shadow: 0 0 2em rgba(0, 0, 0, 0.5) inset;
}
#nav ul li a:active {
	background: #262626;
}
#nav ul li a i {
	font-size: 28px;
	margin-right: 0.5em;
	vertical-align: bottom;
}

@media screen and (min-width: 1024px) {
#nav {
	-moz-border-radius: 0.25em 0.25em 0 0;
	-webkit-border-radius: 0.25em 0.25em 0 0;
	border-radius: 0.25em 0.25em 0 0;
	display: block;
	padding: 2em 0;
	text-align: center;
}
#nav ul li {
	display: inline-block;
	margin: 0 0.25em;
}
#nav ul li a:link, #nav ul li a:visited {
	-moz-border-radius: 0.25em;
	-webkit-border-radius: 0.25em;
	background: #9a371a;
	border-radius: 0.25em;
	display: inline;
	padding: 0.5em 1em;
}
}


/* ------------------------------------------------------------------ */
/* Hero */
/* ------------------------------------------------------------------ */
div#full-logo {
	-moz-background-size: contain;
	-o-background-size: contain;
	-webkit-background-size: contain;
	background: url('../i/logo1.png') no-repeat 0 0;
	background-size: contain;
	height: 96px;
	width: auto;
}
#hero {
	background: #262626 url('../i/hero.jpg') no-repeat -372px 0;
	height: 320px;
	margin-bottom: -2em;
	padding: 1em 3%;
	width: 94%;
}

@media screen and (min-width: 640px) {
#hero {
	background: #262626 url('../i/hero.jpg') no-repeat -224px 0;
}
}

@media screen and (min-width: 768px) {
#hero {
	background: #262626 url('../i/hero.jpg') no-repeat 0 0;
}
}

@media screen and (min-width: 1024px) {
#hero {
	padding: 8em 2em 0 2em;
	width: auto;
}
}


/* ------------------------------------------------------------------ */
/* Content */
/* ------------------------------------------------------------------ */
#content {
	background: #f8f8f8;
}
#content div.grid .section {
	padding: 3%;
	vertical-align: top;
	width: 94%;
}
#content div.grid .section:nth-child(odd),
#content div.grid .section:nth-child(even) {
	background: none;
}
#content .local-btt a:link, #content .local-btt a:visited {
	border-bottom: 0.1em solid #9a371a;
	color: #9a371a;
	float: right;
}
#content .local-btt a:focus, #content .local-btt a:hover {
    border-bottom: 0.1em solid #7d2d15;
	color: #7d2d15;
}
#content .local-btt a:active {
    border-bottom: 0.1em solid #262626;
	color: #262626;
}
#content .section {
	overflow: hidden;
	padding: 1em 3%;
}
#content .section:nth-child(odd) {
	background: #f8f8f8;
}
#content .section:nth-child(even) {
	background: #e7e7e7;
}
#content .section div#gallery-image-group {
	margin-top: 1em;
	text-align: center;
}
#content .section h1 {
	color: #9a371a;
}
#content .section h1 i {
	font-size: 28px;
	margin-right: 0.5em;
	vertical-align: middle;
}
#content .section h1 + img.section-gallery-image {
	margin-top: 2em;
}
#content .section h1 + img.section-side-image {
	margin-top: 1em;
}
#content .section img {
	padding: 2em 3%;
}
#content .section img {
	display: block;
	margin: auto;
	padding: 4% 0;
}
#content .section img.section-gallery-image {
	display: inline-block;
	height: auto;
	padding: 2%;
	width: 40%;
}
#content .section img.section-side-image {
	height: auto;
	width: 100%;
}
#content .section p a:link, #content .section p a:visited {
	color: #9a371a;
	font-weight: bold;
}
#content .section p a:focus, #content .section p a:hover {
	color: #7d2d15;
}
#content .section p a:active {
	color: #262626;
}

@media screen and (min-width: 1024px) {
#content div.grid {
	display: table;
	margin: 0 auto;
    width: 100%;
}
#content div.grid .section {
	display: table-cell;
	padding: 1em;
	width: 33.333%;
}
#content .local-btt a:link, #content .local-btt a:visited {
	border-width: 2px;
}
#content .section {
	padding: 2em;
}
#content .section h1 i {
	font-size: 56px;
}
#content .section img {
	display: inline-block;
	margin: auto;
	padding: 4% 0;
}
#content .section img.section-side-image {
	width: 50%;
}
#content .section img.section-side-image.float-left {
	float: left;
	margin-right: 2em;
}
#content .section img.section-side-image.float-right {
	float: right;
	margin-left: 2em;
}
}


/* ------------------------------------------------------------------ */
/* Form */
/* ------------------------------------------------------------------ */
#content .section#contact fieldset {
	margin: 2em 0;
}
#content .section#contact fieldset#form-controls {
	margin: 2em 0 1em 0;
	text-align: center;
}
#content .section#contact fieldset#form-controls input {
	color: #efefef;
	display: inline-block;
	font-weight: bold;
	padding: 0.5em 3%;
	width: 44%;
}
#content .section#contact fieldset#form-controls input#reset-fields {
	background: #7d2d15;
	margin-right: 3%;
}
#content .section#contact fieldset#form-controls input#reset-fields:focus, #content .section#contact fieldset#form-controls input#reset-fields:hover {
	background: #602210;
}
#content .section#contact fieldset#form-controls input#submit-form {
	background: #9a371a;
	margin-left: 3%;
}
#content .section#contact fieldset#form-controls input#submit-form:focus, #content .section#contact fieldset#form-controls input#submit-form:hover {
	background: #7d2d15;
}
#content .section#contact fieldset#form-controls input#reset-fields:active,
#content .section#contact fieldset#form-controls input#submit-form:active {
    background: #262626;
}
#content .section#contact fieldset input,
#content .section#contact fieldset select,
#content .section#contact fieldset textarea {
	-moz-border-radius: 0.25em;
	-moz-box-shadow: 0 0 2em rgba(0, 0, 0, 0.25) inset;
	-webkit-border-radius: 0.25em;
	-webkit-box-shadow: 0 0 2em rgba(0, 0, 0, 0.25) inset;
	background: #e7e7e7;
	border: none;
	border-radius: 0.25em;
	box-shadow: 0 0 2em rgba(0, 0, 0, 0.25) inset;
	cursor: pointer;
	display: block;
	font-family: Ubuntu, "Segoe UI", Calibri, Helvetica, Verdana, sans-serif;
	margin: 0.25em 0;
	outline: none;
	padding: 0.5em 3%;
	width: 94%;
}
#content .section#contact fieldset input:focus, #content .section#contact fieldset input:hover,
#content .section#contact fieldset select:focus, #content .section#contact fieldset select:hover,
#content .section#contact fieldset textarea:focus, #content .section#contact fieldset textarea:hover {
	-moz-box-shadow: 0 0 2em rgba(0, 0, 0, 0.5) inset;
	-webkit-box-shadow: 0 0 2em rgba(0, 0, 0, 0.5) inset;
	box-shadow: 0 0 2em rgba(0, 0, 0, 0.5) inset;
}
#content .section#contact fieldset input:active,
#content .section#contact fieldset select:active,
#content .section#contact fieldset textarea:active {
	background: #9a371a;
	color: #efefef;
}
#content .section#contact fieldset label {
	display: block;
	width: 100%;
}
#content .section#contact fieldset legend {
	color: #9a371a;
	font-weight: bold;
	margin: 1em 0;
}
#content .section#contact fieldset select {
	-moz-border-radius: 0.25em;
	-webkit-border-radius: 0.25em;
	border-radius: 0.25em;
	width: 100%;
}
#content .section#contact fieldset textarea {
	-moz-border-radius: 0.25em;
	-webkit-border-radius: 0.25em;
	border-radius: 0.25em;
	display: inline-block;
	height: 12em;
	padding: 1em 3%;
	width: 94%;
}

@media screen and (min-width: 1024px) {
#content .section#contact fieldset#form-controls input {
	padding: 0.5em 1em;
	width: 192px;
}
#content .section#contact fieldset#form-controls input#reset-fields {
	margin-right: 1em;
}
#content .section#contact fieldset#form-controls input#submit-form {
	margin-left: 1em;
}
#content .section#contact fieldset input,
#content .section#contact fieldset select,
#content .section#contact fieldset textarea {
	display: inline-block;
	padding: 0.5em 1em;
	width: 256px;
}
#content .section#contact fieldset label {
	display: inline-block;
	vertical-align: middle;
	width: 192px;
}
#content .section#contact fieldset label#comments-label {
	margin-top: 0.5em;
	vertical-align: top;
}

#content .section#contact fieldset select {
	-moz-border-radius: 0.25em 0 0 0.25em;
	-webkit-border-radius: 0.25em 0 0 0.25em;
	border-radius: 0.25em 0 0 0.25em;
	width: 288px;
}
#content .section#contact fieldset textarea {
	display: inline-block;
	height: 12em;
	padding: 1em;
	width: 448px;
}
}


/* ------------------------------------------------------------------ */
/* Footer */
/* ------------------------------------------------------------------ */
#footer {
	background: #262626;
	color: #efefef;
	overflow: hidden;
	width: 100%;
}
#footer div.grid .section {
	padding: 1em 3%;
	vertical-align: top;
	width: 94%;
}
#footer .section:nth-child(odd) {
	background: #9a371a;
}
#footer .section:nth-child(even) {
	background: #7d2d15;
}
#footer .section a:link, #footer .section a:visited {
	color: #fff;
	text-decoration: none;
}
#footer .section a:focus, #footer .section a:hover {
	color: #efefef;
}
#footer .section a#gps-link:link, #footer .section a#gps-link:visited {
	-moz-border-radius: 0.25em;
	-moz-box-shadow: 0 0 2em rgba(0, 0, 0, 0.25) inset;
	-webkit-border-radius: 0.25em;
	-webkit-box-shadow: 0 0 2em rgba(0, 0, 0, 0.25) inset;
	background: #7d2d15;
	border-radius: 0.25em;
	box-shadow: 0 0 2em rgba(0, 0, 0, 0.25) inset;
	color: #efefef;
	display: inline-block;
	font-weight: bold;
	padding: 0.5em 1em;
	text-decoration: none;
}
#footer .section a#gps-link:focus, #footer .section a#gps-link:hover {
	-moz-box-shadow: 0 0 2em rgba(0, 0, 0, 0.5) inset;
	-webkit-box-shadow: 0 0 2em rgba(0, 0, 0, 0.5) inset;
	background: #7d2d15;
	box-shadow: 0 0 2em rgba(0, 0, 0, 0.5) inset;
}
#footer .section a#gps-link:active {
	background: #262626;
}
#footer .section a#gps-link i {
	font-size: 28px;
	margin-right: 0.5em;
	vertical-align: middle;
}
#footer .section h1 i {
	font-size: 28px;
	margin-right: 0.5em;
	vertical-align: middle;
}
#footer .section ul {
	margin-top: 1em;
}
#footer .section ul li span {
	font-weight: bold;
	display: inline-block;
	min-width: 30%;
}

@media screen and (min-width: 640px) {
#footer .section h1 i {
	font-size: 28px;
	margin-right: 0.5em;
	vertical-align: middle;
}
}

@media screen and (min-width: 1024px) {
#footer div.grid {
	display: table;
	margin: 0 auto;
    width: 100%;
}
#footer div.grid .section {
	display: table-cell;
	padding: 2em;
	vertical-align: top;
	width: 50%;
}
#footer .section ul li span {
	min-width: 20%;
}
}


/* ------------------------------------------------------------------ */
/* Legal */
/* ------------------------------------------------------------------ */
.section#legal {
	background: #1e1e1e;
	clear: both;
	color: #efefef;
	overflow: hidden;
	padding: 1em 3%;
}
.section#legal p {
	font-size: 0.75em;
	margin: 0 0 1em 0;
	padding: 0;
}
.section#legal ul#right li a:link, .section#legal ul#right li a:visited {
	-moz-border-radius: 0.25em;
	-moz-box-shadow: 0 0 2em rgba(0, 0, 0, 0.25) inset;
	-webkit-border-radius: 0.25em;
	-webkit-box-shadow: 0 0 2em rgba(0, 0, 0, 0.25) inset;
	border-radius: 0.25em;
	box-shadow: 0 0 2em rgba(0, 0, 0, 0.25) inset;
	color: #efefef;
	display: block;
	font-weight: bold;
	padding: 0.5em 3%;
	text-align: center;
	text-decoration: none;
	width: 94%;
}
.section#legal ul#right li a:focus, .section#legal ul#right li a:hover {
	-moz-box-shadow: 0 0 2em rgba(0, 0, 0, 0.5) inset;
	-webkit-box-shadow: 0 0 2em rgba(0, 0, 0, 0.5) inset;
	box-shadow: 0 0 2em rgba(0, 0, 0, 0.5) inset;
}
.section#legal ul#right li a:active {
	background: #151515;
}
.section#legal ul#right li a i {
	font-size: 28px;
	margin-right: 0.5em;
	vertical-align: middle;
}

@media screen and (min-width: 1024px) {
.section#legal {
	-moz-border-radius: 0 0 0.25em 0.25em;
	-webkit-border-radius: 0 0 0.25em 0.25em;
	border-radius: 0 0 0.25em 0.25em;
	clear: both;
	padding: 2em;
}
.section#legal p#left {
	float: left;
	margin: 0;
	padding: 1em 0;
}
.section#legal ul#right {
	float: right;
	margin-right: 1.5em;
}
.section#legal ul#right li a:link, .section#legal ul#right li a:visited {
	padding: 0.5em 1em;
}
}


/* ------------------------------------------------------------------ */
/* Miscellaneous */
/* ------------------------------------------------------------------ */
#mobile-nav ul li a:link, #mobile-nav ul li a:visited, #mobile-nav ul li a:focus, #mobile-nav ul li a:hover, #mobile-nav ul li a:active,
#nav ul li a:link, #nav ul li a:visited, #nav ul li a:focus, #nav ul li a:hover, #nav ul li a:active,
#content .section p a:link, #content .section p a:visited, #content .section p a:focus, #content .section p a:hover, #content .section p a:active,
#content .section#contact fieldset input, #content .section#contact fieldset input:focus, #content .section#contact fieldset input:hover, #content .section#contact fieldset input:active,
#content .section#contact fieldset select, #content .section#contact fieldset select:focus, #content .section#contact fieldset select:hover, #content .section#contact fieldset select:active,
#content .section#contact fieldset textarea, #content .section#contact fieldset textarea:focus, #content .section#contact fieldset textarea:hover, #content .section#contact fieldset textarea:active,
#content .section#contact fieldset#form-controls input#reset-fields, #content .section#contact fieldset#form-controls input#reset-fields:focus, #content .section#contact fieldset#form-controls input#reset-fields:hover, #content .section#contact fieldset#form-controls input#reset-fields:active,
#content .section#contact fieldset#form-controls input#submit-form, #content .section#contact fieldset#form-controls input#submit-form:focus, #content .section#contact fieldset#form-controls input#submit-form:hover, #content .section#contact fieldset#form-controls input#submit-form:active,
#footer .section a:link, #footer .section a:visited, #footer .section a:focus, #footer .section a:hover, #footer .section a:active,
.section#legal ul#right li a:link, .section#legal ul#right li a:visited, .section#legal ul#right li a:focus, .section#legal ul#right li a:hover, .section#legal ul#right li a:active {
	-moz-transition: all 0.25s linear;
	-ms-transition: all 0.25s linear;
	-o-transition: all 0.25s linear;
	-webkit-transition: all 0.25s linear;
	transition: all 0.25s linear;
}

@media screen and (min-width: 1024px) {
div#wrapper {
	-moz-border-radius: 0.25em;
	-moz-box-shadow: 0 0 2em rgba(0, 0, 0, 0.5);
	-webkit-border-radius: 0.25em;
	-webkit-box-shadow: 0 0 2em rgba(0, 0, 0, 0.5);	
	border-radius: 0.25em;
	box-shadow: 0 0 2em rgba(0, 0, 0, 0.5);
	margin: 2em 0;
}
}