@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&family=Open+Sans:wght@400;600;700&display=swap');

html{
	width:100%;
	height:100%;
	position: relative;
}
html:before,html:after,body:before,body:after {
	content:'';
	background: #f8ac00;
	z-index: 2000;
    position: fixed;
}
html:before {
	top: 0;
	left: 0;
	right: 0;
	height: 5px;
	width: 100vw;
}
html:after {
	bottom: 0;
	left: 0;
	right: 0;
	height: 5px;
	width: 100vw;
}
body:before {
	top: 0;
	bottom: 0;
	right: 0;
	height: 100vh;
	width: 5px;
}
body:after {
	top: 0;
	bottom: 0;
	left: 0;
	height: 100vh;
	width: 5px;
}
body{
	width:100%;
	height:100%;
	background:#FFF;
	line-height:1.6;
	font-weight:normal;
	font-size:17px;
}
html.overview body {
	height: auto;
    overflow-x: hidden;
}
html.overview.embedded:before,html.overview.embedded:after,html.overview.embedded body:before,html.overview.embedded body:after {
	display: none;
	content: unset;
}
body, a, table, input, select, textarea{
	color:#2D3136;
  	font-family: "Open Sans";
}

input[type=date]:required:invalid::-webkit-datetime-edit{color:transparent}
input[type=date]:focus::-webkit-datetime-edit{color:#23231a !important}
input[type=date]::-webkit-datetime-edit{transition:.3s color ease}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
	color: #23231a;
	display: table;
	font-family: "Montserrat", sans-serif;
	font-size: 19px;
	font-weight: 700;
	letter-spacing: .5px;
	line-height: 1.25;
	margin-bottom: 24px;
	position: relative
}
@media (max-width: 64em) {
	h1,
	.h1,
	h2,
	.h2,
	h3,
	.h3,
	h4,
	.h4,
	h5,
	.h5,
	h6,
	.h6 {
		font-size: calc(15px + .33333vw)
	}
}

h1,
.h1 {
	font-size: 35px
}

@media (max-width:1200px) {
	h1,
	.h1 {
		font-size: calc(18.2px + 1.4vw)
	}
}

h2,
.h2 {
	font-size: 26px
}

@media (max-width:1200px) {
	h2,
	.h2 {
		font-size: calc(16.4px + .8vw)
	}
}

h3,
.h3 {
	font-size: 22px
}

@media (max-width:1200px) {
	h3,
	.h3 {
		font-size: calc(15.6px + .53333vw)
	}
}
svg {
    width: 15px;
    vertical-align: -1px;
}
small {
	font-size: 80%;
}
.clear{
	clear:both;
}
.msg{
	margin-bottom:20px;
	padding:5px 10px;
	border:solid 1px #f8ac00;
	background-color: #f8ac00;
	border-radius:3px;
	color:#FFF;
}
.error{
	margin-bottom:20px;
	padding:5px;
	border:solid 2px #DE133E;
	border-radius:3px;
	background:#DE133E;
	color:#FFF;
}
.fields {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}
.form-field__input {
    position: relative;
    float: left;
    width: calc(50% - 15px);
    box-sizing: border-box;
}
.form-field__input input:not([type="checkbox"],[type="radio"]), .form-field__input textarea, .form-field__input select {
    line-height: 1.15;
    margin: 0;
    font-family: inherit;
    color: #23231a;
    outline: none;
    overflow: visible;
    box-sizing: border-box;
    font-size: 16px;
    width: 100%;
    appearance: none;
    transition: background 0.35s ease-out;
    padding: 24px 12px 12px 12px;
    background-color: #fff;
    border: 0px solid #e8e8e8;
    border-bottom: 4px solid #f8ac00;
    border-radius: 0;
    font-weight: 400;
    height: 54px;
}
.form-field__input textarea {height: 150px;}
.form-field__input input:not([type="checkbox"],[type="radio"]):focus, .form-field__input textarea:focus, .form-field__input select:focus, .filled input:not([type="checkbox"],[type="radio"]), .filled textarea, .filled select {

    border: 1px solid #23231a;
}
.form-field__input .form-field__label {
    left: 12px;
    font-weight: 400;
    position: absolute;
    top: 26px;
    transform: translateY(-50%);
    color: #23231a;
    transform-origin: left center;
    transition: transform 0.25s ease-out,color 0.25s ease-out,-webkit-transform 0.25s ease-out;
    padding: 6px 0;
    display: block;
    box-sizing: border-box;
	pointer-events: none;
    font-size: 16px;
}
input:not([type="checkbox"],[type="radio"]):focus + .form-field__label, select:focus + .form-field__label, textarea:focus + .form-field__label, .filled .form-field__label  {

    transform: translateY(-80%) scale(0.8);
    left: 12px;
    font-weight: 400;
}
.form-field__checkbox {
    display: flex;
    flex-direction: row;
    gap: 10px;
}
.form-field__checkbox input {
	margin-top: 8px;
}
.phone-number{
	display:flex;
	gap:6px;
}
	.phone-number select{
		padding-top: 12px;
	}
	.phone-number input[type=tel]{
		padding-top: 12px;
		width:100%;
	}

