/*
*		    ________      .___   
*	__  _  _\_____  \   __| _/
*	\ \/ \/ / _(__  <  / __ |
*	 \     / /       \/ /_/ |
*	  \/\_/ /______  /\____ |
*	               \/      \/
*
*	@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: #F59523;
	--bgColor2: #ce7800;
	--bgColor3: #a9c94e;
	--bgColor4: #7C982D;
	
	--linkColor: #222;
	--linkHoverColor: #F59523;
	
	--mobileMenuColor: #fff;
	--mobileMenuBtnColor: #a9c94e;
	--mobileMenuSelectedColor: #fff;
	--mobileMenuSelectedBgColor: #7C982D;
	--mobileMenuContentBgColor: #a9c94e;
	
	--btnColor: #fff;
	--btnBgColor: #F59523;
	--btnHoverColor: #fff;
	--btnBgHoverColor: #ce7800;
	
	--dialogBgColor: #a9c94e;
	--dialogBgColor2: #7C982D;
	--dialogHeadingColor: #fff;
}
	
/* UL */
ul.list{
	list-style: none;
	padding-left: 20px;
}

	ul.list li{
		position: relative;
		padding-left: 20px;
		margin-bottom: 10px;
	}

		ul.list li:after{
			left: 0;
			top: 4px;
			content: '';
			width: 14px;
			height: 12px;
			display: block;
			position: absolute;
			
			background-size: 14px;
			background: url(../images/ui/check.svg) no-repeat;
		}

	ul.list ul{
		margin-top: 10px;
	}

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

/* Body */
body{
	background-color: #eee;
	font-family: Montserrat, Helvetica, Arial, sans-serif;
}

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

/* Menu */
#menu-banner{
	background: #fff;
}

	/* Top Banner */
	#menu-banner .top-banner{
		color: #222;
		border-bottom: 1px solid #ddd;
	}
		
		#menu-banner .top-banner a{
			color: #222;
		}

	/* Menu */
	#menu-banner .menu-banner{
		padding: 5px;
	}

		#menu-banner .menu-banner ul li a{
			color: #222;
			padding: 24px 14px;
		}
			
			#menu-banner .menu-banner ul li:hover > a{
				color: #fff;
				background: var(--bgColor3);
				transition: background linear 0.5s;
			}
			
			#menu-banner .menu-banner ul li.active-li > a{
				color: #fff;
				background: var(--bgColor3);
				transition: background linear 0.5s;
			}

				#menu-banner .menu-banner ul ul{
					background: #fff;
					border-top: 3px solid var(--bgColor4);
					
					-webkit-box-shadow: 0px 1px 2px rgba(0,0,0, 0.701961);
					-moz-box-shadow: 0px 1px 2px rgba(0,0,0, 0.701961);
					box-shadow: 0px 1px 2px rgba(0,0,0, 0.701961);
				}

				#menu-banner .menu-banner .right ul li:hover ul{
					animation: flipInY .6s ease-in-out;
				}

				@keyframes flipInY{
					0% {
						-webkit-transform: perspective(400px) rotateY(90deg);
						transform: perspective(400px) rotateY(90deg);
						-webkit-animation-timing-function: ease-in;
						animation-timing-function: ease-in;
						opacity: 0
					}
					40% {
						-webkit-transform: perspective(400px) rotateY(-20deg);
						transform: perspective(400px) rotateY(-20deg);
						-webkit-animation-timing-function: ease-in;
						animation-timing-function: ease-in
					}
					60% {
						-webkit-transform: perspective(400px) rotateY(10deg);
						transform: perspective(400px) rotateY(10deg);
						opacity: 1
					}
					80% {
						-webkit-transform: perspective(400px) rotateY(-5deg);
						transform: perspective(400px) rotateY(-5deg)
					}
					to {
						-webkit-transform: perspective(400px);
						transform: perspective(400px)
					}
				}

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

	#menu-banner .search-banner{
		background: #eee;
		border-top: 1px solid #ddd;
	}

