/****** Color Pallet

Blue:  #37c6f3;
Purple:  #3d134c;

font-family: 'Oswald', sans-serif;
font-family: 'Roboto Condensed', sans-serif;

/***** Generic Items *****/

*{
	margin: 0;
	padding: 0;
}

html{
	scroll-behavior: smooth;
}

body{
	min-height: 100vh;
}

ul{
	list-style-type: square;
}

ul ul{
	list-style-type: circle;
}

li{
	margin-bottom: 7px;
}

h1, h2, h3, h4, h5, h6{
	font-family:"Calibri", sans-serif;
}

h2{
	font-size: 1.8rem !important;
}

p,a,li{
	font-family: "Open Sans", sans-serif;
}

a{
	text-decoration: none;
	color: #2f344e;
	font-size: 1.1em;
}

a:hover{
	color: #525981;
}

button{	
	border: 0;
	background: transparent;
}

.txt-center,
.text-center{
	text-align: center;
}

.txt-left,
.text-left{
	text-align: left;
}

.txt-right,
.text-right{
	text-align: right;
}

.float-left{
	float:left;
}

.float-right{
	float: right;
}

.transition{
	transition: all 0.3s ease;
}

@-webkit-keyframes zoom {
  0% {
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -moz-transform: scale(1.1) rotate(0.1deg);
    -webkit-transform: scale(1.1) rotate(0.1deg);
    transform: scale(1.1) rotate(0.1deg);
  }

  100% {
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

/***** Page General *****/

#page, .page{
	min-height: 100vh;
}

.page-section img{
	max-width: 100%;
	height: auto;
}

.btn-lg{
	font-size: .8em !important;
	text-transform: uppercase;
	padding: 17px 35px !important;
}

.btn-xl{
	font-size: 2em !important;
	text-transform: uppercase;
	padding: 10px 40px !important;
}

.btn-red{
	background: #f00000 !important;
	color: #fff !important;
	border: 3px solid #c81414 !important;
}

.btn-red:hover{
	background: #000 !important;
	border: 3px solid #000 !important;
}

.btn-reg{
	color: #2f344e;
	font-weight: bold;
	border: 3px solid #2f344e;
	border-radius: 3px;
	padding: 5px 10px;
	transition: all .3s ease;
}

.btn-reg:hover{
	background: #2f344e;
	color: #2f4c9a;
}

.no-margin{
	margin: 0;
}

.table-striped > tbody > tr:nth-child(2n+1) > td, .table-striped > tbody > tr:nth-child(2n+1) > th {
   background-color: rgba(1, 127, 1, .15);
}

/***** Overrides *****/

.nf-form-fields-required{
	display: none;
}

.videoWrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}

.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/***** Header *****/

