/* Master layout */
/************************************************************
Global styles */
/* Partial CSS Reset */
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
html {
	overflow-x: hidden;
}
html, body {
	height: 100%;
	width: 100%;
	-webkit-text-size-adjust: 100%;
}
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, select, input, option {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
}
body {
	font-family: 'proxima-nova';
}
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section, summary {
	display: block;
}
audio, canvas, video {
	display: inline-block;
}
audio:not([controls]) {
	display: none;
	height: 0;
}
pre {
	white-space: pre;
	white-space: pre-wrap;
	word-wrap: break-word;
}

:focus {
	outline: none;
}

table {
	border: 0 none;
	border-collapse: collapse;
	border-spacing: 0;
}
caption, th, td {
	text-align: left;
	font-weight: normal;
}
td {
	vertical-align: top;
}
/* End Reset */
/* Links */
a{
   color: inherit; 
   font-family: 'proxima-nova';
}
a,
input[type="submit"] {
	display: inline-block;
	outline: none;
	-webkit-transition: all 0.3s ease 0s; 
		transition: all 0.3s ease 0s;
}
a:link,
a:visited,
a:hover,
a:active {
	text-decoration: none;
	outline: none;
}
a[href^="tel:"] {
	color: inherit;
}
a img {
	border: none;
	-webkit-transition: all 0.5s ease 0s;
		transition: all 0.5s ease 0s;
}
img {
	max-width: 100%;
}

/* Form elements */
input[type="text"],
input[type="email"],
input[type="search"],
input[type="password"], 
input[type="tel"], 
textarea, 
select {
	font-family: 'proxima-nova' !important;
	font-size: 18px;
	display: block;
	width: 100%;
	border-radius: 0;
	padding: 15px;
	text-transform: inherit;
	font-family: inherit;
	color: #000;
	background: #fff;
	box-shadow: none;
	border: solid 2px #000000 !important;
}
label {
	font-family: 'proxima-nova' !important;
}
label i{
	margin-left: 2px;
	vertical-align: text-bottom !important;
}
input[type]:-webkit-autofill,
input[type]:-webkit-autofill:hover,
input[type]:-webkit-autofill:focus,
input[type]:-webkit-autofill:active { /* Fix input background with autocomplete */
	transition: background-color 5000s ease-in-out 0s;
}
input[type]:-webkit-autofill,
input[type]:-webkit-autofill:hover,
input[type]:-webkit-autofill:focus,
input[type]:-webkit-autofill:active {
	-webkit-text-fill-color: #000;
}
input[type="search"] {
	-webkit-appearance: textfield;
}
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button {
	-webkit-appearance: none;
}
input[type="submit"] {
	cursor: pointer;
}
input[type="submit"]::-moz-focus-inner { /* Fix extra button padding in Firefox */
	padding: 0;
	border: none;
	line-height: 1;
}
textarea {
	resize: none;
	overflow: auto;
}
/* Default Placeholder styles */
::-webkit-input-placeholder{
/* WebKit browsers */
	color: #000;
}
:-moz-placeholder{
/* Mozilla Firefox 4 to 18 */
	color: #000;
	opacity: 1;
}
::-moz-placeholder{
/* Mozilla Firefox 19+ */
	color: #000;
	opacity: 1;
}
:-ms-input-placeholder{
/* Internet Explorer 10+ */
	color: #000;
	opacity: 1;
}
/* Headings */
h1,h2,h3,h4,h5,h6 {
	font-weight: normal;
}
h1:only-child,
h2:only-child,
h3:only-child,
h4:only-child,
h5:only-child,
h6:only-child {
	margin-bottom: 0;
}
h1, h2, 
.large-text, 
.medium-title {
	font-family: 'proxima-nova';
	font-weight: 900;
	text-transform: uppercase;
}
h1 {
	font-size: 35px;
	line-height: 1.5;
	margin-bottom: 40px;
}
h2,
.medium-title {
	font-size: 35px;
	line-height: 1.1;
	margin-bottom: 35px;
}
h3 {
	font-size: 30px;
	line-height: 1.23;
	margin-bottom: 15px;
	font-weight: 600;
}
h4 {
	
}
h5 {
   font-weight: bold;
   text-transform: uppercase;
   margin-bottom: 15px;
}
h6 {
   
}
.large-text {
	font-size: 45px;
	line-height: 45px;
}
h1, h2, h3, h4, h5, h6 {
	font-family: "proxima-nova" !important;
	color: #D4261C;
}
p {
	font-family: "proxima-nova" !important;
	font-size: 14px;
	line-height: 1.1;
	margin-bottom: 25px;
	color: #2B2B2B;
}
li {
	font-family: "proxima-nova" !important;
}
#inner p {
	line-height: 30px;
}
#inner .main-content ul,
#inner .main-content ol {
	padding-left: 18px;
	font-family: "proxima-nova" !important;
	font-size: 14px;
	line-height: 1.1;
	margin-bottom: 25px;
	color: #2B2B2B;
}
/* Block-level */
/************************************************************
Generic Site Styles */

