/* ================== BODY BASIS ================== */
body {
	font-family: 'Open Sans', Helvetica, Arial, sans-serif;
	margin: 0;
	padding: 0;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

h1,h2,h3,h4,h5,h6,p{
	margin: 0;
	padding: 0;
	color: #000000;
}

.no-p {padding: 0;}
.p-5-form{padding-left: 5px;padding-right: 5px;}
.mt30{margin-top: 30px;}
.mt10{margin-top: 10px;}

.cta {
	border-radius: 2px;
	padding: 10px 30px 12px 30px;
	font-size: 18px;
	width: 100%;
	display: inline-block;
	margin: auto;
	margin-top: 20px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	text-decoration: none;
	text-align: center;
	color: #ffffff;
	cursor: pointer;
	font-weight: 700;
	background-color: #53c50e;
	border: 0;
	outline : 0;
}
.cta:hover {
	color: #ffffff;
	text-decoration: none;
	background-position: right 20px top 18px;
	background-color: #4bb20d;
}
.cta:visited, .cta:link {
	color: #ffffff;
	text-decoration: none;
	border: 0;
	outline : 0;
}
.cta:active {
	transform: scale(0.9);
	border: 0;
	outline : 0;
}
.nudge {
	padding-top: 30px;
	padding-bottom: 15px;
	font-size: 14px;
	color: #000000;
}
.nudge a {
	text-decoration: underline;
	color: #000000;
}

/* ================== FORMULIER CSS ================== */
::-webkit-input-placeholder, ::-moz-placeholder, :-ms-input-placeholder, :-moz-placeholder{ /* Chrome/Opera/Safari/Firefox 19+/IE 10/Firefox 18- */
 	color:#8B8B8B;
 	font-size: 14px;
}
.errormachtiging {
 	float:left;
 	padding-left:30px;
}
li.error {
 	color:#EB8283;
 	font-size:14px;
 	list-style-type:none;
}
li.valid {
 	height:0;
 	color:#EB8283;
 	font-size:11px;
 	list-style-type:none;
}
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active  {
    -webkit-box-shadow: 0 0 0 30px white inset !important; /* Verandert achtergrondkleur na autofill/prefill */
}

/* ================== START GESLACHTBUTTON ================== */
.form-geslacht{
	position: relative;
	padding-top: 15px;
	padding-left: 5px;
	padding-right: 5px;
}
.form-geslacht input[type=radio] {
 	visibility: hidden; /* gebruik geen display block */
 	width: 1px;
 	height: 1px;
 	cursor: pointer;
 	padding: 0px;
 	float:left;
 	margin-left:0px!important;
 	-moz-appearance: none; /* Remove default appearance styling for Firefox */
 	-webkit-appearance:none;
 	appearance:none;
 	position: absolute;
}
.form-geslacht input[type=radio] + label {
 	color:#999;
 	background-image: url(img/bullet_unchecked.png);
 	background-repeat:no-repeat;
 	background-size: 30px;
 	background-position: left -5px top 3px;
 	padding-top: 8px;
    padding-left: 25px;
 	width: 100%;
 	max-width: 64px;
 	cursor: pointer;
 	-webkit-transition: all 0.2s ease-in-out;
 	-moz-transition: all 0.2s ease-in-out;
 	-o-transition: all 0.2s ease-in-out;
 	transition: all 0.2s ease-in-out;
 	position: relative;
	-webkit-transform: none!important;
	transform: none!important;
    margin-bottom: 12px;
}
.form-geslacht input[type=radio]:hover + label {
 	background-image: url(img/bullet.png);
}
.form-geslacht input[type=radio]:checked + label {
 	background: url(img/bullet.png) no-repeat;
 	background-size: 30px;
 	background-position: left -5px top 3px;
}
/* ================== END GESLACHTBUTTON ================== */

/* ================== START CHECKBOX ================== */
.form-checkbox{
	margin-top: 20px;
}
.form-checkbox input[type=checkbox] {
    visibility: hidden;
    width: 1px;
    position: absolute;
}
.form-checkbox .check-box {
 	width: 100%;
 	padding-left: 30px;
 	padding-bottom: 5px;
 	margin-bottom: 0;
 	background-color: transparent;
 	position: relative;
 	display: inline-block;
 	background:url(img/checkbox.png) no-repeat left top;
 	background-size:17px 17px;
 	font-size:14px;
 	line-height:17px;
}
.form-checkbox .check-box::before, .check-box::after {
 	position: absolute;
 	height: 0;
 	width: 3px;
 	border-radius: 1px;
 	background-color: #3399FF;
 	display: inline-block;
 	-moz-transform-origin: left top;
 	-ms-transform-origin: left top;
 	-o-transform-origin: left top;
 	-webkit-transform-origin: left top;
 	transform-origin: left top; 	
 	content: ' ';
 	-webkit-transition: opacity ease .5;
 	-moz-transition: opacity ease .5;
 	transition: opacity ease .5;
}
.form-checkbox .check-box::before {
 	top: 15px;
 	left: 9px;
 	box-shadow: 0 0 0 0px #ffffff;
 	-moz-transform: rotate(-135deg);
 	-ms-transform: rotate(-135deg);
 	-o-transform: rotate(-135deg);
 	-webkit-transform: rotate(-135deg);
 	transform: rotate(-135deg);
}
.form-checkbox .check-box::after {
 	top: 8px;
 	left: 0px;
 	-moz-transform: rotate(-45deg);
 	-ms-transform: rotate(-45deg);
 	-o-transform: rotate(-45deg);
 	-webkit-transform: rotate(-45deg);
 	transform: rotate(-45deg);
}
.form-checkbox input[type=checkbox]:checked + .check-box, .check-box.checked {
	border-color: #3399FF;
}
.form-checkbox input[type=checkbox]:checked + .check-box::after, .check-box.checked::after {
 	height: 12px;
 	-moz-animation: dothabottomcheck 0.2s ease 0s forwards;
 	-o-animation: dothabottomcheck 0.2s ease 0s forwards;
 	-webkit-animation: dothabottomcheck 0.2s ease 0s forwards;
 	animation: dothabottomcheck 0.2s ease 0s forwards;
}
.form-checkbox input[type=checkbox]:checked + .check-box::before, .check-box.checked::before {
 	height: 30px;
 	-moz-animation: dothatopcheck 0.4s ease 0s forwards;
 	-o-animation: dothatopcheck 0.4s ease 0s forwards;
 	-webkit-animation: dothatopcheck 0.4s ease 0s forwards;
 	animation: dothatopcheck 0.4s ease 0s forwards;
}
/*Keyframes Checkbox*/
@-moz-keyframes dothabottomcheck {
	0% {height: 0;}
 	100% {height: 11px;}
}
@-webkit-keyframes dothabottomcheck {
	0% {height: 0;}
 	100% {height: 11px;}
}
@keyframes dothabottomcheck {
	0% {height: 0;}
 	100% {height: 11px;}
}
@keyframes dothatopcheck {
	0% {height: 0;}
 	50% {height: 0;}
 	100% {height: 24px;}
}
@-webkit-keyframes dothatopcheck {
	0% {height: 0;}
 	50% {height: 0;}
 	100% {height: 24px;}
}
@-moz-keyframes dothatopcheck {
	0% {height: 0;}
 	50% {height: 0;}
 	100% {height: 24px;}
}
/* ================== END CHECKBOX ================== */

/* ================== START FORM BASIS ================== */
.form-field input {
 	font-size:16px;
 	display:block;
 	width:100%;
 	border:1px solid #999999;
 	border-radius:2px;
 	height:45px;
 	margin:10px 0 0 0;
 	padding:10px;
 	transition:0.4s ease all;
 	-moz-transition:0.4s ease all;
 	-webkit-transition:0.4s ease all;
 	-webkit-appearance:none;
 	padding-top: 25px;
 	top: 10px;
}
.form-field input:focus, input.birthdate-valid{
	outline:none;
	border:1px solid #999999;
}
.form-field input:focus ~ label{
	-webkit-transform: translateY(4px) scale(.85);
	transform: translateY(4px) scale(.85);
}
.nostyle{transform: none!important;color:#000000!important;} /*Zorgt ervoor dat radio buttons niet scalen*/
.form-field input.valid, input.birthdate-valid.valid {
	border:1px solid #58c143;
}
.form-field input.error, input.birthdate-valid.error {
	border:1px solid #EB8283;
}
.form-field input.error ~ label {
	color: #EB8283;
}
.form-field label {
	transition: -webkit-transform .2s;
    transition: transform .2s;
    transition: transform .2s,-webkit-transform .2s;
    pointer-events: none;
    -webkit-transform-origin: top left;
    transform-origin: top left;
    font-weight: 400;
    text-align: left;
    position: absolute;
    top: 10px;
    z-index: 1;
    color: #b3b3b3;
    font-size: 14px;
    line-height: 22.4px;
    -webkit-transform: translateY(11.8px);
    transform: translateY(11.8px);
}
.adressconfirm {
 	font-size: 14px;
 	color: #6B6B6B;
}
.adressconfirm.adresvink {    
	background-color: #efefef;
    border-radius: 2px;
    color: #000000;
    float: left;
    padding: 10px 20px;
    margin-bottom: 5px;
    margin-top: 10px;
    left: 0;
    padding-left: 40px;
    margin-left: 0;
}
.adressconfirm.adresvink:before {
    content: '';
    position: absolute;
    background-image: url(img/adres_vink.png);
    background-position: 0;
    background-size: 20px;
    width: 20px;
    background-repeat: no-repeat;
    left: 25px;
    top: 9px;
    height: 40px;
}
.formcontainer {
	margin-top: 30px;
	margin-bottom: 30px;
	border-radius: 8px;
	border: 1px solid #999999;
    padding: 40px;
}
.formcontainer p{
	color: #000000; 
	font-size: 18px;
	font-weight: 700;
}
.formcontainer p.gegevens-title{
	margin-bottom: 10px;	
}
.formcontainer p.title-between{
	margin-top: 30px;
}
.formcontainer .form-field {
	padding-left: 4px;
	padding-right: 4px;
}
.form-field input.is-active ~ label, .filled-in label, .filled-in-error label, .form-field label.activelabel {
	-webkit-transform: translateY(4px) scale(.85);
	transform: translateY(4px) scale(.85);
	color: #009fe6;
}
.form-field label.activelabel, .valid ~ label{
	color: #58c143;
}
.filled-in-error label {
	color: #EB8283;
}
.errorbox, #postcodeError {
		width:100%;
}
@media screen and (max-width: 768px) {
	label[for=payment_ibannumber] {
		top: 0px!important;
	}
	.errorbox, #postcodeError {
 		float: left;
	}
	.formcontainer{
		padding: 25px;
	}
}
/* ================== END FORM BASIS ================== */