/* Splash */
#splash{
	position: relative;
	background-image: url('../images/home/bg-value-fencing-pvc.jpg');
}

	/* Body */
	#splash .content{
		padding: 5% 0;
		position: relative;
	}

		/* Warranty */
		#splash .content .warranty{
			top: 5%;
			right: 2%;
			position: absolute;
		}

		/* Slider */
		#splash .content .slider{
			border: solid 3px #fff;
		}

			#splash .content .slider .core-image-slider{
				width: 100%;
			}

				#splash .content .slider .core-image-slider .description{}
			
					#splash .content .slider .core-image-slider .description .title{
						color: #fff;
						font-weight: bold;
						padding: 10px 15px;
						font-size: var(--fontSize160);
						background-color: var(--bgColor3);
						text-shadow: 0 1px 1px rgba(0, 0, 0, .4);
					}
			
						#splash .content .slider .core-image-slider .description .title a{
							color: #fff;
						}
					
		/* Kicker */
		#splash .content .kicker{
			color: #fff;
			padding: 10%;
			position: relative;
			text-shadow: 0 1px 1px rgba(0, 0, 0, .8);
		}
			
			#splash .content .kicker:before{
				top: -10px;
				left: 0;
				right: 0;
				z-index: 1;
				content: '';
				position: absolute;

				width: 0;
				height: 0;
				border-style: solid;
				border-width: 0 10px 10px 10px;
				border-color: transparent transparent #fff transparent;
			}

			#splash .content .kicker:after{
				top: 0;
				left: 0;
				right: 0;
				bottom: 0;
				z-index: 0;
				width: 20px;
				content: '';
				height: 100%;
				position: absolute;
				background-color: #fff;
				
				-webkit-box-shadow: 0px 1px 2px rgba(0,0,0, 0.701961);
				-moz-box-shadow: 0px 1px 2px rgba(0,0,0, 0.701961);
				box-shadow: 0px 1px 2px rgba(0,0,0, 0.701961);
			}

			#splash .content .kicker h1{
				margin: 0 0 3%;
				font-size: var(--fontSize300);
			}

			#splash .content .kicker h3{
				color: #fff;
				padding: 10px 20px;
				display: inline-block;
				font-size: var(--fontSize200);
				background-color: var(--bgColor4);
			}

			#splash .content .kicker ul{
				margin: 3% 0;
			}

			#splash .content .kicker .link{
				padding: 15px 0;
			}

			#splash .content .kicker .franchise{
				color: #000;
				padding: 10px;
				text-shadow: none;
				margin: 10px auto;
				display: inline-block;
				background-color: #fff;
				animation: blinker 4s linear infinite;
			}
			
				@keyframes blinker{
					50%{
						opacity: 0;
					}
				}

				#splash .content .kicker .franchise a{
					color: #000;
				}

/* Slogan */
#slogan{
	padding: 15px 0;
	text-align: center;
	background-color: #fff;
	font-size: var(--fontSize120);
}

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

	#pg-splash:before{
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		content: '';
		position: absolute;
		background-color: rgba(0, 0, 0, 0.6);
	}

	/* Warranty */
	#pg-splash .warranty{
		margin-left: 5%;
		position: relative;
	}
	
