*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}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,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video,input,select{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline;color:unset}html{scroll-behavior:smooth}a{text-decoration:none;cursor:pointer}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}table{border-collapse:collapse;border-spacing:0}button{cursor:pointer;border:none;border-radius:0;-webkit-appearance:none;-moz-appearance:none;appearance:none}img{max-width:100%;}
/*=== END RESET ===*/

/*=== CLEARFIX ===*/
.clear{clear:both}.cf:before,.cf:after{content:" ";display:table}.cf:after{clear:both}.cf{zoom:1}

/*=== GLOBAL ===*/
.flex-container{display:flex}.flex-vertical{flex-direction:column}.flex-horizontal{flex-direction:row}.flex-width{flex-grow:1;flex-shrink:1;flex-basis:100%}.flex-height{height:100%}.flex-wrap{flex-wrap:wrap}.set-width{flex-grow:0;flex-shrink:0;flex-basis:auto}.justify-center{justify-content:center}.justify-right{justify-content:flex-end}.justify-left{justify-content:flex-start}.justify-between{justify-content:space-between}.justify-around{justify-content:space-around}.justify-evenly{justify-content:space-evenly}.align-center{align-items:center}.align-top{align-items:flex-start}.align-bottom{align-items:flex-end}.align-stretch{align-items:stretch}.align-all-center{align-items:center;justify-content:center}.align-self-center{align-self:center}.align-self-right{align-self:flex-end}.text-left{text-align:left}.text-center{text-align:center}.text-right{text-align:right}.mobile-only{display: none}.max-width{margin:0 var(--sm-padding)}.map{min-height:350px;line-height:0;}

/*=== SELECT STYLES ===*/
::selection, ::-moz-selection {
	background: var(--dark-red);
	color: var(--white);
	text-shadow: none;
}

/*=== FONTS AND HEADERS ===*/
body {
	font-family: var(--roboto);
	font-optical-sizing: auto!important;
	font-weight: 400!important;
	font-style: normal!important;
	height: auto !important;
}
.page-shadow {
	max-width: 1800px!important;
    width: 100%!important;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 20px 0px!important;
    background-color: rgb(255, 255, 255)!important;
    margin: 0 auto!important;
	overflow-x: hidden;
}
strong, b {
	font-weight: 900;
}
:root {
	/*=== Fonts ===*/
	--teko: "Teko", sans-serif;
	--roboto: "Roboto", sans-serif;

	/*=== Colors ===*/
	--white: #ffffff;
	--black: #000000;
	--light-grey: #f3f3f3;
	--yellow: #ffe000;
	--off-yellow: #fffbe1;

	/*=== Spacing ===*/
	--lg-padding: clamp(50px, 5vw, 75px);
	--sm-padding: clamp(25px, 2.5%, 2.5%);
}
.xl-heading, .lg-heading, .md-heading, .sm-heading, .xs-heading {
	font-family: var(--teko);
	font-optical-sizing: auto;
	font-weight: 700;
	font-style: normal;
	text-transform: uppercase;
	letter-spacing: 2px;
}
.xl-heading {font-size: clamp(56px, 5vw, 64px);line-height: clamp(52px, 5vw, 60px);}
.lg-heading {font-size: clamp(34px, 5vw, 42px);line-height: clamp(30px, 5vw, 38px);}
.md-heading {font-size: clamp(27px, 5vw, 35px);line-height: clamp(23px, 5vw, 31px);}
.sm-heading {font-size: clamp(18px, 5vw, 26px);line-height: clamp(14px, 5vw, 22px);}
.xs-heading {font-size: clamp(16px, 5vw, 22px);line-height: clamp(12px, 5vw, 18px);}

