*{-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(--purple);
	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.3) 0px 0px 20px 0px!important;
    background-color: rgb(255, 255, 255)!important;
    margin: 0 auto!important;
	overflow-x: hidden!important;
}
strong, b {
	font-weight: 900;
}
:root {
	/*=== Fonts ===*/
	--cal-sans: "Cal Sans", sans-serif;
	--roboto: "Roboto", sans-serif;

	/*=== Colors ===*/
	--white: #ffffff;
	--black: #000000;
	--purple: #3f1279;
	--light-purple: #ece8f1;
	--yellow: #ffe000;

	/*=== 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(--cal-sans);
	font-weight: 400;
	font-style: normal;
}
.xl-heading {font-size: clamp(48px, 5vw, 56px);line-height: clamp(50px, 5vw, 58px);}
.lg-heading {font-size: clamp(34px, 5vw, 42px);line-height: clamp(36px, 5vw, 44px);}
.md-heading {font-size: clamp(27px, 5vw, 35px);line-height: clamp(29px, 5vw, 37px);}
.sm-heading {font-size: clamp(18px, 5vw, 26px);line-height: clamp(20px, 5vw, 28px);}
.xs-heading {font-size: clamp(16px, 5vw, 22px);line-height: clamp(18px, 5vw, 24px);}

/*=== BUTTONS ===*/
.button-group {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	padding-top: 30px;
}
button.primary-button {
	font-family: var(--cal-sans);
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
	font-size: 18px;
	line-height: 20px;
	padding: 12px 25px;
	background-color: var(--purple);
	color: var(--white);
	opacity: 1;
	transition: all ease 0.3s;
	text-transform: capitalize;
	border-radius: 5px;
}
button.primary-button:hover {
	opacity: 0.6;
}
button.secondary-button {
	font-family: var(--cal-sans);
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
	font-size: 18px;
	line-height: 20px;
	padding: 12px 25px;
	background-color: var(--white);
	color: var(--black);
	opacity: 1;
	transition: all ease 0.3s;
	text-transform: capitalize;
	border-radius: 5px;
}
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: 12px 25px;
	background-color: var(--yellow);
	color: var(--purple);
	border-radius: 50px;
	opacity: 1;
	transition: all ease 0.3s;
	width: 48px;
	text-align: center;
	display: flex;
	justify-content: center;
	text-transform: capitalize;
	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: 18px;
	line-height: 20px;
	padding: 12px 25px;
	background-color: var(--white);
	color: var(--black);
	opacity: 1;
	transition: all ease 0.3s;
	justify-content: center;
	text-transform: capitalize;
	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: 175px;
	height: 100%;
    object-fit: contain;
    object-position: center;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 10px;
	background-color: var(--white);
	z-index: 1;
}
/*=== CUSTOM STYLES ===*/
p.paragraph {
	padding-top: 10px;
	line-height: 28px;
}
ul.list {
	padding-top: 10px;
	list-style: none;
}
ul.list li {
	position: relative;
}
ul.list li::before {
	font-family: "Font Awesome 6 Free";
	content: "\f14a";
	font-weight: 900;
	color: var(--purple);
	position: relative;
	left: 0;
	top: 0;
	margin-right: 5px;
}
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;
	justify-content: center;
}
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);
}
.half-section {
}
.half-section.purple {
	background-color: var(--light-purple);
}
.half-section .image-container {
	padding: var(--lg-padding) var(--sm-padding);
	height: 100%;
	line-height: 0;
	overflow: hidden;
	width: 100%;
	margin: auto;
}
.half-section .image-container img {
	transform: rotate(-5deg);
    object-fit: contain;
    object-position: center;
	height: 300px;
	width: 100%;
	border-radius: 25px;
	box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 20px 0px;
}
.half-section .text-container {
	padding: var(--lg-padding) var(--sm-padding);
}
.logo-bg {
	position: relative;
	z-index: 0;
}
.logo-bg::after {
	content: '';
	position: absolute;
	width: 300px;
	height: 300px;
	background: url("/siteart/logo.webp") no-repeat;
	background-position: center;
	background-size: 300px 300px;
	transform: rotate(-15deg);
	pointer-events: none;
	z-index: -1;
	filter: grayscale(100%);
	opacity: 0.05;
	top: -25px;
	right: -150px;
	bottom: auto;
	left: auto;
}

/*=== Banner ===*/
.banner {
	background-size: cover;
	background-position: center;
	padding: var(--sm-padding);
	text-align: center;
	position: relative;
	overflow: hidden;
	z-index: 0;
}
.banner::before {
	content: '';
	background-color: var(--yellow);
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 1; /* Before is z-index 1 */
}
.banner::after {
	content: '';
	position: absolute;
	inset: 0;
	background-image: url("/siteart/st45.webp");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-blend-mode: multiply;
	opacity: 0.1;
	pointer-events: none;
	z-index: 2; /* After is z-index 3 */
}
.banner .banner-content{
	position: relative;
	z-index: 3;
}

/*=== WN Logo ===*/
.logo-offset {
	position: relative;
	width: 250px;
	z-index: 1;
	background-color: var(--light-purple);
	border-radius: 10px;
	left: -25px;
	margin-bottom: 50px;
}
.logo-offset img {
	position: relative;
	bottom: -25px;
	left: 25px;
}