/* Sum-Div */
#sum-div{
	background-color: #fff;
}

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

		/* Title */	
		#sum-div .sum-row.under-line .title{
			position: relative;
		}

			#sum-div .sum-row.under-line .title:after{
				left: 20%;
				bottom: 0;
				width: 60%;
				content: '';
				position: absolute;
				border-bottom: 3px solid var(--bgColor);
			}

		/* Links */	
		#sum-div .sum-row .sum-column .links{
			margin: 20px 0 !important;
		}

	/* About / About 2 */
	#sum-div .sum-row.about{
		background-color: var(--bgColor3);
	}
	
	#sum-div .sum-row.about-2{
		background-color: var(--bgColor3);
	}
			
		#sum-div .sum-row.about .grid-row .grid-box:nth-child(1),
		#sum-div .sum-row.about-2 .grid-row .grid-box:nth-child(2){
			background-color: #fff;
		}
		
		#sum-div .sum-row.about .grid-row .grid-box:nth-child(2),
		#sum-div .sum-row.about-2 .grid-row .grid-box:nth-child(1){
			background-color: transparent;
		}

		#sum-div .sum-row.about .sum-column.column-1{
			padding: 5% 25%;
		}

		#sum-div .sum-row.about-2 .sum-column.column-2{
			padding: 8% 25%;
		}
			
		#sum-div .sum-row.about .sum-column.column-2,
		#sum-div .sum-row.about-2 .sum-column.column-1{
			padding: 10% 0;
		}

			#sum-div .sum-row.about .sum-column.column-2 .image img,
			#sum-div .sum-row.about-2 .sum-column.column-1 .image img{
				-webkit-transition: all 1s ease;
				-moz-transition: all 1s ease;
				-ms-transition: all 1s ease;
				-o-transition: all 1s ease;
				transition: all 1s ease;
			}

			#sum-div .sum-row.about .sum-column.column-2:hover .image img,
			#sum-div .sum-row.about-2 .sum-column.column-1:hover .image img{
				-webkit-transform: scale(1.05);
				-moz-transform: scale(1.05);
				-ms-transform: scale(1.05);
				-o-transform: scale(1.05);
				transform: scale(1.05);
			}

	/* Blocks */
	#sum-div .sum-row.blocks{
		background-image: url('../images/home/bg-value-fencing-pvc.jpg');
	}

		#sum-div .sum-row.blocks:nth-child(2) .sum-row-wrapper{
			padding: 8% 0 2%;
		}
		
		#sum-div .sum-row.blocks:nth-child(3) .sum-row-wrapper{
			padding: 0 0 8%;
		}
		
		#sum-div .sum-row.blocks:nth-child(5) .sum-row-wrapper{
			padding: 8% 0 2%;
		}
		
		#sum-div .sum-row.blocks:nth-child(6) .sum-row-wrapper{
			padding: 0 0 2%;
		}
		
		#sum-div .sum-row.blocks:nth-child(7) .sum-row-wrapper{
			padding: 0 0 8%;
		}

			#sum-div .sum-row.blocks .sum-row-wrapper .sum-column{
				color: #000;
				background-color: #fff;
				
				-webkit-border-radius: 25px 0;
				-moz-border-radius: 25px 0;
				-m-border-radius: 25px 0;
				-o-border-radius: 25px 0;
				border-radius: 25px 0;
			}

			#sum-div .sum-row.blocks .sum-row-wrapper .sum-column .image{
				padding: 10px !important;
			}

				#sum-div .sum-row.blocks .sum-row-wrapper .sum-column .image img{
					-webkit-border-radius: 20px 0;
					-moz-border-radius: 20px 0;
					-m-border-radius: 20px 0;
					-o-border-radius: 20px 0;
					border-radius: 20px 0;

					-webkit-transition: all 1s ease;
					-moz-transition: all 1s ease;
					-ms-transition: all 1s ease;
					-o-transition: all 1s ease;
					transition: all 1s ease;
				}

				#sum-div .sum-row.blocks .sum-row-wrapper .sum-column:hover .image img{
					-webkit-transform: scale(1.02);
					-moz-transform: scale(1.02);
					-ms-transform: scale(1.02);
					-o-transform: scale(1.02);
					transform: scale(1.02);
				}

			#sum-div .sum-row.blocks .sum-row-wrapper .sum-column .title{
				padding: 0;
				margin: 0 auto 15px;
				font-size: var(--fontSize120);
				border-bottom: 1px dashed #ccc;
			}

			#sum-div .sum-row.blocks .sum-row-wrapper .sum-column .text{
				padding: 0;
				margin: 0 10px;
			}

	/* Cover */
	#sum-div .sum-row.cover{
		color: #fff;
	}
	
		#sum-div .sum-row.cover .sum-column{
			color: #fff;
			float: none;
			margin: 0 auto;
			background-color: var(--bgColor);
		}

	/* Video */
	#sum-div .sum-row.video{}

		#sum-div .sum-row.video .video{
			padding: 5px;
			margin: 3% 0 1%;
			border: 5px dashed #ccc;
		}

	/* Find Us */
	#sum-div .sum-row.find-us{
		background-image: url('../images/home/bg-value-fencing-pvc.jpg');
	}
	
		#sum-div .sum-row.find-us .sum-column{
			width: 60%;
			margin: 0 auto;
			padding: 2% 0 1%;
			background-color: #fff;

			-webkit-border-radius: 25px 0;
			-moz-border-radius: 25px 0;
			-m-border-radius: 25px 0;
			-o-border-radius: 25px 0;
			border-radius: 25px 0;
		}
	
			#sum-div .sum-row.find-us .sum-column .title{}
	
			#sum-div .sum-row.find-us .sum-column .loc-links{
				padding: 3% 2% 0;
				text-align: left;
			}
	
