/*
*		    ________      .___   
*	__  _  _\_____  \   __| _/
*	\ \/ \/ / _(__  <  / __ |
*	 \     / /       \/ /_/ |
*	  \/\_/ /______  /\____ |
*	               \/      \/
*
*	@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: #474F82;
	--bgColor2: #363F74;
	--bgColor3: #E5E6ED;
	--bgColor4: #F6F7F7;
	--bgColor5: #E8645F;
	--bgColor6: #D1D4E5;
	--bgColor7: #E84F49;
	
	--bgColorRGBA: rgba(71, 79, 130, 0.6);
	--bgColorRGBA2: rgba(71, 79, 130, 0.8);

	--linkColor: #000;
	--linkHoverColor: #E8645F;
	
	--borderRadius: 25px;
	
	--mobileMenuColor: #363F74;
	--mobileMenuBtnColor: #474F82;
	--mobileMenuSelectedColor: #fff;
	--mobileMenuSelectedBgColor: #363F74;
	--mobileMenuContentBgColor: #fff;
	
	--btnColor: #fff;
	--btnBgColor: #474F82;
	--btnHoverColor: #fff;
	--btnBgHoverColor: #363F74;
	
	--dialogBgColor: #474F82;
	--dialogBgColor2: #363F74;
	--dialogHeadingColor: #fff;
}

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

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

/* Headings */
h1, h2, h3{
	color: var(--bgColor);
	font-family: Montserrat, Helvetica, Arial, sans-serif;
}

/* Button */
.btn{
	-webkit-border-radius: var(--borderRadius);
	-moz-border-radius: var(--borderRadius);
	-m-border-radius: var(--borderRadius);
	-o-border-radius: var(--borderRadius);
	border-radius: var(--borderRadius);
}

/* Menu */
#menu-banner{}

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

	/* Menu Banner */
	#menu-banner .menu-banner{}
		
		#menu-banner .menu-banner .menu-items{
			width: 41%;
			padding: 15px 0;
		}
		
		#menu-banner .menu-banner .logo{
			width: 16%;
			padding: 0 1%;
			transition: all 0.5s ease-out;
		}
		
		#menu-banner .menu-banner .logo.default{
			margin-top: -1%;
		}

	/* Menu */
	#menu-banner .menu-banner ul li{
		margin: 0 5px;
		
		-webkit-border-radius: var(--borderRadius);
		-moz-border-radius: var(--borderRadius);
		-m-border-radius: var(--borderRadius);
		-o-border-radius: var(--borderRadius);
		border-radius: var(--borderRadius);
	}
		
	#menu-banner .menu-banner ul li:hover{
		background-color: var(--bgColor2);
	}
	
		#menu-banner .menu-banner ul li a{
			color: #000;
			padding: 15px 20px;
		}

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

				#menu-banner .menu-banner ul li.active-li > a{
					color: #fff;
				}

	#menu-banner .menu-banner ul ul{
		-webkit-border-radius: var(--borderRadius);
		-moz-border-radius: var(--borderRadius);
		-m-border-radius: var(--borderRadius);
		-o-border-radius: var(--borderRadius);
		border-radius: var(--borderRadius);
	}
			
		#menu-banner .menu-banner ul ul li{
			margin: 5px;
		}

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

				#menu-banner .menu-banner ul ul li:hover > a{
					color: #fff;
				}

				#menu-banner .menu-banner ul ul li.active-li > a{
					color: #fff;
				}
			
/* Slider */
#slider{}

	#slider .content{
		padding: 8vw 0;
		position: relative;
		background-color: var(--bgColorRGBA);
	}

	#slider.home .content{
		padding: 18vw 0;
		overflow-x: hidden;
	}

		#slider.home .content .blurp{
			color: #fff;
			width: 900px;
			z-index: 101;
			position: absolute;
		}

			#slider.home .content .blurp .left{
				width: 60%;
				padding: 50px;
				background-color: var(--bgColorRGBA2);
			}

				#slider.home .content .blurp .left h2{
					color: var(--bgColor5);
					margin: 0 0 10px;
					font-size: var(--fontSize220);
				}

				#slider.home .content .blurp .left h3{
					margin: 0 0 10px;
					font-weight: normal;
					font-size: var(--fontSize180);
				}

				#slider.home .content .blurp .left .text{
					margin: 0 0 20px;
				}

				#slider.home .content .blurp .left .button{}
				
					#slider.home .content .blurp .left .button .btn{
						background-color: var(--bgColor5);
					}
				
					#slider.home .content .blurp .left .button .btn:hover{
						background-color: var(--bgColor7);
					}

			#slider.home .content .right{
				width: 35%;
				margin-left: 5%;
			}

				#slider.home .content .blurp .right .image{
					border: 5px solid var(--bgColor);
				}
			
/* Slogan */
#slogan{
	color: #fff;
	background-color: var(--bgColor);
}

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

	#pg-splash h1{
		text-align: center;
		font-size: var(--fontSize300);
	}
	
