html,body{
	
	font-family: verdana, arial, helvetica, sans-serif;
	scroll-behavior:smooth !important;
	margin:0;
	position:relative;
	line-height:150%;
	
}
#dropdownNav{
	display:none;
}

body{
	display:flex;
	align-items:center;
	flex-direction:column;
	min-height:100vh;
	font-size:100%;
}
/* HEADER  */
#head{
	width:100%;
	min-height:20vh;
}
.fixed{
	position:fixed;
	top:0;
	height:auto !important;
	transition:all .5s ease-in;
}
.fixed #logo{
	display:none;
}
.fixed #nav{
	background-color:rgba(211,211,211,.5)
}
.fixed + #main{
	padding-top:200px;
}
.fixed #topPage{
	visibility:visible;
	width:200px;
	height:100%;
}
#logo{
	display:flex;
	flex-direction:row;
	align-items:center;
	justify-content:center;
	min-height:10vh;
}
#topPage{
	visibility:hidden;
}
#navLine{
	display:flex;
	flex-direction:row;
	background-color:gray;
	justify-content:space-around;
}
#navLine img{
	height:75px;
}
#nav{
	display:flex;
	flex-direction:row;
	width:100%;
	max-height:75px;
	background-color:lightgray;
}
#inlineNav{
	display:inline-flex;
	width:100%;
	margin:0;
	padding:0;
	justify-content:center;
	list-style-type:none;
}
ul a{
	text-decoration:none;
	color:white;
	list-style-type:none;
}
li:last-child{
	border-right:none;
}
.navList{
	margin:0;
	font-size:1em;
	width:150px;
	height:75px;
	text-align:center;
	border-right:1px solid #a62a2a;
	transition: background-color .25s ease;
	background-color:lightgray;
}
.navList a{
	display:flex;
	margin:0;
	justify-content:center;
	align-items:center;
	text-decoration:none;
	color:black;
	font-weight:bold;
	height:100%;
}
.current{
	background-color:#a62a2a;

}
.current a{
	color:white;
}
#dropNav{
	display:inline-flex;
	width:100%;
	margin:0;
	padding:0;
	justify-content:center;
	list-style-type:none;
	background-color:red;
}
.subList{

	margin:auto 0px;
	padding:1% 5%;
	text-align:center;
}
.navList:hover{
	background-color:#a62a2a;
	color:white;
	transition: background-color .5s ease;
}
.navList:hover a{
	background-color:#a62a2a;
	color:white;
	transition: color .25s ease;
}

.prodNav div label{
	display:none;
	
}
.prodNav div{
	height:100%;
}
.prodNav div input{
	display:none;		
}
.faqNav:hover .dropdown{
	display:flex;
	background-color:#a62a2a;
	height:300px;
	visibility:visible;
	opacity:1;
	transition:all .5s ease;
	
}
.dropdown{
	display:flex;
	visibility:hidden;
	opacity:0;
	height:0;
	flex-direction:column;
	padding:0;
	top:-10px;
	left:-1px;
	position:relative;
	width:250px;
	transition:all .5s ease;
}
.dropdown a:hover{
	background-color:#731D1D;
}
.dropdown li{
	border-right:0;
	height:50px;
	list-style-type:none;
}
.onHover{
	display:none;
	background-color:green;
	width:50px;
}
.subNav{
	display:block;
	margin:0;
}

/*  MAIN CONTENT */
#main{
	width:100%;
	display:flex;
	flex-direction:column;
	align-items:center;
	margin:0 auto;
	min-height:70vh;
	margin-bottom:5%;
}
h1{
	color:#a62a2a;
	text-align:center;
	font-size:2em;
}
#home{
	width:100%;
	display:flex;
	flex-direction:column;
	align-items:center;
	justify-content:space-between;
	min-height:80vh;
}
#title{
	text-align:center;

	font-size:1.5em;

}
#title h2{
	margin-bottom:10px;
	font-size:2em;
	color:black;
	
}
#title h1{
	font-size:1.5em;
	color:black;
}
#title h3{
	font-size:.8em;
	margin-top:0;
}
.sectionHeader{
	width:70%;
}
/* INTRO  */
#intro{
	width:60%;
}
#intro p{
	text-align:center;
}

