/* --- Body --- */
html,body {
	height: 100%;
}
body {
	background-image: url("../img/background.svg");
	background-repeat: repeat;
	background-position: left top;
	background-color: #fbf8f3; 
	background-size: 300px 150px;
}

/* --- Content --- */
.content .row {
	padding-bottom:10vh !important;
}

/* --- Home --- */
.home-container {
	margin-top:-10px;
	background-image: url("../img/home_bg.jpg");
	background-repeat: repeat;
	background-position: left top;
	background-color: #fbf8f3; 
	height:100%;
}
.home-container .logo-home {
	background: #FAF9F1;
	width:50vh;
	height:50vh;
}
.home-container .scrolldown {
	width: 30px;
}
.home-container .bouncing {
	position:absolute;
	z-index: 2;
	bottom: -5vh;
}
.home-options {
	margin-left: 9vh;
}

/* --- Fonts --- */
h1 {
	font-family: 'Abril Fatface', serif;
	color: #479c95;
	font-size: 10vh;
}
@media only screen and (max-width: 600px) {
	h1 {
		font-size: 15vw !important;
		word-break: break-word;
		max-width: 80vw;
	}
}
h2 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	color: #479c95;
	font-size: 1.9vh;
}
h3 {
	float: left;
	margin-right:3vw;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	color: #479c95;
	font-size: 1.7vh;
	margin-top: 3px;
}
.content p, 
.content ul li {
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
}
.content p a {
	color: #479c95;
	font-weight: bold;
	text-decoration: none;
}
.contact-data a {
	color: #000 !important;
	padding-left:1vw;
}

/* --- Header --- */
.navbar_top {
	background: #479c95;
}
.nav-item {
	margin-left: 2vw;
}
.nav-item a {
	font-size: 2vh;
	align-items: center;
	display: inline-flex;
}
@media only screen and (max-width: 600px) {
  .nav-item a {
	font-size: 1.5vh;
  }
  .nav-item {
	margin-left: 1vw;
	}
}
.logo {
	height:17vh;
	background: #FAF9F1;
	position:absolute;
	top: 20px;
	left: 30px;
}
.main-header .nav-link {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	color: #fff;
}

.main-header .active {
	display: inline-block;
	position: relative;
	color: #fff;
}
.main-header .active:before {
	transform: translateX(-50%);
	border-radius: 100%;
	position: absolute;
	background: #fff;
	bottom: 10px;
	height: 9px;
	content: '';
	width: 9px;
	left: 50%;
	top:40px;
}

/* --- Decor --- */
.decor {
	position:fixed;
	height: 60vh;
	z-index: -1;
	bottom: 0;
	right: 0;
}

.lonneke {
	position:fixed;
	height: 40vh;
	z-index: -1;
	bottom: 20px;
	right: 20px;
}

.strip { 
	position:fixed;
	height: 300px;
	z-index: -2;
	bottom: 0;
	width: 100%;
	background-image: url("../img/footer_1.svg");
	background-repeat: repeat-x;
	background-position: right bottom;
	background-size: 300px, 250px;
}

@media only screen and (max-width: 600px) {
	.lonneke {
		position: relative;
		display: block;
		margin-left: auto;
		margin-right: auto;
	}
	.decor {
		margin-top:-10vh;
		position:relative;
		width:100%;
	}

}

/*--- Animations ---*/
@keyframes bouncing {
  from, 20%, 53%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    transform: translate3d(0,0,0);
  }

  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    transform: translate3d(0,-4px,0);
  }
}

.bouncing {
  position: absolute;
  animation-duration: 2s;
  animation-name: bouncing;
  animation-iteration-count: infinite;
  font-size: 2em;
}