/* ================== START BIRTHDATE ================== */
.form-geboorte label {
 	font-size:14px;
 	color:#999;
 	left:20px;
 	position:absolute;
 	top: 10px;
}
.zsm{
	display: inline-block;
	margin-right: 15px;
}
.date-style{
	width:110px;
 	display: inline-block;
 	margin-right:5px;
	font-size:16px;
 	border:none;
 	border:1px solid #8d8d8d;
 	border-radius:2px;
 	height:45px;
 	margin:0 0 5px 0;
 	padding:10px;
 	transition:0.4s ease all;
 	-moz-transition:0.4s ease all;
 	-webkit-transition:0.4s ease all;
 	-webkit-appearance:none;
}
.date-style.mm {
 	margin-left: 10px;
}
.date-style.yy {
 	margin-right: 0px;
 	margin-left: 10px;
}
.date-style:focus{
	outline:none;
	border:1px solid #3399FF;
}
@media screen and (max-width: 576px) {
	.date-style {width: 30%; margin-left: 0;}
	.date-style.mm {margin-left: 4px;}
	.date-style.yy {margin-left: 4px;}
}
/* ================== END BIRTHDATE ================== */

/* ================== START VOORWAARDEN ================== */
#fillVoorw li {
 	list-style-type: square;
 	padding: 0 16px 0 0;
}
#fillVoorw {
 	list-style-type: square;
 	padding: 0 0px 0 16px;
}
.voorwaardenoverlay {
 	position: fixed;
 	background-color: rgba(0, 0, 0, 0.8);
 	z-index: 99999;
 	width: 100%;
 	height: 100%;
 	display: none;
}
.popuptitle {
 	font-weight:900;
 	font-size:30px;
 	margin-bottom:20px;
}
.form-open {
 	width: 90%;
 	animation: open 1s;
 	transition:1s ease all;
 	-moz-transition:1s ease all;
 	-webkit-transition:1s ease all;
 	opacity:1;
}
.lightbox {
 	background-color: #ffffff;
 	height: 50vh;
 	color:#181818;
 	overflow-y: auto;
 	padding:50px 50px 50px 50px;
 	font-family: Source Sans Pro, Helvetica, Arial, sans-serif;
 	font-size:14px;
 	line-height:1.6em;
 	-webkit-box-shadow: 0px 0px 10px 1px rgba(0,0,0,0.25);
 	-moz-box-shadow: 0px 0px 10px 1px rgba(0,0,0,0.25);
 	box-shadow: 0px 0px 10px 1px rgba(0,0,0,0.25);
 	margin: auto;
 	position: absolute;
 	width:100%;
	left: 0;
	right: 0;
}
#popup {
 	width: 60%;
 	margin:auto;
 	position:absolute;
 	height:50vh;
 	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
}
#close {
 	position:absolute;
 	color:#ffffff;
 	top:-20px;
 	right:-20px;
 	padding-top: 10px;
 	font-size:20px;
 	font-weight:700;
 	cursor:pointer;
 	width: 50px;
 	height: 50px;
 	background-color:#3399FF;
 	border-radius: 30px;
 	text-align: center;
 	z-index:9999;
}
@media(max-width: 767px){
	.lightbox{
		padding: 20px 20px 20px 20px;
	}
	#popup {
		width: 80%;
	}
	.popuptitle {
		font-size: 26px;
	}
}
/*Keyframes lightbox open*/
@keyframes open {
 	0% {display: none;}
 	1% {width: 0;display: block;color:white;opacity: 0;}
 	80% {color:white;}
 	100% {display: block;width: 90%;color:#181818;opacity: 1;}
}

@keyframes open {
 	0% {display: none;}
 	1% {width: 0;display: block;color:white;opacity: 0;}
 	80% {color:white;}
 	100% {width: 100%;}
}
/* ================== END VOORWAARDEN ================== */


/* ================== OVERIGE STYLES ================== */
.reasoning {
    display: block;
    width: 100%;
    color: #a8a8a8;
    margin-bottom: 10px;
}
@media(max-width: 767px){
	.reasoning{
		margin-top: 10px;
		margin-left: 0;
	}
}

input[type=radio] {
	margin-right: 5px;
}

/*Start groene balk boven formulier*/
.green-bar{
	background-color: #dffdcd;
	border: 1px solid #7cc94b;
	border-radius: 8px;
	position: relative;
	padding: 15px 0;
	margin: 30px 0 0;
}
.green-bar ul{
	padding-left: 30px;
	margin: 0;
}
.green-bar ul li{
	color: #71c63e;
	font-weight: 900;
	position: relative;
	font-size: 18px;
	list-style: none;
	padding-left: 30px;
	padding-right: 15px;
	background-image: url('img/check_circle.png');
	background-position: left top 3px;
	background-repeat: no-repeat;
	background-size: 18px 18px;
}
.green-bar a{
	position: absolute;
	right: 40px;
	top: 15px;
	font-size: 18px;
	color: #71c63e;
	text-decoration: underline;
	font-weight: 900;
}
@media(max-width: 450px){
	.green-bar a{
	    right: 0px;
	    top: 59px;
	    font-size: 14px;
	    color: #000000;
	}
}
/*End groene balk boven formulier*/


/*Start Fade-in en Fade-uit animaties*/
.fade-out{
    -webkit-animation: fadeOut 1s;
    animation: fadeOut 1s;
}
.fade-in{
    -webkit-animation: fadeIn 1s;
    animation: fadeIn 1s;
}
@keyframes fadeOut {
    0% {opacity: 1;left:0;}
    100% {opacity: 0;left:180px;}
}
@keyframes fadeIn {
    0% {opacity: 0;left:-180px;}
    100% {opacity: 1;left: 0;}
}
/*Eind Fade-in en Fade-uit animaties*/

footer {
    padding: 50px 0;
    float: left;
    width: 100%;
}

@media screen and (max-width: 1200px) {
	.form-geslacht input[type=radio] + label {width: 48%;}
}

@media screen and (max-width: 992px) {
	.col-lg-offset-15 {margin-left: 0;}
	.p-l-5 {padding-left:15px;}
}
@media screen and (max-width: 767px) {
	.form-field label {top: 10px;}
}








/* ================== BRAINSHUFFLE COPY ================== */
:root {
	--brain-black: #000000;
	--brain-panel: #202020;
	--brain-white: #ffffff;
	--brain-yellow: #e4ff00;
	--brain-muted: #cfcfcf;
}

html {
	scroll-behavior: smooth;
}

body,
button,
input,
textarea,
select,
label,
p,
a,
li,
.lightbox {
	font-family: 'Poppins', Helvetica, Arial, sans-serif;
}

body {
	background: var(--brain-black);
	color: var(--brain-white);
	overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.brain-contact .formcontainer:before {
	font-family: 'MuseoModerno', Helvetica, Arial, sans-serif;
	letter-spacing: 0;
}

.brain-hero {
	position: relative;
	min-height: 94vh;
	overflow: hidden;
	background: var(--brain-black);
}

.brain-hero-video,
.brain-hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.brain-hero-video {
	object-fit: cover;
	z-index: 0;
}

.brain-hero-overlay {
	z-index: 1;
	background: rgba(0, 0, 0, 0.28);
}

.brain-hero-content {
	position: relative;
	z-index: 2;
	min-height: 94vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: 40px;
	padding-bottom: 40px;
}

.brain-hero-content .row {
	width: 100%;
}

.brain-hero-logo {
	display: block;
	width: 280px;
	max-width: 78%;
	margin: 0 auto 18px;
}

.brain-hero h1 {
	color: var(--brain-yellow);
	font-size: 34px;
	line-height: 1.12;
	font-weight: 700;
	margin-bottom: 10px;
}

.brain-hero p {
	color: var(--brain-white);
	font-size: 17px;
	line-height: 1.48;
	max-width: 520px;
	margin: 0 auto;
}

.brain-scroll-cue {
	display: inline-block;
	width: 42px;
	margin-top: 22px;
	transition: transform 0.25s ease;
}

.brain-scroll-cue:hover {
	transform: translateY(5px);
}

.brain-scroll-cue img {
	display: block;
	width: 100%;
}

.brain-section {
	background: var(--brain-black);
	color: var(--brain-white);
	padding: 66px 0;
}

.brain-section h2 {
	color: var(--brain-white);
	font-size: 31px;
	line-height: 1.32;
	font-weight: 700;
	margin-bottom: 30px;
}

.brain-section h2 span,
.brain-section h3,
.brain-highlight,
.brain-list span {
	color: var(--brain-yellow);
}

.brain-section p,
.brain-section li {
	color: var(--brain-white);
	font-size: 15px;
	line-height: 1.58;
	font-weight: 400;
}

.brain-section p + p {
	margin-top: 24px;
}

.brain-copy-block {
	margin-top: 48px;
}

.brain-copy-block h3 {
	font-size: 24px;
	line-height: 1.28;
	font-weight: 700;
	margin-bottom: 24px;
}

.brain-copy-block strong {
	font-weight: 700;
}

.brain-list {
	margin: 22px 0 0;
	padding-left: 24px;
}

.brain-list li {
	padding-left: 4px;
	margin-bottom: 5px;
}

.brain-list-compact {
	margin-top: 12px;
}

.brain-idea {
	margin-top: 72px;
}

.brain-idea h2 {
	margin-bottom: 28px;
}

.brain-parallax {
	position: relative;
	height: 360px;
	overflow: hidden;
	background: var(--brain-black);
}

.brain-parallax-layer {
	position: absolute;
	top: -12%;
	left: 0;
	width: 100%;
	height: 124%;
	background-size: cover;
	background-position: center;
	will-change: transform;
}

.brain-parallax-beach .brain-parallax-layer {
	background-image: url('img/beachgirl.jpg.avif');
}

.brain-parallax-mail .brain-parallax-layer {
	background-image: url('img/enveloppe_background.jpg.avif');
}

.brain-parallax:after {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.08);
	pointer-events: none;
}

.brain-image-stack {
	position: absolute;
	z-index: 2;
	left: 6%;
	bottom: 12%;
	width: 48%;
	min-width: 285px;
	height: 62%;
}

.brain-stack-image {
	position: absolute;
	display: block;
	width: 46%;
	height: 78%;
	object-fit: cover;
	border-radius: 16px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}

.brain-stack-image-left {
	left: 0;
	bottom: 0;
}

.brain-stack-image-center {
	left: 42%;
	top: 0;
}

.brain-image-stack-mail .brain-stack-image-left {
	height: 86%;
}

.brain-image-stack-mail .brain-stack-image-center {
	height: 82%;
}

.brain-contact {
	background: var(--brain-black);
	padding: 30px 0 70px;
}

.brain-contact form > .row > .col-lg-9 {
	margin-left: auto;
	margin-right: auto;
	max-width: 690px;
	flex: 0 0 100%;
}

.brain-contact .formcontainer {
	position: relative;
	background: var(--brain-panel);
	border: 0;
	border-radius: 0;
	margin: 0 auto;
	padding: 30px 24px 34px;
}

.brain-contact .formcontainer:before {
	content: 'Neem contact op';
	display: block;
	color: var(--brain-white);
	font-size: 38px;
	line-height: 1.12;
	font-weight: 700;
	margin-bottom: 28px;
}

.brain-contact .gegevens-title {
	display: none;
}

.brain-contact .formcontainer p,
.brain-contact .nudge,
.brain-contact .nudge a,
.brain-contact .form-checkbox .check-box {
	color: var(--brain-white);
}

.brain-contact .nostyle {
	color: var(--brain-white) !important;
}

.brain-contact .form-field {
	position: relative;
	padding-left: 5px;
	padding-right: 5px;
	padding-bottom: 18px;
}

.brain-contact .form-field input,
.brain-contact .form-field textarea {
	background: var(--brain-black);
	border: 1px solid var(--brain-black);
	border-radius: 4px;
	color: var(--brain-white);
	font-size: 14px;
	height: 40px;
	margin: 28px 0 0;
	padding: 10px 12px;
	top: auto;
	box-shadow: none;
}

.brain-contact .form-field input:focus,
.brain-contact input.birthdate-valid:focus,
.brain-contact .form-field textarea:focus {
	border-color: var(--brain-yellow);
	outline: none;
}

.brain-contact .form-field label {
	position: absolute;
	top: 0;
	left: 5px;
	color: var(--brain-yellow);
	font-size: 17px;
	line-height: 1.25;
	font-weight: 400;
	transform: none;
	-webkit-transform: none;
	pointer-events: none;
}

.brain-contact .form-field input:focus ~ label,
.brain-contact .filled-in label,
.brain-contact .filled-in-error label,
.brain-contact .form-field label.activelabel,
.brain-contact .valid ~ label,
.brain-contact .form-field textarea:focus ~ label {
	color: var(--brain-yellow);
	transform: none;
	-webkit-transform: none;
}

.brain-contact .form-geslacht {
	padding-top: 30px;
	padding-bottom: 8px;
}

.brain-contact .form-geslacht:before,
.brain-contact #geboortedatum:before {
	content: 'Aanhef';
	position: absolute;
	top: 0;
	left: 5px;
	color: var(--brain-yellow);
	font-size: 17px;
	line-height: 1.25;
}

