/*
*		    ________      .___   
*	__  _  _\_____  \   __| _/
*	\ \/ \/ / _(__  <  / __ |
*	 \     / /       \/ /_/ |
*	  \/\_/ /______  /\____ |
*	               \/      \/
*
*	@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: #222;
	--color2: #fff;
	
	--gradBg : linear-gradient(180deg, #EBEBEB 0%, #CDCDCF 75%);
	--gradBg2 : linear-gradient(180deg, #CDCDCF 0%, #C3C3C5 75%);
	
	--bgColor: var(--gradBg);
	--bgColor2: var(--gradBg2);
	--bgColor3: #EBEBEB;
	--bgColor4: #CDCDCF;
	--bgColor5: #F5F5F4;
	--bgColor6: #F1F1F0;
	--bgColor7: #F9F9F8;
	--bgColor8: #fff;

	--linkColor: #222;
	--linkHoverColor: #CDCDCF;
	
	--mobileMenuColor: #000;
	--mobileMenuBtnColor: #CDCDCF;
	--mobileMenuSelectedColor: #222;
	--mobileMenuSelectedBgColor: #EBEBEB;
	--mobileMenuContentBgColor: #fff;
	
	--btnColor: #000;
	--btnBgColor: var(--gradBg);
	--btnHoverColor: #000;
	--btnBgHoverColor: var(--gradBg2);
	
	--dialogBgColor: var(--gradBg);
	--dialogBgColor2: #222;
	--dialogHeadingColor: #fff;
	--dialogBtnColor: #fff;
}

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

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

/* Headings */
h1, h2, h3{
	font-family: Cinzel, Helvetica, Arial, sans-serif;
}

/* Menu */
#menu-banner{
	position: fixed;
	background-color: transparent;
}

#menu-banner.scroll{
	background-color: #fff;
}

	/* Top Banner */
	#menu-banner .top-banner{
		color: #fff;
		border-bottom: 1px solid transparent;
	}
	
	#menu-banner.scroll .top-banner{
		color: #000;
		border-bottom: 1px solid var(--bgColor6);
	}
		
		#menu-banner .top-banner a{
			color: #fff;
		}
		
		#menu-banner.scroll .top-banner a{
			color: #000;
		}
		
			#menu-banner .top-banner a:hover{
				color: var(--bgColor4);
			}

	/* Menu Banner */
	#menu-banner .menu-banner{
		padding: 10px 0;
	}
	
	#menu-banner .menu-banner .menu{
		padding: 5px 0;
	}
		
		#menu-banner .menu-banner .left{
			width: 43%;
		}
		
		#menu-banner .menu-banner .logo{
			width: 14%;
		}
		
		#menu-banner .menu-banner .logo.default{
			margin-top: -1.8%;
		}
		
		#menu-banner .menu-banner .right{
			width: 43%;
		}

	/* Menu */
	#menu-banner .menu-banner ul li a{
		color: #fff;
		padding: 15px;
	}

	#menu-banner.scroll .menu-banner ul li a{
		color: #000;
	}

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

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

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

			#menu-banner .menu-banner .menu-items > ul > li:hover > a:after,
			#menu-banner .menu-banner .menu-items > ul > li.active-li > a:after{
				left: 0;
				width: 100%;
			}

	#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{
				background: var(--bgColor4);
			}
		
			#menu-banner .menu-banner ul ul li:hover > a{
				background: var(--bgColor4);
			}
			
/* Splash */
#splash{
	background-image: url('../images/splash/bg.jpg');
}

	#splash .content{
		padding: 18% 0;
		background-color: rgba(0, 0, 0, 0.75);
	}

		#splash .content .info{
			width: 500px;
			margin: 0 auto;
			text-align: center;
		}

			#splash .content .info .text{
				color: #fff;
				padding-bottom: 20px;
				text-transform: uppercase;
				font-size: var(--fontSize200);
			}

			#splash .content .info .button{}

/* Page Splash */
#pg-splash{
	padding: 12% 0;
	position: relative;
	background-image: url('../images/splash/bg.jpg');
}

	#pg-splash:before{
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		content: '';
		position: absolute;
		background-color: rgba(0, 0, 0, 0.55);
	}
	
