@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800');
@charset "utf-8";
/* CSS Document */
/* Site Dudes Mobile Site CSS */

/* - Reset - */

a { 
	outline:0; 
	border:0; 
	text-decoration:none; 
}

img { 
	border:0;
}

.clear { 
	clear:both;
}

/* - Setup - */

body { 
	background:#111; 
	margin:0; 
	padding:0; 
	font-family: 'Open Sans', sans-serif; 
}

.logo { 
	padding: 10px 0; 
	margin:0 auto; 
}

.logo img{
	margin:0 auto; 
	width:95%;
}

.slogan { 
	color:#fff;
	font-family: 'Open Sans', sans-serif;
	text-transform:uppercase;
	border-bottom:1px solid #ddd; 
	padding:10px 2px;
	-webkit-border-radius: 0;
	background: #111;
	font-size: 12px;
}

.homeButton  {
    left: 13px;
    position: absolute;
    top: 7px;
    z-index: 9999;
}

.phone_link{
    right: 13px;
    position: absolute;
    top: 7px;
    z-index: 9999;
}

a.phone_link:link, a.phone_link:active, a.phone_link:visited { 
	font-size:12px; 
	font-weight:normal; 
	color:#111; 
}

a.phone_link:hover { 
	color:#ccc;
}

.imgBorder { 
	width:100%; 
	margin:0;
}

/* - Main Content/Container - */

#mainContent { 
	padding:10px;
	color:#fff;
	font-size:18px;
}

.body_text{	
	margin: 10px;
}

.contentAdjust { 
	padding: 0 15px; 
}

.page_heading {
	font-size:40px;
	font-family: 'Open Sans', sans-serif;
	color:#fff;
}

a.readMore, a.readMore:visited{
	padding:10px 20px;
	background:#222;
	color:#fff;
	text-decoration:none;
	border-radius:25px;
	 -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}
a.readMore::after {
	font-family: FontAwesome;
   content: "";
}

a.readMore:hover{
	color: #AF0D12;
	 -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

a.readMore:hover::after {
	font-family: FontAwesome;
   content: "\f061";
   margin:0 10px;
}

a.phone {
	text-decoration:none;
	color:#AF0D12;
	font-weight:900;
}

a.phone:hover{
	color:#fff;
}

a.text_link:link, a.text_link:visited {
	font-weight: 700;
	color: #AF0D12;
	text-decoration: none;
}
a.text_link:hover {
	color: #fff;
	text-decoration: underline;
}

.gallery { list-style: none; padding: 0; margin: 0; }
.gallery:after { clear: both; content: "."; display: block; height: 0; visibility: hidden; }
.gallery li { float: left; width: 33.33333333%; }
.gallery li a { display: block; margin: 5px; border: 1px solid #3c3c3c; }
.gallery li img { display: block; width: 100%; height: auto; }

/* - Nav Settings - */

#navContainer { 
	margin:5px;
	padding:5px 10px;
}

/* - View Full Site - */

.view { 
	background:#fff; 
	border:1px solid #ddd; 
	border-left:none; 
	border-right:none; 
	width:100%; 
	height:35px; 
	margin:5px auto 5px; 
}

.viewText, .viewText a { 
	color:#000; 
	padding: 7px 0; 
	font-size:15px; 
	font-family: 'Open Sans', sans-serif; 
}

/* - Footer - */

#footer { 
	color:#fff; 
	font-size:18px; 
	padding:15px 0; 
	text-align:center; 
}

a.footer_link:link, a.footer_link:active, a.footer_link:visited { 
	font-weight:normal; 
	color:#fff; 
	font-size:18px;
}

a.footer_link:hover { 
	color:#333; 
}

/* - Contact Form Setup - */

#contactForm div {
	margin:1px 3px;
}

.contact_text {
	font-size:13px;
	padding:2px 0 5px 0;
}

.submit_button {
	padding:3px 15px; 
	color: #333; 
	font-weight: bold; 
	border: 1px solid #ddd; 
	background-color: #fff;
	margin:8px 0;
}

input, textarea { 
	padding:5px; 
	background: none;
	color: #fff;
	border: 1px solid #999;
	width: 90%;
	margin-top: 9px;
}

button {
	padding:1em 2em;
	width:90%;
	cursor:pointer;
	background:#333;
	font-family: 'Archivo Black', sans-serif;
	color:#fff;
	text-transform:uppercase;
	font-size:1.25em;
	border:none;
	
}

button:hover{
	background:#AF0D12;
}

/* - Custom CSS Fades - */

.gradientFade {
	background:#fff;
	background: -moz-linear-gradient(top, rgba(169,3,41,0.86) 0%, rgba(109,0,25,0.84) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(169,3,41,0.86)), color-stop(100%,rgba(109,0,25,0.84))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, rgba(169,3,41,0.86) 0%,rgba(109,0,25,0.84) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, rgba(169,3,41,0.86) 0%,rgba(109,0,25,0.84) 100%); /* Opera11.10+ */
	background: -ms-linear-gradient(top, rgba(169,3,41,0.86) 0%,rgba(109,0,25,0.84) 100%); /* IE10+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dba90329', endColorstr='#d66d0019',GradientType=0 ); /* IE6-9 */
	background: linear-gradient(top, rgba(169,3,41,0.86) 0%,rgba(109,0,25,0.84) 100%); /* W3C */
}

.top-phone {
	box-shadow: 0 1px 4px rgba(0,0,0,.6);
	-webkit-box-shadow: 0 1px 4px rgba(0,0,0,.6);
	-moz-box-shadow: 0 1px 4px rgba(0,0,0,.6);
	-o-box-shadow: 0 1px 4px rgba(0,0,0,.6);
	width: 90%;
	position:relative;
	margin-bottom:-15px;
	z-index:999;
	background:#fff;
	padding:10px;
}

.phone {
	text-decoration:none;
	color:#333;
	font-weight:bold;
}