/*
*		    ________      .___   
*	__  _  _\_____  \   __| _/
*	\ \/ \/ / _(__  <  / __ |
*	 \     / /       \/ /_/ |
*	  \/\_/ /______  /\____ |
*	               \/      \/
*
*	@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: #009345;
	--bgColor2: #006838;
	--bgColor3: #6a6b6d;
	--bgColor4: #F6F6F6;
	--bgColor5: #D8D8D8;
	
	--linkColor: #000;
	--linkHoverColor: #006838;
	
	--mobileMenuColor: #000;
	--mobileMenuBtnColor: #009345;
	--mobileMenuSelectedColor: #fff;
	--mobileMenuSelectedBgColor: #009345;
	--mobileMenuContentBgColor: #fff;
	
	--btnColor: #fff;
	--btnBgColor: #009345;
	--btnHoverColor: #fff;
	--btnBgHoverColor: #006838;
	
	--dialogBgColor: #009345;
	--dialogBgColor2: #006838;
	--dialogHeadingColor: #fff;
}

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

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

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

/* Menu */
#menu-banner{}

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

	/* Menu Banner */
	#menu-banner .menu-banner{}

		/* Menu */
		#menu-banner .menu-banner ul li a{
			color: var(--color);
			padding: 24px 12px;
		}

			#menu-banner .menu-banner .right > ul > li.active-li > a{
				font-weight: bold;
			}

			#menu-banner .menu-banner .right > ul > li:hover > a{}

			#menu-banner .menu-banner .right > ul > li > a:after{
				width: 0;
				content: '';
				height: 2px;
				bottom: -5px;
				display: block;
				position: relative;
				background-color: var(--bgColor);
				transition: width 0.3s, left 0.3s;
			}

				#menu-banner .menu-banner .right > ul > li:hover > a:after,
				#menu-banner .menu-banner .right > ul > li.active-li > a:after{
					left: 10%;
					width: 80%;
				}

		#menu-banner .menu-banner ul ul{}

			#menu-banner .menu-banner ul ul li a{
				color: var(--color);
			}

				#menu-banner .menu-banner ul ul li:hover > a,
				#menu-banner .menu-banner ul ul li.active-li > a{
					background-color: var(--bgColor);
				}

					#menu-banner .menu-banner ul ul li:hover > a:after{
						left: 0;
						width: 50%;
						color: #ddd;
						transition: width 0.5s, right 0.5s;
					}
			
/* Slider */
#slider{}

	#slider .content{
		padding: 11% 0;
	}

		#slider .content .title{
			padding: 15px 0;
			margin-bottom: 10px;
			letter-spacing: 2px;
			color: var(--bgColor);
			font-size: var(--fontSize180);
			background-color: rgba(255, 255, 255, 0.9);
			font-family: Francois One, Helvetica, Arial, sans-serif;
		}

/* Slogan */
#slogan{
	color: #fff;
	background-color: var(--bgColor);
}

/* Page Splash */
#pg-splash{
	padding: 10% 0;
	background-image: url('../images/ui/bg.jpg');
}
	
/* Sum-Div */
#sum-div{
	background-color: #fff;
}

	#sum-div .sum-row{}
	
		/* Titles */
		#sum-div .sum-row .title{
			color: #222;
			position: relative;
			padding-bottom: 20px;
		}
		
			#sum-div .sum-row .title:before{
				left: 25%;
				width: 25%;
				content: '';
				bottom: 3px;
				height: 5px;
				position: absolute;
				background-color: var(--bgColor);
				-webkit-border-radius: 5px 0 0 5px;
				-moz-border-radius: 5px 0 0 5px;
				-m-border-radius: 5px 0 0 5px;
				-o-border-radius: 5px 0 0 5px;
				border-radius: 5px 0 0 5px;
			}

			#sum-div .sum-row .title:after{
				right: 25%;
				width: 25%;
				content: '';
				bottom: 3px;
				height: 5px;
				position: absolute;
				background-color: var(--bgColor3);
				-webkit-border-radius: 0 5px 5px 0;
				-moz-border-radius: 0 5px 5px 0;
				-m-border-radius: 0 5px 5px 0;
				-o-border-radius: 0 5px 5px 0;
				border-radius: 0 5px 5px 0;
			}

	/* Circles */
	#sum-div .sum-row.circles{}
	
		#sum-div .sum-row.circles .title{
			width: 50%;
		}
	
		#sum-div .sum-row.circles .sum-column .title{
			width: 80%;
		}

	/* Cover */
	#sum-div .sum-row.cover{
		background-image: url('../images/home/bg.jpg');
	}
	
		#sum-div .sum-row.cover .sum-column{
			float: none;
			margin: 0 auto;
			background-color: rgba(255, 255, 255, 0.95);
		}
	
