﻿/*===================== 
	Color information
	
	-
	-
	-
	-
		 
=======================*/
/*===================== 
	CSS reset/normalize 
=======================*/

/**Correct `block` display not defined in IE 8/9.**/
article,aside,details,figcaption,figure,footer,header,hgroup,
main,nav,section,summary {display: block;}
pre {white-space: pre-wrap;}
small { font-size: 80%;}


/*===================== 
	@Font-Face 
=======================*/


/*===================== 
	base styles 
=======================*/
html {
    font-family: Arial, sans-serif; /* 1 */
    -ms-text-size-adjust: 100%; /* 2 */
    -webkit-text-size-adjust: 100%; /* 2 */
	}

body {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    background-image: url("/siteart/rock-bknd.jpg");
    background-size: cover;
    background-position:center center fixed;
    background-repeat:none;
	}

svg:not(:root) {overflow: hidden;/*reset*/}
	
/* clear floats */ 
.group:before,
.group:after {content: ""; display: table;} 
.group:after {clear: both;}
.group {zoom: 1;}	
.clear { clear: both;}
	
/*image replacement*/
.hide-text {
	text-indent:  100%;
	white-space:  nowrap;
	overflow:  hidden;
	}	

hr {
    -moz-box-sizing: content-box;
    box-sizing: content-box;
	border-style: solid;
    height: 0;
	} 

img { border: 0;} 
	
.row-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;
  flex-wrap: wrap;
}
.row-flex > [class*='col-'] {
  display: flex;
  flex-direction: column;
}

/*===================== 
	typography 
=======================*/
h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	}
	h1 {font-size: 2em;}

p {
	margin: 0;
	}
	
h1 {
}
		

h2 {
}

	
h3 {
}


h4 {
}


h5 {
}


h6 {
}

/*===================== 
	link styles 
=======================*/
a:focus {outline: thin dotted;/*reset*/
	}
