/*
*		    ________      .___   
*	__  _  _\_____  \   __| _/
*	\ \/ \/ / _(__  <  / __ |
*	 \     / /       \/ /_/ |
*	  \/\_/ /______  /\____ |
*	               \/      \/
*
*	@author			Jacques Baars <j@w3d.co.za>
*
*	@notice			This is the property of W3Designs, W3Development, W3D,
*					it is illegal to use this source code without the required permission,
*					contact j@w3d.co.za for further advice or permissions.
*
*	@license		Copyright (c) 2016 W3Designs (PTY) Ltd. (http://www.w3d.co.za)
*/

/* ------------- CORE:ROOT ------------- */

:root{
	--color: #000;
	--color2: #fff;

	--bgColor: #084D8C;
	--bgColor2: #00386B;
	--bgColor3: #c30000;
	--bgColor4: #ECEEF0;
	
	--bgColorRGBA: rgba(8, 77, 140, 0.6);
	
	--linkColor: #222;
	--linkHoverColor: #0B79DD;
	
	--mobileMenuColor: #222;
	--mobileMenuBtnColor: #084D8C;
	--mobileMenuSelectedColor: #fff;
	--mobileMenuSelectedBgColor: #084D8C;
	--mobileMenuContentBgColor: #fff;
	
	--btnColor: #fff;
	--btnBgColor: #084D8C;
	--btnHoverColor: #fff;
	--btnBgHoverColor: #00386B;
	
	--dialogBgColor: #084D8C;
	--dialogBgColor2: #00386B;
	--dialogHeadingColor: #fff;
}

/* ------------- DOCUMENT ------------- */

/* HTML */
html{
	user-select: none;
}

/* Body */
body{
	background-color: var(--bgColor4);
	font-family: Archivo, Helvetica, Arial, sans-serif;
}

/* Headings */
h1, h2, h3{
	font-weight: 300;
	letter-spacing: 2px;
	font-family: Russo One, Helvetica, Arial, sans-serif;
}

/* Menu */
#menu-banner{}

	/* Top Banner */
	#menu-banner .top-banner{
		color: #222;
		border-bottom: 1px solid #ddd;
		background-color: var(--bgColor4);
	}
	
		#menu-banner .top-banner a{
			color: #222;
		}

	/* Menu */
	#menu-banner .menu-banner{
		background-color: #fff;
	}
	
		#menu-banner .menu-banner ul li a{
			color: #000;
			padding: 30px 25px;
		}
		
			#menu-banner .menu-banner ul li:hover > a{
				color: #fff;
				background-color: var(--bgColor2);
			}
		
			#menu-banner .menu-banner ul li.active-li > a{
				color: #fff;
				background-color: var(--bgColor);
			}
			
			#menu-banner .menu-banner ul ul{}
			
				#menu-banner .menu-banner ul ul li a{
					color: #000;
				}
			
				#menu-banner .menu-banner ul ul li.active-li > a{
					color: #fff;
					background-color: var(--bgColor);
				}
			
				#menu-banner .menu-banner ul ul li:hover > a{
					color: #fff;
					background-color: var(--bgColor2);
				}

	/* Search Banner */
	#menu-banner .search-banner{
		border-top: 1px solid #ddd;
		background-color: var(--bgColor4);
	}

/* Slider */
#slider{}

	/* Badge */
	#slider .badge{
		top: 20%;
		right: 2%;
		z-index: 1;
		width: 200px;
		position: absolute;
	}

	#slider .content{
		padding: 10% 0;
		position: relative;
	}

	#slider.home .content{
		padding: 9% 0;
	}

	#slider.home .content:before{
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		content: '';
		position: absolute;
		background-color: var(--bgColorRGBA);
	}

		#slider .content .block{
			width: 80%;
			margin: 0 auto;
			position: relative;
		}

/* Slogan */
#slogan{
	color: #000;
	background-color: #fff;
}