.topper,
.quote{
	display: flex;
	flex-wrap: wrap;
	padding: 11px 22px;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

.topper h1,
.topper h2{
	text-transform: uppercase;
	padding: 0;
	margin: 0 22px;
	line-height: 30px;
}

.topper h1{
	font-weight: 700;
}

.topper h2{
	font-weight: 100;
	color: #40b9f1;
}

.main-logo{
	display: flex;
	justify-content: center;
	align-items: center;
}

.topper div:first-child{
	margin-right: auto;
	width: 201px;
	visibility: hidden;
}

.mobile{
	display: none;
}

.main-quote{
	margin-left: auto;
	background: #fff !important;
}

.call{
	padding: 0;
}

.quote{
	padding-left: 0;
}

.quote p{
	margin: 0 0 0 11px;
	font-weight: 700;
	text-transform: uppercase;
}

.desktop{
	display: flex;
	justify-content: center;
	align-items: center;
	background: #33312d;
	position: relative;

}

.desktop .nav-items ul{
	list-style: none;
}

.desktop .nav-items ul.top-level-items{
	display: flex;
	align-items: center;
	margin: 0;
	padding: 0;
	position: relative;
}

.desktop .nav-items ul.top-level-items li{
	padding: 22px 0;
}

.desktop .nav-items ul li{
	margin: 0;	
	border-right: 1px solid #57b7df;
	z-index: 20;
}

.desktop .nav-items ul li:last-child{
	border-right: 0;
}

.desktop .nav-items ul li a{
	text-transform: uppercase;
	color: #817b6d;
	margin: 0;
	font-weight: 700;
	padding: 0 15px;
	transition: all .3s ease;
}

.nav-items ul li a:hover{
	color: #9db8ed;
}

.sub-nav-items{
	position: absolute;
	visibility: hidden;
	opacity: 0;
	top: 0;
	padding: 11px;
	margin-top: 60px;
	left: 240px;
	background: #fff;
	width: 325px;
	transition: all .3s ease;
}

.prods:hover .sub-nav-items{
	visibility: visible;
	opacity: 1;
	margin-top: 70px;
}

.desktop .sub-nav-items li{
	padding: 0 !important;
	border: none !important;
	z-index: 10;
}

.desktop .sub-nav-items li a{
	padding: 5px !important;
	border: none !important;
	display: block;
}

.mobile .nav-items{
	position: fixed;
	top: 0;
	right: -350px;
	width: 350px;
	height: 100%;
	padding: 130px 50px 0 50px;
	text-align: center;
	background: rgba(0, 0, 0, .75);
	transition: all .3s ease;
}

.mobile .nav-items.open{
	right: 0;
}

.mobile .nav-items ul{
	margin: 0;
	padding: 0;
	list-style: none;
}

.mobile .nav-items ul li{
	font-size: 1.5em;
	color: #fff;
	font-weight: bold;
	text-transform: uppercase;
}

.mobile .nav-items ul li a{
	color: #fff;
	display: inline-block;
	position: relative;
}

.mobile .nav-items ul li a::before{
	content: "";
  width: 0;
  margin: auto;
  position: absolute;
  background: #fff;
  height: 1px;
  left: 0;
  right: 0;
  bottom: -5px;
  transition: all 0.3s ease;
}

.mobile .nav-items ul li a:hover::before{
	width: 100px;
}

/***** Home *****/

.jobsite{
	padding: 44px 0; 
	background-image: url(/wp-content/uploads/2024/09/home-banner.png);
	background-size: cover;
	background-position: center;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.jobsite h3,
.jobsite h4,
.jobsite a,
.jobsite p{
	text-transform: uppercase;
	color: #fff;
}

.jobsite h3{
	color: #649ed1;
	font-size: 3em;
}

.jobsite h4{
	font-size: 2em;
	padding: 22px;
	border: 1px solid #649ed1;
}

.jobsite p{
	font-size: 1.5em;
}

.jobsite p span{
	font-weight: 700;
	color: #649ed1;
}

.jobsite a{
	color: #fff;
	background: #649ed1;
	padding: 22px;
	border-radius: 40px;
	margin: 0 44px;
	font-weight: 700;
}

.jobsite a i{
	background: #fff;
	color: #649ed1;
	border-radius: 100%;
	padding: 5px;
	width: 30px;
	height: 30px;
	font-size: 1.1em;
	margin: 0 0 0 7px;
}

.air-filter{
	padding: 22px;
	background: rgba(0, 0, 0, .75);
}

.services{
	margin: 44px 0 0 0;
}

.services .container{
	display: flex;
	justify-content: center;
}

.service-item{
	display: flex;
	flex: 25%;
}

.service-item p{
	margin: 0;
	padding: 0;
}

.service-item i{
	font-size: 3em;
	margin: 0 22px;
	color: #649ed1;
	width: 48px;
}

.service-item h4{
	font-weight: 700;
	margin: 0;
}

.products .container{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.product-item{
	flex: 0 0 33%;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 400px;
	background-repeat: no-repeat;
	background-position: center;
	text-decoration: none;
	text-transform: uppercase;
	background-color: #f8f6f5;
	position: relative;
	transition: all .3s ease;
}

.product-item::before{
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	background: rgba(0, 0, 0, .30);
	transition: all .3s ease;
}

.product-item:hover::before{
	background: rgba(0, 0, 0, .10);
}

.product-item h4{
		font-weight: 700;
		z-index: 10;
		color: #fff;
		text-decoration: underline;
}

.pleated{
	background-image: url(/wp-content/uploads/2024/09/pleated-filters.png);
}

.carbon{
	background-image: url(/wp-content/uploads/2024/09/carbon-filters.png);
	background-color: #ebf0f5;
}

.cube{
	background-image: url(/wp-content/uploads/2024/09/cube-filter.png);
}

.pocket{
	background-image: url(/wp-content/uploads/2024/09/filters.png);
}

.hepa{
	background-image: url(/wp-content/uploads/2024/09/filter-1.png);
	background-color: #ebf0f5;
}

.vbelt{
	background-image: url(/wp-content/uploads/2024/09/belts.png);
}

.ring{
	background-image: url(/wp-content/uploads/2024/10/filt.png);
	background-color: #ebf0f5;
}

.sleeve{
	background-image: url(/wp-content/uploads/2025/04/sleeve-2.png);
}

.mesh{
	background-image: url(/wp-content/uploads/2024/10/mesh-2.png);
}

.choice{
	background-image: url(/wp-content/uploads/2024/09/facilities.png);
	background-size: cover;
	background-position: center;
	height: 400px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 44px 0;
}

.choice h3{
	color: #fff;
	text-transform: uppercase;
	font-size: 3em;
	font-weight: 700;
	text-align: center;
	padding: 0 11px;
}

.choice span{
	color: #5688b5;
}

.faq{
	margin: 44px 0;
}

.faq .container{
	display: flex;
}

.faq-item{
	flex: 0 0 50%;
}

.faq-img{
	background-image: url(/wp-content/uploads/2024/09/filter-close.jpg);
	background-size: cover;
	background-position: center;
	border-radius: 8px;
}

.faq-content{
	margin: 0 0 0 22px
}

.faq h3{
	font-weight: 700;
}

.faq-question h4{
	background-color: #5688b5;
	color: #fff;
	padding: 22px;
	text-align: center;
	font-weight: 700;
	text-transform: uppercase;
}

.faq-question p{
	margin: 11px;
}

/***** Page *****/

/***** Products *****/

.products .container{
	padding: 44px 0;
}

.page-cover,
.product-footer{
	height: 500px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-size: cover;
	background-position: center;
}

.product .container{
	display: flex;
	padding: 44px 0 22px 0;
}

.page-cover h1,
.product h1{
	font-size: 3em !important;
	padding: 22px;
	color: #609ddc;
	text-transform: uppercase;
	font-weight: bold;
	border: 1px solid #98b3ce;
	background: rgba(0, 0, 0, .50);
}

#product-list{
	display: flex;
	flex-wrap: wrap;
}

#product-list a{
	flex: 0 0 100%;
	font-weight: bold;
	text-transform: uppercase;
	background: #eee;
	padding: 11px 22px;
	margin: 3px 0;
	transition: all .3s ease;
	color: #000;
}

#product-list a:hover,
#product-list a.active{
	background: #659cd2;
	color: #000;
}

