/*
*		    ________      .___   
*	__  _  _\_____  \   __| _/
*	\ \/ \/ / _(__  <  / __ |
*	 \     / /       \/ /_/ |
*	  \/\_/ /______  /\____ |
*	               \/      \/
*
*	@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: #197C28;
	--bgColor2: #186824;
	--bgColor3: #000;

	--linkColor: #000;
	--linkHoverColor: #bd962c;
	
	--btnColor: #fff;
	--btnBgColor: #197C28;
	--btnHoverColor: #fff;
	--btnBgHoverColor: #186824;
	
	--dialogBgColor: #197C28;
	--dialogBgColor2: #186824;
	--dialogHeadingColor: #fff;
}

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

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

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

/* Present */
#present{}

	#present > .slides{}
	
		#present > .slides .slide{}
				
			#present > .slides .slide .data{
				background-color: rgba(0, 0, 0, 0.5) !important;
			}
		
			#present > .slides .slide.slide-0 .data,
			#present > .slides .slide.slide-1 .data{
				background-color: rgba(255, 255, 255, 0.5) !important;
			}
				
				#present > .slides .slide .data > .title{}
				
				#present > .slides .slide .data > .html{}
				
				#present > .slides .slide .data > .image{}
				
				#present > .slides .slide .data > .gallery{}
				
				#present > .slides .slide .data > .video{}