:root {
  --white: white;
  --black: black;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

body {
  color: #000;
  letter-spacing: .05em;
  font-family: Neuehaasdisplay, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 20px;
}

h1 {
  letter-spacing: .01em;
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: New Century Schoolbook, Georgia, sans-serif;
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: 1em;
}

h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: 400;
  line-height: 36px;
}

p {
  letter-spacing: .05em;
  margin-bottom: 10px;
  font-family: Neuehaasdisplay, sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.5em;
}

a {
  color: #db3832;
  text-decoration: none;
}

.header {
  z-index: 90;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
  position: fixed;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.footer {
  z-index: 90;
  width: 100%;
  justify-content: space-between;
  display: flex;
  position: fixed;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.index-main {
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: flex-start;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
}

.main-img-div {
  width: 75%;
  justify-content: center;
  align-items: center;
  transition: width 1s cubic-bezier(.421, .001, 0, 1.001);
  position: absolute;
  top: 0;
  bottom: 0;
  overflow: hidden;
}

.main-img-div.mainimgleft {
  z-index: 2;
  width: 75vw;
  left: 0;
}

.main-img-div.mainimgright {
  z-index: 1;
  width: 100%;
  height: 100%;
  right: 0;
}

.main-img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 50% 50%;
  position: absolute;
}

.main-logo-div {
  z-index: 80;
  pointer-events: auto;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.main-logo-txt {
  color: #2e2e38;
  padding-bottom: 10px;
  padding-right: 33vw;
  font-size: 32px;
}

.header-extramenu-div {
  opacity: 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0));
  flex-direction: column;
  align-items: flex-start;
  padding: 63px 32px 10px;
  transition: transform .4s, opacity .4s cubic-bezier(.25, .1, .596, 1.007);
  display: flex;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
  transform: translate(0, -2px);
}

.header-extramenu-div:hover {
  opacity: 1;
  transform: translate(0);
}

.header-extramenu-div.extramenuright {
  text-align: right;
  align-items: flex-end;
  top: 0%;
  bottom: auto;
  left: auto;
  right: 0%;
}

.header-menu-txt {
  color: #fff;
  text-transform: uppercase;
  text-shadow: 0 1px 1px rgba(0, 0, 0, .25);
  margin-bottom: 10px;
  font-size: 17px;
  font-weight: 300;
  line-height: 23px;
  transition: all .3s;
  position: relative;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
}

.header-menu-txt-mobileclose {
  color: #fff;
  text-transform: uppercase;
  text-shadow: 0 1px 1px rgba(0, 0, 0, .25);
  margin-bottom: 10px;
  font-size: 17px;
  font-weight: 300;
  line-height: 23px;
  transition: all .3s;
  position: relative;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
}

.header-menu-txt:hover {
  color: #fff;
}

.body {
  background-color: #e6ddd5;
}

/* .body.bodyagenda {
  background-color: #e6ddd5;
}

.body.bodycontact {
  background-color: #fff;
}

.body.bodyagenda {
  background-color: #000;
} */

.cursor {
  z-index: 9999;
  pointer-events: none;
  display: block;
  position: fixed;
}

