/* =Burnout Landing Page
-------------------------------------------------------------- */

/* Hero */
.burnout-hero {
	position: relative;
	min-height: 400px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
}

.burnout-hero__overlay {
	width: 100%;
	padding: 80px 0;
	background: rgba(36, 69, 84, 0.65);
}

.burnout-hero__titel {
	color: #fff;
	font-size: 42px;
	margin: 0 0 15px 0;
	text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.3);
}

.burnout-hero__subtitel {
	color: rgba(255, 255, 255, 0.9);
	font-size: 20px;
	margin: 0;
	max-width: 700px;
	line-height: 1.6;
}

/* Intro */
.burnout-intro {
	padding: 60px 0 40px;
}

.burnout-intro__titel {
	color: #244554;
	font-size: 30px;
	margin: 0 0 20px 0;
}

.burnout-intro__tekst {
	max-width: 900px;
	line-height: 1.8;
	font-size: 16px;
	color: #333;
}

/* Content Blocks */
.burnout-blocks {
	padding: 20px 0 40px;
}

.burnout-block {
	display: flex;
	flex-wrap: wrap;
	gap: 2%;
	margin-bottom: 40px;
	align-items: center;
}

.burnout-block:nth-child(even) {
	flex-direction: row-reverse;
}

.burnout-block__afbeelding {
	flex: 0 0 49%;
	border-radius: 50px;
	overflow: hidden;
}

.burnout-block__afbeelding img {
	width: 100%;
	height: auto;
	display: block;
}

.burnout-block__caption {
	padding: 10px 20px 0;
	font-size: 14px;
	color: #666;
	margin: 0;
}

.burnout-block__tekst {
	flex: 0 0 49%;
	background: #42697b;
	padding: 60px;
	box-sizing: border-box;
	color: #fff;
	border-radius: 50px;
}

.burnout-block__tekst h3 {
	font-size: 28px;
	margin-top: 0;
	margin-bottom: 15px;
}

.burnout-block__tekst p,
.burnout-block__inhoud {
	line-height: 1.8;
	font-size: 15px;
}

.burnout-block__tekst a {
	color: #c8d4c3 !important;
}

/* Contact CTA */
.burnout-contact {
	padding: 60px 0;
	background: #f7f9f6;
}

.burnout-contact__wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	align-items: center;
}

.burnout-contact__foto {
	flex: 0 0 250px;
	max-width: 250px;
}

.burnout-contact__foto img {
	border-radius: 50%;
	width: 100%;
	height: auto;
	display: block;
	aspect-ratio: 1;
	object-fit: cover;
}

.burnout-contact__info {
	flex: 1;
	min-width: 300px;
}

.burnout-contact__info h2 {
	color: #244554;
	font-size: 28px;
	margin: 0 0 15px 0;
}

.burnout-contact__tekst {
	line-height: 1.8;
	color: #333;
	margin-bottom: 15px;
}

.burnout-contact__naam {
	font-size: 18px;
	color: #244554;
	margin: 0 0 10px 0;
}

.burnout-contact__gegevens {
	list-style: none;
	padding: 0;
	margin: 0 0 20px 0;
}

.burnout-contact__gegevens li {
	margin-bottom: 8px;
	font-size: 15px;
	color: #333;
}

.burnout-contact__gegevens li i {
	color: #42697b;
	width: 20px;
	margin-right: 8px;
}

.burnout-contact__gegevens li a {
	color: #42697b !important;
	display: inline !important;
}

.burnout-contact__button {
	margin-top: 10px;
}

/* Responsive */
@media screen and (max-width: 900px) {

	.burnout-hero {
		min-height: 280px;
	}

	.burnout-hero__overlay {
		padding: 50px 0;
	}

	.burnout-hero__titel {
		font-size: 28px;
	}

	.burnout-hero__subtitel {
		font-size: 16px;
	}

	.burnout-block {
		flex-direction: column !important;
	}

	.burnout-block__afbeelding,
	.burnout-block__tekst {
		flex: 0 0 100%;
		width: 100%;
	}

	.burnout-block__tekst {
		padding: 30px;
		border-radius: 0 0 30px 30px;
	}

	.burnout-block__afbeelding {
		border-radius: 30px 30px 0 0;
	}

	.burnout-contact__wrap {
		flex-direction: column;
		text-align: center;
	}

	.burnout-contact__foto {
		margin: 0 auto;
	}

	.burnout-contact__info {
		min-width: auto;
	}
}