/*  PRODUCTS */
#products{
	display:flex;
	flex-direction:row;
	justify-content:space-around;
	margin:0 40%;
	width:100%;
	margin-bottom:50px;

}
#products a{
	text-decoration:none;
	color:black;
}

#E-100:hover > #modelDescriptions #specSheet table tbody #E-100tbl{
	background-color:#a62a2a;
	color:black;
}
.activeTable{
	background-color:#a62a2a;
	color:white;
	box-shadow:0px 0px 20px black;
}

.boxContainer{
	display:flex;
	flex-direction:column;
	justify-content:space-between;
	width:350px;
	background-color:white;
	box-shadow:5px 4px 8px 0 rgba(0, 0, 0, 0.3), -5px 6px 20px 0 rgba(0, 0, 0, 0.3)
}
.boxContainer:hover{
	opacity:.8;
}
.boxContainer ul{
	list-style-type:none;
	text-align:center;
	padding-left:0;
	margin-top:0;
}
.productImage{
	width:275px;
	height:225px;
	margin:25px auto;
}
.productTitle{
	font-size:1.5em;
	border-top:1px solid black;
	border-bottom:1px solid black;
	margin-top:0;
	text-align:center;
}
.productButton{
	background-color:#a62a2a;
	min-width:150px;
	padding:10px;
	text-align:center;
	color:white;
	font-weight:bold;
	height:50px;
}
.productButton a{
	display:flex;
	align-items:center;
	justify-content:center;
	text-decoration:none;
	color:white;
	height:50px;
}
.productButton:hover{
	box-shadow: 0 0 10px black;
}
/* PRODUCT FIXED NAV */
#pageNav{
	display:flex;
	left: 2%;
	height:100%;
	top:100px;
	background-color:red;
}
#blockNav {
	padding:0;
	list-style-type:none;
	color:black;
}

.blnavList{
	padding:10px 0;
	font-size:1em;
	width:100px;
	text-align:center;
	border-left:1px solid black;
	border-bottom:1px solid black;
	
	list-style-type:none;
}
.blnavList a{
	text-decoration:none;
	color:black;
}
.prodNav:hover .bldropdown{
	display:flex;
	padding-left:40px;
	height:130px;
	visibility:visible;
	opacity:1;
	transition:height .5s ease;
	
}

.faqNav:hover .bldropdown{
	display:flex;
	padding-left:40px;
	border-bottom:1px solid black;
	height:130px;
	visibility:visible;
	opacity:1;
	transition:height .5s ease;
	
}
.bldropdown{
	display:flex;
	visibility:hidden;
	padding-left:40px;
	opacity:0;
	height:0;
	flex-direction:column;
	padding:0;
	padding-top:10px;
	width:75px;
	transition:all .5s ease;
}
.bldropdown li{
	padding-top:10px;
	border-right:0;
	border-bottom:1px solid black;
}
.bldropdownItem a{
	width:100%;
	height:200px;
	text-decoration:none;
}
#info{
	display:flex;
	width:100%;
	justify-content:space-between;
}
#modelDesc{
	margin-left:50px;
	flex-grow:2;
	display:flex;
	flex-direction:column;
}
#modelLinks{
	display:flex;
	justify-content:space-around;
	width:100%;
	margin-top:20px;
}
#modelLinks > div{
	background-color:lightgray;
	vertical-align:middle;
	width:35%;
	height:50px;
	text-align:center;
	border:1px solid black;
	
}
#modelLinks > div:hover{
	background-color:#a62a2a;
	vertical-align:middle;
	width:35%;
	height:50px;
	text-align:center;
	border:1px solid black;
	
}
#modelLinks > div a{
	display:flex;
	align-items:center;
	justify-content:center;
	height:100%;
	text-align:center;
	text-decoration:none;
	color:black;
}
#info p{
	width:80%;
	align-self:center;
	margin-top:0;
}