/* Body */
#body{}

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

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

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

	#content{}

		/* Spread */
		#content > .spread{}
		
			/* Title */
			#content > .spread > .title{
				border-bottom: solid 2px var(--bgColor3);
			}
		
			/* Data */
			#content > .spread > .data{}
		
				/* H3 */
				#content > .spread > .data h2,
				#content > .spread > .data h3{
					border-bottom: 1px dashed #ddd;
				}
		
				/* FAQ */
				#content > .spread > .data .faq{}
				
					#content > .spread > .data .faq .title{
						padding: 10px;
					}
				
					#content > .spread > .data .faq .data{
						padding: 10px;
						background-color: #eee;
					}
		
				/* Franchise Fees */
				#content > .spread > .data .franchise-fees{
					margin: 50px 0;
				}
				
					#content > .spread > .data .franchise-fees .fee{
						padding: 20px;
						text-align: center;
						border: 3px solid #ddd;
					}
				
						#content > .spread > .data .franchise-fees .fee .title{
							font-weight: bold;
						}
				
						#content > .spread > .data .franchise-fees .fee .price{
							margin: 5px 0;
							color: var(--bgColor);
							font-size: var(--fontSize160);
						}
				
						#content > .spread > .data .franchise-fees .fee .sub{
							font-size: var(--fontSize90);
						}

		/* Note */
		#content > .note{
			margin-bottom: 3%;
			text-align: center;
		}
		
/* Get Quote */
#get-quote{}

	#get-quote .location{
		padding: 10% 30%;
	}

/* Pages */
#pages{}
	
	/* Gallery */
	#pages .gallery{}
	
		#pages .gallery .images{}
	
			#pages .gallery .images .image{
				position: relative;
			}
		
				#pages .gallery .images .image:hover a{
					color: #000;
				}
	
				#pages .gallery .images .image:hover .title,
				#pages .gallery .images .image:hover .description{
					display: block;
				}
			
				#pages .gallery .images .image .sqr-img{
					border: 1px solid #ddd;
				}
				
				#pages .gallery .images .image .title,
				#pages .gallery .images .image .description{
					left: 0;
					right: 0;
					bottom: 0;
					display: none;
					padding: 5px 8px;
					position: absolute;
					background-color: #ddd;
					font-size: var(--fontSize90);
				}

	/* Template */
	#pages .template.page-left{}
		
		#pages .template.page-left .image img{
			border: 1px solid #ccc;
		}
		
		#pages .template.page-left .image .title{
			padding: 10px 0;
		}
		
	#pages .template.page-right{}
		
		#pages .template.page-right .html:nth-of-type(4){}
			
			#pages .template.page-right .html:nth-of-type(4) ul{
				margin: 0;
				padding: 0;
				list-style: none;
			}
				
				#pages .template.page-right .html:nth-of-type(4) ul li{
					margin: 0;
					color: #fff;
					margin: 2px;
					padding: 4px 6px;
					display: inline-block;
					background: var(--bgColor3);
					font-size: var(--fontSize80);
				}

	/* Videos */
	#pages .video{}
	
		#pages .video .frame{
			padding-top: 10px;
		}
		
		#pages .video .info{
			padding-top: 20px;
			text-align: right;
		}
		
			#pages .video .info .youTube{
				color: #888;
				padding-top: 10px;
			}
		
				#pages .video .info .youTube a{
					color: #888;
				}

