/*
*		    ________      .___   
*	__  _  _\_____  \   __| _/
*	\ \/ \/ / _(__  <  / __ |
*	 \     / /       \/ /_/ |
*	  \/\_/ /______  /\____ |
*	               \/      \/
*
*	@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: #ee892d;
	--bgColor2: #de6d05;
	--bgColor3: #1f3688;
	--bgColor4: #192964;
	--bgColor5: #F1F2F4;
	--bgColor6: #DDE0E9;
	
	--bgColorRGBA: rgba(31, 54, 136, 0.7);
	
	--linkColor: #000;
	--linkHoverColor: #ee892d;
	
	--mobileMenuColor: #fff;
	--mobileMenuBtnColor: #fff;
	--mobileMenuSelectedColor: #fff;
	--mobileMenuSelectedBgColor: #192964;
	--mobileMenuContentBgColor: #1f3688;
	
	--btnColor: #fff;
	--btnBgColor: #ee892d;
	--btnHoverColor: #fff;
	--btnBgHoverColor: #de6d05;
	
	--dialogBgColor: #ee892d;
	--dialogBgColor2: #de6d05;
	--dialogHeadingColor: #fff;
}

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

html, body {
	background-color: var(--bgColor5);
	font-family: Montserrat, Helvetica, Arial, sans-serif;
}

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

/* Menu */
#menu-banner{
	background-color: var(--bgColor4);
}
	
	/* Menu Banner */
	#menu-banner .menu-banner{}

		#menu-banner .menu-banner .right > ul > li > a{
			margin: 15px 5px 15px 0;
		}

		#menu-banner .menu-banner ul li a{
			color: #fff;
			padding: 13px 15px;
			
			-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 > a,
			#menu-banner .menu-banner ul li.active-li > a{
				color: #fff;
				background-color: var(--bgColor);
			}

		#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 a{
					color: var(--color);
				}
			
				#menu-banner .menu-banner ul ul li:hover > a,
				#menu-banner .menu-banner ul ul li.active-li > a{
					color: var(--color2);
					background-color: var(--bgColor);
				}

/* Splash */
#splash{
	background-image: url('../images/splash/bg.jpg');
}

	#splash .content{
		padding: 10% 0;
	}

	#splash.home .content{
		padding: 6% 0;
		background-color: var(--bgColorRGBA);
	}

		#splash.home .content .image{
			width: 500px;
			max-width: 80%;
			margin: 0 auto;
		}
	
/* Slogan */
#slogan{
	color: #fff;
	background: var(--bgColor4);
}

/* Sum-Div */
#sum-div{
	background-color: #fff;
}

	#sum-div .sum-row{}
		
		#sum-div .sum-row .title{}

			#sum-div .sum-row .title:after{
				left: 35%;
				bottom: 0;
				width: 30%;
				content: '';
				position: absolute;
				border-bottom: 3px solid var(--bgColor);
			}
	
	#sum-div .sum-row.cover{
		background-image: url(../images/home/bg.jpg);
	}

		#sum-div .sum-row.cover .sum-column{
			background-color: var(--bgColorRGBA);
		}

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

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

				#sum-div .sum-row.cover .sum-column .text b{
					color: var(--bgColor);
				}
	
	/* Summary */
	#sum-div .sum-row.summary{}
	
		#sum-div .sum-row.summary .sum-column{}
	
			#sum-div .sum-row.summary .sum-column .image{
				max-width: 150px;
			}

/* Body */
#body{}

	/* Left */
	#left{}
		
		/* Label Box */
		#left > .label-box{}
			
			#left > .label-box > .title{
				margin: 0 3%;
				text-align: left;
				position: relative;
			}
			
				#left > .label-box > .title:after{
					left: 0;
					bottom: 0;
					width: 30%;
					content: '';
					position: absolute;
					border-bottom: 3px solid var(--bgColor);
				}
			
			#left > .label-box > .content{}
	
	/* Content */
	#content{}
		
		/* Spread */
		#content > .spread{}
			
			/* Title */
			#content > .spread > .title{
				position: relative;
			}
			
				#content > .spread > .title:after{
					bottom: 0;
					left: 10px;
					width: 30%;
					content: '';
					position: absolute;
					border-bottom: 3px solid var(--bgColor);
				}
	
			/* Data */
			#content > .spread > .data{}
	
				/* H3 */
				#content > .spread > .data h3{
					border-bottom: 1px solid var(--bgColor6);
				}

#body.wide{}

	/* Content */
	#content{}

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

		#content > .panel:nth-child(even){
			background-color: var(--bgColor5);
		}
		
			#content > .panel h1,
			#content > .panel h2{}

				#content > .panel h1:after,
				#content > .panel h2:after{
					left: 35%;
					bottom: 0;
					width: 30%;
					content: '';
					position: absolute;
					border-bottom: 3px solid var(--bgColor);
				}
		
			#content > .panel h3{
				border-bottom: 1px solid var(--bgColor6);
			}

		/* Ofsted */
		#content > .panel.ofsted{}
				
			#content > .panel.ofsted .image.ofsted{
				width: 140px;
			}

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

/* Grass Banner */
#grass-banner{
	height: 58px;
	background-color: var(--bgColor6);
	background-image: url(../images/ui/grass.png);
	background-position: bottom left;
	background-repeat: repeat-x;
}

#grass-banner.home{
	background-color: #fff;
}

#grass-banner.contact-us,
#grass-banner.mm{
	background-color: var(--bgColor5);
}

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

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

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

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

	#footer .title{
		color: #fff;
	}

	#footer a{
		color: #fff;
	}

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

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

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

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

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

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

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

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

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

/* 600px */
@media screen and (max-width: 600px){
	#splash .content{
		padding: 20% 0;
	}
			
	#content > .panel.contact .buttons{}
	
		#content > .panel.contact .buttons .btn{
			display: block;
			padding-left: 0;
			padding-right: 0;
			text-align: center;
			margin-bottom: 5px;
		}
	
		#content > .panel.contact .buttons .btn:last-child{
			margin-bottom: 0;
		}
}