/*
*		    ________      .___   
*	__  _  _\_____  \   __| _/
*	\ \/ \/ / _(__  <  / __ |
*	 \     / /       \/ /_/ |
*	  \/\_/ /______  /\____ |
*	               \/      \/
*
*	@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: #E31A22;
	--bgColor2: #D4121A;
	--bgColor3: #283A90;
	--bgColor4: #1D2D78;
	--bgColor5: #FFE700;
	--bgColor6: #FFDA00;
	--bgColor7: #F4F4F4;
	--bgColor8: #DBDBDB;
	
	--linkColor: #222;
	--linkHoverColor: #E31A22;
	
	--mobileMenuColor: #000;
	--mobileMenuBtnColor: #E31A22;
	--mobileMenuSelectedColor: #fff;
	--mobileMenuSelectedBgColor: #283A90;
	--mobileMenuContentBgColor: #fff;
	
	--btnColor: #fff;
	--btnBgColor: #E31A22;
	--btnHoverColor: #fff;
	--btnBgHoverColor: #D4121A;
	
	--dialogBgColor: #E31A22;
	--dialogBgColor2: #D4121A;
	--dialogHeadingColor: #fff;
	
	--callBackBtnColor: #000;
	--callBackBtnBgColor: #FDFE02;
	--whatsAppBtnBgColor: #0CC143;
	--whatsAppTextRadius: 5px;
}

/* ------------- CORE : OVER WRITES ------------- */

#widgets{}

	#widgets .core-call-me-back{}
	
		#widgets .core-call-me-back .buttons{}
			
			#widgets .core-call-me-back .buttons .btn:nth-child(2),
			#widgets .core-call-me-back .buttons .btn:nth-child(2):hover{
				color: var(--callBackBtnColor) !important;
				background-color: var(--callBackBtnBgColor);
			}
			
	#widgets .core-call-me-back-mobile-btn,
	#widgets .core-call-me-back-mobile-btn:hover{
		background-color: var(--callBackBtnBgColor);
	}
			
		#widgets .core-call-me-back-mobile-btn svg{
			fill: color: var(--callBackBtnColor) !important;
		}

	#widgets .core-call-me-back-mobile{}
	
		#widgets .core-call-me-back-mobile .buttons{}
			
			#widgets .core-call-me-back-mobile .buttons .btn:nth-child(1),
			#widgets .core-call-me-back-mobile .buttons .btn:nth-child(1):hover{
				color: var(--callBackBtnColor) !important;
				background-color: var(--callBackBtnBgColor);
			}

	#widgets .core-whatsapp-chat-btns{}

		#widgets .core-whatsapp-chat-btns .whatsapp-chat-btn{
			background-color: var(--whatsAppBtnBgColor) !important;
		}

			#widgets .core-whatsapp-chat-btns .whatsapp-chat-btn a{
				position: relative;
			}

				#widgets .core-whatsapp-chat-btns .whatsapp-chat-btn a:before{
					top: -29px;
					right: -88px;
					color: #fff;
					padding: 5px;
					position: absolute;
					content: 'Chat Now';
					background-color: var(--whatsAppBtnBgColor);
					
					-webkit-border-radius: var(--whatsAppTextRadius);
					-moz-border-radius: var(--whatsAppTextRadius);
					-m-border-radius: var(--whatsAppTextRadius);
					-o-border-radius: var(--whatsAppTextRadius);
					border-radius: var(--whatsAppTextRadius);
					
					-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);
				}

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

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

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

/* Menu */
#menu-banner{}

	/* Top Banner */
	#menu-banner .top-banner{
		color: #000;
		background-color: var(--bgColor7);
		border-bottom: 1px solid var(--bgColor8);
	}
	
		#menu-banner .top-banner a{
			color: #000;
		}

	/* Menu */
	#menu-banner .menu-banner{}

		#menu-banner .menu-banner .right ul li a{
			color: #222;
			padding: 30px 15px;
		}

		#menu-banner .menu-banner .right > ul > li > a{
			font-weight: bold;
			text-transform: uppercase;
		}
			
			#menu-banner .menu-banner .right ul li:hover > a{
				color: var(--bgColor);
				transition: color linear 0.3s;
			}
			
			#menu-banner .menu-banner .right ul li.active-li > a{
				color: var(--bgColor);
				transition: color linear 0.3s;
			}

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

	/* Search Banner */
	#menu-banner .search-banner{
		background-color: var(--bgColor7);
		border-top: 1px solid var(--bgColor8);
	}