/*=== HEADER ===*/
header.site-header {
	position: relative;
	font-family: var(--cal-sans);
}
header.site-header button.yellow-round-button {
	font-size: 16px;
    padding: 12px 17px;
	width: 40px;
}
header.site-header .logo-container {
	position: absolute;
    top: 25px;
    left: var(--sm-padding);
    z-index: 1;
}
header.site-header .top-nav {
	gap: 15px;
    padding: 50px 2.5% 15px;
}

/*=== FOOTER ===*/
footer.site-footer {
	font-size: 16px;
	line-height: 28px;
	padding: 0;
	position: relative;
}
footer.site-footer {
	font-size: 16px;
	line-height: 28px;
	padding: 0;
}
footer.site-footer .logo-container {
	position: absolute;
    left: 0;
    right: 0;
	transform: translatey(-50%);
}
footer.site-footer .top-footer {
	background-color: var(--purple);
	color: var(--white);
	font-family: var(--cal-sans);
	font-weight: 400;
	font-style: normal;
    text-transform: uppercase;
	padding: calc(var(--lg-padding) + 60px) 0 var(--lg-padding);
}
footer.site-footer button.yellow-round-button {
	font-size: 16px;
    padding: 12px 17px;
	width: 40px;
}
footer.site-footer .bottom-footer {
	font-size: 14px;
    padding: 12px 17px;
}

/*=== 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{
	background-color: var(--purple);
	background-size: cover;
	padding: 75px 0;
	color: var(--white);
	text-align: center;
}

/*=== Default Page ===*/
.default-page .hero-section {
	background: linear-gradient(to right, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)), url("/siteart/header.webp") no-repeat center;
	background-color: var(--purple);
	background-size: cover;
	padding: 200px 0;
	color: var(--white);
	text-align: center;
}

.brandlogos img{
	border-radius: 5px;
	transition: transform 0.3s ease;
	width:80%;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.brandlogos img:hover {
  transform: scale(1.05);
}

.brandlogos {
	display: flex;
	justify-content: center;
	gap: 25px 50px;
	flex-wrap: wrap;
	padding-top: 50px;
}


.default-page .search-form {
	background-color: var(--white);
    border-radius: 25px;
	padding: 5px 5px 5px 25px;
	max-width: 500px;
    margin: 30px auto 0;
	color: var(--black)
}
.default-page .search-form input {
	width: 100%;
}
.default-page .search-form .yellow-round-button {
    padding: 11px 17px;
    width: 40px;
}
.equipment-section {
	gap: 20px;
	position: relative;
	top: -100px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	align-items: stretch;
}
.equipment-section img {
	max-height: 225px;
	height: 100%;
	width: 100%;
	object-fit: contain;
	object-position: center;
}
.equipment-section .equipment-card {
	box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 20px 0px;
	border-radius: 10px;
	padding: 10px;
	background-color: var(--white);
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: 375px;
	justify-content: space-between;
}
.equipment-section .equipment-card .button-group * {
	max-width: 100%;
	width: 100%;
}
/*=== Contact Page ===*/
.contact-page .contact-form-section {
	background-color: var(--light-purple);
	padding: var(--lg-padding) 0 calc(clamp(50px, 5vw, 75px) + 125px);
}

/*=== About Page ===*/
.about-page .about-section {
	margin: var(--lg-padding) var(--sm-padding);
}
.about-page .banner {
	margin: var(--lg-padding) 0;
}

/*=== Brand Page ===*/
.brands-page .brand-section {
	padding: var(--lg-padding) 0;
}
.brands-page .brand-section .equipment-section-brand-section .equipment-section {
	top: 0;
	margin: 0;
	padding-top: var(--lg-padding);
	padding-bottom: var(--lg-padding);
}

/*=== Inventory Page ===*/
.inventory-page.logo-bg {
	overflow: hidden;
}
.inventory-page {    
	z-index: 9999;
    position: relative;
}

@media screen and (max-width: 1350px) {
	.equipment-section {
		grid-template-columns: repeat(2, 1fr);
	}
	.equipment-section img {
		max-height: 225px;
		height: 100%;
		width: 100%;
		object-fit: contain;
		object-position: center;
	}
	.equipment-section .equipment-card {
		box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 20px 0px;
		border-radius: 10px;
		padding: 10px;
		background-color: var(--white);
		display: flex;
		flex-direction: column;
		height: 100%;
		min-height: 375px;
		justify-content: space-between;
	}
	.equipment-section .equipment-card .button-group * {
		max-width: 100%;
		width: 100%;
	}
}

@media screen and (max-width: 950px) {
	.flex-horizontal{flex-direction:column}.desktop-only{display:none}.mobile-only{display:flex}

	/*=== Header ===*/
	header.site-header .top-nav {
		gap: 5px;
	}

	/*=== Default Page ===*/
	.logo-container .logo {
		max-width: 150px;
	}
}

@media screen and (max-width: 625px) {
	.equipment-section {
		grid-template-columns: repeat(1, 1fr);
	}

	/*=== Brands Pages ===*/
	.brands-page .split-header {
		flex-direction: column-reverse;
		align-items: flex-start;
        justify-self: left;
	}
}

@media screen and (max-width: 350px) {
	/*=== Default Page ===*/
	.logo-container .logo {
		max-width: 125px;
	}
}