﻿/*===================== 
	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 {
    -ms-text-size-adjust: 100%; 
    -webkit-text-size-adjust: 100%; 
	}

body {
	font-family: 'Montserrat', sans-serif;
    margin: 0;
	padding:0;
	}

svg:not(:root) {overflow: hidden;/*reset*/}
	
.clear { clear: both;}

img { border: 0;} 
	
/*===================== 
	typography 
=======================*/

h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	}
	h1 {
        font-family: "Teko", sans-serif;
        font-size: 30px;
        font-weight: 700;
}
	h2 {
        font-family: "Teko", sans-serif;
        font-size: 28px;
        font-weight: 700;
}
	h3 {
        font-family: "Teko", sans-serif;
        font-size: 24px;
        font-weight: 700;
}
	h4 {
        font-family: "Teko", sans-serif;
        font-size: 20px;
        font-weight: 700;
}
	h5 {
        font-family: "Teko", sans-serif;
        font-size: 18px;
        font-weight: 700;
}
	h6 {}

p {
    font-size: 18px;
	margin: 0;
	}

.bold {
    font-weight: bold;
	}

/*===================== 
	link styles 
=======================*/

a:focus {outline: thin dotted;/*reset*/}
	
a,
a:link, 
a:visited, 
a:active {
	outline: 0;/*reset*/
    color: #aaa; 
    text-decoration:none;
	}
	a:hover  {
		outline: 0;/*reset*/
		text-decoration: none;
		color: #ccc;
		}  

/*===================== 
	header styles 
=======================*/

.header-wrap {
	width: 100%;
	margin: 0;
	}
.top-header {
    width: 100%;
	margin: 0;
    background: #212121;
}
.top-header ul {
    width: 83%;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    padding: 5px 0;
    box-sizing: border-box;
}
.top-header ul li {
    padding:0;
    margin:0;
    list-style: none;
    display: block;
}
.top-header ul li a {
    font-size: 18px;
    color: #fff;
    padding: 5px 20px;
    border-right: 1px solid #fff;
    transition: .2s ease-in;
    box-sizing: border-box;
    display: block;
}
.top-header ul li a:hover {
    color: #bc1d2a
}
.top-header ul li a.search-show {
    color: #bc1d2a;
    border-right: 0px;
    padding: 5px 0px 5px 20px;
}
.top-header ul li a.search-show:hover {
    color: #fff
}

