body {
  background-color: #000000;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  min-height: 100vh;
  height: 100%;
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
}
body::before {
  content: '';
  background: url("/images/lijnen-vast.svg") repeat-y top center;
  display: block;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  z-index: -1;
}
body::after {
  content: '';
  background: url("/images/lijnen.svg") repeat-y top center;
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: -1;
}

.main {
  flex: 1 0 auto;
}

.page-title,
.article-title {
  width: 100%;
  background-color: #F2C938;
  font-size: 1.8125rem;
  color: #0A0837;
  text-transform: uppercase;
  margin-top: 30px;
  margin-bottom: 30px;
  padding-top: 25px;
  padding-bottom: 25px;
  padding-left: 25px;
}

.article-title {
  background-color: #F2C938;
  margin-bottom: 20px;
}
.article-title .date {
  font-size: 1.5rem;
  text-transform: initial;
}
.article-title .title {
  font-size: 1.8125rem;
  margin-left: -3px;
}
.article-title .chapeau {
  font-size: 1.3125rem;
}

.search-block {
  background-color: #ffffff;
  padding: 25px;
}

.social-share {
  display: flex;
  flex-wrap: wrap;
  background-color: #ffffff;
  padding: 25px;
  padding-bottom: 15px;
  margin-bottom: 20px;
}
.social-share .fb_iframe_widget {
  margin-right: 50px;
  margin-bottom: 10px;
}
.social-share a {
  margin-right: 50px;
  margin-bottom: 10px;
}
.social-share a:last-child {
  margin-right: 0;
}
.social-share img {
  float: left;
  height: 28px;
  margin-right: 15px;
}
.social-share .fb-like {
  display: none;
}

@media (min-width: 768px) {
  body {
    font-size: 1.3125rem;
  }

  .page-title,
  .article-title {
    font-size: 5.4375rem;
    margin-top: 50px;
    margin-bottom: 50px;
    padding-left: 60px;
  }

  .article-title {
    margin-bottom: 20px;
  }
  .article-title .title {
    font-size: 5.0625rem;
  }
  .article-title .chapeau {
    font-size: 2rem;
  }
}
@media (min-width: 1921px) {
  body::before,
  body::after {
    background-size: cover;
  }
}
.header {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background: #000000;
  position: -webkit-sticky;
  position: -moz-sticky;
  position: -ms-sticky;
  position: -o-sticky;
  position: sticky;
  top: 0;
  z-index: 1;
}
.header .logo {
  display: none;
  align-self: center;
  width: 440px;
  height: 337px;
  position: relative;
}
.header .logo .logo--off,
.header .logo .logo--on {
  position: absolute;
  top: 0;
  left: 0;
}
.header .logo .logo--on {
  animation: flashing 2s forwards;
}
.header .navigation {
  display: block;
  width: 100%;
  background-color: #000000;
  padding: 7px 15px;
}
.header .navigation .flex-container {
  display: flex;
  justify-content: space-between;
}
.header .navigation .responsive-menu {
  display: none;
  width: 100%;
  position: absolute;
  background-color: #000000;
  margin-left: -15px;
  top: 80px;
  padding: 15px;
}
.header .navigation .menu-item {
  color: #ffffff;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 5px;
  transition: 0.25s ease-in-out;
}
.header .navigation .menu-item.current {
  color: #EB2B8E;
}
.header .navigation .menu-item:hover {
  color: #EB2B8E;
}
.header .navigation .menu-item:hover a {
  text-decoration: none;
}
.header .navigation .menu-item.facebook {
  width: 22px;
}
.header .navigation .responsive-icon {
  display: flex;
  align-items: center;
  font-family: inherit;
  font-weight: 500;
  color: #FFFFFF;
  border: 0;
  outline: 0;
  background-color: transparent;
}
.header .navigation .responsive-icon span {
  margin-left: 15px;
  font-size: 1.3125rem;
}
.header .navigation .logo-small {
  height: 75px;
  margin-left: -8px;
}
.header .navigation .logo-small img {
  max-height: 100%;
}
.header .search {
  display: flex;
  align-items: center;
}
.header .search .search-container {
  display: flex;
}
.header .search .search-field {
  font-family: inherit;
  font-size: 1.125rem;
  padding: 0 11px;
  background-color: #EFE5E5;
  border: 0;
  border-radius: 0;
  height: 30px;
  width: 100%;
  -webkit-appearance: none;
}
.header .search .search-icon {
  display: none;
}
.header .search .submit-search {
  font-family: inherit;
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0 11px;
  color: #ffffff;
  background-color: #D9D1D1;
  border-radius: 0;
  border: 0;
  -webkit-appearance: none;
  height: 30px;
}
.header.home {
  padding-top: 30px;
  position: inherit;
}
.header.home .logo {
  display: block;
}
.header.home .navigation {
  opacity: 0;
  height: 0;
}
.header.fixed {
  padding-top: 0;
}
.header.fixed .navigation {
  opacity: 1;
  height: auto;
  position: fixed;
  left: 0;
  z-index: 1;
}