/* Sum-Div */
#sum-div{}

	/* Title */
	#sum-div .sum-row.cover .title,
	#sum-div .sum-row.video .title,
	#sum-div .sum-row.about .title,
	#sum-div .sum-row .sum-row-wrapper > .title{
		color: #222;
		position: relative;
		padding-bottom: 20px;
		font-size: var(--fontSize300);
	}

	#sum-div .sum-row.video .title,
	#sum-div .sum-row.heat .sum-row-wrapper > .title{
		color: #fff;
	}

		#sum-div .sum-row.cover .title:before,
		#sum-div .sum-row.video .title:before,
		#sum-div .sum-row.about .title:before,
		#sum-div .sum-row .sum-row-wrapper > .title:before{
			left: 25%;
			width: 25%;
			content: '';
			bottom: 3px;
			height: 5px;
			position: absolute;
			border-radius: 5px 0 0 5px;
			background-color: var(--bgColor);
		}

		#sum-div .sum-row.cover .title:after,
		#sum-div .sum-row.video .title:after,
		#sum-div .sum-row.about .title:after,
		#sum-div .sum-row .sum-row-wrapper > .title:after{
			right: 25%;
			width: 25%;
			content: '';
			bottom: 3px;
			height: 5px;
			position: absolute;
			border-radius: 0 5px 5px 0;
			background-color: var(--bgColor2);
		}
	
	/* Products */
	#sum-div .sum-row.products{
		background-color: var(--bgColor4);
	}

	/* Why Choose Us */
	#sum-div .sum-row.why-choose-us{
		background-color: #fff;
	}
	
		#sum-div .sum-row.why-choose-us .sum-column{
			text-align: center;
		}
		
			#sum-div .sum-row.why-choose-us .sum-column .title{
				color: #fff;
				padding: 10px;
				max-width: 80%;
				position: relative;
				margin: -20px auto 20px;
				background-color: var(--bgColor);
			}
		
			#sum-div .sum-row.why-choose-us .sum-column .text{
				color: #444;
				margin: 20px 0;
			}

	/* Cover */
	#sum-div .sum-row.cover{
		position: relative;
		background-image: url('../images/home/bg.jpg');
	}
	
		#sum-div .sum-row.cover:before{
			top: 0;
			left: 0;
			right: 0;
			bottom: 0;
			content: '';
			position: absolute;
			background-color: var(--bgColorRGBA);
		}

		#sum-div .sum-row.cover .sum-column.column-1{
			float: none;
			margin: 0 auto;
			background-color: rgba(255, 255, 255, 0.8);
		}

	/* Counts */
	#sum-div .sum-row.counts{
		background-color: var(--bgColor4);
	}
	
		#sum-div .sum-row.counts .load-circles{
			width: 80%;
			margin: 0 auto;
		}
	
			#sum-div .sum-row.counts .load-circles .circle{}
		
				#sum-div .sum-row.counts .load-circles .circle img{
					width: 80%;
					margin: 10%;
				}
			
			#sum-div .sum-row.counts .load-circles .circle .label{
				color: #fff;
				padding: 10px;
				max-width: 60%;
				position: relative;
				margin: 20px auto;
				background-color: var(--bgColor);
			}
			
				#sum-div .sum-row.counts .grid-box:nth-child(even) .circle .label{
					background-color: var(--bgColor3);
				}
				
			#sum-div .sum-row.counts .load-circles .circle .description{
				color: #444;
				margin: 20px 0 0;
			}

	/* Video */
	#sum-div .sum-row.video{
		position: relative;
		background-image: url('../images/home/bg.jpg');
	}
	
		#sum-div .sum-row.video:before{
			top: 0;
			left: 0;
			right: 0;
			bottom: 0;
			content: '';
			position: absolute;
			background-color: var(--bgColorRGBA);
		}

		#sum-div .sum-row.video .title{
			font-size: var(--fontSize200);
		}
	
			#sum-div .sum-row.video .sum-column{
				width: 100%;
			}

	/* About */
	#sum-div .sum-row.about{
		background-color: var(--bgColor2);
	}
		
		#sum-div .sum-row.about .sum-row-wrapper{
			padding: 0;
		}
	
		#sum-div .sum-row.about .dmsn{
			width: 100% !important;
		}
			
			#sum-div .sum-row.about .sum-column.column-1{
				padding: 6% 0;
			}
			
				#sum-div .sum-row.about .sum-column.column-1 .image{
					width: 50%;
					margin: 0 auto;
				}
			
			#sum-div .sum-row.about .sum-column.column-2{
				padding: 10% 15%;
				background-color: #fff;
			}

				#sum-div .sum-row.about .sum-column.column-2 .title{
					font-size: var(--fontSize300);
				}

	/* Heat */
	#sum-div .sum-row.heat{
		position: relative;
		background-image: url('../images/home/bg.jpg');
	}
	
		#sum-div .sum-row.heat:before{
			top: 0;
			left: 0;
			right: 0;
			bottom: 0;
			content: '';
			position: absolute;
			background-color: var(--bgColorRGBA);
		}

		#sum-div .sum-row.heat .location{
			position: relative;
			border-radius: 5px;
			background-color: rgba(255, 255, 255, 0.8);
			box-shadow: 0px 1px 2px rgba(0,0,0, 0.701961);
		}