#info > div:first-child{
	display:flex;
	flex-direction:column;
	justify-content:space-between;
	height:500px;
	
	width:100%;
}
.slideshow{
	height:75% !important;
}

#imageHolder{
	position:relative;
	align-self:center;
	height:100%;
	top:0;
	left:0;
	max-height:90%;
	z-index:-1;
	margin-bottom:15px;
	display:flex;
	flex-direction:column;
	
}
#info div img{
	width:auto;
}

#info > p{
	margin-top:50px;
}
#slide{
	text-align:center;
	height:30%;
	padding-top:10px;
}
#slide img{
	cursor:pointer;
}
.imageSelector{
	width:100px !important;
	height:100px !important;
	opacity:0.5;
	z-index:-1;
}
.imageSelector:hover{
	opacity:1;
}
.currentSlide{
	opacity:1;
}
#slide button{
	width:20px;
	height:20px;
	margin:0;
	border:none;
	background-color:rgba(0,0,0,.3);
}
#slide button:hover{
	background-color:rgba(0,0,0,.7);
}
.visiblePic{
	position:relative;
	max-width:100%;
	top:0;
	left:0;
	height:auto;
	max-height:100%;
	opacity:1;
	transition:opacity 2s ease;
}
.hiddenPic{
	position:absolute;
	top:0;
	left:0;
	height:0;
	opacity:0;
	transition:opacity 2s ease;
}
#spec{
}

#modelsContainer{
	display:flex;
	flex-direction:row;
	justify-content:center;
	margin-top:5%;
	margin-bottom:5%;
	width:100%;
}
.space{
	justify-content:space-around !important;
}
#models{
	display:flex;
	width:400px;
	justify-content:space-between;
	flex-wrap:wrap;
	
	
}
tbody{
	width:80%;
}
#modelDescriptions{
	display:flex;
	flex-direction:column;
	align-items:center;

	width:60%;
}
#modelTitle{
	width:100%;
	text-align:center;
	
}
#modelTitle h3{
	margin:0;
	color:black;
}
#modelImages{
	position:relative;
	display:flex;
}
#content{
	display:flex;
	flex-direction:column;
	justify-content:space-between;
	align-items:center;
	width:70%;
	height:100%;
	margin-bottom:20px;
}
.modelHolder{
	display:flex;
	flex:1 0 30%;
	width:250px;
	flex-direction:column;
	justify-content:center;
	align-items:center;
	border:1px solid black;
	height:50px;
	text-align:center;
	background-color:lightgray;
	margin-bottom:25px;
	margin-right:25px;
	box-shadow:5px 5px 25px lightgrey;
	
}
.modelHolder:hover{
	background-color:#a62a2a;
	color:white;
}

.bottom{
	margin-top:auto;
	margin-right:auto;
	color:gray;
}

#optionalEqp{
	display:flex;
	width:100%;
	flex-wrap:wrap;
}
.option{
	flex: 0 0 % !important;
}
.modelHolder div{
	font-size:.8em;
}
.modelHolder a{
	display:flex;
	justify-content:center;
	align-items:center;
	height:100%;
	width:100%;
	color:black;
	text-decoration:none;
}


.featureTitle{
	width:100%;
}

.featureTitle h3{
	padding-bottom:10px;
	border-bottom:2px solid #a62a2a;
}
/* Model Site */

.modelContainer{
	display:flex;
	flex-direction:row;
	flex-wrap:wrap;
	width:80%;
}

.modelHeader{
	flex: 1 0 100%;
	text-align:center;
}
.modelImage{
	width:30%;
}
.modelImage img{
	width:100%;
	height:auto;
}
.specifications{
	display:flex;
	width:70%;
	flex-direction:row;
	justify-content:space-around;
}
.columnItems{
	display:flex;
	flex-direction:column;
}
.specifications div ul{
	list-style-type:none;
	padding-left:0;
}
.specifications div ul li{
	padding:10px 0;
	font-size:.8em;
}