/* Flex Styles */
.flexbox {
	display: flex; 
	flex-wrap: wrap;
	align-items: stretch; 
	justify-content: flex-start;
}
.flex-center {
	justify-content: center !important;
}
.flex-space {
	justify-content: space-between !important;
}
.flex-end {
	justify-content: flex-end !important;
}
.center-flex {
	align-items: center !important;
}
.main {
	height: 100%;
}
main {
	background-color: #F8F8F8;
}
/* *************************** */
.gridbox {
	display: grid;
}
.table {
	display: table;
	width: 100%;
	height: 100%;
	table-layout: fixed;
	float: none !important;
}
.container {
	max-width: 1780px;
	margin: 0 auto;
	padding: 0 70px;
}
.container.sm {
	max-width: 1450px;
	padding: 0px 120px;
}
main .table.page,
.table.auto-height {
	height: auto;
}
.table.auto-width {
	width: auto;
}
.table.auto-all {
	height: auto;
	width: auto;
}
.row {
	display: table-row;
}
.cell {
	display: table-cell;
	vertical-align: top;
	height: 100%;
	float: none !important;
}
.middle {
	vertical-align: middle;
}
.bottom {
	vertical-align: bottom;
}
.table-header-group {
	display: table-header-group;
}
.table-footer-group {
	display: table-footer-group;
}
/* Alerts */
.alert-container {
	width: 100%;
	height: 40px;
	background-color: #93C6DB;
}
/* Header */
.header-container,
#main-header{
	width: 100%;
}
.nav-container {
	width: calc(100% - 290px);
}
.header-container {
	flex-wrap: nowrap;
	height: 70px;
	z-index: 300;
	position: relative;
	background-color: #FFF;
}
.header-search {
	width: 100%;
	height: 50px;
	background-color: #706F70;
}
header {
	height: 120px !important;
	width: 100%;
}
#main-header {
	height: 120px;
}
.header-logo {
	width: 290px;
	align-items: center !important;
} 
.menu-wrapper > .flexbox {
	justify-content: flex-end !important;
	height: 100%;
	flex-wrap: nowrap;
}
.menu-wrapper {
	height: 100%;
}
.logo img {
	height: 75px;
	padding-top: 10px;
}     
.nav-contact {
	margin-left: 60px;
	align-items: center;
	flex-wrap: nowrap !important;
}
.nav-contact .btn {
	margin-left: 20px;
}
.nav-contact .flexbox {
	align-items: center;
} 
.nav-contact > .flexbox > p:first-child {
	margin-right: 15px;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background-color: #EFEFEF;
} 
.nav-contact > .flexbox > p:first-child i {
	font-size: 14px;
	color: #D4261C;
}
.nav-contact > .flexbox > div p {
	font-size: 14px;
}
.nav-contact > .flexbox > div a {
	font-weight: bold;
	font-size: 16px;
}
.nav-contact p {
	margin-bottom: 0px;
}
.search-form-top > .container {
	width: 100%;
	height: 50px;
}
.search-form-top {
	z-index: 200;
	position: relative;
	background-color: #706F70;
}
.header-search {
	position: relative;
}
.search-form-top input {
	border: none !important;
	background-color: transparent;
	color: #FFF !important;
	padding: 0px;
	font-size: 14px;
	width: calc(100% - 250px);
	font-weight: 600 !important;
}
.search-form-top input::placeholder {
	color: #FFF !important;
	font-weight: 600 !important;
}
.search-form-top > .container > div {
	width: 250px;
	align-items: center;
}
.search-form-top > .container > div a:first-child {
	background-color: #E0E0E0;
	border-radius: 4px;
	margin-right: 10px;
	padding: 10px 14px;
}
.search-form-bottom {
	height: 50px;
	background-color: #706F70;
	border-top: 1px solid #FFF;
	width: 100%;
	position: absolute;
	bottom: 0px;
	-webkit-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
	z-index: 100;
}
.open-bottom-search {
	bottom: -60px;
	height: 60px;
}
.search-form-bottom > .container > div label,
.search-form-bottom > .container > div select {
	width: 100%;
	padding: 0px;
	background-color: transparent;
	border: none !important;	
} 
.search-form-bottom > .container {
	height: 100%;
}
.search-form-bottom > .container > div {
	align-items: center;
	height: 100%;
	padding: 0px 25px;
	border-left: 1px solid #FFF;
}
.search-form-bottom > .container > div:last-child {
	border-right: 1px solid #FFF;
}
.search-form-bottom > .container > div:first-child {
	border-left: none;
}
.search-form-bottom > .container > div label {
	font-size: 14px;
	padding-left: 4px;
	position: relative;
	top: 5px;
	color: #FFF;
	font-weight: 600 !important;
}
.search-form-bottom > .container > div select {
	font-size: 16px;
	color: #FFF;
	font-weight: 700 !important;
	padding-right: 100px;
	position: relative;
	bottom: 5px;
}
/* Navigation */
#nav-btn,
#nav-close-btn {
	display: none;
}
.main-nav, .nav-menu,
.main-nav nav {
	height: 100%;
}
.nav-menu {
	display: flex;
	list-style-type: none;
	justify-content: flex-end;
	align-items: center;
}
.nav-menu > li {
	height: 100%;
}
.nav-menu > li:not(:last-child) {
	margin-right: 40px;
}
.nav-menu > li.has-child {
	position: relative;
}
.nav-menu a {
	font-size: 18px !important;
	line-height: 1.2;
	color: #000000;
}
.nav-menu > li > a {
	white-space: nowrap;
	position: relative;
	height: 100%;
	padding-top: 20px;
	padding-bottom: 20px;
}
.nav-menu > li > a:after {
	content: '';
	display: block;
	position: absolute;
	width: 100%;
	bottom: 0;
	background: #436843;
	height: 8px;
	opacity: 0;
	visibility: hidden;
}
.nav-menu > li:hover > a,
.nav-menu > li.active > a,
.sub-menu li a:hover {
	color: #000000;
}
.sub-menu {
	min-width: 350px;
	text-align: left;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	top: 60px;
	z-index: 1000;
	opacity: 0;
	visibility: hidden;
	background: #fff;
	border: 2px solid	#93C6DB;
	list-style-type: none;
}
li:hover .sub-menu {
	opacity: 1;
	visibility: visible;
}
.sub-menu li {
	transition: all 0.3s ease 0s;
}
.sub-menu li:hover {
	background-color: #dfe9f5;
}
.sub-menu li:not(:last-child) a {
	border-bottom: 2px solid rgba(3, 3, 3, .09);
}
.sub-menu li a{
	display: block;
	padding: 19px 30px 19px 40px;
	position: relative;
	color: #255270 !important;
}
.main-nav-wrapper {
	width: 100%;
}
.open .main-nav-wrapper {
	z-index: 999;
}
.fixed header {
	position: fixed;
	z-index: 950;
	background-color: #FFF;
	width: 100%;
	box-shadow: 0 1px 3px -2px #000;
	top: 0px;
}
.fixed header + main{
  padding-top: 150px;
}
/* Global */   
.mobile-nav{
	display: none;
}        
#main-content {
	height: 100%;
	width: 100%;
}
.btn {
	font-size: 16px;
	font-weight: bold;
	padding: 8px 30px;
	border-radius: 4px;
	text-transform: uppercase;
	height: fit-content;
}
.btn i {
	margin-right: 5px;
	font-size: 14px;
}
.btnBorder {
	color: #FFF;
	border: 2px solid #FFF;
}
.btnRed {
	color: #FFF;
	background-color: #D4261C;
	border: 2px solid #D4261C;
}
.btnBorder:hover {
	color: #FFF;
	background-color: #D4261C;
	border: 2px solid #D4261C;
}
.btnRed:hover {
	background-color: #706F70;
	border: 2px solid #706F70;
}
.btnGrey {
	background-color: #E0E0E0;
	color: #000000;
	border: 2px solid #E0E0E0;
}
/* Footer */ 
footer > .contatiner {
	width: 100%;
}
.footer-top {
	width: 100%;
	align-items: center;
	padding: 15px 0px;
	border-bottom: 1px solid #000000;
}
.footer-bottom {
	padding: 15px 0px;
}
.footer-logo {
	width: 360px;
	margin-right: 50px;
}
.footer-logo img {
	width: 100%;
}
.footer-top > .flexbox {
	align-items: center;
}
.footer-top > div p,
.footer-bottom p {
	margin-bottom: 0px;
}
.footer-top i {
	color: #D4261C;
	font-size: 16px;
	margin-right: 10px;
}
.site-address {
	font-size: 14px; 
	line-height: 14px;
}
.footer-top > div:not(:first-child) {
	margin-right: 50px;
}
.social-con a i {
	font-size: 33px;
	color: #2B2B2B;
}
.footer-bottom ul {
	list-style-type: none;
	align-items: center;
}
.footer-bottom ul li a {
	font-size: 14px;
}
.footer-bottom ul li {
	margin-right: 15px;
}
.copyright {
	font-size: 14px;
	margin-right: 50px;
}
.footer-bottom > div:last-child p {
	font-size: 14px;
}
.footer-bottom > div:last-child p a {
	font-weight: bold;
}
/* BREADCRUMBS */
.breadcrumbs {
	list-style-type: none;
	display: flex;
	justify-content: flex-start;
	margin: 25px 0px;
}
.breadcrumbs li {
	font-size: 14px;
	margin-right: 10px;
	position: relative;
}
.breadcrumbs li i {
	margin-right: 10px;
	color: #706F70;
	font-size: 12px;
	position: relative;
	top: -1px;
}
.breadcrumbs li:not(:first-child) {
	margin-left: 10px;
}
.breadcrumbs li:not(:last-child) {
	color: #706F70;
}
.breadcrumbs li:not(:last-child):after {
	content: '/';
	position: absolute;
	right: -12px;
	top: 50%;
	transform: translateY(-50%);
	color: #706F70;
	font-size: 14px;
}

.hide_search_bar .breadcrumbs,
.hide_search_bar .header-search {
    display:none;
}
.hide_search_bar input[type="text"] {
    display: inline;
}
.center {
    text-align: center;
}
#oil-pan-label {
    color: #ffffff;
}