/* Sum-Div */
#sum-div{
	background-color: #fff;
}

	/* Row */
	#sum-div .sum-row{}

		/* Title */
		#sum-div .sum-row .title{}
			
			#sum-div .sum-row .sum-column .title:after{
				left: 20%;
				width: 60%;
				content: "";
				height: 35px;
				bottom: -35px;
				position: absolute;
				border: solid 4px var(--bgColor5);
				border-color: var(--bgColor5) transparent transparent transparent;
				
				border-radius: 50%;
				-m-border-radius: 50%;
				-o-border-radius: 50%;
				-moz-border-radius: 50%;
				-webkit-border-radius: 50%;
			}

	/* intro */
	#sum-div .sum-row.intro{}
	
		#sum-div .sum-row.intro .sum-column.column-1{
			margin: 50px -100px 0 0;
			padding: 50px 150px 50px 50px;
			background-color: var(--bgColor3);
		}

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

/* Body */
#body{}

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

			#left > .label-box > .title{
				width: 80%;
				margin: 0 auto;
				position: relative;
			}
			
				#left > .label-box > .title:after{
					left: 20%;
					width: 60%;
					content: "";
					height: 35px;
					bottom: -35px;
					position: absolute;
					border: solid 4px var(--bgColor5);
					border-color: var(--bgColor5) transparent transparent transparent;
					
					border-radius: 50%;
					-m-border-radius: 50%;
					-o-border-radius: 50%;
					-moz-border-radius: 50%;
					-webkit-border-radius: 50%;
				}

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

	/* Content */
	#content{}

		/* Spread */
		#content > .spread{}
		
			/* Title */
			#content > .spread > .title{
				position: relative;
			}
			
				#content > .spread > .title:after{
					left: 0;
					content: "";
					height: 35px;
					bottom: -35px;
					width: 250px;
					max-width: 60%;
					position: absolute;
					border: solid 4px var(--bgColor5);
					border-color: var(--bgColor5) transparent transparent transparent;
					
					border-radius: 50%;
					-m-border-radius: 50%;
					-o-border-radius: 50%;
					-moz-border-radius: 50%;
					-webkit-border-radius: 50%;
				}
		
			/* Data */
			#content > .spread > .data{}
		
				/* H3 */
				#content > .spread > .data h3{
					border-bottom: 1px dashed var(--bgColor3);
				}

#body.wide{}

	/* Content */
	#content{}

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

		#content > .panel:nth-child(even){
			background-color: var(--bgColor3);
		}
		
			#content > .panel h1,
			#content > .panel h2{
				width: 600px;
			}
			
				#content > .panel h1:after,
				#content > .panel h2:after{
					left: 20%;
					width: 60%;
					content: "";
					height: 35px;
					bottom: -35px;
					position: absolute;
					border: solid 4px var(--bgColor5);
					border-color: var(--bgColor5) transparent transparent transparent;
					
					border-radius: 50%;
					-m-border-radius: 50%;
					-o-border-radius: 50%;
					-moz-border-radius: 50%;
					-webkit-border-radius: 50%;
				}
		
			#content > .panel h3{
				border-bottom: 1px dashed var(--bgColor3);
			}
		
			/* Table */
			#content > .panel table{}
			
				#content > .panel table tr th{
					font-weight: bold;
					color: var(--bgColor5);
				}
			
				#content > .panel table tr:nth-child(even){
					background-color: var(--bgColor6);
				}

		/* Contact */
		#content > .panel.contact{
			background-color: var(--bgColor6);
		}

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

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

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

/* 1380px */		
@media screen and (max-width: 1380px){
	#menu-banner .menu-banner .menu-items{
		width: 39%;
		padding: 10px 0;
	}
	
	#menu-banner .menu-banner .logo{
		width: 20%;
	}
	
	#menu-banner .menu-banner ul li a{
		padding: 13px 17px;
	}

	#slider.home .content .blurp .left{
		padding: 30px;
	}
}

/* 1250px */		
@media screen and (max-width: 1250px){
	#menu-banner .menu-banner ul li a{
		padding: 12px 17px;
	}
	
	#slider.home .content .blurp{
		width: 700px;
	}
}

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

	#slider.home .content{
		padding: 22vw 0;
	}
}

/* 1024px */		
@media screen and (max-width: 1024px){
	#menu-banner .menu-banner ul li a{
		padding: 11px 16px;
	}
	
	#slider.home .content .blurp{
		width: 600px;
	}
}

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

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

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

		#slider.home .content .blurp{
			width: 70%;
			text-align: center;
		}
		
			#slider.home .content .blurp .left{
				width: 100%;
			}
		
			#slider.home .content .blurp .right{
				display: none;
			}
	
	#sum-div .sum-row.intro .sum-column.column-1{
		margin: 50px 0 0 0;
		padding: 50px 50px 50px 50px;
	}
	
	#content > .spread > .title{
		text-align: center;
	}
	
		#content > .spread > .title:after{
			left: 20%;
		}
				
	#content > .panel table tr td:before{
		border-bottom: 1px solid var(--bgColor3);
	}
				
	#content > .panel table tr td:nth-child(odd){
		background-color: var(--bgColor6);
	}
}