/* CSS Document */

.headerArea {
	height: 50px;
	text-align: center;
	background-image: url(../images/Bg_TireTread.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-color: #000;
	vertical-align: middle;
	background-size: cover;
}

.headerArea img { 
	height: 35px; 
	width: auto; 
	vertical-align: middle;
	padding: 12px 0px;
}

.button {
	display: inline-block;
	padding: 10px 20px;
	color: #000;
	margin: 5px 15px;
	border-radius: 10px 0 0 0;
	text-decoration: none;
	font-size: 2em;
	font-weight: 400;
	font-family: proximaBold;
	transition: background-color 0.5s ease;
	line-height: .9em;
	text-transform: uppercase;
}

.button.fw {
	display: block;
}

.button span { 
	font-size: .5em; 
	display: inline-block; 
}

.red {
	background: #E60002;
	color: #FFF;
}

.red:hover {
	background: #fee600;
	color: #000;
}

.yellow {
	background: #fee600;
	color: #000;
}

.yellow:hover {
	background: #E60002;
	color: #FFF;
}

@font-face {
  font-family: proximaRegular;
  src: url(ProximaNova-Regular.otf);
}

@font-face {
  font-family: proximaBold;
  src: url(ProximaNova-Bold.otf);
}

@font-face {
  font-family: proximaExtrabold;
  src: url(ProximaNova-Extrabold.otf);
}

body {
	font-family: proximaRegular;
	text-align: center;
	padding: 0;
	margin: 0;
}

a { 
	color: #000; 
}

h1 { 
	font-family: proximaExtrabold;
	text-transform: uppercase;
	font-weight: normal;
}

h2, h3 { 
	font-weight: normal; 
}

.quadrants {
	width: 100%;
	margin: 0 auto;
	margin-bottom: 25px;
	justify-content: space-evenly;
	padding: 50px 0px;
}

.quadrant {
	width: auto;
	text-align: center;
	padding: 1%;
	box-shadow: 0px 0px 5px rgba(0,0,0,.2);
	margin: 0 auto;
	margin-bottom: 20px;
	padding: 25px 25px;
	text-align: center;
}

.quadrant table { width: 100%;}

.quadrant ul {
	list-style-type: none;
	padding: 5px 0px;
	margin: 0;
}

.splash {
	background-image: url(../images/Oil-B.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.splashBox {
	display: flex;
	align-items: center;
	min-height: 450px;
	color: #FFF;
	text-align: left;
	max-width: 1150px;
	margin: 0 auto;
	padding: 25px 25px;
}

.splashBox h2 {
	color: #fee600;
	font-family: proximaExtrabold;
	font-size: 3em;
	font-weight: normal;
	text-transform: uppercase;
	margin-top: 0;
	line-height: 1em;
}

.splashBox div { padding: 20px;}
.splashBox p {
	font-size: 1.5em;
}

.splashBox .button { margin-left: 0; }

.footer {
	background: #000;
	padding: 5px;
	color: #fff;
	font-size: 0.75em;
	text-align: center;
}

.footer a { color:#fff; text-decoration: none; }
.footer a:hover { text-decoration: underline; }
.container {
	width: auto;
	padding: 0px 25px;
}

.s1 { padding: 25px 0px;}

@media (min-width: 768px) {
	
	.headerArea {
		height: 100px;
		background-size: auto;
	}

.headerArea img { 
	height: 70px; 
}
	
	
	.quadrants {
		max-width: 1200px;
		display: flex;
		flex-wrap: wrap;
	}
	.quadrant {
		width: 30%;
		text-align: left;	
		margin-bottom: none;
		padding: 2% 1%;
	}
	
	.quadrant ul {
		list-style: none;
		padding: 10px 0px;
		margin-left: 25px;
	}
	
	.quadrant li { padding-bottom: 10px;}
	
	ul li::before {
	  content: "\2022";  /* Add content: \2022 is the CSS Code/unicode for a bullet */
	  color: #E60002; /* Change the color */
	  font-weight: bold; /* If you want it to be bold */
	  display: inline-block; /* Needed to add space between the bullet and the text */
	  width: 1em; /* Also needed for space (tweak if needed) */
	  margin-left: -1em; /* Also needed for space (tweak if needed) */
	}
	
	.splashBox div {
		width: 50%;
		padding: 0;
	}
	
	.s1 { padding: 50px 0px;}
	
	.button.fw {
		display: inline-block;
	}
}