a {color: #ed1c24; transition:.2s;}
a:hover {color: #000;}

a,
a:link, 
a:visited, 
a:active {
	outline: 0;/*reset*/ 
    text-decoration:none;
	}
	a:hover  {
		outline: 0;/*reset*/
		text-decoration: none;
		}  

/*===================== 
	header styles 
=======================*/
header {
	margin: 0 auto;
	width: 100%;
    background: linear-gradient(0deg, rgba(256, 256, 256, 0.9), rgba(256, 256, 256, 0.9));
    border-bottom:5px solid #000;
	}

.header-wrap {max-width:1350px; margin:auto; display:block; padding:0px 25px;}

.header-logo {margin-top:15px; max-width:100%;}

.header-contact-info {
    text-align:right;
    color:#000; 
    font-size:20px;
    padding-top:5px;
    font-weight:700;
}
.header-contact-link {color:#000; transition:.2s;}
.header-contact-link:hover, .header-contact-link:active, .header-contact-link:focus {color:#ed1c24;}
.red {color:#ed1c24; transition:.2s;}
.red:hover, .red:active, .red:focus {color:#000;}

/*===================== 
	nav styles 
=======================*/
.nav-caret {color:#ed1c24;}
nav.primary {
	padding:0;
	display:block;
	margin:0 auto;
	position:relative;
	text-align: center;
    width: 100%;
    border-bottom:10px solid #ed1c24;
    margin-bottom:3px;
	}

nav ul {
	padding:0;
	margin:0;
}

nav > ul > li {
	display:inline-block;
	list-style-type:none; 
}

nav ul li a {
	font-size: 20px;
    color: #000;
    display: block;
    text-transform: uppercase;
    font-weight:700;
    padding:10px 15px;
    transition:.2s;
}	

nav ul li a:hover,
nav ul li a:focus,
nav ul li a:active{
	color: #fff;
    background-color:#ed1c24;
}


/* This controls the Primary nav dropdowns for sublinks. Should not have to edit this too much */
nav.primary ul ul {
	display: none;
    position: absolute; 
    background-color:#fff;
    text-align:left;
}

nav.primary ul ul ul {
    position: absolute; 
    left: 100%;
    top:0; 
    background-color:#ececec;
    width:245px;;
}

nav.primary ul li:hover > ul {  
    display: block;
    z-index: 2000 !important;
}

nav.primary ul ul li {
    float: none; 
    position: relative;
	display:block;
    margin:0;
	width:100%;
}

nav.primary ul ul li a {
    font-size:16px;
}

.dropdown_arrow {
	display: inline-block !important;
}
/******** End of primary Nav ***************/


/*===================== 
	mobile nav
=======================*/
#menu-button{ /* initially will need to be hidden */
	display: block;
	font-size: 32px;
	width:100%;
	position: relative;
	z-index: 400;/* needs to be lower than nav.mobile, adjust as needed */
	background-color: #ed1c24;
	text-align: right;
	min-height: 0 !important;
	}
	#menu-button a{
		 color: white;
		 text-decoration: none;
		 text-align: right !important;
         padding-right: 15px;
	  }

nav.mobile {
	display:block;
	position: fixed;
	top: 0;
	left: -250px;
	width: 250px;
	height: 100%;
	background: #ed1c24;
	z-index: 500; /* needs to be higher than #menu-button, adjust as needed */
	overflow:auto;
}

nav.mobile .menu-toggle { /* Menu close button */
	position: absolute;
	top: 12px;
	right: 10px;
	display: inline-block;
	padding: 6px 9px 5px;
    font-family: 'Manrope', sans-serif;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	vertical-align: top;
}

a.close_mobile {
	font-size: 26px !important;
	font-weight: 900;
	text-align: right;
    padding-right: 10px;
    float: right;
}

nav.mobile .menu-toggle:hover { /* Menu close button on hover */
	color: #fff;
}

nav.mobile ul {
	list-style: none;
	font-weight: 300;
	margin:0;
	padding:0;
}

nav.mobile ul li a {
	position: relative;
	display: block;
	padding-left: 20px;
	color: white;
	text-decoration: none;
	font-size: 16px;
    clear: both;
}

nav.mobile ul li a:hover {
	background: #000;
	color: #fff;
}

nav.mobile ul li li a { /* appearance of the sub-level links */
	position: relative;
	display: block;
	padding: 2px 10px 2px 35px;
	color: white;
	text-decoration: none;
	text-transform: none !important;
}

nav.mobile ul li li li a { /* appearance of third level sub-level links if needed */
	background: #c4181f;
	position: relative;
	display: block;
	padding: 10px 10px 10px 45px;
	color: #fff;
	text-decoration: none;
}

nav.mobile ul li span.click{/* dropdown menu idicator arrow be sure to include this image with your image files */ 
	background:url("/siteart/white-plus.png") 10px 12px no-repeat;
	background-size:55%;
	position:relative;
	display:block;
	float:right;
	margin:-44px 0 0 0;
	cursor:pointer;
	z-index: 12399994;
	width:44px;
	height:44px;
	-webkit-transition:background-size .3s ease-in-out;
	-moz-transition:background-size .3s ease-in-out;
	transition:background-size .3s ease-in-out;
}

nav.mobile ul li span.click:hover{
	background-size:60%;
}

/*===================== 
	General styles 
=======================*/
.container-fluid {padding: 0px;}
.row-dry {padding: 0px; margin: 0px;}
.div-dry {padding: 0px;}

.center {text-align: center;}

.page-title {font-size:36px; font-weight:800; color:#ed1c24; padding-bottom:15px;}
.page-text {font-size:16px;}
.bold {font-weight:800; font-size:18px; padding-bottom:15px;}

.page-wrap {max-width:1350px; margin:auto; display:block; padding:0px 25px;}

.white-bknd {background:linear-gradient(0deg, rgba(256, 256, 256, 0.95), rgba(256, 256, 256, 0.95)); padding:35px 15px; margin:25px auto;}

/*===================== 
	content styles 
=======================*/
.hero-wrap {padding-top:15px!important; padding-bottom:15px!important;}
.red-border-bottom {border-bottom:10px solid #ed1c24; margin-bottom:10px;}

.slideshow-container {
	max-width: 100%;
	width: 100%;
	position: relative;
	margin: auto;}
.mySlides {display: none;}

.button-wrap {margin:4px auto;}
.home-btn { 
    display:block;
    width:100%;
    margin-bottom:3px;
    border:none;
    background-color:#000;
    height: 6.75vh;
    transition:.2s; 
    text-align:left;
    font-size: 24px;
    text-transform: uppercase;
    padding:10px 25px;
    letter-spacing:1px;
}
.home-btn:hover, .home-btn:active, .home-btn:focus {background-color:#58585a;}
.home-caret {color:#fcce11; margin-left:5px;}
.home-btn-link {color:#fff!important; text-transform:uppercase;}

.excav-bknd {background-image:url("/siteart/excavators-bknd.jpg"); background-attachment:fixed; background-position: center; background-size:cover;}
.home-about-section {background:linear-gradient(0deg, rgba(256, 256, 256, 0.95), rgba(256, 256, 256, 0.95)); height:210px; margin-bottom:25px;}
.home-blk {color:#000; font-size:20px;}
.home-title {font-weight:800; text-transform:uppercase; color:#ed1c24; font-size:36px; padding:35px 0px 15px 0px; line-height:25px;}
.home-text {font-size:18px;}

.home-contact-section {background:linear-gradient(0deg, rgba(256, 256, 256, 0.95), rgba(256, 256, 256, 0.95)); margin-bottom:35px; padding:35px;}

/*===================== 
	Shipping styles 
=======================*/
.shipping-img {margin:auto; display:block; margin-bottom:15px;}

.shipping-link {background-color:transparent; padding:15px 25px; color:#ed1c24;; font-weight:800; display:block; margin-top:15px; text-align:center; margin-bottom:15px; transition:.2s; border:2px solid #ed1c24; font-size:16px;}
.shipping-link:hover {color:#fff; background-color:#ed1c24;}

/*===================== 
	footer styles 
=======================*/
footer {
	margin: 0;
	width: 100%;
    background:linear-gradient(0deg, rgba(256, 256, 256, 0.9), rgba(256, 256, 256, 0.9));
    padding-top:25px;
	}
	
.footer-wrap {max-width:1350px; margin:auto; display:block; padding:0px 25px;}
.footer-contact-info {text-align:center;}
.footer-title {color:#ed1c24; font-size:20px; font-weight:800;}

.footer-contact-link {color:#000!important; font-weight:700; transition:.2s; font-size:16px;}
.footer-contact-link:hover, .footer-contact-link:active, .footer-contact-link:focus {color:#ed1c24!important;}

.footer-ul {list-style:none; padding:0px; margin:auto; padding-bottom:25px;}
.footer-quick-link {color:#000; font-weight:700; font-size:16px; transition:.2s;}
.footer-quick-link:hover, .footer-quick-link:active, .footer-quick-link:focus {color:#ed1c24;}

.footer-logo {width:95%; margin:auto;}

.copyright-info {background-color:#000; color:#fff; text-transform:uppercase; padding:10px 15px; text-align: center; letter-spacing:1px; font-size:14px;}
.copyright-link {color:#fff!important; font-weight:700; transition:.2s;}
.copyright-link:hover, .copyright-link:active, .copyright-link:focus {color:#ed1c24!important;}

/*===================== 
	form styles 
=======================*/
.contact-form-title {padding-top:25px;}
.contact-link {color:#000; transition:.2s;}
.contact-link:hover, .contact-link:active, .contact-link:focus {color:#ed1c24;}

.contact_form {
    margin: 10px auto;
    padding: 10px 15px;
    border: 1px solid #a4a4a4;
    width: 100%;
}

.submit-button, .thanks-button {
    background-color: transparent;
    color: #ed1c24;
    font-size: 18px;
    padding: 5px 15px; 
    border: 2px solid #ed1c24;
    margin-top: 10px;
    margin-bottom: 30px;
    transition:.2s;
}

.submit-button:hover, .thanks-button:hover{
    border: 2px solid #ed1c24;
    color: #fff;
    background-color: #ed1c24;
}

.thanks-text {
    font-size: 18px;
    text-align: center;
}

/*===================== 
	captcha styles 
=======================*/
/*control the Captcha */
.CaptchaPanel {
    margin:0 0 0 0 !important;
    padding:0 0 0 0 !important;
    text-align: center;
    line-height:normal !important;
    }

.CaptchaImagePanel {
    margin:0 0 0 0;
    padding:0 0 0 0;
    }

.CaptchaMessagePanel {
    padding:0 0 0 0 !important;
    margin:0 0 0 0 !important;
    font-weight:normal !important;
    font-size:13px;
    line-height:20px;
    }

.CaptchaAnswerPanel {
    margin:0 0 0 0;
    padding:2px 0px 2px 0px !important;
    }

.CaptchaWhatsThisPanel {
        line-height:0;
        margin:0 0 0 0;
        padding:11px 0 8px 0 !important;
    }
.CaptchaWhatsThisPanel a {color:#000;}
.CaptchaWhatsThisPanel a:hover {text-decoration:none;} 





/*========================= 
	 Responsive styles 
===========================*/
/*==========  Non-Mobile First Method  ==========*/

@media only screen and (max-width : 1350px) {
/*========================= 
	 Nav styles 
===========================*/
    nav ul li a {padding:10px 11px;}
    
/*========================= 
	 Content styles 
===========================*/
    .home-btn {height:6.25vh;}

}

@media only screen and (max-width : 1199px) {
/*========================= 
	 Nav styles 
===========================*/
    nav ul li a {font-size:17px; padding:10px 8px;}
    
/*========================= 
	 Content styles 
===========================*/    
    .home-btn {font-size:20px; height:4.6vh; padding:7px 25px;} 
    
    .home-about-section {height:245px;}
    
}

@media only screen and (max-width : 1075px) {    
/*========================= 
	 Content styles 
===========================*/    
    .home-btn {height:auto;}

}

@media only screen and (max-width : 991px) {
/*========================= 
	 Nav styles 
===========================*/	
    nav ul li a {padding:5px 0px; text-transform:none;}

/*========================= 
	 Footer styles 
===========================*/    
    .footer-title {padding-top:15px;}
    .footer-logo {max-width:350px; display:block; margin:auto auto 7px auto;}
}

@media only screen and (max-width : 767px) {
/*========================= 
	 Header styles 
===========================*/
    .header-contact-info {text-align: center;}
    
    .header-logo {max-width:450px; width:100%; display:block; margin:15px auto 15px auto;}
    
/*========================= 
	 Content styles 
===========================*/
    .page-wrap {padding:0px 15px;}
    
/*========================= 
	 Content styles 
===========================*/
    .home-about-section {height:320px;}
    .home-title {line-height:34px;} 
    
    .home-contact-section {padding:15px;}
    
}
 
@media only screen and (max-width : 480px) {
 /*========================= 
	 Content styles 
===========================*/
    .home-about-section {height:430px;}
    .home-title {padding:25px 0px 15px 0px;}
    
}

@media only screen and (max-width : 320px) {


}