.product .quote-form{
	margin-top: 22px;
	padding: 22px;
	background: #eee;
}

.product .quote-form h3{
	font-size: 1.5em;
	text-transform: uppercase;
	font-weight: bold;
	color: #2f4c9a;
}

.product .quote-form .nf-field-label{
	display: none;
}

.product .quote-form #ninja_forms_required_items, .nf-field-container{
	margin-bottom: 3px !important;
}

.product .quote-form .submit-wrap input{
	width: 100%;
	background: #659cd2;
	color: #fff;
	border-radius: 4px;
	text-align: center;
}

.product-content-wrap{
	flex: 0 0 70%;
}

.product-content{
	margin: 0 44px;
}

.product-content h2,
.product-content h3{
	color: #2f4c9a;
	font-weight: bold;
	text-transform: uppercase;
	margin-bottom: 11px;
}

.product-content h2{
	font-size: 2.5em !important;
}

.product-content{
	margin: 0 44px;
}

.product-images{
	display: flex;
	flex-wrap: wrap;
	margin: 22px 0;
}

.product-images img{
	width: 50%;
}

#protect.container{
	display: block;
	padding: 0 0 44px 0;
}

#protect h3{
	text-transform: uppercase;
	font-weight: 700;
	margin: 0 0 22px 0;
}