/* Body */
#body{}

	/* Left & Right*/
	#left,
	#right{}

		/* Label Box */
		#left > .label-box,
		#right > .label-box{}
		
			#left > .label-box > .title,
			#right > .label-box > .title{
				color: #fff;
				padding: 3%;
				background-color: var(--bgColor2);

			}
		
			#left > .label-box > .content,
			#right > .label-box > .content{}
			
				/* Unit Calc */
				#left > .label-box > .content .unit-calc{
					padding: 10px;
				}

					#left > .label-box > .content .unit-calc .label{
						color: #555;
						text-align: center;
						margin-bottom: 20px;
					}

	/* Content */
	#content{}

		/* Spread */
		#content > .spread{}

			/* Title */
			#content > .spread > .title{
				padding: 0;
				color: #fff;
				background-color: #ddd;
			}
			
				#content > .spread > .title span{
					padding: 1% 2%;
					display: inline-block;
					background-color: var(--bgColor);
				}
			
				#content > .spread > .title a{
					color: #fff;
				}

			/* Data */
			#content > .spread > .data{}
				
				/* H3 */
				#content > .spread > .data h3{
					position: relative;
					padding-left: 30px;
					border-bottom: 1px dashed #ccc;
				}

					#content > .spread > .data h3:not(.sub):before{
						left: 0;
						top: 2px;
						width: 24px;
						content: '';
						height: 24px;
						position: absolute;
						
						background-image: url('../images/ui/favicon.png');
						background-repeat: no-repeat;
						background-size: 24px;
					}
			
				/* Image */
				#content > .spread > .data .image.boxed{
					padding: 10px;
					border: 1px solid #cecece;
					background-color: #f3f3f3;
				}

				/* Tick List */
				#content > .spread > .data .tick-list{
					color: #222;
					margin: 10px 0;
				}
					
				/* Logos */
				#content > .spread > .data .logos{
					padding: 10px;
					text-align: center;
				}

					#content > .spread > .data .logos img{
						width: auto;
						height: 35px;
					}
					
/* Unit Calculator */
#unit-calculator{}

	#unit-calculator h3{
		margin-bottom: 30px;
	}
	
	#unit-calculator .info{
		margin-bottom: 30px;
	}
	
	#unit-calculator .rooms{
		margin-bottom: 30px;
	}
	
		#unit-calculator .rooms .section:not(:last-child){
			margin-bottom: 20px;
		}
	
	#unit-calculator .buttons{
		padding-top: 30px;
		text-align: center;
		border-top: 1px dashed #ccc;
	}
	
		#unit-calculator .buttons .btn:first-child{
			margin-right: 10px;
		}
	
	#unit-calculator .results{}
	
		#unit-calculator .results .units{
			margin-bottom: 30px;
		}
		
			#unit-calculator .results .units .product{
				z-index: 99;
				position: relative;
				
				transition-duration: 0.3s;
				transition-property: box-shadow, transform;
			}

				#unit-calculator .results .units .product:hover, 
				#unit-calculator .results .units .product:focus, 
				#unit-calculator .results .units .product:active{
					z-index: 100;
					box-shadow: -4px 10px 46px -8px rgba(0,0,0,0.75);
				}
			
				#unit-calculator .results .units .product .image{}
				
				#unit-calculator .results .units .product .title{
					padding: 10px;
					text-align: center;
					font-weight: bold;
				}
		
		#unit-calculator .results .get-quote{}

/* Pages */
#pages{}

	#pages .group{}
	
		#pages .group .title{
			font-color: #444;
		}

	#pages .template.aircon-units{
		z-index: 99;
		padding: 10px;
		position: relative;
		border-radius: 10px;
		
		transition-duration: 0.3s;
		transition-property: box-shadow, transform;
	}

		#pages .template.aircon-units:hover{
			z-index: 100;
			transform: scale(1.05);
			transition: all 0.4s ease;
			box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);
		}

		#pages .template.aircon-units .image{}
		
			#pages .template.aircon-units .image .title{
				font-weight: bold;
				margin: 4% auto 6%;
				text-align: center;
				font-size: var(--fontSize120);
			}
		
		#pages .template.aircon-units .sub{
			width: 100%;
			color: #fff;
			border: none;
			margin: 0 auto;
			padding: 10px 0 5px;
			text-align: center;
			font-size: var(--fontSize90);
			background-color: var(--bgColor);
		}
		
		#pages .template.aircon-units .html{
			font-size: var(--fontSize80);
		}