.main-sectionhover-div {
  z-index: 91;
  justify-content: space-between;
  display: none;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.main-sectionhover {
  width: 25%;
  height: 100%;
  position: relative;
}

.header-menu-div {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 23px;
  padding-left: 32px;
  padding-right: 32px;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
}

.header-menu-div.right {
  text-align: right;
  top: 0%;
  bottom: auto;
  left: auto;
  right: 0%;
}

.header-menu-dividerdiv {
  z-index: 90;
  position: relative;
}

.header-extramenu-txt {
  opacity: .4;
  color: #fff;
  text-transform: uppercase;
  white-space: nowrap;
  margin-bottom: 20px;
  font-size: 17px;
  font-weight: 300;
  line-height: 23px;
  transition: opacity .11s cubic-bezier(.77, 0, .175, 1);
  position: relative;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
}

.header-extramenu-txt:hover {
  opacity: 1;
}

.main-home-div {
  width: 100vw;
  height: 100vh;
  flex: 0 auto;
  justify-content: space-around;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  overflow: hidden;
}

.loading {
  z-index: 99;
  background-color: #db3832;
  justify-content: center;
  align-items: center;
  transition: opacity 1.8s cubic-bezier(.25, .46, .222, .995);
  display: none;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.loading-bar {
  width: 0%;
  height: 5px;
  background-color: #fff;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
}

.loading-container {
  width: 50vw;
  max-width: 300px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.loading-container-img {
  width: 30vw;
  max-width: 200px;
}

.main-img-coverdiv {
  z-index: 2;
  width: 50%;
  height: 100%;
  object-fit: fill;
  justify-content: center;
  transition: width 1s cubic-bezier(.421, .001, 0, 1.001);
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: auto;
  overflow: hidden;
}

.header-piecidarker {
  z-index: 85;
  opacity: 0;
  pointer-events: none;
  background-color: rgba(0, 0, 0, .78);
  transition: opacity 1.7s cubic-bezier(.421, .001, 0, 1.001);
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.footer-extramenu-div {
  flex-flow: row;
  justify-content: space-between;
  padding: 17px 32px 23px;
  display: flex;
}

.m-main-home-div {
  width: 100vw;
  height: 100%;
  flex: 0 auto;
  justify-content: space-around;
  display: none;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  overflow: hidden;
}

.m-main-img-div {
  width: 75%;
  justify-content: center;
  align-items: center;
  transition: width 1s cubic-bezier(.421, .001, 0, 1.001);
  position: absolute;
  top: 0;
  bottom: 0;
  overflow: hidden;
}

.m-main-img-div.mainimgleft {
  z-index: 2;
  width: 75vw;
  left: 0;
}

.m-main-img-div.mainimgright {
  z-index: 1;
  width: 75vw;
  right: 0;
}

.mobilemenu-wrapper,
.mobilemenu.left,
.mobilemenu.right {
  display: none;
}

.mobilemenu-close-div {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 23px;
  padding-left: 32px;
  padding-right: 32px;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
}

.mobilemenu-close-div.right {
  text-align: right;
  top: 0%;
  bottom: auto;
  left: auto;
  right: 0%;
}

.agenda-main {
  width: 100%;
  color: #fff;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.about-main-landingimg-div {
  width: 100%;
  height: 100vh;
  position: relative;
}

.over-main-landingimg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-main-content-div {
  width: 100%;
  height: 100vh;
  background-color: #fff;
}

.arrowdown-div {
  justify-content: center;
  align-items: center;
  padding-top: 22px;
  padding-bottom: 22px;
  transition: opacity .4s;
  display: flex;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.arrowdown-div:hover {
  opacity: .4;
}

.about-main-arrow-svg {
  width: 40px;
}

.html-embed {
  width: 100px;
  mix-blend-mode: exclusion;
  display: none;
}

.arrowdown-img {
  width: 35px;
  opacity: 1;
  mix-blend-mode: exclusion;
}

.header-logo-div {
  z-index: 90;
  padding-top: 10px;
  padding-bottom: 10px;
  position: relative;
}

.header-menu-txt-copy {
  color: #fff;
  margin-bottom: 10px;
  font-size: 18px;
  position: relative;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
}

.header-logo-txt {
  color: #fff;
  text-shadow: 0 1px 1px rgba(0, 0, 0, .25);
  margin-top: 8px;
  margin-bottom: 0;
  padding-bottom: 0;
  font-size: 24px;
}

.over-main {
  z-index: 20;
  width: 100vw;
  background-color: #e6ddd5;
  justify-content: center;
  align-items: flex-start;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
  overflow: hidden;
}

.wrapper {
  width: 100%;
  max-width: 1300px;
  flex: none;
  justify-content: center;
  align-items: flex-start;
  padding-left: 32px;
  padding-right: 32px;
  display: flex;
}

.wrapper.wrapperagenda {
  flex-flow: column;
  justify-content: space-between;
}

.wrapper.paginawrapper {
  flex-flow: column;
}

.wrapper.agendawrapper {
  width: 100%;
}

.over-main-back-div {
  z-index: 5;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.over-main-content-div {
  z-index: 30;
  width: 100%;
  max-width: 700px;
  min-height: 100vh;
  justify-content: flex-start;
  align-items: center;
  padding-top: 95px;
  padding-bottom: 95px;
  display: flex;
  position: relative;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.archief-main-content-div {
  z-index: 30;
  width: 100%;
  max-width: 700px;
  min-height: 100vh;
  justify-content: flex-start;
  align-items: center;
  padding-top: 95px;
  padding-bottom: 95px;
  display: flex;
  position: relative;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.organisatie-main-overtxt-txt {
  color: #2e2e37;
  text-align: center;
  margin-bottom: 17px;
}

.over-main-gradient {
  width: 20vw;
  background-image: linear-gradient(to right, #000, rgba(0, 0, 0, 0));
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: auto;
}

.agenda-main-content-column {
  width: 100%;
  padding: 10px;
}

.disco-main-content {
  width: 100%;
  padding: 100px 0px;
}

.over-main-back-img-wrapper {
  width: 60vw;
  height: 100%;
  justify-content: flex-end;
  align-items: center;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.agenda-main-button-div {
  width: 100%;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  margin-top: 41px;
  margin-bottom: 41px;
  display: flex;
}

.anbi-main-button-div {
  width: 100%;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-top: 41px;
  margin-bottom: 41px;
  display: flex;
}

.anbi-button-link {
  color: #2e2e37;
  text-transform: uppercase;
  border: 1px solid #2e2e37;
  border-radius: 0;
  margin-left: 5px;
  margin-right: 5px;
  margin-top: 20px;
  min-width: 100%;
  text-align: center;
  padding: 6px 24px;
  font-family: Neuehaasdisplay, sans-serif;
  font-size: 14px;
  font-weight: 400;
  transition: background-color .4s cubic-bezier(.25, .46, .45, .94);
}

.anbi-button-link:hover {
  color: #e6ddd5;
  background-color: #2e2e37;
}

.over-button-link {
  color: #2e2e37;
  text-transform: uppercase;
  border: 1px solid #2e2e37;
  border-radius: 0;
  margin-left: 5px;
  margin-right: 5px;
  padding: 6px 24px;
  font-family: Neuehaasdisplay, sans-serif;
  font-size: 14px;
  font-weight: 400;
  transition: background-color .4s cubic-bezier(.25, .46, .45, .94);
}

.over-button-link:hover {
  color: #e6ddd5;
  background-color: #2e2e37;
}

.overbuttontxt {
  text-align: center;
  white-space: nowrap;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}

.album-main {
  width: 100%;
  min-height: 100vh;
  flex-direction: column;
  justify-content: center;
  background-color: #e6ddd5;
  align-items: center;
  padding-bottom: 80px;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.album-list {
  width: 100%;
  padding-left: 0;
  list-style-type: none;
  display: flex;
}

.album-list-item {
  text-align: center;
  flex-direction: column;
  align-items: center;
  margin-bottom: 134px;
  margin-left: 39px;
  margin-right: 39px;
  display: flex;
}

.disco-list-item {
  text-align: center;
  flex-direction: column;
  align-items: center;
  margin-bottom: 134px;
  margin-left: 39px;
  margin-right: 39px;
  display: flex;
}

.album-list-img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.album-list-item-link {
  width: 100%;
  align-items: center;
  display: flex;
}

.album-img-div {
  width: 100%;
  height: 100vh;
  flex: none;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.album-text-div {
  width: 100%;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.release-text-div {
  width: 100%;
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.album-button-link {
  color: #000;
  text-transform: uppercase;
  border: 1px solid #000;
  border-radius: 0;
  margin-top: 8px;
  margin-left: 3px;
  margin-right: 3px;
  padding: 6px 35px;
  font-family: Neuehaasdisplay, sans-serif;
  font-size: 14px;
  transition: border-color .2s, color .2s, background-color .4s cubic-bezier(.25, .46, .45, .94);
}

.album-button-link.disco {
  width: 100%;
}

.album-button-link:hover {
  color: #fff;
  background-color: #000;
}

.album-button-link.uitverkocht {
  color: #db3832;
  border-color: #db3832;
}

.album-button-link.uitverkocht:hover {
  color: #fff;
  background-color: #db3832;
}

.album-button-txt {
  margin-top: 2px;
}

.release-text-h1 {
  margin-bottom: 0px;
  font-size: 20px
}

.release-text-year {
  margin-bottom: 0px;
  opacity: 0.5;
}

.release-text-p {
  margin: 0px;
}

.loading-bar-page {
  z-index: 99;
  width: 0%;
  height: 5px;
  background-color: #0386cd;
  display: none;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
}

.utility-page-wrap {
  width: 100vw;
  height: 100vh;
  max-height: 100%;
  max-width: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
}

.utility-page-content {
  width: 260px;
  text-align: center;
  flex-direction: column;
  display: flex;
}

._404-main {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

._404-img {
  width: 200px;
}

._404-button-div {
  color: #000;
  border: 1px solid #000;
  border-radius: 0;
  margin-top: 14px;
  margin-left: 3px;
  margin-right: 3px;
  padding: 6px 24px;
  font-family: Abcdiatypemono;
  font-size: 16px;
  transition: border-color .2s, color .2s, background-color .4s cubic-bezier(.25, .46, .45, .94);
}

._404-button-div:hover {
  background-color: #3aa3dc;
}

._404-button-div.w--current {
  text-align: center;
  margin-left: 21px;
  margin-right: 21px;
}

._404-button-txt {
  text-align: center;
  text-transform: uppercase;
  font-family: Neuehaasdisplay, sans-serif;
}

.heading-2 {
  margin-left: 23px;
  margin-right: 23px;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.submit-button,
.text-field {
  border-radius: 100px;
}

.album-grid {
  width: 100%;
  grid-column-gap: 74px;
  grid-row-gap: 74px;
  margin-top: 40px;
  padding-left: 57px;
  padding-right: 57px;
}

.disco-grid {
  width: 100%;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  margin-top: 80px;
  padding-left: 57px;
  padding-right: 57px;
  grid-template-columns: 1fr 1fr 1fr;
}

.album-img-img {
  width: 100%;
  max-width: none;
  object-fit: cover;
}

.album-listitem-img {
  width: 100%;
  flex: none;
  justify-content: center;
  align-items: flex-start;
  padding-bottom: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.agenda-main-landingimg-div {
  width: 100%;
  height: 70vh;
  position: relative;
}

.agenda-main-landingimg-img {
  width: 100%;
  height: auto;
  /* height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0; */
}

.tickets-main-landingimg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.about-main-content-div-copy {
  width: 100%;
  height: 100vh;
  background-color: #fff;
}

.agenda-main-content-div {
  z-index: 30;
  width: 100%;
  min-height: 100vh;
  background-color: #000;
  justify-content: center;
  align-items: flex-start;
  padding-top: 53px;
  padding-bottom: 111px;
  display: flex;
  position: relative;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.contact-main {
  z-index: 20;
  width: 100vw;
  background-color: #000;
  justify-content: center;
  align-items: flex-start;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
  overflow: hidden;
}

.contact-main-back-div {
  z-index: 5;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.contact-main-content-div {
  z-index: 30;
  width: 50%;
  min-height: 100vh;
  color: #fff;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 111px 24px;
  display: flex;
  position: relative;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.contact-main-content-column {
  width: 50%;
  padding: 10px 10px 39px;
}

.contact-back-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-h2 {
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 41px;
  font-family: New Century Schoolbook, Georgia, sans-serif;
  font-size: 23px;
}

.contact-para {
  margin-top: 22px;
  font-style: normal;
}

.contact-info {
  width: 100%;
  text-transform: none;
  margin-bottom: 0;
  padding-top: 7px;
  font-family: Neuehaasdisplay, sans-serif;
  font-size: 17px;
}

.contact-info.mail {
  color: #fff;
  text-transform: uppercase;
  font-family: Neuehaasdisplay, sans-serif;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  transition: color .45s;
}

.contact-info.mail:hover {
  color: #db3832;
}

.contact-info.adres {
  font-family: Abcdiatypemono;
}

.contact-info.mngmtmail {
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 48px;
  font-family: New Century Schoolbook, Georgia, sans-serif;
  font-size: 13px;
  font-weight: 400;
  text-decoration: none;
  transition: color .45s;
}

.contact-info.mngmtmail:hover {
  color: #db3832;
}

.contact-info.managementmail {
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 42px;
  font-family: Neuehaasdisplay, sans-serif;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  transition: color .45s;
}

.contact-info.managementmail:hover {
  color: #db3832;
}

.contact-button-link {
  color: #fff;
  border: 1px solid #fff;
  border-radius: 100px;
  flex: 1;
  align-self: flex-start;
  margin: 10px 3px 13px -5px;
  padding: 6px 32px;
  font-family: Abcdiatypemono;
  font-size: 16px;
  transition: background-color .4s cubic-bezier(.25, .46, .45, .94);
}

.contact-button-link:hover {
  background-color: #3aa3dc;
}

.contactitem {
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  margin-bottom: 42px;
  display: flex;
}

.contactitem.rechts {
  text-align: right;
}

.italic-text {
  font-style: italic;
}

.bloemgif {
  height: 200px;
  margin-bottom: 32px;
}

.mobilemenu-imgwrapper {
  pointer-events: none;
}

.pagina-main {
  width: 100%;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.pagina-main-landingimg-div {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.pagina-main-arrow-div {
  justify-content: center;
  align-items: center;
  padding-top: 22px;
  padding-bottom: 22px;
  transition: opacity .4s;
  display: flex;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.pagina-main-arrow-div:hover {
  opacity: .4;
}

.pagina-arrowdown-img {
  width: 30px;
  opacity: 1;
  mix-blend-mode: exclusion;
}

.pagina-main-content-div {
  z-index: 30;
  width: 100%;
  min-height: 100vh;
  color: #fff;
  background-color: #000;
  justify-content: center;
  align-items: flex-start;
  padding-top: 78px;
  padding-bottom: 78px;
  display: flex;
  position: relative;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.pagina-column {
  width: 50%;
  align-self: flex-start;
}

.pagina-column.columnrechts {
  flex-flow: column;
  flex: 0 auto;
  justify-content: center;
  align-self: flex-start;
  align-items: flex-end;
  padding-top: 21px;
  display: flex;
}

.pagina-title-h1 {
  margin-top: 0;
  font-size: 40px;
}

.pagina-undertitle-txt {
  text-transform: uppercase;
  margin-top: 9px;
  margin-bottom: 29px;
  font-family: Neuehaasdisplay, sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 100;
}

.pagina-text-p {
  white-space: pre-wrap;
  margin-top: 32px;
}

.agenda-main-gradient {
  z-index: 10;
  height: 45vh;
  background-image: linear-gradient(to top, #000 7%, rgba(0, 0, 0, 0));
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.agendacolumn.agendacolumnleft {
  flex-flow: column;
  justify-content: flex-start;
  align-self: stretch;
  align-items: center;
  display: flex;
}

.agendacolumn.agendacolumnright {
  width: 100%;
}

.agendaitem {
  height: 60px;
  border-top: 1px solid rgba(255, 255, 255, .19);
  border-bottom: 1px solid rgba(255, 255, 255, .19);
  justify-content: space-between;
  align-items: center;
  padding-top: 43px;
  padding-bottom: 43px;
  display: flex;
}

.agendaitem-txt {
  align-items: center;
  padding-right: 0;
  font-size: 15px;
  font-style: normal;
  display: flex;
}

.agendaitem-txt.date {
  flex: 0 auto;
  justify-content: flex-end;
  padding-right: 17px;
}

.agendaitem-txt.city {
  width: 120px;
  text-align: right;
  text-transform: uppercase;
  justify-content: flex-end;
  padding-right: 23px;
  font-size: 13px;
}

.agendaitem-txt.venue {
  text-align: center;
  flex: 0 auto;
  justify-content: flex-end;
}

.agendaitem-section {
  flex: 1;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.agendaitem-section.right {
  justify-content: flex-end;
  align-items: center;
}

.agenda-button-link {
  width: 150px;
  color: #fff;
  text-transform: uppercase;
  border: 1px solid #fff;
  border-radius: 0;
  flex: none;
  justify-content: center;
  align-items: center;
  margin-left: 3px;
  margin-right: 3px;
  padding: 4px 17px;
  font-family: Neuehaasdisplay, sans-serif;
  font-size: 13px;
  font-style: normal;
  transition: background-color .4s cubic-bezier(.25, .46, .45, .94);
  display: flex;
}

.agenda-button-link:hover {
  color: #000;
  background-color: #fff;
}

.agenda-button-link.uitverkocht {
  color: #d93731;
  border-color: #d93731;
}

.agenda-button-link.uitverkocht:hover {
  color: #fff;
  background-color: #d93731;
}

.agenda-button-txt {
  text-align: center;
  white-space: nowrap;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-top: 2px;
}

.agenda-title-h1 {
  text-align: center;
  margin-top: 0;
  margin-bottom: 92px;
  font-size: 50px;
  line-height: 1em;
}

.agenda-legenda-txt {
  font-family: Abcdiatypemono;
  font-style: normal;
}

.agendalegenda {
  flex-direction: row;
  display: flex;
}

.legendaitem {
  justify-content: flex-start;
  align-items: center;
  margin-top: 3px;
  margin-bottom: 3px;
  margin-right: 42px;
  display: flex;
}

.legendacolor {
  width: 10px;
  height: 10px;
  background-color: #3fa3db;
  border-radius: 100px;
  flex: none;
  margin-left: 6px;
  margin-right: 6px;
}

.legendacolor.l2 {
  background-color: #db783f;
}

.legendacolor.lother {
  background-color: #000;
}

.legendatxt {
  margin-left: 5px;
  font-family: Abcdiatypemono;
  font-style: normal;
}

.agenda-item-venuediv {
  justify-content: center;
  align-items: center;
  display: flex;
}

.white-x {
  width: 17px;
  height: 17px;
  background-image: url('../images/Vector-2-Stroke.svg');
  background-position: 0 0;
  background-size: auto;
  margin-top: 8px;
  margin-right: 8px;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: auto;
  right: 0%;
}

.no-margin {
  margin-bottom: 0;
}

.no-margin.white-text {
  color: #fff;
}

.no-margin.white-text.max-700 {
  padding-right: 29px;
}

.popup-content {
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 44px;
  padding-right: 44px;
  display: flex;
  position: relative;
}

.cookie-button-bottom {
  color: #000;
  letter-spacing: 3px;
  text-transform: uppercase;
  background-color: #fff;
  border-radius: 5px;
  margin-right: 35px;
  padding-left: 40px;
  padding-right: 40px;
  font-weight: 500;
}

.cookie-button-bottom:hover {
  border-bottom-style: solid;
  border-bottom-color: #203492;
}

.cookie-span {
  color: #b5e3f4;
  border-bottom-style: none;
  font-weight: 600;
}

.popup-wrapper {
  height: 100%;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: rgba(0, 0, 0, .12);
  border: 1px solid #fff;
  border-radius: 13px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 16px;
  padding: 21px;
  display: flex;
  position: relative;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.popup-container {
  z-index: 80;
  width: 50%;
  justify-content: flex-end;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding: 10px;
  font-size: 12px;
  transition: all .7s;
  display: none;
  position: fixed;
  top: auto;
  bottom: 0%;
  left: auto;
  right: 0%;
  overflow: visible;
}

.popup-container.popuphidden {
  opacity: 0;
  pointer-events: none;
}

.popup-h2 {
  color: #fff;
  text-transform: none;
  margin-top: 0;
  margin-bottom: 6px;
  padding-left: 48px;
  padding-right: 48px;
  font-family: Abcdiatypemono;
  font-size: 17px;
}

.pop-up-text {
  width: 100%;
  color: #fff;
  text-align: center;
  margin-bottom: 2px;
  padding-top: 6px;
  font-size: 17px;
}

.pop-up-text.mail {
  color: #fff;
  font-family: Abcdiatypemono;
  text-decoration: underline;
  transition: color .45s;
}

.pop-up-text.mail:hover {
  color: #3aa3dc;
}

.pop-up-text.adres {
  font-family: Abcdiatypemono;
}

.pop-up-text.venue {
  padding-top: 31px;
  font-size: 30px;
}

.popup-button-link {
  width: 100%;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 100px;
  flex: 1;
  align-self: center;
  margin: 4px 3px 10px -5px;
  padding: 6px 32px;
  font-family: Abcdiatypemono;
  font-size: 16px;
  transition: background-color .4s cubic-bezier(.25, .46, .45, .94);
}

.popup-button-link:hover {
  background-color: #3aa3dc;
}

.popup-button-txt {
  text-align: center;
  white-space: nowrap;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.references-div {
  width: 100%;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  display: flex;
}

.reference-a {
  width: 90px;
  justify-content: center;
  align-items: center;
  margin-left: 23px;
  margin-right: 23px;
  transition: all .3s;
  display: flex;
}

.reference-a:hover {
  opacity: .5;
}

.reference-img {
  opacity: .42;
}

.projecttag {
  text-align: center;
  text-transform: uppercase;
  background-color: #d93731;
  align-items: center;
  margin-left: 10px;
  margin-right: 10px;
  padding: 1px 10px 0;
  font-size: 9px;
  font-style: normal;
  display: flex;
}

.projecttag.date {
  flex: 0 auto;
  justify-content: flex-end;
  padding-right: 17px;
  font-family: New Century Schoolbook, Georgia, sans-serif;
}

.projecttag.city {
  width: 120px;
  text-align: right;
  text-transform: uppercase;
  justify-content: flex-end;
  padding-right: 23px;
  font-size: 13px;
  font-weight: 300;
}

.projecttag.venue {
  text-align: center;
  letter-spacing: 0;
  flex: 0 auto;
  justify-content: flex-end;
  font-family: New Century Schoolbook, Georgia, sans-serif;
  font-weight: 400;
}

.project-main-gradient {
  z-index: 10;
  height: 30vh;
  background-image: linear-gradient(0deg, #000 7%, rgba(0, 0, 0, 0));
  display: none;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.pagina-textquotes-p {
  white-space: pre-wrap;
  margin-top: 30px;
  font-style: italic;
}

.over-button-txt {
  text-align: center;
  white-space: nowrap;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding-top: 3px;
  font-style: normal;
}

.pagina-button-link {
  color: #fff;
  text-transform: uppercase;
  border: 1px solid #fff;
  border-radius: 0;
  margin: 11px 21px 11px 0;
  padding: 6px 24px;
  font-family: Neuehaasdisplay, sans-serif;
  font-size: 14px;
  font-weight: 400;
  transition: background-color .4s cubic-bezier(.25, .46, .45, .94);
}

.pagina-button-link:hover {
  color: #000;
  background-color: #fff;
}

.pagina-references-div {
  width: 100%;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: row;
  flex: 0 auto;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-self: center;
  align-items: center;
  margin-top: 23px;
  margin-bottom: 0;
  display: flex;
}

.pagina-reference-a {
  width: 90px;
  flex: 0 auto;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  margin: 10px 36px 10px 0;
  display: flex;
  position: relative;
}

.pagina-reference-img {
  opacity: .42;
  flex: 0 auto;
}

.contact-title {
  width: 100%;
  text-transform: uppercase;
  margin-bottom: 0;
  padding-top: 6px;
  font-family: New Century Schoolbook, Georgia, sans-serif;
  font-size: 17px;
  font-weight: 300;
}

.contact-title.mail {
  color: #fff;
  text-transform: uppercase;
  font-family: New Century Schoolbook, Georgia, sans-serif;
  font-size: 14px;
  font-weight: 300;
  text-decoration: none;
  transition: color .45s;
}

.contact-title.mail:hover {
  color: #3aa3dc;
}

.contact-title.adres {
  font-family: Abcdiatypemono;
}

.pagina-main-button-div {
  width: 100%;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  margin-top: 18px;
  margin-bottom: 18px;
  display: flex;
}

.comingsoon-main {
  z-index: 99;
  background-color: #db3832;
  justify-content: center;
  align-items: center;
  transition: opacity 1.8s cubic-bezier(.25, .46, .222, .995);
  display: flex;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.comingsoon-txt {
  color: #fff;
  text-align: center;
  margin-top: 23px;
  font-family: New Century Schoolbook, Georgia, sans-serif;
}

.comingsoon-txt-a {
  color: #fff;
  text-decoration: underline;
}

.organisatie-title-h1 {
  text-align: center;
  margin-top: 0;
  margin-bottom: 42px;
  font-size: 50px;
  line-height: 1em;
}

.disco-title-h1 {
  text-align: center;
  margin-top: 0;
  margin-bottom: 42px;
  font-size: 50px;
  line-height: 1em;
}

.over-main-overtxt-txt {
  color: #2e2e37;
  text-align: center;
  white-space: pre-wrap;
  margin-bottom: 17px;
}

@media screen and (max-width: 991px) {
  .wrapper {
    padding-left: 26px;
    padding-right: 26px;
  }

  .album-list-item {
    margin-bottom: 100px;
    margin-left: 22px;
    margin-right: 22px;
  }

  .disco-list-item {
    margin-bottom: 100px;
    margin-left: 22px;
    margin-right: 22px;
  }

  .album-button-link {
    margin-left: 19px;
    margin-right: 19px;
    padding: 6px 23px;
  }

  .album-button-link.disco {
    margin-left: 0px;
    margin-right: 0px;
    padding: 6px 23px;
  }

  .album-grid {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
    align-content: space-between;
    align-items: stretch;
    padding-left: 0;
    padding-right: 0;
  }

  .disco-grid {
    grid-column-gap: 0px;
    grid-row-gap: 40px;
    align-content: space-between;
    align-items: stretch;
    padding-left: 0;
    padding-right: 0;
    grid-template-columns: 1fr 1fr;
  }

  .contact-main-content-div.rechts {
    padding-bottom: 36px;
  }

  .agendaitem-txt.venue {
    white-space: nowrap;
  }

  .agenda-title-h1 {
    font-size: 40px;
  }

  .agendalegenda {
    flex-direction: column;
  }

  .legendacolor.lother {
    background-color: #000;
  }

  .popup-wrapper {
    height: auto;
  }

  .projecttag.venue {
    white-space: nowrap;
  }

  .pagina-references-div {
    flex-flow: row;
    justify-content: flex-start;
    align-items: center;
  }

  .pagina-reference-a {
    margin: 22px 16px;
  }

  .pagina-main-button-div {
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
  }

  .organisatie-title-h1 {
    font-size: 40px;
  }

  .disco-title-h1 {
    font-size: 40px;
  }
}

@media screen and (max-width: 767px) {
  .footer {
    z-index: 80;
  }

  .main-img-div.mainimgleft {
    width: 100%;
    height: auto;
    flex: 0 auto;
    position: relative;
  }

  .main-img-div.mainimgright {
    flex: 0 auto;
  }

  .main-logo-div {
    justify-content: flex-start;
    align-items: center;
  }

  .main-logo-txt {
    padding-left: 25px;
    padding-right: 0;
    font-size: 25px;
  }

  .header-extramenu-div {
    display: none;
  }

  .header-extramenu-div.mobile {
    opacity: 1;
    padding-top: 62px;
    display: flex;
    transform: none;
  }

  .header-extramenu-div.mobile.right {
    align-items: flex-end;
    top: 0%;
    bottom: auto;
    left: auto;
    right: 0%;
  }

  .header-menu-txt {
    color: #fff;
    padding-right: 0;
    font-size: 16px;
    line-height: 20px;
  }

  .header-menu-txt.mobilemenuheader {
    color: #db3832;
    font-size: 17px;
    line-height: 25px;
  }

  .cursor {
    display: none;
  }

  .header-menu-div {
    z-index: 96;
  }

  .header-extramenu-txt.mobile {
    opacity: 1;
    color: #fff;
    margin-bottom: 21px;
    font-size: 17px;
    line-height: 25px;
  }

  .main-home-div {
    flex-direction: column;
    display: flex;
  }

  .loading-container {
    width: 30vw;
  }

  .header-piecidarker {
    pointer-events: none;
  }

  .footer-extramenu-div {
    position: relative;
  }

  .m-main-home-div {
    flex-direction: column;
    display: block;
  }

  .m-main-img-div {
    width: 100%;
    height: 50%;
    position: relative;
    top: auto;
    bottom: auto;
    overflow: hidden;
  }

  .m-main-img-div.mainimgleft {
    width: 100%;
    height: auto;
    flex: 0 auto;
    position: relative;
  }

  .m-main-img-div.mainimgright {
    flex: 0 auto;
  }

  .mobilemenu-wrapper {
    z-index: 93;
    display: block;
    position: fixed;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }

  .mobilemenu {
    z-index: 98;
    background-color: rgba(0, 0, 0, .9);
    position: fixed;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }

  .mobilemenu.left,
  .mobilemenu.right {
    display: none;
  }

  .mobilemenu-close-div {
    align-items: center;
    padding-bottom: 15px;
    display: flex;
    position: absolute;
    top: auto;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }

  .arrowdown-img {
    width: 30px;
  }

  .header-menu-txt-copy {
    padding-right: 0;
    font-size: 18px;
  }

  .header-menu-txt-copy.mobilemenuheader {
    color: #3fa3db;
  }

  .wrapper {
    padding-left: 24px;
    padding-right: 24px;
  }

  .wrapper.wrapperagenda,
  .wrapper.contactpagewrapper {
    flex-direction: column;
  }

  .wrapper.paginawrapper {
    flex-direction: column;
    padding-left: 43px;
    padding-right: 43px;
  }

  .wrapper.agendawrapper {
    width: 1%;
    flex-direction: column;
  }

  .over-main-content-div {
    justify-content: center;
    align-items: center;
    padding-top: 75px;
    padding-bottom: 75px;
  }

  .archief-main-content-div {
    justify-content: center;
    align-items: center;
    padding-top: 75px;
    padding-bottom: 75px;
  }

  .over-main-gradient {
    z-index: 6;
    width: 100%;
    height: 30vh;
    background-image: linear-gradient(360deg, #000 41%, rgba(0, 0, 0, 0));
    top: auto;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }

  .agenda-main-content-column {
    width: 100%;
  }

  .over-main-back-img-wrapper {
    width: 100%;
    height: 50vh;
  }

  .agenda-main-button-div {
    flex-flow: column;
    margin-top: 50px;
    margin-bottom: 50px;
  }

  .over-button-link {
    margin-bottom: 19px;
  }

  .album-list-item {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 53px;
  }

  .disco-list-item {
    flex-direction: column;
    align-items: center;
    /* margin-bottom: 53px; */
  }

  .album-text-div {
    width: 100%;
    margin-left: 0;
  }

  .release-text-div {
    width: 100%;
    margin-left: 0;
  }

  .album-grid {
    grid-template-columns: 1fr;
    padding-left: 33px;
    padding-right: 33px;
  }

  .disco-grid {
    grid-template-columns: 1fr;
    padding-left: 0px;
    padding-right: 0px;
  }

  .album-img-img {
    width: 200vw;
    max-width: none;
    flex: none;
  }

  .agenda-main-content-div {
    align-items: flex-start;
    padding-top: 24px;
  }

  .contact-main-content-div {
    width: 100%;
    min-height: auto;
    align-items: flex-start;
    padding: 127px 0 0;
  }

  .contact-main-content-div.rechts {
    margin-bottom: 120px;
    padding-top: 79px;
  }

  .contact-main-content-column {
    width: 100%;
  }

  .mobilemenu-imgwrapper {
    justify-content: center;
    align-items: center;
    display: flex;
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }

  .mobilemenu-img {
    width: 30vw;
    opacity: .2;
  }

  .pagina-main-content-div {
    align-items: flex-start;
    padding-top: 80px;
    padding-bottom: 125px;
  }

  .pagina-column {
    width: 100%;
  }

  .pagina-column.columnrechts {
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 0;
  }

  .pagina-title-h1 {
    margin-bottom: 0;
    font-size: 25px;
  }

  .pagina-undertitle-txt {
    margin-top: 0;
    margin-bottom: 74px;
    font-size: 11px;
  }

  .agendacolumn {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .agendacolumn.agendacolumnleft {
    margin-bottom: 69px;
  }

  .agendacolumn.agendacolumnright {
    width: 100%;
  }

  .agendaitem {
    padding-top: 67px;
    padding-bottom: 67px;
  }

  .agendaitem-txt.date {
    padding-right: 12px;
  }

  .agendaitem-txt.city {
    padding-right: 8px;
  }

  .agendaitem-txt.venue {
    white-space: normal;
    display: block;
  }

  .agendaitem-section {
    justify-content: space-between;
    align-items: center;
  }

  .agenda-button-link {
    width: 120px;
    padding: 5px 18px;
    font-size: 13px;
  }

  .agenda-item-venuediv {
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
  }

  .no-margin.white-text.max-700 {
    line-height: 25px;
  }

  .popup-content {
    margin-bottom: 20px;
    padding-left: 0;
    padding-right: 0;
  }

  .popup-content.bottom-banner-content {
    align-items: center;
  }

  .popup-wrapper {
    width: 100%;
    padding: 17px;
  }

  .popup-container {
    width: 100%;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }

  .projecttag {
    margin-top: 5px;
    margin-left: 0;
  }

  .projecttag.date {
    padding-right: 12px;
  }

  .projecttag.city {
    padding-right: 8px;
  }

  .projecttag.venue {
    white-space: normal;
    display: block;
  }

  .pagina-button-link {
    margin-left: 0;
  }

  .pagina-references-div {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    margin-top: 0;
  }

  .pagina-reference-a {
    align-self: center;
    margin: 11px 38px;
  }

  .pagina-reference-img {
    align-self: center;
  }

  .pagina-main-button-div {
    margin-top: 42px;
  }
}

@media screen and (max-width: 479px) {
  .main-img-div {
    width: 100%;
    position: relative;
  }

  .main-logo-div {
    pointer-events: none;
  }

  .header-extramenu-div {
    align-items: flex-start;
    padding-top: 42px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .header-extramenu-div.extramenuright {
    align-items: flex-end;
  }

  .header-extramenu-div.mobile {
    padding-left: 20px;
    padding-right: 20px;
  }

  .header-menu-div {
    padding: 20px 20px 0;
  }

  .main-home-div {
    flex-direction: column;
  }

  .loading-container {
    width: 70vw;
    max-width: 170px;
  }

  .footer-extramenu-div {
    padding: 15px;
  }

  .m-main-home-div {
    flex-direction: column;
  }

  .m-main-img-div {
    width: 100%;
    position: relative;
  }

  .mobilemenu-close-div {
    padding-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .arrowdown-div {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .arrowdown-img {
    width: 25px;
  }

  .over-main {
    position: absolute;
    top: 0%;
    bottom: auto;
    left: 0%;
    right: 0%;
  }

  .wrapper {
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding-left: 15px;
    padding-right: 15px;
  }

  .wrapper.paginawrapper,
  .wrapper.agendawrapper {
    padding-left: 15px;
    padding-right: 15px;
  }

  .over-main-content-div {
    padding-bottom: 68px;
  }

  .archief-main-content-div {
    padding-bottom: 68px;
  }

  .agenda-main-content-column {
    padding-bottom: 10px;
  }

  .album-list-item {
    margin-left: 10px;
    margin-right: 10px;
  }

  .disco-list-item {
    margin-left: 10px;
    margin-right: 10px;
  }

  .album-button-link {
    margin-bottom: 19px;
  }

  .album-button-link.disco {
    margin-bottom: 8px;
  }

  .album-text-h1 {
    margin-bottom: 2px;
  }

  .disco-text-h1 {
    margin-bottom: 2px;
  }

  ._404-button-div {
    margin-bottom: 19px;
  }

  .heading-2 {
    text-align: center;
  }

  .album-img-img {
    width: 300%;
  }

  .agenda-main-content-div {
    padding-bottom: 90px;
  }

  .contact-main {
    position: absolute;
    top: 0%;
    bottom: auto;
    left: 0%;
    right: 0%;
  }

  .contact-main-content-div {
    padding-bottom: 15px;
  }

  .contact-main-content-column {
    padding-bottom: 10px;
  }

  .contact-h2 {
    margin-bottom: 16px;
  }

  .contact-button-link {
    margin-bottom: 19px;
  }

  .mobilemenu-img {
    width: 45vw;
  }

  .pagina-main-arrow-div {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .pagina-arrowdown-img {
    width: 25px;
  }

  .pagina-main-content-div {
    padding-bottom: 68px;
  }

  .pagina-column.columnrechts {
    align-self: stretch;
  }

  .agendaitem {
    justify-content: space-between;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .agendaitem-txt {
    font-size: 13px;
  }

  .agendaitem-txt.city {
    justify-content: flex-start;
  }

  .agendaitem-section {
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .popup-content.bottom-banner-content {
    width: 100%;
    justify-content: space-between;
    align-items: center;
  }

  .cookie-button-bottom {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .popup-wrapper {
    pointer-events: auto;
    flex-direction: column-reverse;
    margin: 10px;
    padding: 17px 17px 0;
  }

  .popup-container {
    z-index: 80;
    pointer-events: none;
  }

  .popup-h2 {
    padding-left: 14px;
    padding-right: 14px;
  }

  .popup-button-link {
    margin-bottom: 19px;
  }

  .references-div {
    flex-flow: row;
    justify-content: center;
    align-items: center;
    margin-top: 42px;
  }

  .reference-a {
    margin-left: 20px;
    margin-right: 20px;
  }

  .reference-img {
    flex: 1;
  }

  .projecttag {
    margin-top: 6px;
    margin-bottom: 6px;
    margin-left: 0;
  }

  .projecttag.city {
    justify-content: flex-start;
  }

  .pagina-button-link {
    margin-bottom: 19px;
  }

  .pagina-references-div {
    margin-top: 42px;
  }

  .pagina-reference-a {
    margin-left: 20px;
    margin-right: 20px;
  }

  .pagina-reference-img {
    flex: 1;
  }

  .pagina-main-button-div {
    margin-top: 42px;
  }
}


/* ARCHIEF STYLES */
.archieflist {
  text-align: center;
}

.archiefitem-link {
  text-decoration: none;
  /* Remove underline from links */
  color: inherit;
  /* Inherit the text color from the parent */
  display: block;
  /* Make the entire block clickable */
}

.archiefitem-link:hover .archiefitem {
  background-color: #db3832;
  /* Example hover effect */
}

.archiefitem {
  height: 60px;
  border-top: 1px solid rgba(180, 180, 180, 1);
  border-bottom: 1px solid rgba(180, 180, 180, 1);
  justify-content: space-between;
  align-items: center;
  padding-top: 50px;
  padding-bottom: 44px;
  display: flex;
  margin-top: -1px;
  transition: background-color 0.3s ease;
  /* Add transition for background color */
}

.archiefitem-txt {
  align-items: center;
  padding-right: 0;
  font-size: 15px;
  font-style: normal;
  display: flex;
}

.archiefitem-txt.title {
  flex: 0 auto;
  justify-content: flex-end;
  padding-right: 17px;
  padding-bottom: 6px;
  font-size: 22px;
  text-transform: uppercase;
}

.archiefitem-txt.undertitle {
  text-align: center;
  flex: 0 auto;
  white-space: nowrap;
}

.archiefitem-txt.year {
  width: 120px;
  text-align: right;
  text-transform: uppercase;
  justify-content: flex-end;
  padding-right: 23px;
  font-size: 13px;
}

.archiefitem-section {
  flex: 1;
  justify-content: space-between;
  align-items: center;
  display: flex;

}

.archief-item-titlediv {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}

/* Screen size-specific styles */
@media screen and (max-width: 991px) {
  .archiefitem-txt.title {
    padding-right: 12px;
    font-size: 21px;
  }

  .archiefitem-txt.year {
    padding-right: 8px;
  }


  .archiefitem {
    padding-top: 45px;
    padding-bottom: 39px;
  }


}

@media screen and (max-width: 767px) {
  .archiefitem-txt.year {
    white-space: nowrap;
  }

  .archiefitem-txt.title {
    white-space: normal;
    display: block;
  }

  .archiefitem-link:hover .archiefitem {
    background-color: transparent;
  }
}

@media screen and (max-width: 479px) {}



/* FONTS */
@font-face {
  font-family: 'New Century Schoolbook';
  src: url('/assets/fonts/C059-BdIta.woff2') format('woff2');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'New Century Schoolbook';
  src: url('/assets/fonts/C059-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'New Century Schoolbook';
  src: url('/assets/fonts/C059-Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'New Century Schoolbook';
  src: url('/assets/fonts/C059-Roman.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Neuehaasdisplay';
  src: url('/assets/fonts/NeueHaasDisplay-Mediu.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Neuehaasdisplay';
  src: url('/assets/fonts/NeueHaasDisplay-BlackItalic.woff2') format('woff2');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Neuehaasdisplay';
  src: url('/assets/fonts/NeueHaasDisplay-BoldItalic.woff2') format('woff2');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Neuehaasdisplay';
  src: url('/assets/fonts/NeueHaasDisplay-LightItalic.woff2') format('woff2');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Neuehaasdisplay';
  src: url('/assets/fonts/NeueHaasDisplay-Roman.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Neuehaasdisplay';
  src: url('/assets/fonts/NeueHaasDisplay-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Neuehaasdisplay';
  src: url('/assets/fonts/NeueHaasDisplay-MediumItalic.woff2') format('woff2');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Neuehaasdisplay';
  src: url('/assets/fonts/NeueHaasDisplay-Black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Neuehaasdisplay';
  src: url('/assets/fonts/NeueHaasDisplay-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Neuehaasdisplay';
  src: url('/assets/fonts/NeueHaasDisplay-ThinItalic.woff2') format('woff2');
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Neuehaasdisplay';
  src: url('/assets/fonts/NeueHaasDisplay-Thin.woff2') format('woff2');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}