.protect-icons{
	display: flex;
	justify-content: center;
}

.protect-icons .icon{	
	border: 1px solid #444;
	padding: 11px;
	margin: 5px;
}

.protect-icons .icon img{	
	max-width: 100%;
}

.product-footer{
	position: relative;
}

.product-footer::after{
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	background: rgba(0, 0, 0, .50);
}

.product-footer h3{
	text-transform: uppercase;
	font-weight: 700;
	color: #fff;
	z-index: 20;
}

.product-footer h3 span{
	color: #659cd2;
}

/***** Menu ******/

/***** Contact *****/

#contact{
	background: #fff;
}

.title{
	height: 500px;
	display: flex;
	align-items: center;
	color: #fff;
}

.contact-info{
	margin: 44px 0;
	display: flex;
	flex-wrap: wrap;
}

.contact-items{
	display: flex;
	flex-wrap: wrap;
	margin: 44px 0;
}

.contact-item{
	display: flex;
	flex: 0 50%;
}

.contact-icon{
	font-size: 3em;
	flex: 0 50px;
	margin: 11px;
	color: #2f4c9a;
	text-align: center;
}

.contact-details,
.contact-form{
	flex: 0 50%;
	padding: 11px;
}

.contact h2{
	font-size: 2em;
	color: #2f4c9a;
}

.contact h3{
	font-weight: 900;
	text-transform: uppercase;
	color: #444;
	font-size: 4em;
}

.contact .social{
	border-bottom: 3px solid #2f4c9a;
	margin: 0 0 22px 0;
	padding: 0 0 22px 0;
	display: flex;
	justify-content: flex-start;
}

.contact .social h4{
	text-transform: uppercase;
}

.contact-social a{
	background: #2f4c9a;
	border-radius: 100%;
	width: 50px;
	height: 50px;
	color: #fff;
	font-size: 1.5em;
	display: inline-block;
	text-align: center;
}

.contact-social a i{
	margin-top: 12px;
}

.contact-map iframe{
   margin-bottom: -6px;
}

.contact-form .nf-field-label{
	display: none;
}

.contact-form input,
.contact-form textarea{
	border: 1px solid #2f4c9a !important;
}

.contact-form h4{
	text-transform: uppercase;
}

.contact-form .form-btn-wrap{
	text-align: center;
}

.contact-form .form-btn-wrap{
	text-align: center;
}

.contact-form .form-btn{
	background: #2f4c9a !important;
	text-transform: uppercase;
	font-weight: bold;
}

.map{
	width: 100%;
}

/***** Footer *****/

#footer{
	overflow: hidden;
	color: #fff;
	background: #33312d;
	width: 100%;
	font-size: 15px !important;
	padding: 22px;
}

#footer h3,
#footer h4{
	text-transform: uppercase;
	padding: 0;
	margin: 0;
	line-height: 1em;
}

#footer h3{
	font-size: 3em;
	font-weight: 700;
}

#footer h4{
	font-size: 2em;
	color: #03a7e6;
}

#footer p{
	line-height: 1.5em;
	margin-top: 22px;
}

.footer-content{
	display: flex;
}

.footer-item.about{
	flex: 0 0 50%;
}

.footer-item.hours span{
	width: 40px;
	display: inline-block;
}

.footer-item ul li{
	margin: 0;
}

#footer ul {
  list-style: none;
  padding: 0;
}

#footer ul a{
  list-style: none;
  padding: 0;
  font-weight: bold;
}

.quick-links ul li:before,
.products ul li:before {
  content: '✓';
  margin-right: 11px;
}

#footer .footer-title{
	content: "";
	color: #fff;
	margin-bottom: 60px;
	font-size: 18px !important;
	font-weight: 600;
	text-transform: uppercase;
	position: relative;
}