/* Sum-Div */
#sum-div{
	background-color: #fff;
}

	#sum-div .sum-row{}

		/* Title */
		#sum-div .sum-row .title{
			position: relative;
			text-transform: uppercase;
		}
		
			#sum-div .sum-row .title:after{
				left: 30%;
				width: 40%;
				height: 1px;
				content: '';
				bottom: -10px;
				position: absolute;
				background-color: var(--bgColor3);
				border-top: 1px solid var(--bgColor3);
				border-bottom: 1px solid var(--bgColor3);
				
				-webkit-border-radius: 50%;
				-moz-border-radius: 50%;
				-ms-border-radius: 50%;
				-o-border-radius: 50%;
				border-radius: 50%;
			}

	/* Circles */
	#sum-div .sum-row.circles{}
	
		#sum-div .sum-row.circles .sum-column{
			padding: 50px;
		}
	
		#sum-div .sum-row.circles .sum-column.column-2{
			color: #fff;
			background-color: #000;
		}
	
			#sum-div .sum-row.circles .sum-column .image{
				width: 100%;
			}
	
			#sum-div .sum-row.circles .sum-column:not(.column-2) .image{
				border: 5px solid var(--bgColor4);
			}

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

/* Body */
#body{}

	/* Left */
	#left{}
		
		/* Label Box */
		#left > .label-box{}

			#left > .label-box > .title{
				position: relative;
				text-transform: uppercase;
			}
		
				#left > .label-box > .title:after{
					left: 20%;
					width: 60%;
					height: 1px;
					content: '';
					bottom: 0px;
					position: absolute;
					background-color: var(--bgColor3);
					border-top: 1px solid var(--bgColor3);
					border-bottom: 1px solid var(--bgColor3);
					
					-webkit-border-radius: 50%;
					-moz-border-radius: 50%;
					-ms-border-radius: 50%;
					-o-border-radius: 50%;
					border-radius: 50%;
				}

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

	/* Content */
	#content{}

		/* Spread */
		#content > .spread{}
		
			/* Title */
			#content > .spread > .title{
				text-align: center;
				position: relative;
				text-align: center;
				text-transform: uppercase;
			}
		
				#content > .spread > .title:after{
					left: 35%;
					width: 30%;
					height: 1px;
					content: '';
					bottom: 0px;
					position: absolute;
					background-color: var(--bgColor3);
					border-top: 1px solid var(--bgColor3);
					border-bottom: 1px solid var(--bgColor3);
					
					-webkit-border-radius: 50%;
					-moz-border-radius: 50%;
					-ms-border-radius: 50%;
					-o-border-radius: 50%;
					border-radius: 50%;
				}
		
			/* Data */
			#content > .spread > .data{}
		
				/* H3 */
				#content > .spread > .data h3{
					text-transform: uppercase;
					border-bottom: 1px solid var(--bgColor6);
				}

#body.wide{}

	/* Content */
	#content{}

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

		#content > .panel:nth-child(even){
			background-color: var(--bgColor7);
		}
		
			#content > .panel h1,
			#content > .panel h2{
				width: 550px;
				padding-bottom: 0;
				margin: 0 auto 50px;
				text-transform: uppercase;
			}
		
				#content > .panel h1:after,
				#content > .panel h2:after{
					left: 20%;
					width: 60%;
					height: 1px;
					content: '';
					bottom: -10px;
					position: absolute;
					background-color: var(--bgColor3);
					border-top: 1px solid var(--bgColor3);
					border-bottom: 1px solid var(--bgColor3);
					
					-webkit-border-radius: 50%;
					-moz-border-radius: 50%;
					-ms-border-radius: 50%;
					-o-border-radius: 50%;
					border-radius: 50%;
				}
		
			#content > .panel h3{
				border-bottom: 1px solid var(--bgColor6);
			}

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

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

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

	#page-options .left svg,
	#page-options .right svg{
		fill: var(--bgColor4);
	}

/* Footer */
#footer{
	color: #000;
	background-color: var(--bgColor6);
}

	#footer .logo{
		text-align: center;
	}

		#footer .logo .image{
			width: 80%;
			margin: 30px auto 0;
		}

	#footer .title{
		color: #000;
	}

	#footer a{
		color: #000;
	}

		#footer a:hover{
			color: var(--bgColor);
		}
		
		#footer .list-box .item:hover,
		#footer .list-box .item.active{
			background: var(--bgColor6);
		}
		
			#footer .list-box .item:hover a,
			#footer .list-box .item.active a{
				color: #000 !important;
			}

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

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

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

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

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

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

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

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

/* 600px */
@media screen and (max-width: 600px){
	#splash .content{
		padding: 50% 0 30%;
	}
	
		#splash .content .info{
			width: 80%;
		}

	#pg-splash{
		padding: 30% 0;
	}
				
	#content > .spread > .title:after{
		left: 20%;
		width: 60%;
	}

	#footer .logo{
		width: 80%;
		margin: 0 auto 40px;
	}
}