@charset "utf-8";
/* hier komt jouw CSS */


/***** NAVIGATIE *****/
.right-menu li{
	display: inline-block;
	margin-top: 30px !important;
}
.right-menu .fa {
	font-size: 18px;
	margin-right: 10px;
	cursor: pointer;
	color: #004E99;
}
.right-menu .fa:hover {
	color: #AD0013;
}

.navbar-brand img {
	width: 300px;
}
.navbar-brand {
	left: 50%;
	top: 25px;
	transform: translateX(-50%);
	position: absolute;
}

.header {
	background-color: #f5f6fc;
	margin-bottom: 80px;
	min-height: 15vh;
}

.navbar {
	padding: 0 35px !important;
}

.navbar-toggler {
	border: none !important;
	outline: none !important;
	padding: 0 !important;
	margin-top: 30px;
}
.navbar-toggler .fa {
	font-size: 30px;
	cursor: pointer;
}

.nav-link {
	color: #004E99 !important;
}
.nav-link:hover {
	color: #AD0013 !important;
	text-decoration: underline !important;
}


/***** BANNER *****/
.banner-img {
	margin: 80px 115px;
	width: 60%;
}
.banner-img img {
	width: 100%;
	margin-bottom: -80px;
}

.banner {
	position: relative;
}

.banner-title {
	position: absolute;
	left: 50%;
	top: 20%;
}
.banner-title h1 {
	font-size: 55px;
	background-color: rgba(0,0,0,0.75);
	color: #fff;
	line-height: 70px;
	padding: 0px 10px 0 10px;
}

/***** HET BEDRIJF VERSANTY *****/
.bedrijf-versanty {
	padding: 100px 0;
}

.versanty-box {
	margin: 80px 0;
}

.title-style h1 {
	padding: 40px 0;
}

.title-style {
	margin: 0 auto 80px;
	height: 120px;
	width: 80%;
	max-width: 700px;
	background-color: #fff;
	position: relative;
	box-shadow: 0 4px 5px 0 rgba(0,0,50,0.5)
}
.title-style::after {
	content: '';
	height: 100px;
	width: 200px;
	background-color: #004E99;
	position: absolute;
	top: -10px;
	left: -10px;
	z-index: -1;
}
.title-style::before {
	content: '';
	height: 100px;
	width: 200px;
	background-color: #AD0013;
	position: absolute;
	bottom: -10px;
	right: -10px;
	z-index: -1;
}

.work-img {
	position: relative;
	margin-bottom: 15px;
}
.work-img img {
	width: 100%;
}

.btn-buy {
	width: 150px;
	padding: 10px 0;
	outline: none;
	border: 0;
	border-radius: 2px;
	position: absolute;
	background-color: #fff;
	left: 50%;
	bottom: 0;
	transform: translate(-50%,0);
	transition: 0.6s;
	opacity: 0;
	z-index: 1;
}

.work-img:hover .btn-buy {
	transform: translate(-50%, 50%);
	bottom: 50%;
	opacity: 1;
}


/***** OFFER *****/
.offer {
	background-image: url("../img/Home/banner2.jpg");
	background-size: cover;
	background-position: center;
}

.row {
	margin: initial !important;
}

.subscribe {
	max-width: 500px;
	margin-top: 80px;
	padding: 60px;
	background-color: #ffffff8c;
	margin-bottom: 20px;
}
.subscribe a {
	width: 100px;
	display: block;
	color: #fff !important;
	background-color: #000;
	text-decoration: none;
	padding: 5px;
	text-align: center;
}

.offer img {
	width: 300px;
	height: 400px;
	margin-bottom: -100px;
	margin-top: 150px;
}

/***** BLOG *****/
.blog {
	margin: 250px 0 150px 0;
}

.blog-img {
	margin-top: 50px;
	height: 300px;
	width: 300px;
	display: inline-block;
}
.blog-img img {
	width: 100%;
	height: 100%;
}

.blog h5 {
	margin-top: 20px;
	font-weight: bold;
}


/*****footer*****/

.footer {
	margin-top: 150px;
	background-color: #f5f6fc;
}
.footer h5 {
	margin-bottom: 50px;
}
.footer h5::before {
	content: '';
	width: 70px;
	height: 3px;
	background-color: #4f74e8;
	top: 80px;
	position: absolute;
}

.gegevens, .insta-img, .navigationfooter {
	margin: 50px auto;
}

.insta-img img {
	width: 75px;
	padding: 5px;
	cursor: pointer;
}

.navigationfooter ul  {
	list-style-type: none;
	padding: 0 0 0 2%;
}
.navigationfooter a {
	color: #4f74e8;
}
.navigationfooter a:hover {
	color: #AD0013;
}
.gegevens ul  {
	list-style-type: none;
	padding: 0 0 0 2%;
}






/*Realisatie*/
.parent {
	display: grid;
	grid-template-columns: repeat(3, 30%);
	grid-column-gap: 5%;
	margin: 0 10%;
}

.parent img {
	width: 100%;
	margin: 0 0 5% 0;
}
	
.div1 { 
	grid-column: 1;
 }
.div2 {
	grid-column: 2;
 }
.div3 { 
	grid-column: 3;
}






/*Contact page*/
.contact {
	margin: 0 20%;
}
.contact h1 {
	margin: 0 0 0 13%;
}

input[type=text], select, textarea {
	width: 100%;
	padding: 12px;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
	margin-top: 6px;
	margin-bottom: 16px;
	resize: vertical;
  }
  
  input[type=submit] {
		background-color: #ac0012;
		color: white;
		padding: 12px 20px;
		border: none;
		border-radius: 100px;
		cursor: pointer;
  }
  
  input[type=submit]:hover {
		background-color: #004e99;
  }
  
  .container {
	padding: 20px;
  }






/*****for small device*****/
@media only screen and (max-width:900px){
	
	.navbar-brand {
		margin: 0 0 0 7%;
	}

	.banner-img {
		margin: 40px auto;
		width: 80%;
	}
	
	.banner-title {
		top: 180px;
		left: 50%;
		transform: translateX(-50%);
	}
	.banner-title h1 {
		font-size: 16px;
		padding: 5px;
		line-height: 20px;
	}
	
	.title-style h1 {
		font-size: 25px;
	}
	
	.offer img {
		margin-top: 20px !important;
		margin-bottom: 0 !important;
	}
	
	.footer-icons {
		text-align: center;
	}
	
	.copyright {
		text-align: center;
	}



	.div1 { 
		grid-column: 1 / 4;
	 }
	.div2 {
		grid-column: 1 / 4;
	 }
	.div3 { 
		grid-column: 1 / 4;
	}

	.contact {
		margin: 0 2%;
	}
	.contact h1 {
		margin: 0 0 0 4%;
	}

	.navbar-nav {
		margin: 10% 0 0 0;
	}

	
}






