/* Browser Reset */
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,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	background: transparent;
	font-size: 100%;
	vertical-align: baseline;
}

body {
	line-height: 1;
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
	content: none;
}

blockquote {
	margin: 20px 0 30px;
	padding-left: 20px;
	border-left: 5px solid;
}

:focus {
	outline: 0;
}

ins {
	text-decoration: none;
}

del {
	text-decoration: line-through;
}

table {
	border-spacing: 0;
	border-collapse: collapse;
}

article,
aside,
footer,
header,
hgroup,
nav,
section {
	display: block;
}

/* Basic Styles */
/* Body */
body {
	color: #666;
	background-color: #fff;
	font-family: "Source Sans Pro", Arial, sans-serif;
	font-size: 14px;
	font-weight: 500;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	line-height: 1.7em;
}

/* header */
.fixed-header{
    position: fixed;
	z-index: 3;
	width: 100%;
	padding: 20px;
}

.fixed-header .logo-container{
    display: inline-block;
	width: 35%;
}
.fixed-header .logo-container #logo{
	width: 50%;
	display:block;
	left: 80px;
	position: relative;
}
.fixed-header .logo-container #logo-small{
	display:none;
	left: 80px;
	position: relative;
}

.fixed-header.smaller{
	background-color: #CD2626;
	height: 50px;
	opacity: .8;
}

.fixed-header.smaller .logo-container #logo{
	display:none;
}
.fixed-header.smaller .logo-container #logo-small{
	width: 150px;
	margin-left:10px;
	display:block;
}



/* Responsive Styles Small Only */

@media (max-width: 481px) {
	.fixed-header .logo-container #logo,.fixed-header .logo-container #logo-small{
		left: 5px;
	}
	.fixed-header .logo-container{
		width: 65%;
	}
	.fixed-header .logo-container #logo{
		width: 70%;
	}
}

/* anchors are off because of fixed header */
a.anchor {
    display: block;
    position: relative;
    top: -80px;
    visibility: hidden;
}

/* nav */
#top-navigation{
    position: absolute;
	top: 33px;
	right: 80px;
}

ul.nav li{
	display: inline;
	padding-right: 20px;
}

ul.nav li a{
	color: #fff;
	font-size: 20px;
	text-decoration: none;
}
.button {
	color: #fff;
    font-size: 20px;
    letter-spacing: 0;
    margin-top: 30px;
    background: transparent none repeat scroll 0 0;
    border: 2px solid #fff;
    border-radius: 3px;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.7em;
    padding: 0.1em .5em;
    position: relative;
    transition: all 0.2s ease 0s;
}
.button:hover{
	background-color: #fff;
    color: #CD2626;
    transition: 1s;
}

/* Mobile Menu */
#mobile-nav-menu {
	display: none;
}
#mobile-nav-menu .select-page img{
	width: 40px;
	float: right;
}

#mobile-nav-menu .closed .mobile-menu{
	display:none;
}

.mobile-menu a {
	color: #fff;
	text-decoration: none;
	font-size: 18px;
}

.mobile-menu {
    background-color: #616161;
    position: absolute;
    right: 0;
    top: 30px;
    width: 250px;
	border: 1px solid #fff;
}
.mobile-menu li{
	padding: 20px;
}

.mobile-menu-bar {
	display: block;
	position: relative;
	line-height: 0;
}

.mobile-nav .select_page {
	display: none;
}

/* Responsive Styles Small Only */



@media (max-width: 681px) {
	#mobile-nav-menu{
		top: 20px;
	}
	
	.fixed-header .logo-container #logo,.fixed-header .logo-container #logo-small{
		left: 30px;
	}
}


@media all and (max-width: 961px) {

	#mobile-nav-menu{
	    display: inline-block;
		top: 5px;
	}
	#top-menu-nav{
		display: none;
	}
}

/* slide titles */
.header-banner{
      width: 100%;
      height: 500px;
      margin: 0 auto;
}

#slides .overlay{
    position: absolute;
    display:block;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    background-color: #CD2626;
    opacity:.4;
    filter:alpha(opacity=.4);/*For IE6 - IE8*/
}

#slides .container {
  position: relative;
  width: 80%;
  max-width: 1500px;
  left: 90px;
  top: 40%;
  padding: 10px 20px;
}

#slides .slide-title{
	color: #fff;
	font-size:50px;
	line-height:50px;
	letter-spacing:-0.025em;
	font-weight:600;
	text-transform:uppercase;
	z-index:10;
    position: relative;
    left: -500px;
    transition: 1s;
	font-family: "Poppins", Arial, sans-serif;
}

#slides .slide-title.bottom{
	margin-bottom: 30px;
}