/*=== BUTTONS ===*/
.button-group {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	padding-top: 30px;
}
button.primary-button {
	font-family: var(--teko);
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
	font-size: 22px;
	line-height: 20px;
	padding: 15px 20px;
	background-color: var(--yellow);
	color: var(--black);
	opacity: 1;
	transition: all ease 0.3s;
	text-transform: uppercase;
	letter-spacing: 2px;
}
button.primary-button:hover {
	opacity: 0.6;
}
button.secondary-button {
	font-family: var(--teko);
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
	font-size: 22px;
	line-height: 20px;
	padding: 15px 20px;
	background-color: var(--black);
	color: var(--white);
	opacity: 1;
	transition: all ease 0.3s;
	text-transform: uppercase;
	letter-spacing: 2px;
}
button.secondary-button:hover {
	opacity: 0.6;
}
button.yellow-round-button {
	font-family: var(--roboto);
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
	font-size: 18px;
	line-height: 20px;
	padding: 15px 20px;
	background-color: var(--yellow);
	color: var(--black);
	border-radius: 50px;
	opacity: 1;
	transition: all ease 0.3s;
	width: 48px;
	text-align: center;
	display: flex;
	justify-content: center;
	text-transform: uppercase;
	letter-spacing: 2px;
}
button.yellow-round-button:hover {
	opacity: 0.6;
}
button.white-button {
	font-family: var(--roboto);
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
	font-size: 22px;
	line-height: 20px;
	padding: 15px 20px;
	background-color: var(--white);
	color: var(--black);
	opacity: 1;
	transition: all ease 0.3s;
	justify-content: center;
	text-transform: uppercase;
	letter-spacing: 2px;
}
button.white-button:hover {
	opacity: 0.6;
}

/*=== LOGO ===*/
.logo-container .logo {
	position: relative;
	display: flex;
	flex-grow: 0;
	flex-shrink: 0;
	flex-basis: auto;
	width: 100%;
	max-width: 125px;
	height: 100%;
    object-fit: contain;
    object-position: center;
}
a.logo-container {
	line-height: 0;
}

/*=== CUSTOM STYLES ===*/
p.paragraph {
	padding-top: 10px;
	line-height: 28px;
}
ul.list {
	list-style-type: disc;
	list-style-position: inside;
	padding-top: 10px;
}
.texture-bg {
	background: url("/siteart/concrete-wall.webp") repeat center;
	background-size: 250px;
}
ul.checklist {
	gap: 5px 15px;
	padding: 10px;
	font-size: 16px;
}
ul.checklist li {
	text-transform: uppercase;
	font-weight: 700;
}
ul.checklist li::before {
	content: "\f00c";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	margin-right: 5px;
}
.banner-section {
	display: flex;
	flex-direction: column;
	background-color: var(--off-yellow);
	padding: var(--sm-padding) 0;
}

/*=== HEADER ===*/
header.site-header {
	background-color: var(--black);
	font-family: var(--teko);
	font-weight: 300;
	font-size: 22px;
	color: var(--white);
	box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 20px 0px;
}
header.site-header i {
	line-height: 22px;
	font-size: 16px;
}
header.site-header .twenty-four-seven-service-icon {
	display: none;
}
header.site-header .top-nav {
	padding: 25px;
}
header .logo-container {
	position: relative;
    transform: skewX(-15deg);
    background-color: var(--white);
    left: -25px;
    padding: 15px 35px 15px 55px;
	margin: 10px 0px;
}
header .logo-container::after {
	content: "";
    display: block;
    position: absolute;
    width: 15px;
    height: calc(100% - 40px);
    background-color: var(--yellow);
    right: -15px;
    top: 20px;
}
header .logo-container .logo {
	position: relative;
	display: flex;
	flex-grow: 0;
	flex-shrink: 0;
	flex-basis: auto;
	width: 100%;
	max-width: 125px;
	height: 100%;
    object-fit: contain;
    object-position: center;
	transform: skewX(15deg);
}