.search-slide-down {
    width: 100%;
    background: #e5e5e5;
    box-shadow: inset 0px 11px 8px -10px #CCC;
    display: none;
    padding:50px 0;
    box-sizing: border-box;
}
.search-slide-down form {
    display: flex;
    padding: 0 5%;
    width: 100%;
    box-sizing: border-box;
}
.search-slide-down form #slide-search-input {
    width: 70% !important;
    padding: 0 0 0 25px !important;
    margin: 0 !important;
    height: 50px;
    line-height: 50px !important;
    font-weight: 300;
    font-size: 15px !important;
    color: #2e2e2e !important;
    text-transform: uppercase;
    background: #fcfcfc;
    border: none;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    outline:none;
}
.search-slide-down form #slide-search-input:active {
    border: none;
    outline:none;
}
.search-slide-down form #mobile-form-submit {
    height: 50px !important;
    background: #bc1d2a;
    border: 0 !important;
    padding: 10px 0;
    margin-left: -7px !important;
    width: 30% !important;
    color: #fff !important;
    text-transform: uppercase !important;
    font-size: 15px !important;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: .2s ease-in;
}
.search-slide-down form #mobile-form-submit:hover {
    background: #000;
}
.header {
    width: 100%;
    margin: 0;
    background: #000; 
}
.header-cont-1 {
    width: 85%;
    margin: 0 auto;
    padding: 5px 0 1px 0;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.head-logo img {
    width:100%;
    max-width: 220px;
    height: auto;
    display: block;
    margin:0;
}

svg.svg-inline--fa.fa-comment-alt.fa-w-16 {margin-right:4px;}
/*===================== 
	nav styles 
=======================*/

#menu-button{display: none;}
nav.mobile { display:none;}

nav.primary {
	padding:0;
	display:block;
	margin:20px 0 0 0;
	position:relative;
	}
	nav.primary ul {
		margin:0 auto; 
		padding:0;
        display: flex;
		}
		nav.primary ul li {
			display:block;
			margin:0;
            position: relative;
			list-style-type:none; 
			}
			nav.primary ul li a {
				padding: 5px 15px 8px 15px;
                display: block;
                text-decoration: none;
                color: #fff;
                font-size: 18px;
                font-weight: 700;
                letter-spacing: 1.5px;
                font-family: 'Teko', sans-serif !important;
                text-transform: uppercase;
				-webkit-transition: .4s ease-in;
				-moz-transition: .2s ease-in;
				-o-transition: .2s ease-in;
				transition: .2s ease-in;
				}	
			nav.primary ul li a:hover {
				color:#bc1d2a;
				}
			/* Appearance of the sub-level links */
			nav.primary ul li li a { 
                background:#bc1d2a;
                color: #fff;
                padding:8px 10px 8px 10px;
                font-size:12px;
                text-align: left;
                max-width: 200px;
                width:100%;
                white-space: nowrap;
                border-bottom: 1px solid #fff;
                font-family: 'Montserrat', sans-serif !important;
                box-sizing: border-box;
			}
			/* Appearance of the sub-level links on hover */
			nav.primary ul li li a:hover { 
                background:#000;
                color:#fff;
			}
/* This controls the Primary nav dropdowns for sublinks. Should not have to edit this too muuch */
nav.primary ul ul {
    display: none;
    position: absolute; 
    width: auto;
}
nav.primary ul ul ul {
    position: absolute; 
    left: 100%;
    top:0; 
}
nav.primary ul li:hover > ul {  
    display: block;
    line-height:18px; 
    z-index: 100;
}
nav.primary ul ul li {
    float: none; 
    position: relative;
}
nav.primary ul ul ul li a{background: #000 !important; color: #fff !important}
nav.primary ul ul ul li a:hover{background: #fff !important; color: #000 !important}

/*===================== 
	content styles 
=======================*/


/*===================== 
	slideshow styles 
=======================*/



/*===================== 
	banner styles 
=======================*/


/*===================== 
	layout styles 
=======================*/

.wrap {
	width: 100%;
	margin: 0;
	}
	

.container-1 {
	max-width: 1100px;
	margin: 0 auto;
	padding:10px;
	box-sizing: border-box;
	}
.container-inv {
	max-width: 1100px;
	margin: 0 auto;
	padding:10px;
	box-sizing: border-box;
	}
.flex-cont-1 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
	
.col-1-6 { width: 16%; box-sizing:border-box;}
.col-1-5 { width: 20%; box-sizing:border-box;}
.col-1-4 { width: 24%; box-sizing:border-box;}
.col-1-3 { width: 33%; box-sizing:border-box;}
.col-1-2 { width: 49%; box-sizing:border-box;}
.col-2-3 { width: 65%; box-sizing:border-box;}
.col-3-4 { width: 75%; box-sizing:border-box;}

/*===================== 
	footer styles 
=======================*/

.foot-wrap {
    margin: 0;
    width: 100%;
    background: #f5f5f5;
}
.foot-cont-1 {
    width: 75%;
    margin: 0 auto;
    display: flex;
    padding:50px 0;
}
.foot-cols{; width: 33%; border-right: 1px solid #ccc; padding: 15px 50px; font-family: 'Teko', sans-serif; text-transform: uppercase; font-size: 18px;}
.foot-cols a{color: #5c5c5c}
.foot-cols .red{color: #bc1d2a}
.foot-cols:last-child{border-right: none;}
.foot-cols h2{color: #bc1d2a;}
.foot-cols .socials{margin-bottom: 15px}
.foot-cols .socials a{display: inline-block; color: #5c5c5c; padding: 10px 0; border: 1px solid #ccc; width: 50px; text-align: center; font-size: 18px}
.foot-cols .socials a:hover{background: #5c5c5c; color: #fff;}

.foot-cols.second ul{width: 150px; padding-inline-start: 0 !important;margin:0;}
.foot-cols.second ul li{list-style: none;padding:0;margin:0;}
.foot-cols.second ul li .fa{color: #5c5c5c; font-size: 14px;}
.foot-cols.second a{color: #5c5c5c;display: flex;justify-content: space-between;align-items: center;width: 100%;}

.foot-cols.third{text-align: center; margin: 0 auto}
.foot-cols.third img{display: block; text-align: center; margin: 0 auto; padding-bottom: 5px}
.foot-cols.third p{ margin-top: 10px}
.foot-cols.third a{color: #5c5c5c}

#red-btn{background: #bc1d2a; color: #fff; font-family: 'Teko', sans-serif; text-transform: uppercase; padding: 10px 20px; text-align: center; text-decoration: none; font-size: 18px; letter-spacing: .5px; font-weight: 400; box-shadow: inset 0 0 0 0 #000;
-webkit-transition: ease-out 0.6s;
-moz-transition: ease-out 0.6s;
transition: ease-out 0.6s;
outline: none;
    border:0px;
}
#red-btn:hover{box-shadow: inset 400px 0 0 0 #000; background: #000;}

/*--- Text-us-button -------------------------*/

.text-us-btn {
    position: fixed;
    bottom:40px;
    right:20px;
    z-index: 5000;
}
.inv-pg-1 .text-us-btn {
    bottom:40px;
    right:100px;
}
.text-us-btn ul {
    padding:0;
    margin:0;
}
.text-us-btn .mobile-only {
    display: none;
}
.text-us-btn ul li {
    padding:0;
    margin:0;
    list-style: none;
}
.text-us-btn ul li a {
    font-size: 18px;
    color:#fff!important;
    padding:15px 20px;
    box-sizing: border-box;
    display: block;
    background:#bc1d2a;
    border-radius: 50px;
    box-shadow: 0 0 10px 5px rgba(0,0,0,0.4);
    transition: .2s ease-in;
    font-family: "Teko", sans-serif;
}
.text-us-btn ul li a i {
    margin-right:4px;
}
.text-us-btn ul li a:hover {
    background:#000;
    box-shadow: 0 0 10px 5px rgba(0,0,0,0.2);
}
.text-us-btn ul ul {
    display: none;
    position: absolute;
    bottom: 120%;
    right: 0;
    background: #fff;
    padding:15px;
    box-sizing: border-box;
    border-radius: 0px;
    box-shadow: 0 0 10px 5px rgba(0,0,0,0.4);
	width:calc(100vw - 40px);
}
.text-us-btn ul ul li {
    font-size: 20px;
    font-weight: 400; 
    text-align: center;
}
.text-us-btn ul ul li a {
    font-size: 17px;
    font-weight: 700; 
    padding:10px 0;
    background:none;
    color:#bc1d2a!important;
    border-radius: 0px;
    box-shadow: 0 0 0px 0px rgba(0,0,0,0.0);
    font-family: "Teko", sans-serif;
    text-align: center;
}
.text-us-btn ul ul li a span {
    font-size: 17px;
    color:#000!important;
    font-weight: 500; 
}

.text-us-btn ul ul li a:hover {
    color:#000!important;
    background:#fff;
    box-shadow: 0 0 0px 0px rgba(0,0,0,0.0);
}
.text-us-btn ul ul li a:hover span {
    color:#4E4E4E!important;
}
.text-us-btn ul ul ul {
    display: none;
    position: static;
    background:#E8E8E8;
    padding:5px;
    box-sizing: border-box;
    border-radius: 0px;
	box-shadow: 0 0 0px 0px rgba(0,0,0,0.0);
	width:100%;
}
.text-us-btn ul ul ul li a:hover {
    color:#000!important;
}


/*========================== 
	  Responsive styles 
============================*/


@media screen and (max-width: 1300px) {
  nav.primary ul li a {
    font-size: 14px;
    padding: 5px 10px 8px 10px;
  }
  nav.primary ul ul.last-menu {
    right:0;
  }
}
@media only screen and (max-width: 1110px) {
  .header-cont-1 {
    width: 95%;
  }  
}
/*
@media only screen and (max-width: 1000px) {
	.text-us-btn ul li a {margin-bottom:50px;} 
}
*/

@media screen and (max-width: 1000px)  {
	.text-us-btn {top: 85%;}
}

@media screen and (max-width: 800px)  {
	.text-us-btn .mobile-only {display:block;}	
	.text-us-btn .desktop-only {display:none;}
}
@media screen and (max-width: 985px)  {

	/*==============================
		Mobile Nav Styles			
	================================*/	
    
    nav.primary{
	display:none;
}
    
    	.mobile-social{display: block; text-align: center}
	.mobile-social ul li{display: inline-block; border: none !important}
    
    	.nav-footer{color: #999; text-align: center; font-size: 13px; padding-top: 10px;}
    
	#menu-button{ /* initially will need to be hidden */
	display: block;
	font-size: 28px;
	position: relative;
	z-index: 999;/* needs to be lower than nav.mobile, adjust as needed */
	padding:15px 0;
	width:96%;
	float:none;
	text-align: right;
}
#menu-button a{
	color:#fff;
	text-decoration: none;
	font-size: 22px;
}
#menu-button a:hover{
	color:#bc1d2a;
}
	#menu-button h3{display: inline-block; vertical-align: middle; margin-left: 10px; margin-top: -8px;}	
	
nav.mobile {
	display:block;
	position: fixed;
	top: 0;
	left: -250px;
	width: 250px;
	height: 100%;
	background: #333;
	z-index: 999999999999999999; /* needs to be higher than #menu-button, adjust as needed */
	overflow:auto;
	font-family: 'Montserrat';
}
nav.mobile h3 { /* Menu header styles */
	position: relative;
	padding: 12px 10px;
	color: #fff;
	font-size: 22px;
	border-bottom: 4px solid #222;	letter-spacing: 1px;
	font-weight: 300;
	text-transform: uppercase;
	font-family: 'Montserrat';
	text-align: left;
}
nav.mobile .menu-toggle { /* Menu close button */
	position: relative;
	top: 0;
	right: 0px;
	display: inline-block;
	padding: 6px 9px 5px;
	font-family: Arial, sans-serif;
	font-weight: bold;
	line-height: 1;
	background: #000;
	color: #999;
	text-decoration: none;
	vertical-align: top;
}
nav.mobile .menu-toggle:hover { /* Menu close button on hoveer */
	color: #bc1d2a;
}
nav.mobile ul {
	list-style: none;
	font-weight: 300;
	border-top: 1px solid #151515;
	border-bottom: 1px solid #454545;
	margin:0;
	padding:0;
}
nav.mobile ul li {
	border-top: 1px solid #454545;
	border-bottom: 1px solid #151515;
}
nav.mobile ul li a {
	position: relative;
	display: block;
	padding: 8px 10px;
	color: #999!important;
	text-decoration: none;
	font-size:15px;
	letter-spacing: 1px;
	font-weight: 300;
	text-align: left;
}
nav.mobile ul li a:hover {
	background: #fff;
	color: #000;
}
nav.mobile ul li li a { /* appearance of the sub-level links */
	background: #444;
	position: relative;
	display: block;
	padding: 10px 10px 10px 15px;
	color: #ccc;
	text-decoration: none;
}
nav.mobile ul li li li a { /* appearance of third level sub-level links if needed */
	background: #666;
	position: relative;
	display: block;
	padding: 10px 10px 10px 25px;
	color: #000;
	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(/templates/mitchellequip.com/siteart/arrow.png) 10px 12px no-repeat;
	background-size:55%;
	position:relative;
	display:block;
	float:right;
	margin:-40px 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%;
}
    

}
	
@media screen and (max-width: 768px)  {
    .foot-cont-1 {
        width: 90%;
        padding: 35px 0;
        flex-wrap: wrap;
    }
    .foot-cols{justify-content: flex-end; width: 100%; border-right: 0;  border-bottom: 1px solid #ccc; padding: 15px 0; margin: 0 auto;}
    .foot-cols.third{text-align: left; margin: 0 auto; border-bottom: 0}
    .foot-cols.third img{display: inline-block; text-align: left !important; margin: 0;}

}