#slides .slide-description{
	color: #fff;
	font-size:30px;
	line-height:40px;
	letter-spacing:-0.025em;
	font-weight:200;
	text-transform:uppercase;
	margin-bottom: 30px;
    position: relative;
    right: -1200px;
    transition: 1s;
	font-family: "Poppins Light", Arial, sans-serif;
}

#slides .slide-description.not-bottom{
	margin-bottom: 0;
}

#slides .animate-in .slide-description{
    transition: 1s;
    right: 0;
}

#slides .animate-in .slide-title{
    transition: 1s;
    left: 0;
}


#slides .container a{
	color: #fff;
	font-size:16px;
	line-height:30px;
	text-transform:uppercase;
	border: 2px solid #fff;
	padding: 10px 15px;
	text-decoration: none;
}

#slides .container a:hover{
	background-color: #fff;
	color: #000;
    transition: 1s;
}


.slides-navigation i{
	font-size: 40px;
	color: #fff;
	padding: 20px;
}


@media (max-width: 480px) {
	.header-banner{
		  height: 300px;
	}
	
	#slides .slide-description{
		font-size:16px;
		line-height:20px;
	}
	
	#slides .slide-title{
		font-size:20px;
		line-height:22px;
	}
	
	#slides .container {
	  left: 30px;
	  top: 30%;
	  padding-left: 30px;
	}
}

/* center banners */
.center-banner, .center-div{
	width: 960px;
	margin: 0 auto;
	padding: 20px 15px;
	text-align: center;
}
@media (max-width: 1260px) {
	.center-banner, .center-div{
		width: 80%;
	}
}

/* services list */
#services{
	font-family: "Poppins Medium", Arial, sans-serif;
}
#services > div {
    width: 70%;
	margin: 20px auto;
    padding-top: 30px;
    padding-bottom: 30px;
}
#services div.line-break {
    width: 45%;
    border-bottom: 1px solid #616161;
	margin: 0 auto;
	padding-top: 20px;
}
#services h2{
    font-size: 20px;
    width: 80%;
    margin: 0 auto;
    color: #616161;
	font-weight: 500;
}
#services h2 span{
    font-weight: 600;
	font-style: italic;
}
#services h1{
    font-size: 20px;
    width: 80%;
    margin: 0 auto;
    color: #CD2626;
	text-transform: uppercase;
}
#services ul{
    columns: 3;
    -webkit-columns: 3;
    -moz-columns: 3;
    list-style-position: inside;//this is important addition;
	margin: 0 auto;
    width: 70%;
	padding-bottom: 30px;
}
#services ul li{
    text-align: center;
	padding: 5px;
}

#services ul img{
    width: 50%;
}

#services ul h3{
	text-transform: uppercase;
    color: #CD2626;
}

@media (max-width: 480px) {
	#services ul{
		columns: 1;
		-webkit-columns: 1;
		-moz-columns: 1;
	}
	#services ul li{
		display: block;
		width: 80%;
		margin: 0 auto;
	}
}
.red-banner{
	background-color:#CD2626;
	color:white;
	text-align:center;
}

/* full banners */
.full-banner{
	width: 100%;
	padding: 20px 0;
}
.full-banner.no-padding{
	padding: 0;
}
#product_bar{
	padding-left:2%;
	padding-right:2%;
}
#product_bar h2{
	margin-top:.5rem;
    font-size: 2rem;
	font-weight: 600;
	margin-bottom:.8rem;
}
#product_bar p{
    font-size: .8rem;
	font-weight: 400;
}

/* categories list */
#categories-list {
    margin:0 auto; /*center aligned*/
    padding:0;
    font-size:0; /* Remember to change it back to normal font size if have captions */
    list-style:none;
    background-color:#000;
}
#categories-list li {
    display: inline-block;
    /*display:inline;/*for IE6 - IE7*/
    width:10%;
    vertical-align:middle;
    box-sizing:border-box;
    margin:0;
    padding:0;
}
        
/* The wrapper for each item */
.list-cell {
    /*margin:12px;
    box-shadow:0 0 6px rgba(0,0,0,0.3);*/
    display:block;
    position: relative;
    overflow:hidden;
}
        
/* If have the image layer */
.list-img {
    display:block;
    width: 100%;
    height: auto;
    border:none;
    transform:scale(1);
    transition:all 1s;
}

#categories-list li:hover .list-img {
    transform:scale(1.05);
}
        
.list-overlay {
    position: absolute;
    display:block;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    background-color: #CD2626;
    opacity:0;
    filter:alpha(opacity=0);/*For IE6 - IE8*/
    transition:all 0.6s;
}
#categories-list li:hover .list-overlay {
    opacity:0.8;
}