/* Slider */
#slider{
	position: relative;
}

	#slider .content{
		padding: 12% 0;
		text-align: center;
		background: rgba(255, 231, 0, 0.3);
	}

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

		#slider.home .content .image{
			width: 50%;
			margin: 0 auto;
		}

		#slider.home .content h1{
			color: #fff;
			font-size: 260%;
			padding: 10px 20px;
			margin-bottom: 50px;
			display: inline-block;
			background-color: var(--bgColor3);
		}
		
/* Sum-Div */
#sum-div{}
	
	/* Title */
	#sum-div .sum-row .sum-row-wrapper > .title{
		position: relative;
		font-size: var(--fontSize200);
	}
	
		#sum-div .sum-row .sum-row-wrapper > .title:after{
			left: 20%;
			bottom: 0;
			width: 60%;
			content: '';
			position: absolute;
			border-bottom: 4px solid var(--bgColor3);
		}
	
		#sum-div .sum-row .sum-row-wrapper > .title span{
			color: var(--bgColor);
			font-size: var(--fontSize140);
		}
	
	/* Products */
	#sum-div .sum-row.products{
		background-color: var(--bgColor7);
	}

/* Body */
#body{}

	/* Left & Right */
	#left,
	#right{}

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

			#left > .label-box > .title,
			#right > .label-box > .title{
				padding: 3%;
				text-align: left;
				color: var(--bgColor5);
				text-transform: uppercase;
				border-bottom: 2px solid var(--bgColor);
				
				background: var(--bgColor3);
				background: linear-gradient(45deg, var(--bgColor3) 0%, var(--bgColor3) 70%, #ffffff 70%, #ffffff 100%);
				background: -moz-linear-gradient(45deg, var(--bgColor3) 0%, var(--bgColor3) 70%, #ffffff 70%, #ffffff 100%);
				background: -webkit-linear-gradient(45deg, var(--bgColor3) 0%, var(--bgColor3) 70%, #ffffff 70%, #ffffff 100%);
			}

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

	/* Right */
	#content{}

		/* Spread */
		#content > .spread{}

			/* Title */
			#content > .spread > .title{
				color: #000;
				color: var(--bgColor5);
				text-transform: uppercase;
				border-bottom: 2px solid var(--bgColor);
				
				background: var(--bgColor3);
				background: linear-gradient(45deg, var(--bgColor3) 0%, var(--bgColor3) 70%, #ffffff 70%, #ffffff 100%);
				background: -moz-linear-gradient(45deg, var(--bgColor3) 0%, var(--bgColor3) 70%, #ffffff 70%, #ffffff 100%);
				background: -webkit-linear-gradient(45deg, var(--bgColor3) 0%, var(--bgColor3) 70%, #ffffff 70%, #ffffff 100%);
			}

				#content > .spread > .title a{
					color: #fff;
				}

			/* Data */
			#content > .spread > .data{}

				/* H3 */
				#content > .spread > .data h3{
					font-size: 140%;
					border-bottom: 1px solid #ddd;
				}

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

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

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

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

	#footer .title{
		color: #fff;
	}

	#footer a{
		color: #fff;
	}

		#footer a:hover{
			color: #fff;
		}
	
/* 1750px */		
@media screen and (max-width: 1750px){
	#menu-banner .menu-banner .right ul li a{
		padding: 29px 15px;
	}
}
	
/* 1650px */		
@media screen and (max-width: 1650px){
	#menu-banner .menu-banner .right ul li a{
		padding: 28px 14px;
	}
}
	
/* 1550px */		
@media screen and (max-width: 1550px){
	#menu-banner .menu-banner .right ul li a{
		padding: 27px 14px;
	}
}
	
/* 1450px */		
@media screen and (max-width: 1450px){
	#menu-banner .menu-banner .right ul li a{
		padding: 26px 13px;
	}
}
	
/* 1380px */		
@media screen and (max-width: 1380px){
	#menu-banner .menu-banner .right ul li a{
		padding: 25px 13px;
	}
}
	
/* 1250px */		
@media screen and (max-width: 1250px){
	#menu-banner .menu-banner .right ul li a{
		padding: 24px 12px;
	}
}
	
/* 1150px */		
@media screen and (max-width: 1150px){
	#menu-banner .menu-banner .right ul li a{
		padding: 23px 12px;
	}
}
	
/* 1100px */		
@media screen and (max-width: 1100px){
	#menu-banner .menu-banner .right ul li a{
		padding: 22px 11px;
	}
}

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

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

/* 600px */		
@media screen and (max-width: 600px){
	#widgets .core-whatsapp-chat-btns .whatsapp-chat-btn a:before{
		top: -18px;
		left: -80px;
		right: unset;
	}
	
	#slider .content{
		padding: 20% 0;
	}

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

		#slider.home .content .image{
			width: 90%;
		}

		#slider.home .content h1{
			width: calc(90% - 40px);
			margin-bottom: 30px;
		}
}