html,body{
	margin:0;
	padding:0;
}

.wrap{
	max-width:1000px;
	margin:auto;
	padding-left: 30px;
    padding-right: 20px;
}
.logo{
	height:60px;
	width:144px;
	background-image:url(logo.png);	
	background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    float:left;
}

a:visited, a:hover, a:link, a:active{
	color:#0070FF;
}

/* ======== MENU ======== */
    .nav {
		top:0;
		padding-top: 20px;
		padding-bottom:20px;
		position: fixed;
		background: white;
		width: 100%;
		height: 100px;
		box-sizing: border-box;

    }
    .menu {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex; /* horizontal by default */
      flex-direction: row;
      font-family:"inter";
      font-weight:500;
      font-size:20px;
      color:#0070FF;
      float:right;
    }
    .menu li {
      margin: 0;
    }
    .menu a {
      display: block;
      padding: 16px 28px;
      text-decoration: none;
    }
    .menu a:hover {
      background-color:#0070FF10;
    }
    /* Hamburger styles */
    .menu-toggle {
      display: none;
    }
    .hamburger {
      display: none;
      cursor: pointer;
      padding: 16px 24px;
      user-select: none;
      background-color:white;
    }
    .hamburger span, .hamburger span:before, .hamburger span:after {
        display: block;
	    height: 5px;
	    width: 60px;
	    border-radius: 2px;
	    position: relative;
	    background-color: #0070FF;
	    top: 10px;
    }
    .hamburger span:before, .hamburger span:after {
      content: "";
      position: absolute;
      left: 0;
    }
    .hamburger span:before { top: 18px; }
    .hamburger span:after { top: 38px; }

    /* Responsive styles */
    @media (max-width: 768px) {
      .menu {
        flex-direction: column;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        background: #f3f8ff;
      }
      .menu li {
	      border-bottom: 1px solid #dde8ff;
	    }
      .menu-toggle:checked + .hamburger + .menu {
        max-height: 500px; /* arbitrarily large for the number of items */
        width: 100%;
        position: fixed;
        top: 100px;
        left: 0px;
      }
      .hamburger {
        display: block;
        position: relative;
        height: 60px;
        width: 60px;
        float:right;
        z-index: 2;
        padding:0px;
      }
      .menu-toggle {
        display: block;
        position: absolute;
        width: 40px;
        height: 40px;
        top: 0; left: 0;
        opacity: 0;
        z-index: 3;
        cursor: pointer;
      }
      nav {
        padding: 0;
      }
    }







.splash{
	margin-top:100px;
    width: 100%;
    height: 590px;
    background-image: url(hero.svg);
    background-size: cover;
    font-family:"inter";
    color:white;
}
.splash .wrap{
	padding-top:170px;
}
.title{
	font-weight:700;
	font-size:55px;
	max-width:450px;
}
.subtitle{
    font-weight: 200;
    font-size: 30px;
    margin-top: 15px;
}
@media (max-width: 768px) {
  .title{
    font-size:40px;
    width:100%;
  }
  .subtitle{
    font-size: 20px;
    margin-top: 10px;
  }
}

section{
	max-width:1000px;
	margin:auto;
	margin-top:50px;
	margin-bottom:50px;
	line-height: 1.4em;
  text-align:justify;
  font-family: 'Inter';
}
@media (max-width: 768px) {
  section{
    text-align:left;
  }
}
h2{
	
    font-size: 40px;
    margin-left:15px;
    font-weight: 800;
    text-transform: uppercase;
    color: #0070FF;
}
section p, section li, section h3{
	font-size: 18px;
	line-height: 1.4em;
  margin-bottom:10px;
  margin-top:10px;
  margin-left:20px;
  margin-right:20px;
}



.principle-cards {
	display: flex;
	flex-wrap: wrap;
	gap: 0px; /* 20px space between cards */
	justify-content: center;
}

.principle{
	flex: 0 1 435px;
	padding: 15px;
	margin: 15px;
	font-family:"inter";
	border: 1px solid #0070FF;            /* blue border */
  	border-radius: 5px;                   /* Rounded corners, 5px radius */
}
.principle .num{
	font-style: italic;
}
.principle .title{
	font-size: 40px;
    color: #0070FF;
    margin-top: 10px;
    margin-bottom: 20px;
}
.principle .desc{
	font-size:20px;
	margin-top:10px;
	line-height: 1.4em;
	max-width: 580px;
	text-align: justify;
}
@media (max-width: 768px) {
  .principle .title{
    font-size: 30px;
  }
  .principle .desc{
    text-align:left;
  }
}

.team-cards{
	display: flex;
	flex-wrap: wrap;
	gap: 0px; /* 20px space between cards */
	justify-content: center;

}
.employee{
	flex: 0 1 435px;
	margin: 15px;
	font-family:"inter";
	padding: 15px;
	border: 1px solid #0070FF;            /* blue border */
  	border-radius: 5px;                   /* Rounded corners, 5px radius */
}
.profilepic{
	width:100%;
	height:300px;
	background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    float: right;
    margin-left: 30px;
    margin-bottom: 15px;
}
.florian{
	background-image: url(florian_morata.jpg);
}
.joris{
	background-image: url(ph.png);
}
.name{
	font-size: 30px;
    font-weight: 700;
    color: #0070FF;
    text-align:center;
    margin-bottom:10px;
}
.role{
	font-size: 17px;
    line-height: 1.5em;
    font-style: italic;
    text-align:center;
}
.desc{
	line-height: 1.4em;
    text-align:justify;
    font-family: 'Inter';
}
.desc li{
	margin-top:10px;
	margin-bottom:10px;
}
@media (max-width: 768px) {
  .desc{
    text-align:left;
  }
}


#intro, #principles, #team, #fund, #contact {
    scroll-margin-top: 110px;
}

#contact{
  margin-bottom:100px;
  text-align:left;
}