/*
*		    ________      .___   
*	__  _  _\_____  \   __| _/
*	\ \/ \/ / _(__  <  / __ |
*	 \     / /       \/ /_/ |
*	  \/\_/ /______  /\____ |
*	               \/      \/
*
*	@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;
	
	--bgColor: #D8B43B;
	--bgColor2: #B8910F;
	--bgColor3: #008F4C;
	--bgColor4: #006B39;
	--bgColor5: #0C4DA2;
	--bgColor6: #0B3A77;
	--bgColor7: #F4F4F2;
	
	--bgColorRGBA: rgba(12, 77, 162, 0.7);

	--linkColor: #222;
	--linkHoverColor: #0B3A77;
	
	--mobileMenuColor: #fff;
	--mobileMenuBtnColor: #0C4DA2;
	--mobileMenuSelectedColor: #fff;
	--mobileMenuSelectedBgColor: #0B3A77;
	--mobileMenuContentBgColor: #0C4DA2;
	
	--btnColor: #fff;
	--btnBgColor: #D8B43B;
	--btnHoverColor: #fff;
	--btnBgHoverColor: #B8910F;
	
	--dialogBgColor: #0C4DA2;
	--dialogBgColor2: #0B3A77;
	--dialogHeadingColor: #fff;
}

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

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

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

/* Menu */
#menu-banner{}

	/* Top Banner */
	#menu-banner .top-banner{
		background-color: var(--bgColor5);
	}

		#menu-banner .top-banner{
			color: #fff;
		}
		
			#menu-banner .top-banner a{
				color: #fff;
			}
		
				#menu-banner .top-banner a:hover{
					color: var(--bgColor);
				}

		/* Notifications */
		#menu-banner .top-banner .noti{}
		
			#menu-banner .top-banner .noti .core-notifications > .label{
				color: #fff;
			}

	/* Menu Banner */
	#menu-banner .menu-banner{}
		
		/* Logo */
		#menu-banner .menu-banner .left{
			width: 42%;
		}
		
		#menu-banner .menu-banner .logo{
			width: 14%;
			margin-left: 1%;
			margin-right: 1%;
		}
		
		#menu-banner .menu-banner .logo.default{
			margin-top: -1%;
		}
		
		#menu-banner.scroll .core-menu .logo{
			margin-top: 0;
		}
		
		#menu-banner .menu-banner .right{
			width: 42%;
		}

		/* Menu */
		#menu-banner .menu-banner .left > ul > li > a,
		#menu-banner .menu-banner .right > ul > li > a{
			color: #222;
			margin: 10px 5px;
			padding: 10px 10px;
			
			-webkit-border-radius: 15px;
			-moz-border-radius: 15px;
			-m-border-radius: 15px;
			-o-border-radius: 15px;
			border-radius: 15px;
		}
			
			#menu-banner .menu-banner .left > ul > li.active-li > a,
			#menu-banner .menu-banner .right > ul > li.active-li > a{
				color: #fff;
				background-color: var(--bgColor5);
			}
			
			#menu-banner .menu-banner .left > ul > li:hover > a,
			#menu-banner .menu-banner .right > ul > li:hover > a{
				color: #fff;
				background-color: var(--bgColor6);
			}

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

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

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

				#menu-banner .menu-banner ul ul li:hover{
					background-color: var(--bgColor6);
				}

				#menu-banner .menu-banner ul ul li.active-li{
					background-color: var(--bgColor5);
				}

				#menu-banner .menu-banner ul ul li:hover > a,
				#menu-banner .menu-banner ul ul li.active-li > a{
					color: #fff;
				}
			
