/* @group ALGEMEEN */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
html,
body {
  box-sizing: border-box;
  height: 100%;
  -webkit-font-smoothing: antialiased;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
body {
  font-family: 'Exo', sans-serif;
  font-size: 18px;
  line-height: 1.7em;
  font-weight: 300;
  color: #262955;
}
h1,
h2,
h3,
h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.1em;
  margin: 0 0 5px;
  font-weight: 900;
}
h1 a,
h2 a,
h3 a,
h4 a {
  color: inherit;
}
h1 {
  font-size: 26px;
}
h2 {
  font-size: 22px;
}
h3 {
  font-size: 18px;
}
ul,
ol,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}
textarea,
input[type="text"],
input[type="button"],
input[type="submit"] {
  -webkit-appearance: none;
  border-radius: 0;
}
/* @end */
/* @group default links */
a:link,
a:active,
a:visited {
  outline: none;
}
a:hover {
  text-decoration: none;
}
a:active,
a:focus,
*:focus {
  outline: none !important;
}
.noclick {
  cursor: default;
}
img {
  max-width: 100%;
}
.containerx {
  background: rgba(75, 125, 88, 0.8);
}
/* @end */
/* @group SITE HEADER */
.site-wrapper {
  overflow: hidden;
}
body {
  padding-top: 60px;
}
.site-header {
  width: 100%;
  background: #000;
  transition: all 0.3s ease-in-out;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 900;
}
.site-header .container {
  height: 60px;
  position: relative;
  font-size: 18px;
}
.site-header .logo {
  line-height: 60px;
  color: #ff5a3c;
}
.site-header .logo img {
  height: 30px;
  margin-top: 13px;
}
.site-header .nav-std {
  position: absolute;
  top: 0;
  left: -5px;
}
.site-header .mainnav {
  float: left;
}
.site-header .mainnav li {
  float: left;
  margin-left: 35px;
  position: relative;
}
.site-header .mainnav li a {
  display: block;
  color: #fff;
  line-height: 60px;
  font-weight: 700;
  white-space: nowrap;
}
.site-header .mainnav li a:hover {
  text-decoration: underline;
}
.site-header .mainnav li.active > a {
  text-decoration: underline;
}
.site-header .mainnav li:hover ul {
  display: block;
}
.site-header .mainnav ul {
  display: none;
  position: absolute;
  top: 60px;
  left: -30px;
  background: #000;
  padding: 15px 0;
  border-top: 1px solid #fff;
}
.site-header .mainnav ul li {
  float: none;
  margin: 0;
}
.site-header .mainnav ul a {
  padding: 0 30px;
  line-height: 2em;
}
.site-header .gotodelft {
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  right: 30px;
  height: 100%;
}
.site-header .gotodelft:hover {
  color: #ff5a3c;
}
.site-header .gotodelft img {
  width: 70px;
  margin-top: -7px;
}
.site-header .gotodelft:before {
  content: '';
  background: url('/assets/images/external-icon.svg');
  width: 20px;
  height: 15px;
  display: block;
  margin-right: 14px;
}
/* @end */
/* @group MOBILE-NAV */
.nav-icon {
  display: none;
  width: 36px;
  cursor: pointer;
  position: absolute;
  top: 15px;
  right: 30px;
}
.nav-icon:after,
.nav-icon:before,
.nav-icon div {
  background-color: #d9f1f9;
  content: '';
  display: block;
  height: 3px;
  margin: 5px 0;
  transition: all 0.3s ease-in-out;
}
.nav-icon.open:before {
  transform: translateY(8px) rotate(135deg);
  -moz-transform: translateY(8px) rotate(135deg);
  -webkit-transform: translateY(8px) rotate(135deg);
}
.nav-icon.open:after {
  transform: translateY(-8px) rotate(-135deg);
  -moz-transform: translateY(-8px) rotate(-135deg);
  -webkit-transform: translateY(-8px) rotate(-135deg);
}
.nav-icon.open div {
  -moz-transform: scale(0);
  -webkit-transform: scale(0);
  transform: scale(0);
}
.mobile-nav {
  width: 100%;
  height: 100%;
  padding: 0;
  background: #262955;
  color: #fff;
  overflow: hidden;
  position: fixed;
  top: -100%;
  left: 0;
  z-index: 600;
  overflow-y: scroll;
  /* has to be scroll, not auto */
  -webkit-overflow-scrolling: touch;
  transition: all 0.6s ease 0s;
}
.mobile-nav .container {
  z-index: 200;
  font-size: 18px;
  padding-top: 140px;
  padding-bottom: 10px;
}
.mobile-nav .mainnav li {
  text-align: center;
  margin-bottom: 20px;
}
.mobile-nav .mainnav li a {
  display: block;
  color: #fff;
  font-size: 26px;
  text-transform: uppercase;
  line-height: 30px;
  transition: all 0.2s ease-in-out;
}
.mobile-nav .mainnav li a:hover {
  color: #fff;
}
.mobile-nav .mainnav ul {
  display: none;
  padding: 20px 0;
}
.mobile-nav .mainnav ul.show-subnav {
  display: block;
}
.mobile-nav .mainnav ul li a {
  color: #fff;
  font-size: 24px;
  text-transform: none;
}
.shownav .mobile-nav {
  top: 0;
}
@media (max-width: 991px) {
  .site-header .nav-std {
    display: none;
  }
  .site-header .nav-icon {
    display: block;
  }
  .site-header .gotodelft {
    right: 100px;
  }
}
/* @end */
/* @group PAGE-BANNER */
.page-banner {
  background: #262955;
  background-position: center center;
  background-size: cover;
}
.page-banner .container {
  height: 500px;
  color: #fff;
  position: relative;
}
.page-banner .container h1,
.page-banner .container h2 {
  color: inherit;
}
.page-banner .badge {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: #ff5a3c;
  color: #262955;
  padding-top: 45px;
  position: absolute;
  bottom: -50px;
  right: 55px;
}
.page-banner .badge p {
  display: block;
  text-align: center;
  font-size: 36px;
  line-height: 1;
  font-weight: bold;
}
.page-banner .box {
  display: flex;
  align-items: center;
  padding-right: 425px;
  height: 100%;
}
.page-banner .box h1 {
  font-size: 50px;
  line-height: 1.2em;
}
.page-banner.volg-banner {
  height: 120px;
}
@media (max-width: 1280px) {
  .page-banner .box {
    padding-right: 20%;
  }
  .page-banner .box h1 {
    font-size: 46px;
  }
}
@media (max-width: 991px) {
  .page-banner .box {
    padding: 60px 30px 120px;
  }
  .page-banner .box h1 {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .page-banner .container {
    height: 350px;
  }
  .page-banner .box {
    padding: 60px 30px 120px;
  }
  .page-banner .box h1 {
    font-size: 32px;
  }
  .page-banner .badge {
    width: 160px;
    height: 160px;
    padding-top: 35px;
  }
  .page-banner .badge p {
    font-size: 30px;
  }
}
@media (max-width: 540px) {
  .page-banner .container {
    height: 350px;
  }
  .page-banner .box {
    padding: 60px 30px 120px;
  }
  .page-banner .box h1 {
    font-size: 26px;
  }
  .page-banner .badge {
    width: 120px;
    height: 120px;
    padding-top: 25px;
    bottom: -30px;
  }
  .page-banner .badge p {
    font-size: 24px;
  }
}
/* @end */
/* @group MOD-BOX */
.mod-box {
  padding: 60px 0;
}
.mod-box .container {
  position: relative;
}
.mod-box h2 {
  font-size: 50px;
  margin: 0 0 30px 0;
}
@media (max-width: 1280px) {
  body {
    font-size: 18px;
  }
  .mod-box h2 {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  body {
    font-size: 16px;
  }
  .mod-box h2 {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  body {
    font-size: 16px;
  }
  .mod-box h2 {
    font-size: 36px;
  }
}
/* @end */
/* @group MOD-INTRO */
.mod-intro {
  background: #fff;
}
.mod-intro .left-col {
  float: right;
}
.mod-intro .left-col figure {
  max-width: 270px;
  float: right;
}
@media (max-width: 767px) {
  .mod-intro .left-col {
    float: none;
    margin-bottom: 40px;
  }
  .mod-intro .left-col figure {
    float: none;
    text-align: center;
    max-width: none;
  }
  .mod-intro .left-col figure img {
    width: 240px;
    margin: 0 auto;
  }
}
/* @end */
/* @group MOD-CITY */
.mod-city {
  background: #d9f1f9;
}
.mod-city .mod-header {
  margin-bottom: 30px;
}
.mod-city .mod-header h2 {
  margin: 0 0 5px;
}
.mod-city .mod-header em {
  color: #ff5a3c;
  font-style: normal;
  font-weight: 600;
}
.mod-city .article-image .badge {
  width: 600px;
  padding: 20px 20px;
  background: #fff;
  color: #262955;
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 10;
  -moz-transform: translate(-50%, 50%);
  -webkit-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
  text-align: center;
  font-weight: 600;
}
@media (max-width: 767px) {
  .mod-city .mod-header {
    margin-bottom: 30px;
  }
  .mod-city .article-image {
    margin-top: 10px;
  }
}
.mod-news .read-more {
  color: #ff5a3c;
  font-weight: 600;
}
.mod-news p {
  margin-bottom: 20px;
}
.mod-news a:not(.read-more) {
  color: #262955;
  text-decoration: underline;
}
.mod-news h3 {
  font-family: 'Exo', sans-serif;
}
/* @end */
/* @group MOD-SCHEDULE */
.mod-schedule {
  background: #fff;
}
/* @end */
/* @group MOD-SLIDER */
.mod-slider {
  background: #ff5a3c;
  color: #fff;
  padding: 0;
  overflow: hidden;
  position: relative;
}
.mod-slider .container {
  padding-top: 60px;
  padding-bottom: 80px;
}
.mod-slider h1,
.mod-slider h2,
.mod-slider h3,
.mod-slider a {
  color: inherit;
}
.mod-slider h2 {
  margin: 0 0 40px 55%;
  text-align: right;
  position: relative;
  z-index: 5;
}
.mod-slider .slick-nav {
  display: block;
  width: 800px;
  height: 100%;
  position: absolute;
  top: 0;
  background: rgba(255, 255, 255, 0.2);
  transition: background 0.3s ease-in-out 0s;
}
.mod-slider .slick-nav:before {
  display: block;
  content: "";
  width: 80px;
  height: 80px;
  border-radius: 10px;
  background: #ff5a3c;
  position: absolute;
  top: 50%;
  left: -50px;
  margin-top: -40px;
  -moz-transform-origin: center center;
  -webkit-transform-origin: center center;
  transform-origin: center center;
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.mod-slider .slick-nav.prev {
  left: -800px;
}
.mod-slider .slick-nav.prev:before {
  left: auto;
  right: -50px;
}
.mod-slider .slick-nav.next {
  right: -800px;
}
.mod-slider .slick-nav:hover {
  background: rgba(255, 255, 255, 0.3);
}
.slick-events {
  position: relative;
  z-index: 20;
}
.slick-events .slide {
  padding: 0 30px;
  text-align: center;
}
.slick-events .slide figure {
  margin: 0 20px 20px;
  border-radius: 500px;
  overflow: hidden;
  position: relative;
}
.slick-events .slide figure:before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #1da1d4;
  opacity: .4;
}
.slick-events .slide .info {
  font-size: 30px;
}
@media (max-width: 1280px) {
  .mod-slider h2 {
    margin: 0 0 40px 50%;
  }
  .slick-events .slide figure {
    margin: 0 0 20px;
  }
  .slick-events .slide .info {
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  .mod-slider h2 {
    margin: 0 0 40px 30%;
  }
  .slick-events .slide {
    padding: 0 20px;
  }
  .slick-events .slide figure {
    margin: 0 10px 20px;
  }
  .slick-events .slide .info {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .mod-slider .slick-nav {
    display: none;
  }
}
@media (max-width: 670px) {
  .mod-slider h2 {
    margin: 0 0 40px 15%;
  }
  .slick-events .slide {
    padding: 0 20px;
  }
  .slick-events .slide figure {
    margin: 0 0 20px;
  }
  .slick-events .slide .info {
    font-size: 20px;
  }
}
@media (max-width: 580px) {
  .mod-slider .containerx {
    padding-bottom: 40px;
  }
}
@media (max-width: 520px) {
  .mod-slider h2 {
    margin: 0 0 40px 0;
  }
}
@media (max-width: 400px) {
  .slick-events .slide .info {
    font-size: 18px;
  }
}
/* @end */
/* @group MOD-ABOUT */
.mod-about {
  background: #fff;
  padding-bottom: 0;
}
.mod-about .article {
  margin-bottom: 60px;
}
.mod-about .article h2 {
  margin: 0 0 30px;
  font-family: 'Exo', sans-serif;
  font-size: 30px;
  font-weight: 600;
}
.mod-about .article .article-output {
  margin-right: 20%;
}
.mod-about .article:nth-child(odd) .article-image {
  float: right;
}
.mod-about .article:nth-child(odd) .article-info {
  text-align: right;
}
.mod-about .article:nth-child(odd) .article-output {
  margin-right: 0;
  margin-left: 20%;
}
@media (max-width: 991px) {
  .mod-about .article .article-image {
    margin-bottom: 30px;
  }
  .mod-about .article .article-output {
    margin-right: 0;
  }
  .mod-about .article:nth-child(odd) .article-image {
    float: left;
  }
  .mod-about .article:nth-child(odd) .article-info {
    text-align: left;
  }
  .mod-about .article:nth-child(odd) .article-output {
    margin-right: 0;
    margin-left: 0;
  }
}
/* @end */
/* @group MOD-SPONSORS */
.mod-sponsors {
  background: #d9f1f9;
  position: relative;
  padding-bottom: 80px;
}
.mod-sponsors .article-output {
  margin-right: 20%;
}
.mod-sponsors .badge {
  width: 600px;
  padding: 30px 20px;
  background: #fff;
  color: #262955;
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 10;
  -moz-transform: translate(-50%, 50%);
  -webkit-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
  text-align: center;
  font-weight: 600;
}
.mod-sponsors .logos {
  overflow: hidden;
}
.mod-sponsors .logos figure {
  width: 26%;
  float: left;
  margin: 0 7% 30px 0;
}
@media (max-width: 660px) {
  .mod-sponsors .badge {
    width: 90%;
  }
}
/* @end */
/* @group ARTICLE-BOXES */
.article-box {
  padding: 30px 0;
}
/* @end */
/* @group SITE FOOTER */
.site-footer {
  background: #262955;
  padding: 100px 0 20px;
  position: relative;
  color: #1da1d4;
}
.site-footer h2,
.site-footer h3,
.site-footer h4 {
  color: #fff;
}
.site-footer h2,
.site-footer h3 {
  font-size: 50px;
}
.site-footer h2 {
  margin: 0 30% 80px 0;
}
.site-footer h3 {
  margin-bottom: 60px;
}
.site-footer h4 {
  font-family: 'Exo', sans-serif;
  font-size: 20px;
}
.site-footer a {
  color: inherit;
}
.site-footer a:hover {
  color: #ff5a3c;
}
.site-footer .credits {
  padding-top: 30px;
  font-size: 13px;
  color: #fff;
}
.site-footer .credits a {
  color: inherit;
}
.site-footer .credits a:hover {
  color: #ff5a3c;
}
@media (max-width: 1280px) {
  .site-footer h2,
  .site-footer h3 {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  .site-footer h2,
  .site-footer h3 {
    font-size: 40px;
  }
  .site-footer h2 {
    margin: 0 0 40px 0;
  }
}
@media (max-width: 767px) {
  .site-footer h2,
  .site-footer h3 {
    font-size: 36px;
  }
}
@media (max-width: 460px) {
  .site-footer h2 {
    font-size: 26px;
  }
  .site-footer h3 {
    font-size: 24px;
  }
}
/* @end */
.content-page .page-title {
  line-height: 120px;
  margin: 0;
  font-size: 42px;
  float: left;
}
.content-page .logos {
  float: right;
}
.content-page .logos .poac {
  height: 70px;
  margin-top: 25px;
  float: left;
}
.content-page .logos .subpage-badge {
  float: left;
  width: 90px;
  height: 90px;
  padding-top: 16px;
  margin-top: 15px;
  border-radius: 50%;
  background: #ff5a3c;
  color: #262955;
  margin-left: 40px;
}
.content-page .logos .subpage-badge p {
  display: block;
  text-align: center;
  font-size: 18px;
  line-height: 1.2;
  font-weight: bold;
}
.news-page .main-content {
  margin-top: 120px;
}
.news-page .main-content p a {
  text-decoration: underline;
}
.news-page .article-title {
  font-size: 40px;
  margin-bottom: 15px;
}
.news-page .intro {
  font-weight: 600;
  margin-bottom: 20px;
}
.news-page .news-items-panel {
  width: 100%;
  background: #d9f1f9;
  padding-left: 50px;
  padding-right: 50px;
  padding-top: 35px;
  padding-bottom: 35px;
  margin-bottom: 50px;
}
.news-page .news-items-panel .item a {
  font-weight: 600;
  font-size: 18px;
  color: #262955;
  line-height: 1.4;
  display: block;
}
.news-page .news-items-panel .item a.active {
  text-decoration: underline;
}
.news-page .news-items-panel .item p {
  font-weight: 500;
}
.news-page .news-items-panel .item:last-child p {
  margin-bottom: 0px;
}
.news-page .article-box .container {
  width: 100%;
  padding-left: 0px;
  padding-right: 0px;
}
.article-output table {
  width: 100%;
  text-align: left;
}
.article-output table td {
  padding: 2px;
}
/*# sourceMappingURL=screen.css.map */