/* Fonts --------------------------------------- */
@font-face {
	font-family: 'Sansa-400';
	src: url('fonts/SansaPro-Normal.woff2') format('woff2'),
			url('fonts/SansaPro-Normal.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Sansa-700';
	src: url('fonts/SansaPro-Bold.woff2') format('woff2'),
			url('fonts/SansaPro-Bold.woff') format('woff');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}

.text-700 {
	font-family: 'Sansa-700', sans-serif;
}

.text-white { color: #fff; }
.text-blue { color: #5BABD3; }

/* -- Basics ---------------------------------*/
* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
}

body {
  font-family: 'Sansa-400', sans-serif;
  background: #fff;
  color: #464646;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

/* -- Links ---------------------------------*/
a, a:hover, a:focus, a:active {
  text-decoration: none;
  outline: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.link-white, .link-white:hover { color: #fff; }

/* -- Header --------------------------------*/
#header {
	position: relative;
	padding: 2rem 0;	
}
#header:before {
	content: '';
	display: block;
	width: 70%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: -moz-linear-gradient(left,  rgba(51,66,73,1) 0%, rgba(51,66,73,1) 60%, rgba(51,66,73,0) 100%);
	background: -webkit-linear-gradient(left,  rgba(51,66,73,1) 0%,rgba(51,66,73,1) 60%,rgba(51,66,73,0) 100%);
	background: linear-gradient(to right,  rgba(51,66,73,1) 0%,rgba(51,66,73,1) 60%,rgba(51,66,73,0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#334249', endColorstr='#00334249',GradientType=1 );
	z-index: 0;
}
#header:after {
	content: '';
	display: block;
	width: 70%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	background-image: url('../images/header-bg.jpg');
	background-size: cover;
	background-position: top right;
	backgrouns-repeat: no-repeat;
	z-index: -1;
}

#header .container {
	position: relative;
	z-index: 1;
}

	.header--logo_img {
		max-width: 250px;
	}

/* -- Introduction --------------------------*/
#introduction {
	padding: 3.5rem 0;
	background: rgb(138,200,236);
  background: linear-gradient(90deg, rgba(138,200,236,1) 0%, rgba(91,171,211,1) 100%);
}

	#introduction p {
		margin: 0;
	}

@media all and (min-width: 992px) {
	#introduction {
		padding: 5rem 0;
	}
}

/* -- Visie ---------------------------------*/
#visie {
	position: relative;
}
#visie:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 40%;
	background: rgb(138,200,236);
  background: linear-gradient(90deg, rgba(138,200,236,1) 0%, rgba(91,171,211,1) 100%);
	z-index: -1;
}

	.visie--wrapper {
		padding: 3rem 1.5rem;
		border-radius: 1rem;
		background: rgb(64,78,86);
		background: linear-gradient(90deg, rgba(64,78,86,1) 0%, rgba(51,66,73,1) 100%);
		color: #fff;
	}

#visie .list-unstyled {
	font-size: 1.125rem;
}

	#visie .list-unstyled li {
		display: flex;
		align-items: center;
	}

	#visie .list-unstyled li + li {
		margin-top: .5rem;
	}

		#visie .list-unstyled li i {
			font-size: 1.6rem;
		}

		#visie .list-unstyled li span {
			line-height: 1;
		}


@media all and (min-width: 992px) {
	.visie--wrapper {
		padding: 5rem 3rem;
	}
}

/* -- Contact -------------------------------*/
#contact {
	padding: 5rem 0 3rem 0;
}
	
#contact .image-wrapper {
	position: relative;
}

#contact .image-wrapper > img {
	border-radius: 1rem;
}

#contact .brand-wrapper {
	padding: 1.5rem;
	background: #fff;
	position: absolute;
	bottom: -1rem;
	left: -1rem;
	border-radius: 1rem;
	-webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.3);
	-moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.3);
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.3);
	height: 100%;
	max-height: 180px;
	display: flex;
	align-items: center;
}

	#contact .brand-wrapper img {
		width: 220px;
	}

	#contact .company-contact i {
		width: 24px;
	}

	#contact .company-contact a {
		color: #404E56;
	}

@media all and (min-width: 992px) {
	#contact .brand-wrapper {
		padding: 1.75rem;
		max-height: 220px;
		bottom: -8.3333%;
		left: -8.3333%;
	}

		#contact .brand-wrapper img {
			width: 250px;
		}
}

/* -- Footer --------------------------------*/
#footer {
	margin-top: 3rem;
	padding: 1.5rem 0;
	background: rgb(64,78,86);
	background: linear-gradient(90deg, rgba(64,78,86,1) 0%, rgba(51,66,73,1) 100%);
	color: rgba(255,255,255,.4);
}

	#footer span {
		font-size: .85rem;
	}

		#footer a {
			color: rgba(255,255,255,.4);
		}

		#footer a:hover {
			color: rgba(255,255,255,1);
		}

/*# sourceMappingURL=stylesheet.css.map */