p {
    margin-bottom: 1.5rem;
}

th + td {
	padding: 5px 0;
}
th {
	padding-right:5px;
	text-align: left;
	font-weight: 400;
}
.align-top {
	vertical-align: top;
}

textarea{
	height:125px;
}
input[disabled] {
	background: #ECECEC;
	border-color:#ECECEC;
}
.center{
	position: relative;
	margin:0 16px;
}
	@media (min-width:64em){
		.center{
			margin: 0 auto;
			max-width:1000px;
		}
	}
.grid{
	display: flex;
	flex-flow: row wrap;
	align-content: flex-start;
	position: relative;
	margin: -20px;
	width: calc(100% + 40px);
}
	.grid > div {
		box-sizing: border-box;
		vertical-align: top;
		padding: 20px;
	}
	.grid__cell--1{
		width:100%;
	}
	.grid__cell--1-2{
		width:50%;
	}
	.grid__cell--1-3{
		width:33.3%;
	}
	@media (min-width:48em){
		.grid__cell--md-1-2{
			width:50%;
		}
		.grid__cell--md-1-3{
			width:33.3%;
		}
	}
.index-header{
	margin-bottom: 40px;
	height:70px;
	background:url(../images/header.jpg);
}
	.index-header__logo{
		position: absolute;
		top:12px;
		left:0;
		height:46px;
	}



