*{-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(--bahnschrift);
	font-optical-sizing: auto!important;
	font-weight: 200!important;
	font-style: normal!important;
	height: auto !important;
}
.page-shadow {
	max-width: 1600px!important;
    width: 100%!important;
    box-shadow: rgba(0, 0, 0, 0.3) 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 ===*/
	--bahnschrift: "bahnschrift", sans-serif;;

	/*=== Colors ===*/
	--white: #ffffff;
	--black: #000000;
	--green: #006838;
	--brown: #be4f3f;
	--light-brown: #ffcac5;
	--light-grey: #f4f4f4;

	/*=== Spacing ===*/
	--lg-padding: clamp(50px, 5vw, 75px);
	--sm-padding: clamp(10px, 2.5%, 2.5%);
}
.xl-heading, .lg-heading, .md-heading, .sm-heading, .xs-heading {
	font-family: var(--bahnschrift);
	font-weight: 700;
	font-style: normal;
	text-transform: uppercase;
}
.xl-heading {font-size: clamp(40px, 5vw, 48px);line-height: clamp(40px, 5vw, 48px);}
.lg-heading {font-size: clamp(34px, 5vw, 42px);line-height: clamp(34px, 5vw, 42px);}
.md-heading {font-size: clamp(27px, 5vw, 35px);line-height: clamp(27px, 5vw, 35px);}
.sm-heading {font-size: clamp(18px, 5vw, 26px);line-height: clamp(18px, 5vw, 26px);}
.xs-heading {font-size: clamp(14px, 5vw, 20px);line-height: clamp(14px, 5vw, 20px);}

/*=== BUTTONS ===*/
.button-group {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	padding-top: 30px;
}
button.primary-button {
	font-family: var(--bahnschrift);
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	font-size: 16px;
	line-height: 24px;
	padding: 8px 20px 12px;
	background-color: var(--brown);
	border: 2px solid var(--brown);
	color: var(--white);
	opacity: 1;
	transition: all ease 0.3s;
	text-transform: capitalize;
	border-radius: 10px;
}
button.primary-button:hover {
	opacity: 0.6;
}
button.secondary-button {
	font-family: var(--bahnschrift);
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	font-size: 16px;
	line-height: 24px;
	padding: 8px 20px 12px;
	background-color: var(--white);
	border: 2px solid #929497;
	color: var(--green);
	opacity: 1;
	transition: all ease 0.3s;
	text-transform: capitalize;
	border-radius: 10px;
}
button.secondary-button:hover {
	opacity: 0.6;
}
ul.breadcrumbs {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	padding-top: 10px;
	font-family: var(--bahnschrift);
	font-weight: 400;
	font-style: normal;
	font-size: 16px;
	line-height: 24px;
}
ul.breadcrumbs li {
	display: flex;
	gap: 5px;
	align-items: center;
}
ul.breadcrumbs li:not(:last-of-type)::after {
	content: ">";
	display: inline-block;
	padding: 0 5px;
	color: var(--white);
}


/*=== LOGO ===*/
.logo-container .logo {
	flex-grow: 0;
	flex-shrink: 0;
	flex-basis: auto;
	width: 100%;
	max-width: 200px;
	height: 100%;
    object-fit: contain;
    object-position: center;
}

