/*-------------------------------- RESET CSS ---------------------------------------*/
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{border:0;font-size:100%;font:inherit;vertical-align:baseline;margin:0;padding:0}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:none}table{border-collapse:collapse;border-spacing:0}
/*============================ END RESET CSS =======================================*/

html, body{
	margin: 0;
	padding: 0;
	font-family: 'Roboto', sans-serif;
}


/*------------------------- VIDEO BACKGROUND ----------------------------------*/
.homepage-hero-module {
	border-right: none;
	border-left: none;
	position: relative;
}
.no-video .video-container video,
.touch .video-container video {
	display: none;
}
.no-video .video-container .poster,
.touch .video-container .poster {
	display: block !important;
}
.video-container {
	position: relative;
	bottom: 0%;
	left: 0%;
	height: 100%;
	width: 100%;
	overflow: hidden;
	background: #000;
}
.video-container .poster img {
	width: 100%;
	top: 0;
	position: absolute;
}
.video-container .filter {
	z-index: 100;
	position: absolute;
	background: rgba(0, 0, 0, 0.7);
	width: 100%;
	height: 100%;
}
.video-container video {
	position: absolute;
	z-index: 0;
	top: 0;
}
.video-container video.fillWidth {
	width: 100%;
    height: 100%;
    min-height: 56.25vw;
    min-width: 177.77vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
/*======================= END VIDEO BACKGROUND ================================*/






.menuTop {
	width: 100%;
	height: 100px;
	padding: 30px 0px;
	text-align: center;
}

.logoImg {
	width: auto;
	height: 70px;
}

.middleTitle {
	margin: 21vh auto;
	text-align: center;
	padding: 30px 40px;
	display: table;
	background: rgba(0,0,0,0.5);
	border: 2px dashed #eee;
}

.middleTitleSmall {
	color: #27AE60;
	font-size: 25px;
	font-weight: bold;
}

.middleTitleBig {
	font-family: 'Rubik', sans-serif;
	color: #eee;
	font-size: 70px;
	font-weight: bold;
	margin: 10px 0px;
}

.greenSection {
	width: 100%;
	padding: 50px 0px;
	background: #27AE60;
}

.greenSectionInner {
	width: 100%;
	max-width: 1000px;
	display: table;
	margin: 0 auto;
	text-align: center;
	color: #333;
	line-height: 31px;
	font-size: 23px;
	font-weight: bold;
}

.greenSectionInnerP {
	padding: 0px 11px;
}

.bodySection {
	width: 100%;
	padding: 70px 0px;
	background: #eee;
}

.bodySectionInner {
	width: 100%;
	max-width: 1100px;
	display: table;
	margin: 0 auto;
}

.bodySectionTitle {
	color: #27AE60;
	font-size: 50px;
	font-family: 'Rubik', sans-serif;
	font-weight: bold;
	text-align: center;
}

.categoryContainer {
	display: table;
	width: 100%;
	margin: 50px auto 10px auto;
	text-align: center;
}

.categoryTab {
	display: inline-block;
	width: 320px;
	margin: 10px 10px;
	text-decoration: none;
	box-shadow: 0px 0px 20px 0px #ccc;
}

.categoryTab:hover {
	cursor: pointer;
	box-shadow: 0px 0px 30px 0px #aaa;
}

.categoryImage {
	display: block;
	width: 100%;
}

.categoryTitle {
	color: #555;
	font-weight: bold;
	font-size: 20px;
	padding: 20px;
	background-color: #fff;
	border-bottom: 3px solid #27AE60;
}

.footer {
	background-color: #27AE60;
	padding: 30px 0px;
}

.footerInner {
	width: 100%;
	max-width: 1000px;
	display: table;
	margin: 0 auto;
	font-size: 15px;
	color: #eee;
	text-align: center;
}

/*---------------- MEDIA QUERIES --------------------------------------*/
@media only screen and (max-width: 1000px) {
	.logoImg {
		width: 90%;
		max-width: 300px;
		height: auto;
	}
	.middleTitleSmall {
		font-size: 15px;
		line-height: 20px;
	}
	.middleTitleBig {
		font-size: 40px;
	}
	.categoryTab {
		margin: 10px 0px;
	}
	.middleTitle {
		width: 90%;
		margin: 11vh auto;
		padding: 20px 10px;
	}
	.greenSectionInner {
		line-height: 25px;
		font-size: 19px;
	}
	.bodySectionTitle {
		font-size: 40px;
	}
}