/*=== FOOTER ===*/
footer.site-footer {
	font-size: 16px;
	line-height: 28px;
	padding: 0;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 20px 0px;
}
footer.site-footer .logo-container .logo {
	max-width: 75px;
}
footer.site-footer .hours-section {
	padding: var(--lg-padding) 0;
	background-color: var(--dark-blue);
	color: var(--white);
}
footer.site-footer .top-footer-container {
	gap: var(--sm-padding);
}
footer.site-footer .middle-footer {
	padding: var(--lg-padding) 0;
	gap: var(--sm-padding);
}
footer.site-footer .bottom-footer p {
	background-color: var(--black);
	color: var(--white);
	padding: 25px;
	font-size: 16px;
}

/*=== PAGE STYLES ===*/
/*=== SUB PAGE ===*/
#sub-page:not(.inventory-page), .default-page{
	font-family: var(--roboto);
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	font-size: 18px;
	line-height: 24px;
	overflow: hidden;
}
#sub-page .hero-section {
	position: relative;
	overflow: hidden;
}
#sub-page .hero-section::after {
	content: "";
	width: 100%;
	height: 100%;
	background: url("/siteart/logo.webp") no-repeat calc(100% + 225px) center;
	filter: opacity(0.05);
	position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
	z-index: -1;
}
#sub-page .hero-section .hero-half-text {
	padding: 200px var(--sm-padding);
}

/*=== Default Page ===*/
.default-page .hero-section {
	background: linear-gradient(to right, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url("/siteart/oil-tank-truck.webp") no-repeat center;
	background-size: cover;
	padding: 200px 0;
	color: var(--white);
}
.default-page .hero-section .hero-content {
	max-width: 515px;
}
.default-page .hero-section .hero-content .hero-subtitle {
	text-transform: uppercase;
}
.default-page .about-section {
	gap: 50px;
	padding: var(--lg-padding) 0;
}
.default-page .about-section .map-container {
	outline: 1px solid var(--black);
	width: 100%;
	position: relative;
	top: -20px;
	transform: skewX(-5deg);
	display: flex;
	z-index: 1;
}
.default-page .about-section .map-container .map {
	transform: skewX(5deg);
	height: 100%;
	display: flex;
	z-index: 2;
	position: relative;
	top: 20px;
}
.default-page .about-section .about-text {
	padding: var(--sm-padding) 0;
}
.default-page .inventory-search-section {
	background-color: var(--white);
	box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 20px 0px;
	width: 80%;
	margin-left: auto;
	padding: 10px;
	position: relative;
	transform: translateY(-50%);
	z-index: 5;
}
.default-page .brand-section {
	padding: var(--lg-padding) 0;
}
.default-page .brand-section .brand-slider {
	padding-top: 25px;
	overflow: hidden;
}
.default-page .brand-section .brand-slider .slick-slide {
	box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 20px 0px;
	height: 100%;
	object-fit: contain;
	padding: 25px 10px;
	margin: 20px;
}
.default-page .brand-section .brand-slider .slick-slide img {
	max-height: 125px;
    margin: auto;
    object-fit: contain;
    aspect-ratio: 3 / 1;
}
.default-page .brand-section .brand-slider .draggable > div {
	display: flex;
}

/*=== Contact ===*/
.contact-page .map-container {
	line-height: 0;
}

/*=== Inventory Page ===*/
.inventory-page .finance-banner {
	margin-top: var(--lg-padding);
}

@media screen and (max-width: 950px) {
	/*=== Header ===*/
	header .logo-container .logo {
		max-width: 75px;
	}
}

@media screen and (max-width: 875px) {
	.flex-horizontal{flex-direction:column}.desktop-only{display:none}.mobile-only{display:flex}

	/*=== Default Page ===*/
	.default-page .inventory-search-section {
		width: 95%;
	}
	.default-page .about-section {
		flex-direction: column-reverse;
	}

	/*=== Sub Page ===*/
	#sub-page .hero-section .hero-half-text {
		padding: 100px var(--sm-padding);
	}
}

@media screen and (max-width: 550px) {

}