/*=== CUSTOM STYLES ===*/
.floating-body-container {
	position: relative;
	top: -50px;
	border-radius: 25px;
	overflow: hidden;
	box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 20px 0px;
	background-color: var(--white);
	margin: 0 auto;
	max-width: 1600px;
}
p.paragraph {
	padding-top: 10px;
	line-height: 28px;
}
ul.list {
	list-style-type: disc;
	list-style-position: inside;
	padding-top: 10px;
}
.split-section .half-map {    
	background-size: cover;
    background-position: center;
    width: 100%;
    line-height: 0;
	padding: 0;
	min-height: 350px;
}
.split-section .half-image {    
	background-size: cover;
    background-position: center;
    width: 100%;
    line-height: 0;
	padding: var(--lg-padding) var(--sm-padding);
	min-height: 350px;
}
.split-section .half-text {
	padding: var(--lg-padding) var(--sm-padding);
}
.logo-section {
	padding: var(--lg-padding) var(--sm-padding);
	position: relative;
	overflow: hidden;
}
.logo-section::before {
	content: "";
    position: absolute;
    top: 0;
    right: -100px;
    bottom: 0;
    left: auto;
    background: url(/siteart/logo-grey.webp) no-repeat center right;
    transform: rotate(-15deg);
    z-index: 0;
    aspect-ratio: 2.75 / 1;
	width: 508px;
}
.logo-section > * {
	position: relative;
	z-index: 1;
}
.contact-section {
	padding: var(--lg-padding) 0;
    background-color: var(--light-grey);
}
.contact-section .contact-form {
	padding-top: 25px;
}
.flair-container {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	padding-top: var(--sm-padding);
}
.flair-container .flair {
	background-color: var(--green);
    color: var(--white);
    padding: 5px 15px 8px;
    border-radius: 10px;
}
.service-accordion .accordion-item {
	border-bottom: 1px solid var(--black);
}
.service-accordion .accordion-header {
	background: none;
	border: none;
	width: 100%;
	text-align: left;
	padding: 20px var(--sm-padding);
	cursor: pointer;
	transition: background 0.3s;
}
.service-accordion .accordion-header::after {
	content: '\f067';
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	position: relative;
    font-size: 14px;
    top: -2px;
}
.service-accordion .accordion-header[aria-expanded="true"] {
	background: var(--light-grey);
	padding: 20px var(--sm-padding) 0;
}
.service-accordion .accordion-header[aria-expanded="true"]::after {
	content: '\f068';
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	position: relative;
    font-size: 14px;
    top: -2px;
}
.service-accordion .accordion-body {
	overflow: hidden;
	max-height: 0;
	transition: max-height 0.3s ease;
	padding: 0 var(--sm-padding);
}
.service-accordion .accordion-header[aria-expanded="true"] + .accordion-body {
	padding-bottom: var(--sm-padding);
}

/*=== HEADER ===*/
header.site-header {
	font-family: var(--bahnschrift);
	padding: 20px 0;
}
header.site-header .top-nav {
	gap: 5px;
}
header.site-header .nav-button-group {
	gap: 25px;
}

/*=== FOOTER ===*/
footer .site-footer {
	font-size: 16px;
	line-height: 28px;
	padding: 0;
	background-color: var(--green);
	color: var(--white);
	border-radius: 25px;
	padding: var(--lg-padding);
	overflow: hidden;
	position: relative;
	text-transform: uppercase;
	font-weight: 700;
}
footer .site-footer::after {
	content: "";
    width: 525px;
    height: 250px;
    position: absolute;
    bottom: 15px;
    left: -18px;
    background-image: url(/siteart/braided-hoses.webp);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transform: rotate(45deg);
    pointer-events: none;
    mix-blend-mode: overlay;
    opacity: .4;
}
footer .site-footer .footer-links {
	padding-top: var(--sm-padding);
}
.bottom-footer p {
	font-weight: 700;
	padding: 15px;
	position: relative;
	top: -25px;
}

/*=== PAGE STYLES ===*/
/*=== SUB PAGE ===*/
#sub-page:not(.inventory-page), .default-page{
	font-family: var(--bahnschrift);
	font-optical-sizing: auto;
	font-weight: 200;
	font-style: normal;
	font-size: 18px;
	line-height: 24px;
	overflow: hidden;
}
#sub-page .hero-section {
	background-size: cover!important;
	background-position: center!important;;
	background-repeat: no-repeat!important;;
	padding: 100px 15px 125px!important;;
	color: var(--white)!important;
}
#sub-page .hero-section .hero-text-group {
    max-width: 1600px;
    margin: auto;
}
#sub-page .hero-section .hero-text-group .hero-text-max {
    max-width: 600px;
}