/* Slider */
#slider{
	overflow-x: hidden;
	position: relative;
}

	#slider .content{
		padding: 10% 0;
		position: relative;
	}
	
	#slider.services:after{
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		content: '';
		position: absolute;
		background: url('../images/ui/clouds.png');
		
		-webkit-animation: slide 20s linear infinite;
	}
		
		@keyframes slide{
			from{
				background-position: 0 0;
			}to{
				background-position: -400px -200px;
			}
		}

		/* Firefox < 16 */
		@-moz-keyframes slide{
			from{
				background-position: 0 0;
			}to{
				background-position: -400px -200px;
			}
		}

		/* Safari, Chrome and Opera > 12.1 */
		@-webkit-keyframes slide{
			from{
				background-position: 0 0;
			}to{
				background-position: -400px -200px;
			}
		}

		/* Internet Explorer */
		@-ms-keyframes slide{
			from{
				background-position: 0 0;
			}to{
				background-position: -400px -200px;
			}
		}

		/* Opera < 12.1 */
		@-o-keyframes slide{
			from{
				background-position: 0 0;
			}to{
				background-position: -400px -200px;
			}
		}

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

		#slider.home .content .blurp{
			color: #fff;
			width: 600px;
			padding: 50px;
			text-align: center;
			position: absolute;
			background-color: var(--bgColorRGBA);
			text-shadow: 1px 1px 2px rgba(0,0,0,.5);
			
			-webkit-border-radius: 20px;
			-moz-border-radius: 20px;
			-m-border-radius: 20px;
			-o-border-radius: 20px;
			border-radius: 20px;
		}
	
			#slider.home .content .blurp h2{
				font-weight: 700;
				margin-bottom: 3%;
				font-size: var(--fontSize240);
			}
		
			#slider.home .content .blurp .text{
				margin-bottom: 3%;
			}
		
			#slider.home .content .blurp .button{}
	
/* Sum-Div */
#sum-div{}

	#sum-div .sum-row{}

		#sum-div .sum-row .title{
			color: #555;
			position: relative;
			font-weight: normal;
		}
	
		#sum-div .sum-row .title:after{
			left: 0;
			right: 0;
			bottom: 0;
			width: 20%;
			height: 2px;
			content: '';
			margin: 0 auto;
			position: absolute;
			border-bottom: 3px solid var(--bgColor);
		}

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

	/* Cover */
	#sum-div .sum-row.cover{
		color: #fff;
		background-image: url('../images/home/bg.jpg');
	}
	
		#sum-div .sum-row.cover .sum-column{
			float: none;
			margin: 0 auto;
			background-color: var(--bgColorRGBA);
			
			-webkit-border-radius: 15px;
			-moz-border-radius: 15px;
			-m-border-radius: 15px;
			-o-border-radius: 15px;
			border-radius: 15px;
		}

			#sum-div .sum-row.cover .sum-column .title{
				color: #fff;
			}

	/* Services */
	#sum-div .sum-row.services{}
	
		#sum-div .sum-row.services.fst .sum-row-wrapper{
			padding: 8% 12.5% 4%;
		}
	
			#sum-div .sum-row.services.fst .sum-row-wrapper > .title{
				margin: 0 auto 4%;
			}
		
		#sum-div .sum-row.services.snd .sum-row-wrapper{
			padding: 4% 0 8%;
		}
		
			#sum-div .sum-row.services .sum-row-wrapper .text{
				padding: 4% 0;
			}
		
			#sum-div .sum-row.services .sum-row-wrapper .image{
				width: 60%;
			}

	/* Search */
	#sum-div .sum-row.search{
		background-image: url('../images/home/search.jpg');
	}
	
		#sum-div .sum-row.search .sum-column{
			width: 50%;
			padding: 5% 8%;
			margin: 0 auto;
			text-align: center;
			background-color: rgba(255, 255, 255, 0.90);
			
			-webkit-border-radius: 35px;
			-moz-border-radius: 35px;
			-m-border-radius: 35px;
			-o-border-radius: 35px;
			border-radius: 35px;
		}

			#sum-div .sum-row.search .sum-column h1 span{
				color: var(--bgColor);
			}

				#sum-div .sum-row.search .sum-column .welcome h2 b{
					color: var(--bgColor2);
				}

/* Body */
#body{}

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

			#left > .label-box > .title{
				width: 80%;
				margin: 0 auto;
				border-bottom: 3px solid var(--bgColor);
			}

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

	#content{}

		/* Spread */
		#content > .spread{}
		
			/* Title */
			#content > .spread > .title{
				color: #555;
				width: 93%;
				margin: 0 auto;
				position: relative;
				border-bottom: 3px solid var(--bgColor);
			}

				#content > .spread > .title span:before{
					width: 8px;
					content: '';
					height: 8px;
					margin-right: 8px;
					display: inline-block;
					background-color: #fff;
					border: 5px solid var(--bgColor2);
					
					-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{
					border-bottom: 1px dashed #ddd;
				}

