@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Lato:100,300,400,700,900|Open+Sans:300,400,600,700,800');


/********************/
/* General Options */
/******************/

* {
	font-family: 'Lato', sans-serif;
}

body {
	color: #fff;
	background: #6C6C6C;
}

p {
	margin: 0;
}

h1 {
	font-size: 36px;
}

h2 {
	font-size: 24px;
}

h3 {
	font-size: 21px;
}

h4 {
	font-size: 18px;
}

h5 {
	font-size: 14px;
}

h6 {
	font-size: 12px;
}


/***************/
/* Text align */
/*************/

.textLeft {
	text-align: left;
}

.textCenter {
	text-align: center;
}

.textRight {
	text-align: right;
}


/*************/
/* imageFit */
/***********/

.imageFit img {
	width: 100%;
}

/********/
/* Nav */
/******/

nav {
	background-color: #fff;
	max-width: 100%; /* <-- Nav width */
	margin: 0px auto;
}

/* Add this class in nav, for a fixed nav */
.navFixed {
	position: fixed;
	width: 100%;
	z-index: 9999;
}

.menu li {
	list-style: none;
	display: inline-block;
	padding: 0 10px 0 10px;
}

ul {
	text-align: center;
	margin: 0;
	padding: 0;
	color: #fff;
}

.menu li a {
	display: block;
	padding: 25px;
	font-size: 18px;
	text-align: center;
	color: #43FFE2;
	transition: color 0.35s ease-in-out;
	text-decoration: none;
}

.menu li a:hover {
	color: #a5a5a5;
}

a.active {
	color: #a5a5a5 !important; /* active link */
}

/* For the fixed nav on scroll */

.sticky-wrapper {
	width: 100%;
	margin: 150px auto 40px auto;
}

.stuck {
	position: fixed;
	width: 100%;
	top: 0;
	-webkit-box-shadow: 0px 0px 26px -4px rgba(0,0,0,0.3);
	-moz-box-shadow: 0px 0px 26px -4px rgba(0,0,0,0.3);
	box-shadow: 0px 0px 26px -4px rgba(0,0,0,0.3);
	z-index: 1000;

}

@media only screen and (max-width: 960px) {
	.menu li a {
		font-size: 20px;
		padding: 20px 35px;
	}
}

@media only screen and (max-width: 720px) {

.menu li {
	display: block;
}

.hamburger {
	display: block;
  position: relative;
  width: 40px;
  height: 40px;
  margin: 0 auto;
  cursor: pointer;
	padding: 10px 0;
}

.hamburgerLeft {
	margin: 0 10px;
}

.line {
	position: absolute;
	background: #ccc;
  width: 100%;
  height: 4px;
  top: 28px;
  right: 0;
  border-radius: 10px;
	transition: all 0.35s ease-in-out;
}

.line:before {
	position: absolute;
  background: #ccc;
  width: 40px;
  height: 4px;
  top: 13px;
  right: 0;
  content: '';
  border-radius: 10px;
}

.line:after {
	position: absolute;
  background: #ccc;
  width: 40px;
  height: 4px;
  bottom: 13px;
  right: 0;
  content: '';
  border-radius: 10px;
}

.line:before, .line:after {
  transition: all 0.35s ease-in-out;
}

/* Burger Animation */
.hamburger.menu-on .line {
  background: rgba(0, 0, 0, 0);
}

.hamburger.menu-on .line:before {
  transform: rotateZ(-45deg);
  top: 0;
}

.hamburger.menu-on .line:after {
  transform: rotateZ(45deg);
  bottom: 0;
}

.menu li a {
	font-size: 18px;
}

.menu {
  height: 0;
  overflow: hidden;
  transition: height 0.3s linear;
	background-color: #6F9DD3;
	z-index: 9999;
}

.slide-down {
	height: 360px; /* Edit this in dependence of amount of menu items etc. */
}

}

/***********************/
/* Some awesome stuff */
/*********************/

/* scale it up */

figure.scaleItUp img, .siuOverlay {
	transition: all 0.35s ease;
}

figure.scaleItUp {
	position: relative;
	overflow: hidden;
	margin: 0;
	padding: 0;
}

figure.scaleItUp img {
	width: 100%;
}

figure.scaleItUp:hover img {
	transform: scale(1.1);
	transition: transform 0.35s ease;
}

figure.scaleItUp .siuOverlay {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(255,255,255,0.6);
	opacity: 0;
}

figure.scaleItUp .siuOverlay p, h3 {
	text-align: center;
	color: #000;
	font-weight: normal;
	padding: 0;
	margin: 10px 0;
}