@media (min-width: 768px) {
  .header .navigation {
    transition: .35s ease-in-out;
    padding: 5px 25px;
  }
  .header .navigation .responsive-icon {
    display: none;
  }
  .header .navigation .responsive-menu {
    padding: 0;
    align-self: flex-start;
    display: flex;
    justify-content: flex-end;
    position: inherit;
    top: inherit;
    background-color: transparent;
    width: auto;
    margin-top: 10px;
  }
  .header .navigation .menu-item {
    margin-bottom: 0;
    margin-left: 15px;
  }
  .header .search .search-icon {
    display: block;
    width: 17px;
  }
  .header .search .search-container {
    display: none;
    margin-left: 15px;
  }
  .header .search .search-icon {
    cursor: pointer;
  }
  .header .search.opened {
    position: absolute;
    top: 46px;
    right: 25px;
  }
  .header.home {
    padding-top: 60px;
  }
  .header.fixed {
    padding-top: 0;
  }
}
@media (min-width: 1170px) {
  .header .navigation .logo-small {
    margin-left: calc(50% - 60px);
  }
}
@keyframes flashing {
  0% {
    opacity: 0;
  }
  43% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  55% {
    opacity: 0;
  }
  65% {
    opacity: 1;
  }
  70% {
    opacity: 0;
  }
  80% {
    opacity: 0;
  }
  85% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.footer {
  background-color: #000000;
  color: #ffffff;
  font-weight: 500;
  font-size: 1rem;
  margin-top: 30px;
  padding-top: 50px;
  padding-bottom: 50px;
  flex-shrink: 0;
}
.footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer a {
  text-decoration: underline;
}
.footer p {
  margin-right: 10px;
  margin-bottom: 10px;
}

.latest,
.news {
  margin-top: 50px;
  margin-bottom: 30px;
}

.article {
  background-color: #ffffff;
  padding: 25px;
  margin-bottom: 20px;
  transition: 0.25s ease-in-out;
  color: #0A0837;
}
.article a {
  display: inherit;
}
.article:hover {
  background-color: #F2C938;
}
.article:hover a {
  text-decoration: none;
}
.article .article__image img {
  width: 100%;
}
.article .date {
  margin-top: 10px;
  margin-bottom: 5px;
}
.article .title {
  font-size: 1.8125rem;
  font-weight: 500;
  margin-bottom: 5px;
  margin-left: -3px;
  text-transform: uppercase;
  color: #0A0837;
  line-height: 1;
}
.article .chapeau {
  font-weight: 500;
  text-transform: uppercase;
  color: #0A0837;
  font-size: 1.4375rem;
}
.article .chapeau p a {
  color: #EB2B8E;
  display: initial;
  text-decoration: underline;
}
.article .sprekers {
  margin-top: 28px;
  font-weight: 600;
}
.article .intro {
  margin-top: 5px;
}

.news .article .date {
  text-transform: inherit;
  color: #0A0837;
}
.news .article .title {
  font-weight: 600;
  margin-bottom: 5px;
}
.news .article .chapeau {
  font-weight: 500;
  text-transform: uppercase;
  color: #0A0837;
}

.more {
  width: 100%;
  display: flex;
  justify-content: center;
  background-color: #F2C938;
  padding-top: 24px;
  padding-bottom: 24px;
}

@media (min-width: 768px) {
  .article {
    display: flex;
  }
  .article .article__image {
    width: 200px;
    flex: 1 0 200px;
    margin-right: 25px;
  }
  .article .article__image img {
    width: 100%;
  }
  .article .date {
    margin-top: 0;
  }
  .article .title {
    font-size: 3.0625rem;
  }
  .article .chapeau {
    font-size: 1.6875rem;
  }

  .news .article .title {
    font-size: 2.75rem;
    font-weight: 600;
  }
  .news .article .chapeau {
    font-size: 1.6875rem;
  }

  .more {
    margin-bottom: 100px;
  }
	
	.footer {
		font-size: 1.1875rem;
	}
}
@media (min-width: 1024px) {
  .article .article__image {
    width: 300px;
    flex: 1 0 300px;
  }
}
.umb-grid .col-md-2 {
  -webkit-flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}
.umb-grid a {
  color: #EB2B8E;
  font-weight: 600;
  transition: 0.25s ease-in-out;
}
.umb-grid a:hover {
  color: #000000;
  text-decoration: underline;
}
.umb-grid h2 {
  font-size: 1.7rem;
  font-weight: 700;
  text-transform: uppercase;
}
.umb-grid h3 {
  font-size: 1.55rem;
  font-weight: 700;
}
.umb-grid p {
  margin-bottom: 10px;
  line-height: 1.3;
}
.umb-grid .column {
  background-color: #ffffff;
  margin-bottom: 20px;
}
.umb-grid .column > div {
  padding: 25px;
}
.umb-grid .column img {
  margin-left: auto;
  margin-right: auto;
}
.umb-grid div[data-image="heading-1"] {
  padding: 0;
  position: relative;
}
.umb-grid div[data-image="heading-1"] p {
  margin-bottom: 0;
}
.umb-grid div[data-image="heading-1"] p:not(:first-of-type) {
  color: #ffffff;
  font-size: 3.375rem;
  font-weight: 700;
  position: absolute;
  left: 25px;
  bottom: 20px;
  text-transform: uppercase;
}
.umb-grid [data-intro="intro-1"] h2 {
  margin-bottom: 35px;
}
.umb-grid [data-intro="intro-1"] p:first-of-type::before {
  content: '';
  display: inline-block;
  background: url("/images/slash.svg") no-repeat center center/cover;
  width: 12px;
  height: 16px;
  margin-right: 5px;
}
.umb-grid div[data-margin="margin-1"] {
  padding: 0;
}
.umb-grid div[data-margin="margin-1"] .caption {
	padding-left: 10px;
}
.umb-grid .video-wrapper {
  padding-top: calc(56.25% + 28px);
  margin: -25px;
}
.umb-grid .label {
  font-size: 1.125rem;
  font-weight: 400;
  text-transform: uppercase;
  margin-top: -10px;
  margin-bottom: 25px;
	padding-top: 10px;
}
.umb-grid .label::before {
  content: '';
  display: inline-block;
  background: url("/images/slash.svg") no-repeat center center/cover;
  width: 12px;
  height: 16px;
  margin-right: 7px;
}
.umb-grid .caption {
  margin-bottom: 0;
  font-size: 1.125rem;
  text-transform: uppercase;
  padding-top: 10px;
  padding-bottom: 10px;
}
.umb-grid .caption::before {
  content: '';
  display: inline-block;
  background: url("/images/slash.svg") no-repeat center center/cover;
  width: 12px;
  height: 16px;
  margin-right: 7px;
}
.umb-grid .black {
  background-color: #000000;
  color: #ffffff;
  height: 100%;
}
.umb-grid .black a:hover {
  color: #ffffff;
}
.umb-grid .yellow {
  background-color: #F2C938;
  height: 100%;
}
.umb-grid .yellow .caption::before,
.umb-grid .yellow .label::before {
  background: url("/images/white-slash.svg") no-repeat center center/cover;
}
.umb-grid .grey {
  background-color: #D9D1D1;
  height: 100%;
}
.umb-grid .gallery .gallery-item {
  position: relative;
  display: block;
}
.umb-grid .gallery .gallery-item::after {
  content: '';
  display: inline-block;
  background: url("/images/zoom.png") no-repeat center center/cover;
  opacity: 1;
  width: 76px;
  height: 73px;
  position: absolute;
  bottom: 20px;
  right: 20px;
  transition: .35s ease-in-out;
}
.umb-grid .gallery .gallery-item:not(:first-child) {
  display: none;
}
.umb-grid #mc_embed_signup_scroll {
  display: flex;
  flex-wrap: wrap;
}
.umb-grid #mc_embed_signup_scroll label {
  display: block;
  margin-bottom: 5px;
}
.umb-grid #mc_embed_signup_scroll input {
  font-family: inherit;
  font-size: inherit;
  padding: 10px 11px;
  background-color: #EFE5E5;
  border: 0;
  border-radius: 0;
  height: 45px;
  width: 100%;
}
.umb-grid #mc_embed_signup_scroll .button {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  background-color: #D9D1D1;
  margin-top: 30px;
  border-radius: 0;
  -webkit-appearance: none;
}
.umb-grid iframe {
  display: block;
}

@media (min-width: 768px) {
  .umb-grid .col-md-2 {
    -webkit-flex: 0 0 33.323333%;
    -ms-flex: 0 0 33.323333%;
    flex: 0 0 33.323333%;
    max-width: 33.323333%;
  }
  .umb-grid h2 {
    font-size: 2.8125rem;
  }
  .umb-grid h3 {
    font-size: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .umb-grid .col-md-2 {
    -webkit-flex: 0 0 16.666667%;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .umb-grid h2 {
    font-size: 3.5625rem;
  }
  .umb-grid h3 {
    font-size: 3.125rem;
  }
}

/*# sourceMappingURL=styles.css.map */
