*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
	scroll-behavior: smooth;
}

/*-- (c) Delrue.Media --*/
/*-- Home --*/

.hero{
	width: 100%;
	height: 100vh;
	position: relative;
	padding: 0 5%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.home-projecten{
	width: 100%;
	height: 50vh;
	position: relative;
	padding: 0 5%;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #3a3a3a;
}
nav{
	width: 100%;
	position: absolute;
	top: 0; 
	left: 0;
	padding: 20px 8%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

nav .logo{
	width: 200px;
	cursor: url("assets/icons/fireupyourcursor.png"), auto;	
}

nav ul li{
	list-style: none;
	display: inline-block;
	margin-left: 40px;
}

nav ul li a{
	text-decoration: none;
	color: #fff;
	font-size: 17px;
	cursor: url("assets/icons/fireupyourcursor.png"), auto;
}

.menu-icon {
	display: none;
	cursor: pointer;
  }
  
.menu-icon .bar {
	display: block;
	width: 25px;
	height: 3px;
	margin: 5px auto;
	background-color: #fff;
	transition: all 0.3s;
}
  
#menu-toggle {
	display: none;
}
  
#menu-toggle:checked + .menu-icon + .nav-list {
	display: flex;
	flex-direction: column;
	align-items: center;
}


.content{
	text-align: center;
}

.content h1{
	font-size: 160px;
	color: #ff6700;
	font-weight: 600;
	transition: 0.5s;
}

.content h1:hover{
	-webkit-text-stroke: 2px #ff6700;
	color: transparent;
	cursor: url("assets/icons/fireupyourcursor.png"), auto;
}

.content a{
	text-decoration: none;
	display: inline-block;
	color: #fff;
	font-size: 24px;
	border: 2px solid #fff;
	padding: 14px 70px;
	border-radius: 50px;
	margin-top: 20px;
	cursor: url("assets/icons/fireupyourcursor.png"), auto;
}


.back-video{
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: -1;
	
}

@media (min-aspect-ratio: 16/9){
	.back-video{
		width: 100%;
		height: auto;
	}
}

@media (max-aspect-ratio: 16/9){
	.back-video{
		width: auto;
		height: 100%;
	}
}

/*--- Test voor telefoon's ---*/

@media (max-width: 800px) {
	.content h1{
		font-size: 36px;
		font-weight: 135px;
	}
	.content a{
		font-size: 12px
	}

	
	nav .logo{
		width: 130px;
	}
	.nav-list{
		display: none;
		flex-direction: column;
		align-items: center;
		background-color: #3a3a3a;
		position: absolute;
		top: 60px;
		right: 0;
		left: 0;
		width: 100%;
	}
	.nav-list.active {
		display: flex;
	  }
	.menu-icon {
		display: block;
	}
	
}


/*---diensten---*/


#diensten{
	padding-top: 50px;
	padding-bottom: 50px;
	background-color: #3a3a3a;
}

.diensten-text{
	color:#ff6700;
	font-size: 40px;
	text-align: center;
	margin-top: 20px;
	margin-bottom: 60px;

}

.feature-row{
	width: 80%;
	padding-bottom: 50px;
	margin: auto;
	display: flex;
	align-items: center;
	justify-content: space-around;
	flex-wrap: wrap;
}

.feature-col{
	flex-basis: 25%;
	text-align: center;
	color: #fff;
}

.feature-col h2{
	margin-bottom: 15px;
	font-size: 30px;
	font-weight: 400px;
	color:#ff6700;
}

.feature-col a{
	margin-bottom: 15px;
	font-size: 30px;
	font-weight: 400px;
	color:#ff6700;
	text-decoration: none;
	cursor: url("assets/icons/fireupyourcursor.png"), auto;
}


.feature-col p{
	font-size: 18px;
	color:#fff;
}

@media (max-width: 800px) {
	.diensten-text{
		font-size: 30px;
	}
	.feature-col{
		flex: 1 1 100%;
	}

}

/*---parallax---*/

#parallax{
	background-color: #ff6700;
}

.parallax{
	background-image: url("assets/images/parallax.webp");
	height: 400px;
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	
}

/*---over ons---*/

#overons{
	padding: 100px 0;
	background-color:#3a3a3a;
}

.overons-text{
	font-size: 18px;
	color:#fff;
	margin: auto;
	width: 50%;
	text-align: center;
}

.overons-text h1{
	color:#ff6700;
	font-size: 40px;
	text-align: center;
}

.overons-row{
	margin: auto;
	display: flex;
	align-items: center;
	justify-content: space-around;
	flex-wrap: wrap;
}

.overons-left-col{
	flex-basis: 50%;
}

.overons-right-col{
	flex-basis: 50%;
}

.overons-right-col img{
	width: 50%;
}


@media (max-width:800px) {
	.overons-text{
		width: 100%;
	}
	.overons-text h1{
		font-size: 30;
	}
	
	.overons-left-col{
		width: 80vw;
	}
	.overons-right-col{
		display: none;
	}
	
}

/*--- Partners ---*/

#partners{
	padding: 60px 0;
	background-color:#3a3a3a;
}

@keyframes slide{
	from{
		transform: translateX(0);
	}
	to{
		transform: translateX(-100%);
	}
}

.partners{
	overflow: hidden;
	white-space: nowrap;
	color:#ff6700;
	font-size: 40px;
	text-align: center;
	position: relative;
}