/* FEATURES */
.mainItem{
	color:#a62a2a;
	font-weight:bold;
	border-bottom:2px solid rgba(139,0,0,.6);
}
.subItem{
	margin-left:10%;
}
.vl{
	border:1px solid darkred;
	position:absolute;
	left:49%;
	height:100%;
	opacity:.3;
}
.features div{
	padding-top:10px;
}
.features{
	
	display:flex;
	flex-direction:row;
	padding-bottom:20px;

}
.features div:first-child{
	margin-right:50px;
}
 /* CONTACT */
 
#contactForm{
	display:flex;
	flex-direction:column;
	
}
.formInput{
	margin-top:10px;
	padding:5px;
}
.formComments{
	height:100px;
}
#contactInfo{
	display:flex;
	flex-direction:row;
	justify-content:space-between;
	border-bottom:1px solid black;
}
#phone{
}
#phone h4,#address h4{
	color:#a62a2a;
	border-bottom:1px solid black;
}

/* Full Model Desc */
.modelFull{
	display:flex;
	flex-direction:column;
}
.modelDescription{
	display:flex;
	flex-direction:row;
}

/* Questions */
.question{
	color:#a62a2a;
	display:flex;
	font-weight:bold;
	font-size:1.5em;
	justify-content:space-between;
	padding:10px 0;
	cursor: pointer;
	transition:all .1s ease-in;
	border-bottom: 3px solid #a62a2a;
}
.question:hover{
	#border-bottom: 5px solid #a62a2a;
	color:white;
	background-color:#a62a2a;
	transition:all .1s ease-in;
}
#methods li{
	margin-bottom:20px;
}
input[name=hidden]{
	display:none;
}
#whyEvaporators,#industriesApplications,#methodOperation,#QuestionOperation,#offer{
	max-height:0;
	overflow:hidden;
	width:60%;
	transition:all 1s ease;
}

#industriesApplications{
	width:100%;
	flex-direction:row !important;
	flex-wrap:wrap;
}
.questionHeader{
	flex-direction:column;
}
.questionContent{
	display:flex;
	flex-wrap:wrap;
	
	flex-direction:row;
}
.questionContent div{
	flex:1 0 30%;
}
.questionContent h5{
	border-bottom: 1px solid black;
}
.questionContent ul{
	list-style-type:none;
	padding:0;
}
.questionContent > ul{
	display:flex;
	flex-wrap:wrap;
}
.questionContent > ul li{
	flex:1 0 25%;
}

.questionCont{
	display:flex;
	flex-direction:column;
	width:60%;
}
.questionCont h4{
	color:#a62a2a;
	margin-bottom:0;
}
#whyEvap[type=checkbox]:checked ~ label .question,#indApp[type=checkbox]:checked ~ label .question,#methodOp[type=checkbox]:checked ~ label .question,#questionnaire[type=checkbox]:checked ~ label .question,#freeSample[type=checkbox]:checked ~ label .question {
	background-color:#a62a2a;
	color:white;
	transition:all .5s ease-in
}
.question:after{
	font-size:1.8em;
}
#whyEvap[type=checkbox]:checked ~ #whyEvaporators{
	display:flex;
	flex-direction:column;
	max-height:2000px;
	transition:all .25s ease-in;
}
#indApp[type=checkbox]:checked ~ #industriesApplications{
	display:flex;
	flex-direction:column;
	max-height:5000px;
	transition:all .25s ease-in;
}
#methodOp[type=checkbox]:checked ~ #methodOperation{
	display:flex;
	flex-direction:column;
	max-height:5000px;
	transition:all .25s ease-in;
}
#questionnaire[type=checkbox]:checked ~ #QuestionOperation{
	display:flex;
	flex-direction:column;
	max-height:5000px;
	width:100%;
	transition:all .25s ease-in;
}
#freeSample[type=checkbox]:checked ~ #offer{
	display:flex;
	flex-direction:column;
	max-height:5000px;
	width:100%;
	transition:all .25s ease-in;
}
.nestedInput{
	width:80% !important
}
.freeSampleOpt{
	display:flex;
	flex-direction:column;
}
#QuestionOperation ol li{
	padding-bottom:20px;
}
#QuestionOperation input{
	margin:20px;
}
/* FOOTER */