.brain-contact .form-geslacht input[type=radio] + label {
	color: var(--brain-white);
	font-size: 14px;
	margin-bottom: 8px;
}

.brain-contact #geboortedatum {
	position: relative;
	padding-top: 30px;
}

.brain-contact #geboortedatum:before {
	content: 'Geboortedatum';
}

.brain-contact .date-style {
	background: var(--brain-black);
	border: 1px solid var(--brain-black);
	border-radius: 4px;
	color: var(--brain-white);
	height: 40px;
	font-size: 14px;
}

.brain-contact .date-style:focus {
	border-color: var(--brain-yellow);
}

.brain-contact .form-checkbox {
	margin-top: 16px;
}

.brain-contact .form-checkbox .check-box {
	font-size: 12px;
	line-height: 1.45;
}

.brain-contact .form-checkbox .check-box a {
	color: var(--brain-yellow);
	text-decoration: none;
}

.brain-contact .cta {
	background: var(--brain-yellow);
	border-radius: 25px;
	color: var(--brain-black);
	font-family: 'Poppins', Helvetica, Arial, sans-serif;
	font-size: 18px;
	font-weight: 500;
	height: 46px;
	margin-top: 5px;
	padding: 10px 24px;
}

.brain-contact .cta:hover,
.brain-contact .cta:visited,
.brain-contact .cta:link {
	background: var(--brain-yellow);
	color: var(--brain-black);
}