.partners:before,
.partners:after{
	position: absolute;
	top: 0;
	width: 250px;
	height: 100%;
	content: "";
	z-index: 2;
}

.partners:before{
	right: 0;
	background: linear-gradient(to right, rgba(255, 255, 255, 0), #3a3a3a);
}

.partners:after{
	left: 0;
	background: linear-gradient(to left, rgba(255, 255, 255, 0), #3a3a3a);
}

.partners:hover .partners-slide{
	animation-play-state: paused;
	cursor: url("assets/icons/fireupyourcursor.png"), auto;
}

.partners-slide{
	display: inline-block;
	animation: 30s slide infinite linear;
}

.partners-slide img{
	height: 100px;
	margin: 40px 40px;
}


@media (max-width:800px) {
	.partners{
		display: none;
		
	}

}

/*---volg ons---*/

#volgons{
	padding-top: 50px;
	padding-bottom: 50px;
	background-color:#ff6700;
}

.volgons-text{
	font-size: 18px;
	color:#fff;
}

.volgons-text h1{
	color:#fff;
	font-size: 40px;
	text-align: center;
	margin-top: 20px;
	margin-bottom: 60px;
}

.volgons-icons {
	text-align: center;
}

.fa-brands{
	text-align: center;
	font-size: 70px;
	color: #fff;
	cursor: url("assets/icons/fireupyourcursor.png"), auto;
	padding:10px;
}

@media (max-width:800px) {
	.partners{
		display: none;
		
	}

}

/*---projecten---*/


#projecten{
	padding-top: 50px;
	padding-bottom: 50px;
	background-color: #3a3a3a;
}

.projecten-text{
	color:#ff6700;
	font-size: 40px;
	text-align: center;
	margin-top: 20px;
	margin-bottom: 60px;

}

.projecten-text h2{
	margin-top: 80px;
	font-weight: 100;
}

.projecten-text h2:hover{
	cursor: url("assets/icons/fireupyourcursor.png"), auto;
}


.projecten-container-2{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	justify-content: center;
	padding: 4%;
}

.video{
    position: relative;
	width: 100%;
	padding-bottom: 56.25%;
	height: 0;
}

.video iframe{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
} 

.projecten-container-3{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 40px;
	justify-content: center;
	padding: 4%;
}

.video{
    position: relative;
	width: 100%;
	padding-bottom: 56.25%;
	height: 0;
}

.video iframe{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
} 

/*---parallax 2---*/

#parallax2{
	background-color: #ff6700;
}

.parallax2{
	background-image: url("assets/images/parallax2.webp");
	height: 400px;
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	
}


/*---Contact---*/

#contact{
	padding-top: 80px;
	padding-bottom: 250px;
	background-color: #3a3a3a;
}

.contact-container{
	display: flex;
	align-items: center;
	justify-content: space-evenly;	
}

.contact-left{
	display: flex;
	flex-direction: column;
	align-items: start;
	gap: 20px;
}

.contact-left-title h2{
	font-weight: 400;
	color:#ff6700;
	font-size: 30px;
	margin-bottom: 5px;
}

.contact-left-title hr{
	border: none;
	width: 260px;
	height: 5px;
	background-color:#fff;
	border-radius: 10px;
	margin-bottom: 20px;
}

.contact-inputs{
	width: 400px;
	height: 50px;
	border: none;
	outline: none;
	padding-left: 25px;
	font-weight: 500;
	color:#666;
	border-radius: 50px;
}

.contact-left textarea{
	height: 140px;
	padding-top: 15px;
	border-radius: 20px;
}

.contact-inputs:focus{
	border: 3px solid #ff6700;
}

.contact-inputs::placeholder{
	color:#666;
}

.contact-left button{
	display: flex;
	align-items: center;
	padding: 15px 30px;
	font-size: 16px;
	color:#fff;
	gap: 10px;
	border: none;
	border-radius: 50px;
	background-color: #ff6700;
	cursor: url("assets/icons/fireupyourcursor.png"), auto;
}

.contact-left button img{
	height: 15px;
}

.contact-right img{
	width: 800px;
}

@media (max-width:800px) {
	.contact-inputs{
		width: 80vw;
	}
	.contact-right{
		display: none;
	}
}

/*--- Footer ---*/

.footer{
	width: 100%;
	padding: 100px 15%;
	background: #ff6700;
	color:#fff;
	display: flex;
}

.footer div{
	text-align: center;
}

.footer div h3{
	font-weight: 400;
	margin-bottom: 30px;
	letter-spacing: 1px;
}

.col-1 a{
	display:block;
	text-decoration: none;
	color: #fff;
	margin-bottom: 20px;
	cursor: url("assets/icons/fireupyourcursor.png"), auto;
}

.col-2{
	flex-grow: 2;
}

.col-2 img{
	width: 550px;
	margin-top: 20px;
	cursor: url("assets/icons/fireupyourcursor.png"), auto;
}

.social-icons{
	margin-top: 30px;
}

.social-icons i{
	font-size: 22px;
	cursor: url("assets/icons/fireupyourcursor.png"), auto;
}

.col-3 a{
	text-decoration: none;
	color:#fff;
	cursor: url("assets/icons/fireupyourcursor.png"), auto;
}

.copyright{
	width: 100%;
	padding: 20px 15%;
	background:#ff6700;
	text-align: center;
	color: #fff;
}

@media (max-width: 800px) {
	.col-1{
		display: none;
	}
	.col-2{
		display: none;
	}

}