@media (min-width: 56.25em) {
	.events-teaser-collection > div:nth-child(3n+1), .events-teaser-collection > div:nth-child(3n+3) {
		transform: translateY(76px);
	}
}
.events-teaser-collection .event {
	margin: 24px auto 0;
}
.event {
	max-width: 300px;
	position: relative;
}
.event__link {
    background-image: linear-gradient(180deg,#0000 60%,#0000009e 100%);
    display: block;
    height: 100%;
    width: 100%;
}
.event img {
    max-width: 100%;
    font-style: italic;
    vertical-align: middle;
}
.event__body {
    background-image: linear-gradient(180deg,#0000 40%,#0000009e 100%);
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}
.event__body::before {
    background: #0000 url(https://kasparov-financials.nl/themes/custom/frontend/asset-builds/css/img/kasparov-arrow-down-white-right.svg) bottom 24px right 12px no-repeat;
    background-size: 40px;
    content: '';
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}
.event__date {
    background: #f8ac00;
    color: #fff;
    font-family: "Montserrat",sans-serif;
    font-size: 14px;
    font-weight: 700;
    left: -12px;
    padding: 12px 24px;
    position: absolute;
    top: 12px;
}
.event__title {
    bottom: 24px;
    color: #fff;
    font-family: "Montserrat",sans-serif;
    font-size: 24px;
    font-weight: 500;
    left: 0;
    padding: 0 72px 0 24px;
    position: absolute;
}
@media(max-width:88em){
	.center-div {
		padding: 0 40px;
	}
}
@media (max-width: 1200px) {
	.event__title {
		font-size: calc(16px + .66667vw);
	}
}


	.event__content{
		position: relative;
		min-height: 167px;
		padding:10px 10px 40px;
		box-sizing: border-box;
	}
		.event__content b{
			display:block;
			margin-bottom:8px;
			font-size:120%;
			line-height: 1.1;
		}
		.event__content__subscribe{
			position: absolute;
			right:15px;
			bottom:15px;
			color:#f8ac00;
			font-weight: bold;
			line-height: 1;
		}
		.event:hover .event__content__subscribe{
			text-decoration: underline;
		}
.form-field{
	overflow:hidden;
}

.button {
    text-decoration: none;
    appearance: none;
    outline: none;
    box-shadow: none;
    touch-action: manipulation;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    font-family: "Montserrat",sans-serif;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 48px;
    background: transparent;
    border: 2px solid #23231a;
    color: #23231a;
    position: relative;
    transition: color 300ms ease 300ms;
    z-index: 1;
}
.button:before {
    background: #23231a;
    content: '';
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transition: width 400ms cubic-bezier(1,0.21,0.76,0.57);
    width: 0;
    z-index: -1;
}
.button:hover {
    background-color: transparent;
    border: 2px solid #23231a;
    color: #f8f6f6;
    transition: color 300ms ease 200ms;
}
.button:hover:before {
	width: 100%;
}

.add_introduce{
	padding-left:40px;
	padding-right:24px;
}
.add_introduce::before{
	content:"+";
	position:absolute;
	top:50%;
	left:21px;
	line-height: 1;
	transform: translateY(-50%);
}
.add_introduce::after{
	display:none;
}
label.checkbox{
	position:relative;
	display:inline-block;
	cursor: pointer;
}
label.checkbox + br + label.checkbox{
	margin-top:3px;
}
	label.checkbox input[type=checkbox]{
		position:absolute;
		top:0;
		left:0;
		opacity:.01;
	}
	label.checkbox span{
		display:inline-block;
		position:relative;
		padding-left:30px;
		line-height: 20px;
	}
	label.checkbox span:before{
		content:"";
		position:absolute;
		top:0;
		left:0;
		width:16px;
		height:16px;
		border-radius:4px;
		background:#FFF;
		border:solid 2px #C2C2C2;
	}
	label.checkbox span:after{
		display: none;
		content:"";
		position:absolute;
		top:2px;
		left:6px;
		width:5px;
		height:9px;
		border-right:solid 3px #f8ac00;
		border-bottom:solid 3px #f8ac00;
		transform:rotate(45deg);
	}
	label.checkbox input:checked ~ span:before{
		border-color:#f8ac00;
	}
	label.checkbox:hover input ~ span:before, label.checkbox input:focus ~ span:before{
		border-color:#dd8c22;
	}
	label.checkbox input:checked ~ span:after{
		display: block;
	}
	label.checkbox input[disabled] ~ span:before{
		border-color:#C2C2C2;
	}
	label.checkbox input[disabled] ~ span:after{
		border-color:#DDD;
	}
	label.checkbox input[disabled]:checked ~ span:after{
		border-color:#999;
	}
	label.checkbox input[disabled] ~ span{
		opacity:.5;
		cursor:default;
	}

label.radio{
	float:left;
	position:relative;
	clear:both;
	cursor: pointer;
}
label.radio + label.radio{
	margin-top:5px;
}
br + label.radio{
	margin-top:5px;
}
	label.radio input[type=radio]{
		position:absolute;
		top:0;
		left:0;
		opacity:.01;
	}
	label.radio span{
		display:inline-block;
		position:relative;
		padding-left:30px;
		line-height:20px;
	}
		label.radio span img{
			display: block;
			margin-left:10px;
		}
	label.radio span:before{
		content:"";
		position:absolute;
		top:0;
		left:0;
		width:16px;
		height:16px;
		border-radius:50%;
		background:#FFF;
		border:solid 2px #C2C2C2;
	}
	label.radio--center span:before{
		top:50%;
		margin-top:-13px;
	}
	label.radio span:after{
		content:"";
		position:absolute;
		top:5px;
		left:5px;
		width:10px;
		height:10px;
		border-radius:50%;
		background:#F5F5F5;
	}
	label.radio--center span:after{
		top:50%;
		margin-top:-5px;
	}
	label.radio:hover span:before, label.radio input:focus ~ span:before{
		border-color:#f8ac00;
	}
	label.radio input:checked ~ span:before{
		border-color:#f8ac00;
	}
	label.radio input:checked ~ span:after{
		background:#f8ac00;
	}
	label.radio input[disabled] ~ span:before{
		border-color:#C2C2C2;
	}
	label.radio input[disabled] ~ span:after{
		background:#DDD;
	}
	label.radio input[disabled]:checked ~ span:after{
		background:#999;
	}
	label.radio input[disabled] ~ span{
		opacity:.5;
		cursor:default;
	}
	.form-buttons {width: 100%;}
.grijsblok {
	background: #f8f6f6;
    padding: 33px 39px;
    box-sizing: border-box;
}
.labeltje {
    background: #f8ac00;
    color: #fff;
    font-family: "Montserrat",sans-serif;
    font-size: 14px;
    font-weight: 700;
    right:-13px;
    padding: 12px 24px;
    position: absolute;
    top: 200px;
}
.event-title {
    bottom: 34px;
    color: #23231a;
    font-family: "Montserrat",sans-serif;
    font-size: 30px;
    font-weight: 500;
    left: 30px;
    padding: 0;
    position: absolute;
	}
.introduce__hidden{
	display:none;
}
.header{
	position:fixed;
	top:0;
	left:0;
	width:50vw;
	height:100vh;
	background: url(../images/default-image.jpg) no-repeat center center;
	background-size:cover;
}
.text{
	position: relative;
	margin-left:50vw;
	min-height:100vh;
	padding:75px 60px;
	box-sizing:border-box;
}

@media (min-width:64em) {
	.text {padding-top: 140px;}
	.logo {
		background: #23231a;
		position: fixed;
		left: 0;
		right: 0;
		top: 0;
		padding: 25px 25px 15px;
		z-index: 90;
	}





}
	.logo img {
		max-width: 208px;
		width: 100%;
	}
	.language{
		float:left;
		margin-bottom:20px;
	}
		.language__button{
			float:left;
			margin-right:10px;
			width:36px;
		}
			.language__button img{
				display:block;
				width:100%;
			}
	.vc-logo {
		position: absolute;
		bottom: 20px;
		width: 189px;
		left: 50%;
		transform: translateX(-50%);
	}
.clear{
	clear:both;
}
.choose__language__button{
	float:left;
	margin-bottom:20px;
	line-height: 48px;
	text-decoration: none;
	clear:both;
}
	.choose__language__button img{
		float:left;
		margin-right:20px;
		width:48px;
	}
@media (max-width:88em){
	.header{
		width:40vw;
	}
	.text{
		margin-left:40%;
		width: 60%;
	}
}
@media (max-width:64em){
	.header{
		position:relative;
		width:auto;
		height:215px;
		background-position: top center;
	}
	html:after {display: none;}
		.logo{
			position: fixed;
			top: 0;
			left: 0;
			right: 0;
			background: #23231a;
			padding: 16px 24px 13px;
			z-index: 90;
		}
		.text:after {
			content: '';
			background: #f8ac00;
			z-index: 2000;
			position: absolute;
			bottom: 0;
			left: 0;
			right: 0;
			height: 5px;
			width: 100%;
		}
			.logo img{
				display:block;
				width: 150px;
			}
			.labeltje {right: 0;top: 88px;}
			.grijsblok {padding: 20px 22px;}
		.event-title {
			font-size: 23px;
			left: 21px;
			bottom: 11px;
			display: none;
		}
		.form-field__input {
			width: 100%;
			margin: 0;
		}
	.text{
		margin:0;
		width:auto;
		min-height:calc(100% - 215px);
		padding:23px 23px 62px;
	}
}
@media (max-width:35.5em){
	#text{
		min-height:0;
	}
	table, tbody, tr, th, td{
		display:block;
		overflow: hidden;
	}
	th{
		font-weight: 600;
	}
	tr + tr th{
		padding-top:10px;
	}
}
@media (max-width:25em){
	input[type=text], input[type=date], input[type=email], select, textarea, input[type=number] {
		width:100%;
		box-sizing: border-box;
	}
	.button{
		width:100%;
		box-sizing: border-box;
	}
}

.file-container > label span, .image-progress-label, .file-progress-label, .file-progress-bar, .file-box-container div {
	background:#f8ac00;
}
.center-div {
    margin-right: auto;
    margin-left: auto;
    max-width: 1280px;
}

ul {
    margin-left: 24px;
}
li {
    list-style: none;
    position: relative;
    padding-left: 4px;
}
li::before {
    background: #0000;
    border: 2px solid #f8ac00;
    box-sizing: border-box;
    border-radius: 50%;
    content: '';
    height: 12px;
    left: -18px;
    position: absolute;
    top: 8px;
    width: 12px;
}