.list-text {
    display:flex;
    padding:0 15px;
    box-sizing:border-box;
    position:absolute;
    left:0;
    width:100%;
    text-align:center;
    text-transform:uppercase;
    font-size:0.9rem;
    font-weight:600;
    font-family: 'Source Sans Pro', sans-serif;
    top:0;
    color:white;
    opacity:0;
    filter:alpha(opacity=0);/*For older IE*/
    transform:translateY(-20%);
    transition:all .5s;
	height:100%;
	align-items:center;
	justify-content:center;
}
#categories-list li:hover .list-text {
    transform:translateY(0px);
    opacity:0.9;
}

@media (max-width: 960px) {
	    #categories-list li {
        width:25%;
		}
    .list-text {
		font-size:1.2rem;
    }
}
@media (max-width: 550px) {
    #categories-list li {
        width:50%;
    }
    .list-text {
		font-size:1.5rem;
    }
	#categories-list{
	  display:flex;
	  flex-flow: column;
		flex-wrap:wrap;
		flex-direction:row;
	}
	
	#category-hvac{order:1;}
	#category-janitorial{order:2;}
	#category-lawn{order:3;}
	#category-lighting{order:4;}
	#category-plumbing{order:5;}
	#category-electrical{order:6;}
	#category-paint{order:7;}
	#category-tools{order:8;}
	#category-appliances{order:9;}
	#category-hardware{order:10;}
	#category-shop{order:11;}
	#category-pool{order:12;}
	#category-heaters{order:13;}
	#category-safety{order:14;}
	#category-window{order:15;}0
	#category-toilets{order:16;}
	#category-bath{order:17;}
	#category-kitchen{order:18;}
	#category-plumbingrepair{order:19;}
	#category-drain{order:20;}
}
.red-text{
	color:#CD2626;
	font-weight:900;
}
.grey-text{
	color:#666;
}
/* catalog */
#catalog > div{
	width: 45%;
	display: inline-block;
	vertical-align: middle;
	position: relative;
}
#catalog img{
	width: 80%;
}


#catalog a{
	color: #000;
	font-size: 50px;
	font-weight: 200;
	text-decoration: none;
	font-family: "Poppins Light", Arial, sans-serif;
}

#catalog a h3{
	font-weight: 600;
	margin-bottom: 10px;
	font-family: "Poppins SemiBold", Arial, sans-serif;
}
#catalog a > div{
    width: 60%;
    margin: 0 auto;
    text-align: left;
}

#catalog a > div h3::after{
	font-size: 50px;
    content: '\f105';
    font: normal normal normal 64px/1 FontAwesome;
	position: absolute;
	bottom: 10%;
	padding-left: 30px;
}

@media (max-width: 660px) {
	#catalog a{
		font-size:30px;
    }
	#catalog a > div h3::after{
		font-size: 30px;
		bottom: 25%;
	}
}

@media (max-width: 480px) {
	#catalog > div{
		width: 85%;
		display: block;
		margin: 0 auto;
	}
}
/* black banner */
.black-banner{
	color: #fff;
	background-color: #333333;
}

/* grey banner */
.grey-banner{
	color: #000;
	background-color: #C7C7C7;
}

/* dark grey banner */
.dark-grey-banner{
	color: #E8E8E8;
	background-color: #616161;
}

/* facts */
#facts li {
    display: inline-block;
	width: 25%;
	padding: 24px;
	vertical-align: top;
	text-align: center;
}

#facts li  div{
	text-align: justify;
}

#facts li img{
	width: 20%;
}

#facts li h3{
	text-transform: uppercase;
	font-size: 20px;
	margin: 20px 0;
}

@media (max-width: 660px) {
	#facts li {
		display: block;
		width: 85%;
	}

}

/* contact */

.contact_main_title {
	color: #000;
    font-size: 26px;
    padding-bottom: 16px;
	text-transform: uppercase;
	text-align: left;
	font-weight: 600;
}

.contact_form_label {
    display: none;
}
.contact_bottom_container {
    text-align: right;
}

.contact_form {
    margin-left: -3%;
    overflow:hidden;
}
.contact_field {
    float: left;
    margin-bottom: 3%;
    padding: 0 0 0 3%;
	width: 100%;
}
.contact_field_half {
    width: 44%;
}
.contact_field_last {
    float: right;
    width: 47%;
}

.contact_form p input, .contact_form p textarea {
    background-color: #E8E8E8;
    border: medium none;
    border-radius: 0;
    color: #31190d;
    font-size: 14px;
    padding: 16px;
    width: 100%;
	font-family: "Source Sans Pro", Arial, sans-serif;
}