#body.wide{}

	#content{}

		/* Panel */
		#content > .panel{
			position: relative;
			background-color: var(--bgColor7);
		}

		#content > .panel:not(:last-child):after{
			left: 0;
			right: 0;
			bottom: 0;
			z-index: 1;
			content: '';
			height: 50px;
			display: block;
			position: absolute;
			background-color: var(--bgColor7);
			
			-webkit-transform: skewY(-1.5deg);	/* Chrome, Opera 15+, Safari 3.1+ */
			-ms-transform: skewY(-1.5deg);		/* IE 9  */
			transform: skewY(-1.5deg);			/* Firefox 16+, IE 10+, Opera */
			
			-webkit-transform-origin: 100%;
			-ms-transform-origin: 100%;
			transform-origin: 100%;
		}

		#content > .panel:not(:last-child):nth-child(even):after{
			background-color: #fff;
		}

		#content > .panel:nth-child(even){
			background-color: #fff;
		}
		
			#content > .panel h1,
			#content > .panel h2{
				width: 600px;
				margin: 0 auto 50px;
				color: var(--bgColor5);
				font-size: var(--fontSize240);
			}
		
			#content > .panel h1:after,
			#content > .panel h2:after{
				bottom: -15px;
				content: '';
				width: 250px;
				left: calc((100% - 250px) / 2);
				position: absolute;
				border-bottom: 4px solid var(--bgColor);
			}

		#content > .panel.services{
			padding-left: 20%;
			padding-right: 20%;
		}
	
			#content > .panel.services .text{
				margin: 5% 5% 0;
			}
		
/* Ticker */
#ticker{
	background: #fff;
}

#ticker.home{
	padding: 8% 0;
}

	#ticker .title{		
		color: #555;
		margin: 0 0 2%;
		text-align: center;
		position: relative;
		font-weight: normal;
		font-size: var(--fontSize180);
	}

	#ticker .title:after{
		left: 0;
		right: 0;
		bottom: 0;
		width: 6.5%;
		height: 2px;
		content: '';
		margin: 0 auto;
		position: absolute;
		border-bottom: 3px solid var(--bgColor);
	}

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

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

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

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

	#footer .title{
		color: #fff;
	}

	#footer .footer-link{
		padding: 5px 0;
	}

		#footer .footer-link .info{
			padding: 0 5px;
		}

	#footer a{
		color: #fff;
	}

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

/* 1750px */		
@media screen and (max-width: 1750px){
	#menu-banner .menu-banner .left > ul > li > a,
	#menu-banner .menu-banner .right > ul > li > a{
		padding: 9px;
		margin: 9px 4px;
	}
}

/* 1650px */		
@media screen and (max-width: 1650px){
	#menu-banner .menu-banner .left > ul > li > a,
	#menu-banner .menu-banner .right > ul > li > a{
		padding: 8px;
		margin: 8px 3px;
	}
}

/* 1550px */		
@media screen and (max-width: 1550px){
	#slider.home .content .blurp{
		width: 500px;
		padding: 30px;
	}
}

/* 1380px */		
@media screen and (max-width: 1380px){}

/* 1250px */		
@media screen and (max-width: 1250px){
	
}

/* 1100px */		
@media screen and (max-width: 1100px){
	
}

/* 1024px */		
@media screen and (max-width: 1024px){
	#menu-banner .menu-banner .left > ul > li > a,
	#menu-banner .menu-banner .right > ul > li > a{
		padding: 6px;
		margin: 6px 2px;
	}
}

/* 600px */
@media screen and (max-width: 600px){
	#slider .content{
		padding: 20% 0;
	}
	
	#slider.home .content{
		padding: 0;
		padding: 70% 0;
	}
	
		#slider.home .content .blurp{
			width: 70%;
			padding: 5%;
		}
		
	#sum-div .sum-row.search .sum-column{
		width: 80%;
		padding: 5%;
	}

	#content > .spread > .title{
		width: 80%;
		margin: 0 auto;
		text-align: center;
	}
	
	#content > .panel.services{
		padding-left: 10%;
		padding-right: 10%;
		text-align: center;
	}
	
		#content > .panel.services .image{
			width: 60%;
			margin: 0 auto;
		}
}