/* Page Options */
#page-options{
	background-color: var(--bgColor);
}

	#page-options a{
		color: #fff;
	}

	#page-options .left:hover,
	#page-options .right:hover{
		background-color: var(--bgColor2);
	}

/* Footer */
#footer{
	color: #fff;
	background-color: var(--bgColor2);
}

	#footer .title{
		color: #fff;
	}

	#footer a{
		color: #ccc;
	}

		#footer a:hover{
			color: #fff;
		}

/* 1750px */		
@media screen and (max-width: 1750px){
	#menu-banner .menu-banner ul li a{
		padding: 28px 23px;
	}
}

/* 1650px */		
@media screen and (max-width: 1650px){
	#menu-banner .menu-banner ul li a{
		padding: 26px 21px;
	}
}

/* 1550px */		
@media screen and (max-width: 1550px){
	#menu-banner .menu-banner ul li a{
		padding: 26px 20px;
	}

	#sum-div .sum-row.about .sum-column.column-1{
		padding: 9% 0;
	}

	#sum-div .sum-row.about .sum-column.column-2{
		padding: 6% 10%;
	}
	
	#content > .spread > .data h3{
		padding: 5px 0 5px 28px;
	}

		#content > .spread > .data h3:before{
			top: 3px;
			width: 22px;
			height: 22px;
			
			background-size: 22px;
		}
}

/* 1380px */		
@media screen and (max-width: 1380px){
	#menu-banner .menu-banner ul li a{
		padding: 24px 18px;
	}

	#slider .badge{
		top: 15%;
		width: 180px;
	}
	
	#slider .content .block{
		width: 70%;
	}
	
	#sum-div .sum-row.counts .load-circles{
		width: 90%;
	}

	#sum-div .sum-row.about .sum-column.column-1{
		padding: 15% 0;
	}

	#sum-div .sum-row.about .sum-column.column-2{
		margin-top: 0;
		padding: 15% 10%;
	}
}

/* 1250px */		
@media screen and (max-width: 1250px){
	#menu-banner .menu-banner ul li a{
		padding: 22px 16px;
	}

	#slider .badge{
		width: 150px;
	}
}

/* 1100px */		
@media screen and (max-width: 1100px){
	#menu-banner .menu-banner ul li a{
		padding: 22px 14px;
	}

	#slider .badge{
		width: 130px;
	}
	
	#content > .spread > .data h3{
		padding: 5px 0 5px 25px;
	}

		#content > .spread > .data h3:before{
			top: 2px;
			width: 20px;
			height: 20px;
			
			background-size: 20px;
		}
}

/* 1024px */		
@media screen and (max-width: 1024px){
	#menu-banner .menu-banner ul li a{
		padding: 20px 12px;
	}

	#slider .badge{
		width: 110px;
	}
}

/* 900px */		
@media screen and (max-width: 900px){
	#menu-banner .menu-banner ul li a{
		padding: 18px 10px;
	}
	
	#slider .content .block{
		width: 60%;
	}
}

/* 600px */
@media screen and (max-width: 600px){
	#slider .badge{
		top: 10%;
		width: 100px;
	}
	
	#slider .content{
		padding: 20% 0;
	}
	
	#slider.home .content{
		padding: 20% 0;
	}
	
		#slider .content .block{
			width: 80%;
		}
	
	#sum-div .sum-row.why-choose-us .sum-column{
		width: 90%;
		margin-left: auto;
		margin-right: auto;
	}
	
	#sum-div .sum-row.counts .load-circles{
		width: 50%;
	}
	
		#sum-div .sum-row.counts .load-circles .circle{
			margin-top: 50px;
		}
	
	#sum-div .sum-row.video .sum-column{
		width: 90%;
		margin-left: auto;
		margin-right: auto;
	}
	
	#sum-div .sum-row.heat .sum-column{
		width: 80%;
		margin: 0 auto;
	}
	
	#unit-calculator .buttons .btn{
		display: block;
		padding-left: 0;
		padding-right: 0;
	}
	
	#unit-calculator .buttons .btn:first-child{
		margin: 0 0 10px;
	}
}