footer{
	position:relative;
	min-height:10vh;
	width:100%;
	bottom:0;
	text-align:center;
	color:white;
	background-color: #a62a2a;
}
#footerNav{
	display:flex;
	justify-content:center;
	margin-top:20px;
	margin-bottom:10px;
}
#footerNav a{
	color:white;
	padding:0 10px;
	border-right:1px solid white;
	text-decoration:none;
}
#footerNav a:last-child{
	border:none;
}

.pdfLink{
	background-color:#a62a2a;
	color:white;
	width:50%;
}
.pdfLink a{
	display:flex;
	color:white;
}
tr:first-child{
	background-color:#a62a2a;
	color:white;
}
.oddTM{
	width:50% !important;
	align-self:center;
	height:25% !important;
}
i{
	font-size:0.8em;
	line-height:100%;
}
.aboutImg{
	max-width:1000px;
	max-height:400px;
}
.singleImg{
	height:70%;
}
.recoveryImg{
	float:left;
}
#imageHolder .singleImg:last-child{
	width:75%;
	height:auto;
	align-self:center;
}

.contactInfo{
	border-top:5px solid #a62a2a;
}

#privacyPolicy{
	width:80%;
}

.privacypolicyLink{
	color:purple;
}
#formrows{
	display:flex;
	flex-direction:column;
}
#formrows *{
	display:flex;
}
.sitemap a{
	color:blue;
}
.sitemap li{
	padding:10px 0;
}
@media screen and (min-width:1100px){
	.prodNav:hover .dropdown{
	display:flex;
	background-color:#a62a2a;
	height:300px;
	visibility:visible;
	opacity:1;
	transition:all .5s ease;
	
}
}
@-moz-document url-prefix() {
	.isSlide{
		height:auto !important;
	}
}
@media screen and (max-width:1400px) and (-ms-high-contrast: none) and (-ms-high-contrast: active){
	#info{
		display:flex !important;
	}
	#info > div:first-child{
		margin-left:auto !important;
		margin-right:auto !important;
	}

}
@media screen and (max-width:1400px), (-ms-high-contrast: none), (-ms-high-contrast: active){

	#info{
		display:block;
	}
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active){
    #nav #inlineNav{
		height:auto !important;
		z-index:2 !important;
	}
	.isSlide{
		margin-bottom:200px !important;
	}
	#info > div:first-child{
		display:block !important;
		width:300px;
		height:300px;
		float:left;
		margin-right:50px;
		margin-bottom:75px;
		
	}
	
	.singleImg{
		margin-bottom:10px;
	}
	#slide{
		margin-bottom:20px;
	}
	.oddTM{
		megin-bottom:20px;
	}

	#imageHolder{
		display:block !important;
		margin-left:auto !important;
		margin-right:auto !important;

	}
	#content p{
		align-self:stretch !important;
	}
	footer{
		width:99vw;
	}
	#main{
		margin-bottom:0% !important;
		
	}
	#content{
		margin-bottom:0px !important
	}
	
}