.contact_form .contact_submit {
    color: #CD2626;
    font-size: 20px;
    letter-spacing: 0;
    margin-top: 30px;
    background: transparent none repeat scroll 0 0;
    border: 2px solid #CD2626;
    border-radius: 3px;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.7em;
    padding: 0.1em 3em;
    position: relative;
    transition: all 0.2s ease 0s;
	text-transform: uppercase;
}
.contact_form .contact_submit:hover{
	color: #fff;
	background-color: #CD2626;
    transition: 1s;
}
.contact_message {
    min-height: 150px;
}

@media (max-width: 660px) {
	.contact_field {
		clear:both;
	}
	.contact_field_half {
		width: 90%;
	}
	.contact_field_last {
		width: 90%;
		float: initial;
	}
	
	.contact_bottom_container {
		text-align: center;
	}
}

/* information */
#information.center-div {
    width: 1260px;
}

#information li {
    display: inline-block;
	width: 20%;
	padding-left: 20px;
	vertical-align: top;
	text-align: center;
	color: #9C9C9C;
}

#information li img{
	width: 20%;
	margin: 0 auto;
}


#information li a{
	color: #9C9C9C;
	text-decoration: none;
	margin: 0 auto;
}

#information li h4{
	font-weight: 200;
}

.bottom-logo-container img{
	width: 20%;
	margin-bottom: 40px;
}

@media (max-width: 1160px) {
	#information.center-div {
		width: 85%;
	}
	
	#information li {
		display: block;
		width: 80%;
		padding-left: 0;
		padding-bottom: 30px;
		margin: 0 auto;
	}
	
	.bottom-logo-container img{
		width: 40%;
	}
}
/* Footer */
#main-footer {
	background-color: #222;
}

#footer-bottom {
	padding: 5px 0 5px;
	background-color: #1f1f1f;
	background-color: rgba(0, 0, 0, 0.32);
}

#footer-bottom a {
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

#footer-info {
	color: #666;
	text-align: center;
}

#footer-info a {
	color: #666;
	font-weight: 700;
}

#footer-info a:hover {
	opacity: 0.7;
}

/* return to top */

#return-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
	background-color: #CD2626;
    width: 50px;
    height: 50px;
    display: block;
    text-decoration: none;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
    display: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
#return-to-top i {
    color: #fff;
    margin: 0;
    position: relative;
    left: 16px;
    top: 13px;
    font-size: 19px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
	opacity: .7;
}
#return-to-top:hover {
	opacity: .9;
}
#return-to-top:hover i {
    color: #fff;
    top: 5px;
}

/*** search page ***/
#search{
	position:relative;
	height: 60px;
}
.search-holder{
	text-align: center;
}
.search-container{
  width: 70%;
  margin: 0 auto;
  white-space: nowrap;
     padding-top: 8px;
	font-family: "Poppins Medium", Arial, sans-serif;
	font-weight: 500;
}
.search-container input#search_keyword{
  width: 80%;
  height: 40px;
  background: #fff;
  border: 1px solid #616161;
  font-size: 14pt;
  float: left;
  color: #4f5b66;
  padding-left: 15px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.search-container label{
  float: left;
     text-transform: uppercase;
     padding: 12px 20px 0px 0px;
    font-size: 20px;
  color: #CD2626;
     font-weight: 600;
    letter-spacing: 0.15em;
}
.search-container button.icon{
  -webkit-border-top-right-radius: 5px;
  -webkit-border-bottom-right-radius: 5px;
  -moz-border-radius-topright: 5px;
  -moz-border-radius-bottomright: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
 
  border: none;
  background: #CD2626;
  height: 44px;
  width: 50px;
  color: #e9e9e9;
  font-size: 14pt;
    outline: none;
    opacity: 1;
     margin-left: -1%;
	 float: left;
     cursor: pointer;
}
.search-container button.icon:hover{
  color: #fff;
}
.search-overlay{
    background: #e9e9e9;
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0.5;
	z-index: 2;
}
.search-overlay div{
      width: 50%;
    margin: 0 auto;
    text-align: center;
}
.search-overlay i{
    position:relative;
    top: 10px; 
     font-size: 30px;
}
.featherlight .featherlight-content{
	max-width: 50%;
}
@media (max-width: 1260px) {
		
	.search-container {
	  width: 90%;
	}
	.search-container input#search_keyword{
	  width: 70%;
	}
}

@media (max-width: 960px) {
	.featherlight .featherlight-content{
		max-width: 60%;
	}
		
}
@media (max-width: 690px) {
	.featherlight .featherlight-content{
		max-width: 70%;
	}
}
@media (max-width: 460px) {
	.featherlight .featherlight-content{
		max-width: 90%;
	}
	.search-container input#search_keyword{
	  font-size: 10pt;
		width: 85%;
	}
	.search-container label{
		display:none;
	}
	.search-container button.icon{
	  font-size: 10pt;
	  
     margin-left: -1%;
    float: unset;
	}
}