/* Body */
#body{}

	#left{}
		
		/* Label Box */
		#left > .label-box{
			background: #fff;
		}

			#left > .label-box > .title{
				color: #fff;
				padding: 3%;
				text-align: left;
				
				background: var(--bgColor);
				background: linear-gradient(45deg, var(--bgColor) 0%, var(--bgColor) 70%, #ffffff 70%, #ffffff 100%);
				background: -moz-linear-gradient(45deg, var(--bgColor) 0%, var(--bgColor) 70%, #ffffff 70%, #ffffff 100%);
				background: -webkit-linear-gradient(45deg, var(--bgColor) 0%, var(--bgColor) 70%, #ffffff 70%, #ffffff 100%);
			}

			#left > .label-box > .content{}

	#content{}

		/* Spread */
		#content > .spread{}
		
			/* Title */
			#content > .spread > .title{
				color: #fff;
				
				background: var(--bgColor);
				background: linear-gradient(45deg, var(--bgColor) 0%, var(--bgColor) 70%, #ffffff 70%, #ffffff 100%);
				background: -moz-linear-gradient(45deg, var(--bgColor) 0%, var(--bgColor) 70%, #ffffff 70%, #ffffff 100%);
				background: -webkit-linear-gradient(45deg, var(--bgColor) 0%, var(--bgColor) 70%, #ffffff 70%, #ffffff 100%);
			}
		
			/* Data */
			#content > .spread > .data{}
		
				/* H3 */
				#content > .spread > .data h3{
					border-bottom: 1px dashed var(--bgColor5);
				}

		/* Motto */
		#content > .motto{
			color: #444;
			text-align: center;
		}

#body.wide{}

	/* Content */
	#content{}

		/* Panel */
		#content > .panel{}

		#content > .panel:nth-child(even){
			background-color: var(--bgColor4);
		}
		
			#content > .panel h1,
			#content > .panel h2{}
		
				#content > .panel h1:before,
				#content > .panel h2:before{
					left: 25%;
					width: 25%;
					content: '';
					bottom: 3px;
					height: 5px;
					position: absolute;
					background-color: var(--bgColor);
					-webkit-border-radius: 5px 0 0 5px;
					-moz-border-radius: 5px 0 0 5px;
					-m-border-radius: 5px 0 0 5px;
					-o-border-radius: 5px 0 0 5px;
					border-radius: 5px 0 0 5px;
				}

				#content > .panel h1:after,
				#content > .panel h2:after{
					right: 25%;
					width: 25%;
					content: '';
					bottom: 3px;
					height: 5px;
					position: absolute;
					background-color: var(--bgColor3);
					-webkit-border-radius: 0 5px 5px 0;
					-moz-border-radius: 0 5px 5px 0;
					-m-border-radius: 0 5px 5px 0;
					-o-border-radius: 0 5px 5px 0;
					border-radius: 0 5px 5px 0;
				}
		
			#content > .panel h3{
				border-bottom: 1px dashed var(--bgColor5);
			}

		/* Services */
		#content > .panel.services{}
		
			#content > .panel.services .image{
				width: 60%;
				margin: 0 auto;
			}
		
			#content > .panel.services h2{
				width: 100%;
				margin: 40px auto;
				font-size: var(--fontSize140);
			}

/* 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: 24px 19px;
	}
}

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

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

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

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

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

/* 600px */
@media screen and (max-width: 718px){
	#slider .content{
		padding: 30% 0 20%;
	}

	#pg-splash{
		padding: 20% 0;
	}
}