/* 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: #ddd;
	}

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

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

/* 1650px */		
@media screen and (max-width: 1650px){
	#menu-banner .menu-banner ul li a{
		padding: 20px 10px;
	}
	
	#splash .content .slider .core-image-slider .description .title{
		padding: 8px 13px;
	}
	
	#sum-div .sum-row.find-us .sum-column{
		width: 70%;
	}
}

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

	#splash .content .warranty img{
		width: 180px;
	}
	
	#sum-div .sum-row.find-us .sum-column{
		width: 75%;
	}
}

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

	#splash .content .warranty img{
		width: 150px;
	}
	
	#splash .content .kicker:before{
		top: -8px;
		border-width: 0 8px 8px 8px;
	}

	#splash .content .kicker:after{
		width: 16px;
	}
	
		#splash .content .kicker h1{
			margin: 0 0 2%;
		}

		#splash .content .kicker h3{
			padding: 8px 15px;
		}
	
	#sum-div .sum-row.find-us .sum-column{
		width: 80%;
	}
}

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

	#splash .content .warranty img{
		width: 130px;
	}
}

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

	#splash .content .warranty img{
		width: 110px;
	}

	#splash .content .kicker h3{
		padding: 6px 12px;
	}
}

/* 1024px */		
@media screen and (max-width: 1024px){
	#menu-banner .menu-banner ul li a{
		padding: 8px 4px;
	}
	
	#splash .content .warranty img{
		width: 90px;
	}
	
	#splash .content .kicker:before{
		top: -6px;
		border-width: 0 6px 6px 6px;
	}

	#splash .content .kicker:after{
		width: 12px;
	}
}

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

		#splash .content .warranty{
			top: auto;
			left: auto;
			right: auto;
			bottom: auto;	
			margin: 0 0 5%;
			text-align: center;
			position: relative;
		}

			#splash .content .warranty img{
				width: 200px;
				margin: 0 auto;
			}
		
		#splash .content .kicker{
			padding: 5%;
			text-align: center;
		}
		
			#splash .content .kicker:before,
			#splash .content .kicker:after{
				display: none;
			}
		
			#splash .content .kicker ul{
				text-align: left;
			}
			
			#splash .content .kicker .link{}

				#splash .content .kicker .link a{
					margin: 0 0 10px 0;
					display: block;
				}

			#splash .content .kicker .franchise{
				margin: 0;
				width: 100%;
				padding: 10px 0;
			}

				#splash .content .kicker .franchise a{
					display: block;
				}

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

		#pg-splash .warranty{
			margin: 0;
			text-align: center;
		}

			#pg-splash .warranty img{
				margin: 0 auto;
			}
		
	#slogan{
		padding: 10px 0;
	}
	
	#sum-div .sum-row.about .sum-column.column-1,
	#sum-div .sum-row.about-2 .sum-column.column-2{
		padding: 10%;
	}
		
	#sum-div .sum-row.about .sum-column.column-2,
	#sum-div .sum-row.about-2 .sum-column.column-1{
		padding: 10%;
	}

	#sum-div .sum-row.blocks .sum-row-wrapper .sum-column{
		margin: 3%;
	}
	
	#sum-div .sum-row.find-us .sum-column{
		width: 90%;
	}

	#get-quote .location{
		padding: 10%;
	}
}