.brain-contact .nudge {
	font-size: 12px;
	line-height: 1.5;
}

.brain-contact .nudge a {
	color: var(--brain-yellow);
}

.brain-contact .errorbox,
.brain-contact li.error {
	color: #ff7f90;
	font-size: 12px;
}

.brain-contact .adressconfirm.adresvink {
	background: #101010;
	color: var(--brain-white);
}

.brain-contact input:-webkit-autofill,
.brain-contact input:-webkit-autofill:hover,
.brain-contact input:-webkit-autofill:focus,
.brain-contact input:-webkit-autofill:active {
	-webkit-box-shadow: 0 0 0 30px #000000 inset !important;
	-webkit-text-fill-color: #ffffff !important;
}

footer {
	background: var(--brain-black);
	color: var(--brain-white);
	font-family: 'Poppins', Helvetica, Arial, sans-serif;
}

footer a {
	color: var(--brain-white);
}

/*Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) {
	.brain-hero-logo {
		width: 380px;
	}

	.brain-hero h1 {
		font-size: 42px;
	}

	.brain-hero p {
		font-size: 20px;
	}

	.brain-section h2 {
		font-size: 36px;
	}

	.brain-parallax {
		height: 420px;
	}

	.brain-contact .formcontainer {
		padding: 38px 34px 42px;
	}

	.brain-contact .formcontainer:before {
		font-size: 44px;
	}
}
/*Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) {
	.brain-hero,
	.brain-hero-content {
		min-height: 760px;
	}

	.brain-hero-logo {
		width: 470px;
		margin-bottom: 20px;
	}

	.brain-section {
		padding: 88px 0;
	}

	.brain-section h2 {
		font-size: 42px;
		line-height: 1.28;
	}

	.brain-section p,
	.brain-section li {
		font-size: 15px;
	}

	.brain-copy-block h3 {
		font-size: 27px;
	}

	.brain-parallax {
		height: 510px;
	}

	.brain-image-stack {
		left: 7%;
		bottom: 12%;
		width: 40%;
		min-width: 480px;
		height: 70%;
	}

	.brain-stack-image {
		width: 220px;
		height: 290px;
		border-radius: 18px;
	}

	.brain-stack-image-center {
		left: 265px;
	}

	.brain-contact {
		padding-top: 54px;
	}
} 
/*Large devices (desktops, 992px and up)*/
@media (min-width: 992px) {
	.brain-hero h1 {
		font-size: 50px;
	}

	.brain-hero p {
		font-size: 22px;
	}

	.brain-scroll-cue {
		width: 50px;
	}

	.brain-section {
		padding: 96px 0;
	}

	.brain-section h2 {
		font-size: 43px;
	}

	.brain-intro {
		padding-top: 104px;
		padding-bottom: 92px;
	}

	.brain-parallax {
		height: 540px;
	}

	.brain-parallax-layer {
		background-attachment: fixed;
	}

	.brain-achievements {
		padding-top: 92px;
	}

	.brain-copy-block {
		margin-top: 58px;
	}

	.brain-idea {
		margin-top: 86px;
	}

	.brain-contact .formcontainer {
		padding: 44px 26px 46px;
	}
}
/*Extra large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {
	.brain-hero,
	.brain-hero-content {
		min-height: 814px;
	}

	.brain-parallax {
		height: 560px;
	}

	.brain-section .col-lg-8 {
		max-width: 720px;
	}
}	

/* ================== BRAINSHUFFLE AANPASSINGEN ================== */
.brain-hero,
.brain-hero-content {
	height: 100vh;
	min-height: 100vh;
}

.brain-hero-logo {
	width: 560px;
	max-width: 92%;
}

.brain-scroll-cue {
	transform: none;
}

.brain-scroll-cue:hover {
	transform: none;
}

.brain-scroll-cue img {
	animation: brainArrowBounce 1.35s ease-in-out infinite;
}

@keyframes brainArrowBounce {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(10px);
	}
}

.brain-bottom-logo {
	display: inline-block;
	width: 168px;
	max-width: 60%;
	margin: 36px auto 0;
}

@media (min-width: 576px) {
	.brain-hero-logo {
		width: 760px;
	}

	.brain-bottom-logo {
		width: 228px;
	}
}

@media (min-width: 768px) {
	.brain-hero-logo {
		width: 940px;
	}

	.brain-bottom-logo {
		width: 282px;
		margin-top: 44px;
	}
}

@media (min-width: 992px) {
	.brain-section .col-lg-8 {
		flex: 0 0 82%;
		max-width: 930px;
	}
}

@media (min-width: 1200px) {
	.brain-section .col-lg-8 {
		max-width: 960px;
	}
}