@media screen and (max-width:1400px){
	#info{
		flex-direction:column;
		align-items:center;
	}
	#modelDesc{
		width:80% !important;
	}
	#info p{
		width:100%;
		margin-top:20px;
	}
	.features{
		width:90%;
	}
	#info > div:first-child{
		margin-bottom:100px;
	}

}
h2{
	margin:0;
}
/* TABLET DESIGN  */
@media screen and (max-width:1500px) and (min-width:700px){
	#info div img{
		height:100%;
		
	}
	.singleImg{
		height:70% !important;
	}
	.visiblePic{
		align-self:center;
		width:auto !important;
	}
	.productButton,.productButton a{
		padding:10px;
	}

}
@media screen and (max-width:1100px){
	#modelsContainer{
		flex-direction:column;
		width:120%;
	}
	#imageHolder{
		width:70%;
	}
	#imageHolder .singleImg:last-child{
		width:50%;
		height:auto;
		align-self:center;
	}
	#nav{
		height:auto;
		flex-direction:column;

	}
	#nav #inlineNav{
		display:none;
		height:100%;
		justify-content:end;
		background-color:red;

	}
	#dropdownNav{
		height:100%;
	}
	#nav label {
	  position:relative;
	  display:flex;

	  min-height:2.25em;
	  font-size:1.1em;
	  margin:0;
	}
	#nav label:after {
	  position: absolute;
	  right: .25em;
	  content:"\2261";
	  font-size:1.8em;
	}
	input[name=hidden]{
		display:none;
	}
	#nav #dropdownNav[type=checkbox]:checked ~ #inlineNav{
		display:flex;
		position:relative;
		flex-direction:column;
		background-color:blue;
	}
	#nav #dropdownNav:checked ~ #inlineNav > li{
		width:100vw;
		text-align:left;
	}
	#nav #dropdownNav:checked ~ #inlineNav &:after{
		  position:absolute;
		  right:.25em;
		  content:"\203A";
	}
	#subDropNav[type=checkbox]:checked ~.dropdown{
		display:flex;
		background-color:#a62a2a;
		height:auto;
		width:100%;
		visibility:visible;
		opacity:1;
		transition:all .5s ease;
	}
	#subDropNav:checked ~.dropdown > li{
		width:100%;
		height:75px;
		text-align:left;
	}
	#subDropNav:checked ~.dropdown &:after{
		  position:absolute;
		  right:.25em;
		  content:"\203A";
	}
		.prodNav div > a{
		display:none;
	}
	.prodNav div label{
		display:flex;
		min-height:0 !important;
		margin:0;
		justify-content:center;
		text-decoration:none;
		color:black;
		font-weight:bold;
		border:none !important;
		height:100%;
		
	}
	#modelDesc{
		margin-left:0px;
	}
	#modelDescriptions{

		width:100%;
	}
	#products{
		display:block;
		margin-bottom:50px;
		width:auto;
	}

	.boxContainer{
		margin-bottom: 50px;
		height:auto;
		color:black;
	}
	.productImage{
			display:none;
	}
	.productTitle{
		height:auto;
		margin:0;
	}
	.productButton,.productButton a{
		padding:0;
	}
	#intro{
		width:80%;
		margin-top:5%;
	}

	.questionCont{
		display:flex;
		flex-direction:column;
		width:80%;
		
		
	}
	#info{
		flex-direction:column;
		align-items:center;
	}
	#modelDesc{
		width:80% !important;
	}
	#info p{
		width:100%;
		margin-top:20px;
	}
	#content{
		width:90%;
	}
	.features{
		flex-direction:column;
		padding-left:20px;
	}
	.formInput{
		height:50px;
		border:1px solid black;
		margin-bottom:20px;
	}
	.questionContent > ul li{
		flex: 1 0 50%;
		margin-bottom:20px;
	}	
	.questionContent div{
		flex: 1 0 100%;
	}
	.modelContainer,.specifications{
		flex-direction:column;
	}
	.modelImage,.specifications{
		width:100%;
		
	}
	#models{
		
		flex-wrap:nowrap;
		overflow-y:hidden;
		overflow-x:scroll;
		width:100%;

	}

	.questionContent li{
		text-align:center;
		
	}
	
	
}


/* MOBILE DESIGN */
@media screen and (max-width:800px){
/* mobile nav */

	.aboutImg{
		width:100%;
	}
	#contactForm div{
		width:50%;
	}
	#modelDescriptions{
		align-items:self-end;
	}
	#title h1{
		font-size:1em;
	}
	#title h2{
		font-size:1.3em;
	}
	#logo img:first-child{
		width:30%;
		height:85px;
	}
	#logo img:last-child{
		width:70%;
		height:85px;
	}
	#imageHolder{
		width:100%;
	}
	#main{
		width:90%;
	}


	.questionCont{
		display:flex;
		flex-direction:column;
		width:90%;
		
	}

	
	
}