figure.scaleItUp:hover .siuOverlay {
	opacity: 1;
}

/* fixed image */

.imageFixed {
	background-attachment: fixed;
	background-repeat: no-repeat;

}

/*******************/
/* flex Container */
/*****************/

.flexContainer {
	display: flex;
	display: -webkit-flex;
	align-content: center;
	justify-content: center;
	flex-direction: column;
}


/*********/
/* Maps */
/*******/

.mapsOverlay {
	background: transparent;
	position: relative;
	max-width: 1160px;
	height: 450px;
	top: 450px;
	margin-top: -450px;
}


/****************/
/* Grid System */
/**************/


.container {
	max-width: 1200px;
	width: 100%;
	box-sizing: border-box;
	overflow: auto;
	margin: 0 auto;
}

.row:before, .row:after {
	content: "";
	display: table;
	clear: both;
}

[class*='column-'] {
	float: left;
	min-height: 1px;
	box-sizing: border-box;
	padding: 10px;
}

[class*='column-'] img {
	display: block;
}

/* Unbroken */

.unbroken div {
	padding: 0;
}

.unbroken p {
	margin: 20px 40px;
}

/* Container Percentage */

.percent-90 {
	width: 90%;
}

.percent-80 {
	width: 80%;
}

.percent-70 {
	width: 70%;
}

.percent-60 {
	width: 60%;
}

.percent-50 {
	width: 50%;
}

/* Percentage only until 960px. Than width of container 100% again */
@media only screen and (max-width: 960px) {
	[class*='percent-'] {
		width: 100%;
	}
}


/* Column Small */

.column-small-1 {
	width: 8.33333333%;
}
.column-small-2 {
	width: 16.66666666%;
}
.column-small-3 {
	width: 25%;
}
.column-small-4 {
	width: 33.33333333%;
}
.column-small-5 {
	width: 41.66666667%;
}
.column-small-6 {
	width: 50%;
}
.column-small-7 {
	width: 58.33333333%;
}
.column-small-8 {
	width: 66.66666667%;
}
.column-small-9 {
	width: 75%;
}
.column-small-10 {
	width: 83.33333333%;
}
.column-small-11 {
	width: 91.66666667%;
}
.column-small-12 {
	width: 100%;
	padding: 10px 0;
}


/* Column normal */

.column-normal-1 {
	width: 8.33333333%;
}
.column-normal-2 {
	width: 16.66666666%;
}
.column-normal-3 {
	width: 25%;
}
.column-normal-4 {
	width: 33.33333333%;
}
.column-normal-5 {
	width: 41.66666667%;
}
.column-normal-6 {
	width: 50%;
}
.column-normal-7 {
	width: 58.33333333%;
}
.column-normal-8 {
	width: 66.66666667%;
}
.column-normal-9 {
	width: 75%;
}
.column-normal-10 {
	width: 83.33333333%;
}
.column-normal-11 {
	width: 91.66666667%;
}
.column-normal-12 {
	width: 100%;
	padding: 10px 0;
}


/* Column normal */

.column-large-1 {
	width: 8.33333333%;
}
.column-large-2 {
	width: 16.66666666%;
}
.column-large-3 {
	width: 25%;
}
.column-large-4 {
	width: 33.33333333%;
}
.column-large-5 {
	width: 41.66666667%;
}
.column-large-6 {
	width: 50%;
}
.column-large-7 {
	width: 58.33333333%;
}
.column-large-8 {
	width: 66.66666667%;
}
.column-large-9 {
	width: 75%;
}
.column-large-10 {
	width: 83.33333333%;
}
.column-large-11 {
	width: 91.66666667%;
}
.column-large-12 {
	width: 100%;
	padding: 10px 0;
}

/* Responsive */

@media only screen and (max-width: 1200px) {
	.container {
		padding: 0 30px;
	}
}

@media only screen and (max-width: 960px) {
	[class*='column-small-'] {
		width: 100%;
		text-align: center;
		margin: 10px 0;
	}
}

@media only screen and (max-width: 640px) {
	[class*='column-small-'] {
		padding: 5px;
	}

	[class*='column-normal-'] {
		width: 100%;
		padding: 5px;
		text-align: center;
		margin: 10px 0;
	}

	[class*='column-large-'] {
		padding: 5px;
	}

	.container {
		padding: 0 20px;
	}
}

@media only screen and (max-width: 480px) {
	[class*='column-large-'] {
		width: 100%;
		text-align: center;
		margin: 10px 0;
	}

	.container {
		padding: 0 15px;
	}
}