#footer .footer-title::after{
	content: "";
  width: 50px;
  height: 3px;
  bottom: -15px;
  left: 0;
  position: absolute;
  z-index: 1;
  background: #e1fe00;
}

#footer a{
	color: #03a7e6;
	text-decoration: none;
	transition: all .3s ease;
}

#footer a:hover{
	color: #fff;
}

.footer-item{

}

.footer-social a{
	color: #1d428a !important;
}

.footer-social a:hover{
	color: #e1fe00 !important;
}

.footer-content{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.footer-contact{
}

.footer-contact-sub .contact-icon{
	font-size: 2em;
	margin: 0 11px 11px 0;
}

.misc-footer a i{
	color: #1d428a;
	margin-top: 14px;
}

.scroll-up{
	position: fixed;
	bottom:  30px;
	right:  30px;
	z-index: 10;
	color:  #000;
	cursor: pointer;
	transition: all .3s ease;
	visibility: hidden;
	opacity: 0;
}

.scroll-up:hover{
	color: #d31d29;;
	bottom: 35px;
}

.scroll-up.show{
	visibility: visible;
	opacity: 1;
}

.nf-response-msg{
	padding: 30px;
	margin: 30px 0;
	text-align: center;
	border: dashed 5px #37c6f3;
	border-radius: 25px;
}

/***** Mobile Menu *****/

.mobile-menu-icon,
.mobile-header .logo{
	position: fixed;
	top: 0;
	z-index: 100;
}

.mobile-contact{
	padding: 5px 0;
	background: #d31d29;
	z-index: 300;
	position: fixed;
	top: 0;
	width: 100%;
}

.mobile-header a{
	text-decoration: none;
	font-weight: bold;
	color: #fff;
	margin-right: 5px;
}

.mobile-menu-icon{
	color: #fff;
	padding: 10px 0 0 15px;
	margin-top: 30px;
	z-index: 999;
}

.mobile-menu{
	z-index: 200;
}

.mobile-header,
.mobile-contact,
.mobile-header .logo{
	z-index: 300;
}

.mobile-header .logo{
	background-color: #fff;
	width: 100%;
	height: 62px;
	margin-top: 35px;
	text-align: center;	
	box-shadow: 0px 3px 10px #000;
	border-top: 3px solid #c5ffac;
	background: url(/wp-content/uploads/2022/08/pattern-red-lt-min.jpg)
}

.mobile-header .logo a{
	padding: 5px;
	display: inline-block;
	font-size: 1.2em;
}

.mobile-header .logo a img{
	height: auto;
	width: 120px;
	position: absolute;
	top: 10px;
	left: 50%;
	margin-left: -60px;
}

.mobile-menu{
	position: fixed;
	top: 0;
	width: 100%;
	background:	#fff;
	overflow: hidden;
}

.mobile-menu.closed{
	height: 0;
}

.mobile-menu.open{
	height: 100vh;
	overflow-y: scroll;
	background: #c5ffac;
	background-image: url(/wp-content/uploads/2022/05/pattern-ltgreen.jpg);
}

.mobile-menu ul{
	list-style: none;
	padding: 96px 0 20px 0;
}

.mobile-menu li{
	width: 100%;
	text-align: left;
	margin: 0;
}

.mobile-menu li:first-child{
	border-top: 1px dotted #000;
}

.mobile-menu li a{
	padding: 15px 30px;
	font-size: 2em;
	border-bottom: 1px dotted #000;
	display: inline-block;
	width: 100%;
	color: #000;
	text-decoration: none;
}

.mobile-menu ul ul{
	padding: 0;
}

.mobile-menu ul ul li{
	font-size: .7em;
	background: #fff;
}

.mobile-menu ul ul li:first-child{
	border-top: none;
}

.mobile-menu ul ul li a{
	padding: 10px 45px;
}

.home-about-image img,
.wp-block-image img{
	max-width: 100%;
	height: auto;
}

/***** Responsive *****/


@media (max-width: 1499px){

	.home-sections{
		display: block;
	}

	.section-image,
	.section-content{
		flex: 0 0 100%;
	}

	.section-content{
			padding: 22px;
	}

	.main-quote{
		margin-left: 0;
	}

	.topper .clear{
		display: none;
	}

}

@media (max-width: 1199px){

	.about-item{
		padding: 30px 0;
	}

	.scroll.on .menu-static .logo img{
		max-width: 130px;
	}

	.desktop-header .menu-item a{
		padding: 17px 10px 5px 10px;
	}

	.desktop-menu ul li{
		margin-right: 5px;
	}

	.topper .clear{
		display: none;
	}

	.services .container{
		flex-wrap: wrap;
	}

	.service-item{
		flex: 50%;
		margin-bottom: 22px;
	}

}

@media (max-width: 991px){

	.about-item{
		padding: 10px 0;
	}

	.about-item h2{
		font-size: 1.2em !important;
	}

	.scroll.on .menu-static .logo img{
		max-width: 130px;
	}

	.container{
		width: 100%;
		max-width: none;
	}

	.main-quote{
		margin-left: 0;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.carousel-control-prev,
	.carousel-control-next{
		display: none;
	}

	.desktop-menu ul li{
		margin-right: 0px;
		font-size: 0.75em;
	}
	.contact-details, .contact-form{
		flex: 0 0 100%;
	}

	.topper .clear{
		display: none;
	}

	.product-item{
		flex: 0 0 50%;
	}

	.faq .container{
		display: block;
		padding: 0;
		width: 100%;
	}

	.faq-item{
		margin: 0;
		width: 100%;
		padding: 0 22px;
	}

	.faq-img{
		display: none;
	}

	.footer-content{
		justify-content: center;
	}

	.footer-item,
	.footer-item.about{
		flex: 0 0 100%;
	}

}

@media (max-width: 768px){

	.main-nav{
		display: block;
		padding: 11px;
	}

	.logo-long,
	.desktop{
		width: 100%;
		display: block;
		text-align: center;
	}

	.main-quote{
		margin-left: 0;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.nav-items{
		text-align: center;
		display: flex;
		justify-content: center;
		margin: 11px 0 0 0;
	}

	.home-sections{
		display: block;
	}

	#flavors .flavor{
		flex: 0 0 50%;
	}

	.ice-cream-item{
		flex: 0 0 50%;
		padding: 0 11px;
	}

	.snack-item{
		flex: 0 0 50%;
	}

	.section-image,
	.section-content{
		width: 100%;
	}


	.section-content{
		padding: 30px 0;
	}

	.footer-content{
		justify-content: center;
		margin: 60px 22px;
	}

	.footer-section{
		flex: 0 0 50%;
	}

	.copyright,
	.design-by{
		width: 100%;
		text-align: center;
	}

	.desktop.main-quote{
		display: none;
	}

	.jobsite{
		display: block;
	}	

	.service-item{
		flex: 100%;
	}


	.product-item{
		flex: 0 0 100%;
	}

}

@media (max-width: 575px){

	.desktop .nav-items ul.top-level-items{
		display: block;
	}

	.desktop .nav-items ul li{
		border: 0;
	}

	.desktop .sub-nav-items{
		visibility: visible;
		opacity: 1;
		position: relative;
		top: 0;
		left: 0;
		margin: 22px 0 0 0;
	}

	.nav-icon{
		color: #fff;
		position: absolute;
		left: 0;
		top: 11px;
		margin-lefT: 22px;
		height: 24px;
		padding: 5px;
	}

	.nav-icon span{
		margin-left: 5px;
	}

	.nav-items.closed{
		display: none;
	}

	.nav-items.open{
		display: flex;
		margin-top: 0;
	}

	.prods:hover .sub-nav-items{
		margin-top: 22px;
	}

	.prods{
		padding-bottom: 0 !important;
	}

	.ice-menu-item{
		width: 100%;
	}

	.footer-contact-info .contact_item{
		text-align: center;
	}

	.page-content{
		margin-top: 0;
	}

	#flavors .flavor{
		flex: 0 0 100%;
	}

	.footer-content{
		margin: 60px 0;
	}

}