/*=== Default Page ===*/
.default-page .hero-section {
	background: linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0)), url("/siteart/blue-equipment.webp") no-repeat center;
	background-size: cover;
	padding: 200px 15px;
	color: var(--white);
}
.default-page .hero-section .hero-text-group {
    max-width: 1600px;
    margin: auto;
}
.default-page .hero-section .hero-text-group .hero-text-max {
    max-width: 600px;
}
.default-page .service-section {
	padding: var(--lg-padding) 0;
	position: relative;
}
.default-page .service-section .service-slider {
	padding-top: 25px;
	overflow: hidden;
}
.default-page .service-section .service-slider .slick-slide {
    padding: 10px;
    margin: 15px;
    box-shadow: 0 0 15px #cfcfcf;
    border-radius: 15px;
    height: inherit !important;
	text-align: center;
	display: flex! important;
}
.default-page .service-section .service-slider .slick-slide h4 {
	text-transform: capitalize;
	background-color: var(--green);
	color: var(--white);
	width: 100%;
	border-radius: 8px;
	padding: 8px 5px 10px;
	text-align: center;
}
.default-page .service-section .service-slider .slick-slide .button-group {
	justify-content: center;
}
.default-page .service-section .service-slider .draggable > div {
	display: flex;
}
.default-page .service-section .service-slider .slick-track {
    display: flex !important;
}

/*=== About Page ===*/
.about-page footer {
	background-color: var(--light-grey);
}
.about-page .service-section {
	padding: var(--lg-padding) 0;
	background-color: var(--light-grey);
}

/*=== Contact Page ===*/
.contact-page footer {
	background-color: var(--light-grey);
}

/*=== Inventory Page ===*/
.inventory-page .finance-banner {
	margin-top: var(--lg-padding);
}

/*=== Events Page ===*/

/*
.event-card {
    display: flex; 
    flex-direction: column; 
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
    max-width: 300px;
    border-radius: 20px;
    padding: 0 0 20px 0;
    overflow: hidden;
}
.event-card img{
    width: 300px;
    height: auto;
    object-fit: cover;
    object-position: center center;
}
.event-card h4 {margin-top: 10px;}
.event-card p {margin-bottom: 10px;}
.event-card span{
    display: flex; align-items: center; justify-content: center;
    width: 300px;
    height: 250px;
    object-fit: cover;
    object-position: center center;
    text-align: center center;
}
.event-card span img {
    width: 150px;
}
*/
.events {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 90%;
    align-items: center;
    justify-content: flex-start;
    margin: auto;
}
.events hr {
    width: 90%;
}
.event-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    margin-top: 20px;
    margin-right: auto;
    margin-left: auto;
}
.event-box img {
    border-radius: 20px;
    width: 270px;
    height: auto;
    object-fit: contain;
    object-position: center center;
}
.underline {
    text-decoration: underline;
    color: #006838;
}
.fb-row {
    display: flex;
    flex-direction: row;
}
.fb-col {
    display: flex;
    flex-direction: column;
}
@media screen and (max-width: 875px){
    .events {
        flex-direction: column;
    }
	.event-box {width: 100%;gap: 30px;flex-direction: column-reverse;}
}
@media screen and (max-width: 875px) {
	.flex-horizontal{flex-direction:column}.desktop-only{display:none}.mobile-only{display:flex}

	/*=== Default Page ===*/
	.split-section {
		flex-direction: column-reverse;
	}
}

@media screen and (max-width: 450px) {
	header.site-header {
		flex-direction: column;
	}
	header.site-header > * {
		text-align: center;
		align-self: center;
	}
	header.site-header .nav-button-group {
		gap: 10px;
		margin-top: 25px;
	}
}