/* 
Theme Name: AAAB
Theme URI: 
Author: Studio RGB
Author URI: 
Description: Design by Milk & Cookies, Development by Studio RGB
Version: 1.0.0
Text Domain: aaab
*/

@font-face {
    font-family: 'Helvetica Neue';
    src: url('assets/fonts/HelveticaNeue.woff') format('woff'),
         url('assets/fonts/HelveticaNeue.ttc') format('ttc');
}
@font-face {
  font-family: 'Helvetica Neue';
  src: url('assets/fonts/HelveticaNeue-Bold-02.woff') format('woff');
  font-weight: bold
}
@font-face {
  font-family: 'Helvetica Neue';
  src: url('assets/fonts/HelveticaNeue-BoldItalic-04.woff') format('woff');
  font-weight: bold;
  font-style: italic;
}
@font-face {
  font-family: 'Helvetica Neue';
  src: url('assets/fonts/HelveticaNeue-Italic-03.woff') format('woff');
  font-style: italic;
}

@font-face {
  font-family: 'Inter';
  src: url('assets/fonts/Inter-Regular.woff') format('woff'),
       url('assets/fonts/Inter-Regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  src: url('assets/fonts/Inter-Bold.woff') format('woff'),
       url('assets/fonts/Inter-Bold.woff2') format('woff2');
  font-weight: bold;
}
@font-face {
  font-family: 'Inter';
  src: url('assets/fonts/Inter-Thin.woff') format('woff'),
       url('assets/fonts/Inter-Thin.woff2') format('woff2');
  font-weight: 200;
}
@font-face {
    font-family: 'ARTBRUSSELS';
    src: url('assets/fonts/ArtBrussels35-Regular.woff') format('woff'),
         url('assets/fonts/ArtBrussels35-Regular.woff2') format('woff2');
}
:root {
  --vertical-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 3 14'%3E%3Crect x='0' y='0' width='3' height='11'/%3E%3C/svg%3E");
  --vertical-position: left top;
  --vertical-size: 3px 14px;
  --vertical-repeat: repeat-y;

  --horizontal-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 3'%3E%3Crect x='0' y='0' width='11' height='3'/%3E%3C/svg%3E");
  --horizontal-position: left bottom;
  --horizontal-size: 14px 3px;
  --horizontal-repeat: repeat-x;
  
  --vh: 1vh;
  --bgcolor: white;
  --txtcolor: black;
}
body[data-theme="dark"] {
  --bgcolor: black;
  --txtcolor: white;
  --vertical-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 3 14'%3E%3Crect x='0' y='0' fill='white' width='3' height='11'/%3E%3C/svg%3E");
  --horizontal-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 3'%3E%3Crect x='0' fill='white' y='0' width='11' height='3'/%3E%3C/svg%3E");
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
html.ovr {
  scroll-padding-top: 130px;
}
*::-webkit-scrollbar {
  display: none;
}
* {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}
* {
  margin: 0;
  padding: 0;
}
* {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
*:before,
*:after {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
*:focus-visible {
  outline: none;
}
img {
  width: 100%;
  height: auto;
  display: block;
}

body {
  overscroll-behavior: none;
  font-family: 'Helvetica Neue', sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  word-wrap: break-word;
  background-color: var(--bgcolor);
  color: var(--txtcolor);
}   
main {
  padding: 10px;
  padding-right: calc(25% + 10px);
  min-height: calc(100*var(--vh) - 62px);
}
.home main, .full-width main, .error404 main {
  padding-right: 10px;
}
aside {
  z-index: 1002;
  background-color: var(--bgcolor);
  height: calc(100*var(--vh));
  right: 10px;
  position: fixed;
  top: 0px;
  width: calc(25% - 10px);
  padding: 10px;
  padding-top: 0;
  padding-right: 0;
  margin-top: 10px;
  padding-left: 0;
  overflow-y: auto;
  overflow-x: visible;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 3'%3E%3Crect x='0' y='0' width='11' fill='black' height='3'/%3E%3C/svg%3E");
  background-position: left top;
  background-size: 14px 3px;
  background-repeat: repeat-x;
  padding-bottom: calc(20px + 4vw);
}
.show-menu aside {
  z-index: 998;
}
body[data-theme="dark"] aside {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 3'%3E%3Crect x='0' y='0' width='11' fill='white' height='3'/%3E%3C/svg%3E");
}
header {
  position: fixed;
  background-color: var(--bgcolor);
  width: 75%;
  padding: 10px;
  padding-bottom: 0;
  z-index: 1000;
}
.home header, .full-width header, .error404 header {
  width: 100%;
}
header p {
  font-size: 16px;
  line-height: 16px;
  font-weight: bold;
}
header>div {
  display: flex;
  flex-wrap: wrap;
}
header h1, header h2, .menu-toggle {
  font-size: 44px;
  line-height: 34px;
  font-weight: normal;
  padding-right: 26px;
  padding-bottom: 20px;
}
header div.title {
  padding-top: 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 3'%3E%3Crect x='0' y='0' width='11' height='3'/%3E%3C/svg%3E");
  background-position: left bottom;
  background-size: 14px 3px;
  background-repeat: repeat-x;
}
body[data-theme="dark"] header div.title {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 3'%3E%3Crect x='0' y='0' width='11' fill='white' height='3'/%3E%3C/svg%3E");
}
header div.title h2 {
  width: calc(100% - 445px);
  overflow: auto;
  overflow-y: hidden;
  white-space: nowrap;
  padding-right: 0;
  height: 54px;
}
.menu-toggle {
  padding-right: 16px;
  color: transparent;
  -webkit-text-stroke: 0.5px var(--txtcolor);
  cursor: pointer;
}
body:not(.show-menu) .menu-toggle span:last-child {
  display: none;
}
body.show-menu .menu-toggle span:first-child {
  display: none;
}
h3.meta {
  font-size: 12px;
  line-height: 12px;
  font-weight: normal;
  background-color: var(--bgcolor);
  display: inline-block;
  margin-bottom: 10px;
}
.related.text h2 {
  font-size: 34px;
  line-height: 30px;
}
.related.image {
  position: relative;
}
.related.image>h3 {
  position: absolute;
  background-color: var(--bgcolor);
  z-index: 100;
  padding: 3px;
}
.related.gallery h2 {
  color: var(--bgcolor);
  -webkit-text-stroke: 0.5px var(--txtcolor);
}
.related.text {
  padding-top: 20px;
  padding-bottom: 23px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 3'%3E%3Crect x='0' y='0' width='11' height='3'/%3E%3C/svg%3E");
  background-position: left bottom;
  background-size: 14px 3px;
  background-repeat: repeat-x;
}
body[data-theme="dark"] .related.text {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 3'%3E%3Crect x='0' y='0' width='11' fill='white' height='3'/%3E%3C/svg%3E");
}
.related .preview-off-programme {
  position: fixed;
  background-color: var(--color2);
  width: 600px;
  transform: translateX(calc(-100% - 10px));
  padding: 10px;
}
.related .video-container {
  position: fixed;
  width: 600px;
  transform: translateX(calc(-100% - 10px));
}
.video-link {
  background-color: var(--color4);
  color: transparent;
  -webkit-text-stroke: 0.5px var(--txtcolor);
  font-weight: bold;
  text-transform: uppercase;
  font-size: 44px;
  line-height: 34px;
  text-align: center;
  padding: 30px;
  width: 100%;
  display: block;
}
.related .video-container {
  padding-bottom: 335px;
}
.related.image {
  position: relative;
}
.related.image:before {
  background-color: transparent;
  content: '';
  position: absolute;
  width: 10px;
  height: 100%;
  left: -10px;
}
.related .preview-off-programme img {
  display: none;
}
aside .preview-off-programme-content {
  display: flex;
  flex-direction: row;
}
aside .preview-off-programme-content>div:first-child {
  width: 33%;
}
aside .preview-off-programme-content>div:nth-child(2) {
  width: 66%;
  padding-left: 10px;
}
aside div.txt, aside .preview-off-programme h2 {
  padding-top: 0 !important;
}
aside .preview-off-programme, aside .video-container {
  display: none;
  pointer-events: none;
}
@media(min-width: 768px) {
  aside .related.hover .preview-off-programme, aside .related.hover .video-container {
    display: block;
    pointer-events: auto;
    z-index: 1000;
  }
}
main {
  padding-top: 100px;
}
h2.st {
  font-size: 11px;
  font-weight: 700;
  line-height: 14px;
  display: inline-block;
  background-color: var(--txtcolor);
  color: var(--bgcolor);
  padding: 0 3px 2px;
  margin-bottom: 20px;
}
section.title h2, section.section-preview h2, .child-page a {
  color: transparent;
  -webkit-text-stroke: 0.5px var(--txtcolor);
}
section.gallery-links {
  padding: 20px 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 3'%3E%3Crect x='0' y='0' width='11' height='3'/%3E%3C/svg%3E");
  background-position: left bottom;
  background-size: 14px 3px;
  background-repeat: repeat-x;
}
body[data-theme="dark"] section.gallery-links {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 3'%3E%3Crect x='0' y='0' width='11' fill='white' height='3'/%3E%3C/svg%3E");
}
.page section.gallery-links {
  background-image: none;
  padding-bottom: 0;
}
section.under-construction {
  min-height: calc(100*var(--vh) - 110px);
  display: flex;
  background: linear-gradient(180deg, var(--color1) 0%, var(--color2) 100%);
  align-items: center;
  justify-content: center;
  margin-bottom: -62px;
}
section.under-construction h2 {
  text-transform: uppercase;
  font-size: 44px;
  line-height: 46px;
  width: 100%;
  text-align: center;
}
.full-width section.under-construction h2, .error404 section.under-construction h2 {
  font-size: 70px;
  line-height: 70px;
}
section.gallery-links a:hover {
  color: var(--color3);
}
section.gallery-links p {
  font-size: 34px;
  line-height: 44px;
}
section.gallery-links p+p {
  padding-top: 22px;
}

section.foldouttxt {
  position: relative;
  padding: 0;
}
section.foldouttxt h2 {
  cursor: pointer;
}
section.tickets, section.title, section.foldouttxt, section.title-text, section.section-preview, section.image-text,section.text-50, section.text-small, section.text-big, section.image-text-small, section.password:after, .cta:after, .related:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 3'%3E%3Crect x='0' y='0' width='11' height='3'/%3E%3C/svg%3E");
  background-position: left bottom;
  background-size: 14px 3px;
  background-repeat: repeat-x;
}
body[data-theme="dark"] section.tickets, body[data-theme="dark"] section.title, body[data-theme="dark"] section.foldouttxt, body[data-theme="dark"] section.title-text, body[data-theme="dark"] section.section-preview, body[data-theme="dark"] section.image-text,body[data-theme="dark"] section.text-50, body[data-theme="dark"] section.text-small, body[data-theme="dark"] section.text-big, body[data-theme="dark"] section.image-text-small, body[data-theme="dark"] section.password:after, body[data-theme="dark"] .related:after, body[data-theme="dark"] .cta:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 3'%3E%3Crect x='0' y='0' width='11' fill='white' height='3'/%3E%3C/svg%3E");
}
/*section.title, section.foldouttxt, section.title-text, section.image-text, section.text-small, section.text-big, section.image-text-small {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 3'%3E%3Crect x='0' y='0' width='11' height='3'/%3E%3C/svg%3E");
  background-position: left bottom;
  background-size: 14px 3px;
  background-repeat: repeat-x;
}*/
@media(min-width: 768px) {
  section.section-preview:last-child {
    margin-bottom: -60px;
    background-image: none;
  }
  section.foldouttxt:hover {
    background-repeat: repeat;
  }
  section.foldouttxt:hover h2 {
    color: var(--bgcolor);
  }
}
section.foldouttxt.open, section.title.hl:hover {
  background-repeat: repeat;
}
section.section-preview .section-preview-content {
  display: none;
  max-width: 870px;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s;
}
.section-preview-content p {
  font-size: 16px;
  line-height: 20px;
  text-align: center;
}
.section-preview-content p+p {
  padding-top: 10px;
}
p.credits, figcaption {
  font-size: 10px;
  line-height: 12px;
  text-align: right;
  padding-top: 5px;
}
.tib p.credits, figcaption {
  text-align: left;
}
i.fb {
  width: 7px;
  height: 11px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7' height='13' viewBox='0 0 7 13' fill='none'%3E%3Cpath d='M6.21404 7.45965L6.56491 5.28999H4.40351V3.87972C4.40351 3.28645 4.70526 2.70675 5.67018 2.70675H6.66667V0.859153C6.08636 0.769092 5.49998 0.72037 4.91228 0.713379C3.13333 0.713379 1.97193 1.75413 1.97193 3.63563V5.28999H0V7.45965H1.97193V12.7075H4.40351V7.45965H6.21404Z' fill='black'/%3E%3C/svg%3E");
  display: inline-block;
}
body[data-theme="dark"] i.fb {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7' height='13' viewBox='0 0 7 13' fill='none'%3E%3Cpath d='M6.21404 7.45965L6.56491 5.28999H4.40351V3.87972C4.40351 3.28645 4.70526 2.70675 5.67018 2.70675H6.66667V0.859153C6.08636 0.769092 5.49998 0.72037 4.91228 0.713379C3.13333 0.713379 1.97193 1.75413 1.97193 3.63563V5.28999H0V7.45965H1.97193V12.7075H4.40351V7.45965H6.21404Z' fill='white'/%3E%3C/svg%3E");
}
i.insta {
  width: 11px;
  height: 11px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: inline-block;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M8 0C5.829 0 5.556.01 4.703.048 3.85.088 3.269.222 2.76.42a3.917 3.917 0 0 0-1.417.923A3.927 3.927 0 0 0 .42 2.76C.222 3.268.087 3.85.048 4.7.01 5.555 0 5.827 0 8.001c0 2.172.01 2.444.048 3.297.04.852.174 1.433.372 1.942.205.526.478.972.923 1.417.444.445.89.719 1.416.923.51.198 1.09.333 1.942.372C5.555 15.99 5.827 16 8 16s2.444-.01 3.298-.048c.851-.04 1.434-.174 1.943-.372a3.916 3.916 0 0 0 1.416-.923c.445-.445.718-.891.923-1.417.197-.509.332-1.09.372-1.942C15.99 10.445 16 10.173 16 8s-.01-2.445-.048-3.299c-.04-.851-.175-1.433-.372-1.941a3.926 3.926 0 0 0-.923-1.417A3.911 3.911 0 0 0 13.24.42c-.51-.198-1.092-.333-1.943-.372C10.443.01 10.172 0 7.998 0h.003zm-.717 1.442h.718c2.136 0 2.389.007 3.232.046.78.035 1.204.166 1.486.275.373.145.64.319.92.599.28.28.453.546.598.92.11.281.24.705.275 1.485.039.843.047 1.096.047 3.231s-.008 2.389-.047 3.232c-.035.78-.166 1.203-.275 1.485a2.47 2.47 0 0 1-.599.919c-.28.28-.546.453-.92.598-.28.11-.704.24-1.485.276-.843.038-1.096.047-3.232.047s-2.39-.009-3.233-.047c-.78-.036-1.203-.166-1.485-.276a2.478 2.478 0 0 1-.92-.598 2.48 2.48 0 0 1-.6-.92c-.109-.281-.24-.705-.275-1.485-.038-.843-.046-1.096-.046-3.233 0-2.136.008-2.388.046-3.231.036-.78.166-1.204.276-1.486.145-.373.319-.64.599-.92.28-.28.546-.453.92-.598.282-.11.705-.24 1.485-.276.738-.034 1.024-.044 2.515-.045v.002zm4.988 1.328a.96.96 0 1 0 0 1.92.96.96 0 0 0 0-1.92zm-4.27 1.122a4.109 4.109 0 1 0 0 8.217 4.109 4.109 0 0 0 0-8.217zm0 1.441a2.667 2.667 0 1 1 0 5.334 2.667 2.667 0 0 1 0-5.334z' fill='black'/%3E%3C/svg%3E");
}
body[data-theme="dark"] i.insta {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M8 0C5.829 0 5.556.01 4.703.048 3.85.088 3.269.222 2.76.42a3.917 3.917 0 0 0-1.417.923A3.927 3.927 0 0 0 .42 2.76C.222 3.268.087 3.85.048 4.7.01 5.555 0 5.827 0 8.001c0 2.172.01 2.444.048 3.297.04.852.174 1.433.372 1.942.205.526.478.972.923 1.417.444.445.89.719 1.416.923.51.198 1.09.333 1.942.372C5.555 15.99 5.827 16 8 16s2.444-.01 3.298-.048c.851-.04 1.434-.174 1.943-.372a3.916 3.916 0 0 0 1.416-.923c.445-.445.718-.891.923-1.417.197-.509.332-1.09.372-1.942C15.99 10.445 16 10.173 16 8s-.01-2.445-.048-3.299c-.04-.851-.175-1.433-.372-1.941a3.926 3.926 0 0 0-.923-1.417A3.911 3.911 0 0 0 13.24.42c-.51-.198-1.092-.333-1.943-.372C10.443.01 10.172 0 7.998 0h.003zm-.717 1.442h.718c2.136 0 2.389.007 3.232.046.78.035 1.204.166 1.486.275.373.145.64.319.92.599.28.28.453.546.598.92.11.281.24.705.275 1.485.039.843.047 1.096.047 3.231s-.008 2.389-.047 3.232c-.035.78-.166 1.203-.275 1.485a2.47 2.47 0 0 1-.599.919c-.28.28-.546.453-.92.598-.28.11-.704.24-1.485.276-.843.038-1.096.047-3.232.047s-2.39-.009-3.233-.047c-.78-.036-1.203-.166-1.485-.276a2.478 2.478 0 0 1-.92-.598 2.48 2.48 0 0 1-.6-.92c-.109-.281-.24-.705-.275-1.485-.038-.843-.046-1.096-.046-3.233 0-2.136.008-2.388.046-3.231.036-.78.166-1.204.276-1.486.145-.373.319-.64.599-.92.28-.28.546-.453.92-.598.282-.11.705-.24 1.485-.276.738-.034 1.024-.044 2.515-.045v.002zm4.988 1.328a.96.96 0 1 0 0 1.92.96.96 0 0 0 0-1.92zm-4.27 1.122a4.109 4.109 0 1 0 0 8.217 4.109 4.109 0 0 0 0-8.217zm0 1.441a2.667 2.667 0 1 1 0 5.334 2.667 2.667 0 0 1 0-5.334z' fill='white'/%3E%3C/svg%3E");
}
i.youtube {
  width: 15px;
  height: 11px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: inline-block;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='11' viewBox='0 0 16 11' fill='none'%3E%3Cpath d='M15.5764 1.71753C15.4 1.04252 14.8782 0.51001 14.2143 0.327507C13.0138 1.07413e-07 8.19723 0 8.19723 0C8.19723 0 3.3831 1.07413e-07 2.18018 0.327507C1.51869 0.50751 0.996858 1.04002 0.818012 1.71753C0.49707 2.94256 0.49707 5.50011 0.49707 5.50011C0.49707 5.50011 0.49707 8.05766 0.818012 9.28269C0.994408 9.9577 1.51624 10.4902 2.18018 10.6727C3.3831 11.0002 8.19723 11.0002 8.19723 11.0002C8.19723 11.0002 13.0138 11.0002 14.2143 10.6727C14.8758 10.4927 15.3976 9.9602 15.5764 9.28269C15.8974 8.05766 15.8974 5.50011 15.8974 5.50011C15.8974 5.50011 15.8974 2.94256 15.5764 1.71753Z' fill='black'/%3E%3Cpath d='M6.65866 7.85766L10.6594 5.50011L6.65866 3.14256V7.85766Z' fill='white'/%3E%3C/svg%3E");
}
body[data-theme="dark"] i.youtube {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='11' viewBox='0 0 16 11' fill='none'%3E%3Cpath d='M15.5764 1.71753C15.4 1.04252 14.8782 0.51001 14.2143 0.327507C13.0138 1.07413e-07 8.19723 0 8.19723 0C8.19723 0 3.3831 1.07413e-07 2.18018 0.327507C1.51869 0.50751 0.996858 1.04002 0.818012 1.71753C0.49707 2.94256 0.49707 5.50011 0.49707 5.50011C0.49707 5.50011 0.49707 8.05766 0.818012 9.28269C0.994408 9.9577 1.51624 10.4902 2.18018 10.6727C3.3831 11.0002 8.19723 11.0002 8.19723 11.0002C8.19723 11.0002 13.0138 11.0002 14.2143 10.6727C14.8758 10.4927 15.3976 9.9602 15.5764 9.28269C15.8974 8.05766 15.8974 5.50011 15.8974 5.50011C15.8974 5.50011 15.8974 2.94256 15.5764 1.71753Z' fill='white'/%3E%3Cpath d='M6.65866 7.85766L10.6594 5.50011L6.65866 3.14256V7.85766Z' fill='black'/%3E%3C/svg%3E");
}
i.linkedin {
  width: 11px;
  height: 11px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: inline-block;
  background-image: url("data:image/svg+xml,%3Csvg fill='%23000000' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 310 310'%3E%3Cpath d='M72.16 99.73H9.927c-2.762 0-5 2.239-5 5v199.928c0 2.762 2.238 5 5 5H72.16c2.762 0 5-2.238 5-5V104.73c0-2.761-2.238-5-5-5zM41.066.341C18.422.341 0 18.743 0 41.362 0 63.991 18.422 82.4 41.066 82.4c22.626 0 41.033-18.41 41.033-41.038C82.1 18.743 63.692.341 41.066.341zM230.454 94.761c-24.995 0-43.472 10.745-54.679 22.954V104.73c0-2.761-2.238-5-5-5h-59.599c-2.762 0-5 2.239-5 5v199.928c0 2.762 2.238 5 5 5h62.097c2.762 0 5-2.238 5-5v-98.918c0-33.333 9.054-46.319 32.29-46.319 25.306 0 27.317 20.818 27.317 48.034v97.204c0 2.762 2.238 5 5 5H305c2.762 0 5-2.238 5-5V194.995c0-49.565-9.451-100.234-79.546-100.234z'/%3E%3C/svg%3E");
}
body[data-theme="dark"] i.linkedin {
  background-image: url("data:image/svg+xml,%3Csvg fill='%23ffffff' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 310 310'%3E%3Cpath d='M72.16 99.73H9.927c-2.762 0-5 2.239-5 5v199.928c0 2.762 2.238 5 5 5H72.16c2.762 0 5-2.238 5-5V104.73c0-2.761-2.238-5-5-5zM41.066.341C18.422.341 0 18.743 0 41.362 0 63.991 18.422 82.4 41.066 82.4c22.626 0 41.033-18.41 41.033-41.038C82.1 18.743 63.692.341 41.066.341zM230.454 94.761c-24.995 0-43.472 10.745-54.679 22.954V104.73c0-2.761-2.238-5-5-5h-59.599c-2.762 0-5 2.239-5 5v199.928c0 2.762 2.238 5 5 5h62.097c2.762 0 5-2.238 5-5v-98.918c0-33.333 9.054-46.319 32.29-46.319 25.306 0 27.317 20.818 27.317 48.034v97.204c0 2.762 2.238 5 5 5H305c2.762 0 5-2.238 5-5V194.995c0-49.565-9.451-100.234-79.546-100.234z'/%3E%3C/svg%3E");
}
.g-l {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.g-l figcaption {
  position: absolute; 
  bottom: -13px;
  width: 100%;
}
p.social {
  padding-left: 15px;
  margin-top: -2px;
}
p.social a {
  display: inline-block;
  padding-right: 3px;
}
@media(min-width: 768px) {
  section.section-preview:hover .section-preview-content {
    display: block;
    opacity: 1;
  }
  section.section-preview:hover h2 {
    display: none;
  }
  section.child-pages {
    margin-bottom: -49px;
  }
}
section.section-preview a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(20*var(--vh) - 25px);
}
section.foldouttxt h2, section.title h2, section.section-preview h2,  .child-page a {
  text-align: center;
  padding: 40px 0;
  text-transform: uppercase;
  font-weight: normal;
  font-size: 44px;
  line-height: 50px;
  
}
section.foldouttxt.open h2, section.title.hl:hover h2 {
  color: var(--bgcolor);
}
section.title-text {
  padding-bottom: 20px;
}
.foldouttxt-content {
  padding: 20px 0px;
  display: none;
  background-color: var(--bgcolor);
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 3'%3E%3Crect x='0' y='0' width='11' height='3'/%3E%3C/svg%3E");
  background-position: left bottom;
  background-size: 14px 3px;
  background-repeat: repeat-x;
}
body[data-theme="dark"] .foldouttxt-content {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 3'%3E%3Crect x='0' y='0' fill='white' width='11' height='3'/%3E%3C/svg%3E");
}
.foldouttxt-content p+p {
  padding-top: 20px;
}

div.title-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  background-color: var(--txtcolor);
  color: var(--bgcolor);
  margin-bottom: 10px;
  margin-top: 10px;
  padding: 10px;
  padding-top: 13px;
  padding-bottom: 15px;
}
section:first-child div.title-row {
  margin-top: 0;
}
.block-links div.title-row {
  margin-top: 0;
}
section.title2 + section.text-img-blocks-2, section.title2 + section.text-img-blocks-3, section.title2 + section.text-img-blocks-infinite, section.title2 + section.image-text-small {
  margin-top: -10px;
}
.title-row h2, .home-menu a {
  font-family: 'ARTBRUSSELS';
  font-size: 100px;
  line-height: 80px;
  font-weight: normal;
  text-transform: uppercase;
  margin-top: -15px;
}
.title-row h2 i {
  font-style: normal;
  font-feature-settings: "salt" 1;
}
.title-row img {
  max-width: 100px;
  max-height: 73px;
  width: auto;
  height: auto;
}
.txt p, .txt h5, .txt h6, .txt h4, .txt h3, .txt h2, .txt h1 {
  font-size: 16px;
  line-height: 20px;
}
.txt-big p {
  font-size: 34px;
  line-height: 40px;
}
.txt p+p, .txt p+h5, .txt p+h6, .txt p+h4, .txt p+h3, .txt p+h2, .txt p+h1, .txt h5+p, .txt h6+p, .txt h4+p, .txt h3+p, .txt h2+p, .txt h1+p {
  padding-top: 10px;
}
.txt-big p+p {
  padding-top: 20px;
}
img {
  transition: opacity 0.3s;
  opacity: 1;
}
.image-text h2 {
  font-size: 70px;
  line-height: 70px;
  font-weight: bold;
  padding-bottom: 20px;
  padding-top: 10px;
}
.image-text {
  padding-bottom: 20px;
}
section.text-small, section.text-big, section.text-50, section.tickets {
  padding: 20px 0;
}
section.text-50 .txt {
  width: 50%;
}
section.image-text-small {
  display: flex;
  flex-wrap: wrap;
  padding: 20px 0;
}
section.image-text-small figure {
  width: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 3 14'%3E%3Crect x='0' y='0' width='3' height='11'/%3E%3C/svg%3E");
  background-position: right top;
  background-size: 3px 14px;
  background-repeat: repeat-y;
  padding-right: 3px;
  min-height: 25vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
body[data-theme="dark"] section.image-text-small figure {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 3 14'%3E%3Crect x='0' y='0' fill='white' width='3' height='11'/%3E%3C/svg%3E");
}
section.image-text-small>div {
  width: 50%;
  padding-left: 10px;
}
footer {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 3'%3E%3Crect x='0' y='0' width='11' height='3'/%3E%3C/svg%3E");
  background-position: left bottom;
  background-size: 14px 3px;
  background-repeat: repeat-x;
  padding: 16px 0 16px;
  margin-left: 10px;
  margin-bottom: 10px;
  width: calc(75% - 20px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: sticky;
}
body[data-theme="dark"] footer {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 3'%3E%3Crect x='0' y='0' width='11' fill='white' height='3'/%3E%3C/svg%3E");
}
.home footer, .full-width footer, .error404 footer {
  width: calc(100% - 20px);
}
footer p {
  font-size: 12px;
  line-height: 20px;
}
footer a {
  font-size: 12px;
  line-height: 20px;
  color: var(--txtcolor);
}
i.inter, .pagination i {
  font-family: 'Inter', sans-serif;
  font-style: normal;
}
.page-template-home .menu-toggle i.inter {
  display: none;
}
.page-template-home header .title h2 {
  display: none;
}
section.text-blocks-3, section.text-blocks-2, section.text-img-blocks-3,section.text-img-blocks-infinite, section.text-img-blocks-2, section.archive-off-programme {
  display: flex;
  flex-wrap: wrap;
  background-color: var(--bgcolor);
}
.title+section.text-blocks-3, .title+section.text-img-blocks-3, .title+section.text-img-blocks-infinite, .title+section.text-blocks-2, .title+section.text-img-blocks-2 {
  margin-top: -3px;
}
section.text-blocks-3>div, section.text-img-blocks-3>div, section.text-img-blocks-infinite>div {
  width: calc(33.3333% - 2px);
}
section.text-blocks-2>div, section.text-img-blocks-2>div, .grid-2>div {
  width: calc(50% - 1.5px);
}
section.text-blocks-3>div:nth-child(2), section.text-img-blocks-3>div:nth-child(2), section.text-blocks-3>div:nth-child(1), section.text-img-blocks-3>div:nth-child(1), section.text-img-blocks-infinite>div:nth-child(3n+2), section.text-img-blocks-infinite>div:nth-child(3n+1) {
  padding-right: 3px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 3 14'%3E%3Crect x='0' y='0' width='3' height='11'/%3E%3C/svg%3E");
  background-position: right top;
  background-size: 3px 14px;
  background-repeat: repeat-y;
  width: calc(33.3333% + 1px);
}
body[data-theme="dark"] section.text-blocks-3>div:nth-child(2), body[data-theme="dark"] section.text-img-blocks-3>div:nth-child(2), body[data-theme="dark"] section.text-blocks-3>div:nth-child(1), body[data-theme="dark"] section.text-img-blocks-3>div:nth-child(1), body[data-theme="dark"]section.text-img-blocks-infinite>div:nth-child(3n+2), body[data-theme="dark"]section.text-img-blocks-infinite>div:nth-child(3n+1) {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 3 14'%3E%3Crect x='0' fill='white' y='0' width='3' height='11'/%3E%3C/svg%3E");
}
.g3, .g4 {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
.g3:before, .g3:after, .g4:before, .g4:after, .g4-1:before {
  content: '';
  width: 3px;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 3 14'%3E%3Crect x='0' y='0' width='3' height='11'/%3E%3C/svg%3E");
  position: absolute;
  background-repeat: repeat-y;
  background-position: right top;
  top: 0;
  left: calc(33.3333% - 1.5px);
}
body[data-theme="dark"] .g3:before, body[data-theme="dark"] .g3:after, body[data-theme="dark"] .g4:before, body[data-theme="dark"] .g4:after, body[data-theme="dark"] .g4-1:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 3 14'%3E%3Crect x='0' y='0' fill='white' width='3' height='11'/%3E%3C/svg%3E");
}
.g4-1 {
  display: contents;
  flex-wrap: wrap;
}
.g4-1:before {
  left: calc(50% - 1.5px);
}
.g4:before {
  left: calc(25% - 1.5px);
}
.g4:after {
  left: calc(75% - 1.5px);
}
.g3>div {
  width: 33.3333%;
  padding-bottom: 20px;
}
.g4-1>div {
  width: 25%;
}
.g3:after {
  left: calc(66.6666% - 1.5px);
}
.g3>div:nth-child(3n+2) .txt, .g3>div:nth-child(3n+2) h2, .g3>div:nth-child(3n+2) h3, .g3>div:nth-child(3n+3) .txt, .g3>div:nth-child(3n+3) h2, .g3>div:nth-child(3n+3) h3  {
  padding-left: 10px;
}
.g3 .txt, .g3 h2, .g3 h3 {
  padding-right: 10px;
}
section.text-blocks-2>div:nth-child(1), section.text-img-blocks-2>div:nth-child(1), .grid-2>div:nth-child(odd) {
  padding-right: 3px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 3 14'%3E%3Crect x='0' y='0' width='3' height='11'/%3E%3C/svg%3E");
  background-position: right top;
  background-size: 3px 14px;
  background-repeat: repeat-y;
  width: calc(50% + 1.5px);
}
body[data-theme="dark"] section.text-blocks-2>div:nth-child(1), body[data-theme="dark"] section.text-img-blocks-2>div:nth-child(1), body[data-theme="dark"] .grid-2>div:nth-child(odd){
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 3 14'%3E%3Crect x='0' fill='white' y='0' width='3' height='11'/%3E%3C/svg%3E");
}
.ticket {
  text-align: center;
  min-height: 322px;
}
.ticket a {
  padding: 30px;
  display: block;
}
.ticket h2 {
  font-size: 24px;
  line-height: 26px;
  padding-bottom: 20px;
  max-width: 200px;
  margin: 0 auto;
}
p.earlybird, p.price {
  text-transform: uppercase;
  font-weight: bold;
}
span.old {
  text-decoration: line-through;
  font-weight: normal;
}
.ticket:hover:before {
  opacity: 1;
}
.ticket {
  position: relative;
}
.ticket:before {
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  z-index: -1;
  position: absolute;
  background-color: var(--color2); /* the color you want */
  opacity: 0;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1436 14'%3E%3Crect x='0' y='0' width='3' height='11'/%3E%3Crect fill='black' x='3' y='0' width='1433' height='11'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1436 14'%3E%3Crect x='0' y='0' width='3' height='11'/%3E%3Crect fill='black' x='3' y='0' width='1433' height='11'/%3E%3C/svg%3E");
  
  -webkit-mask-size: 1436px 14px;
  mask-size: 1436px 14px;
  
  mask-repeat: repeat-y;
  -webkit-mask-repeat: repeat-y;
  
}
.ticket.earlybird:before {
  background-color: var(--color1);
}
.ticket-info {
  padding-top: 20px;

}
.ticket-info p+p {
  padding-top: 20px;
}
.ticket p {
  font-size: 16px;
  line-height: 20px;
}
.tib h2, .tb h2 {
  font-size: 34px;
  line-height: 30px;
  
}
.tib figure+h2, .tb figure+h2 {
  padding-top: 10px;
}
.tib>h2, .tb>h2 {
  padding-bottom: 20px;
}
.tib, .tb{
  display: flex;
  flex-direction: column;
}
.tib .credits, .tb .credits {
  margin-top: auto;
  font-size: 12px;
  line-height: 12px;
  padding-top: 10px;
  width: 100%;
}
.text-blocks-3 .tb:not(:first-child) .txt, .text-blocks-3 .tb:not(:first-child) .credits, .text-img-blocks-3 .tib:not(:first-child) .txt, .text-img-blocks-3 .tib:not(:first-child) .credits, .text-blocks-2 .tb:not(:first-child) .txt, .text-blocks-2 .tb:not(:first-child) .credits, .text-img-blocks-2 .tib:not(:first-child) .txt, .text-img-blocks-2 .tib:not(:first-child) .credits, .text-img-blocks-infinite .tib:not(:nth-child(3n+1)) .txt, .text-img-blocks-infinite .tib:not(:nth-child(3n+1)) .credits {
  padding-left: 10px;
}
section.gallery {
  display: flex;
  flex-wrap: wrap;
  background-color: inherit;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 3'%3E%3Crect x='0' y='0' width='11' height='3'/%3E%3C/svg%3E");
  background-position: left bottom;
  background-size: 14px 3px;
  background-repeat: repeat-x;
  padding-bottom: 20px;
}
body[data-theme="dark"] section.gallery {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 3'%3E%3Crect x='0' y='0' fill='white' width='11' height='3'/%3E%3C/svg%3E");
}
section.gallery>div {
  width: 50%;
}
section.gallery>div:nth-child(2) {
  padding-left: 13px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 3 14'%3E%3Crect x='0' y='0' width='3' height='11'/%3E%3C/svg%3E");
  background-position: left top;
  background-size: 3px 14px;
  background-repeat: repeat-y;
}
body[data-theme="dark"] section.gallery>div:nth-child(2) {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 3 14'%3E%3Crect x='0' y='0' fill='white' width='3' height='11'/%3E%3C/svg%3E");
}

.g-l {
  min-height: 400px;
}
.g-r {
  padding-left: 13px;
  display: flex;
  flex-direction: column;
}
.g-r>div:first-child {
  min-height: 50%;
}
.g-r-b .txt {
  padding-top: 10px;
}
.g-r-t {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 3'%3E%3Crect x='0' y='0' width='11' height='3'/%3E%3C/svg%3E");
  background-position: left bottom;
  background-size: 14px 3px;
  background-repeat: repeat-x;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 20px;
}
body[data-theme="dark"] .g-r-t {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 3'%3E%3Crect x='0' y='0' width='11' fill='white' height='3'/%3E%3C/svg%3E");
}
.g-r-t div:nth-child(2) {
  padding-top: 10px;
}
.g-r-t h2, .g-r-b h2 {
  font-size: 34px;
  line-height: 30px;
  padding-top: 5px;
  padding-bottom: 5px;
}
.g-r-b {
  flex-grow: 1;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
a.arw {
  font-weight: bold;
}
a.arw:after {
  content: '\2197';
  font-family: 'Inter', sans-serif;
  display: inline-block;
}
.txt a {
  font-weight: bold;
}
.txt a[target="_blank"]:after, .txt-big a[target="_blank"]:after {
  content: '\2197';
  font-family: 'Inter', sans-serif;
  display: inline-block;
}
section p {
  font-size: 16px;
  line-height: 20px;
}

.preview-block p {
  padding-bottom: 20px;
}
.preview-block {
  margin-top: 30px;
}
.preview-block h2, .preview-block h3 {
  font-size: 34px;
  line-height: 40px;
  padding-top: 8px;
}
.preview-block h3 {
  font-style: italic;
  padding-top: 0;
}
.preview-block:first-child, .preview-block:nth-child(2) {
  margin-top: 0;
}
nav {
  position: fixed;
  top: calc(-100*var(--vh));
  transition: top 0.3s;
  width: 100%;
  height: calc(100*var(--vh));
  background-color: var(--bgcolor);
  z-index: 999;
  padding: 10px;
  padding-top: 90px;
  font-size: 44px;
  line-height: 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: auto;
}
.show-menu nav {
  top: 0;
}
body.show-menu {
  overflow: hidden;
}
#menu-main { 
  font-weight: normal;
  text-transform: lowercase;
}
#menu-main>li>a {
  display: inline-block;
}
nav p a:hover {
  background: linear-gradient(180deg, var(--color1) 0%, var(--color2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-stroke: 0.5px var(--txtcolor);
  padding: 0.1em 0; 
}
body[data-theme="dark"] nav p a:hover {
  background: var(--color2);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-stroke: 0.5px var(--color2);
}
nav p {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 3'%3E%3Crect x='0' y='0' width='11' height='3'/%3E%3C/svg%3E");
  background-position: left bottom;
  background-size: 14px 3px;
  background-repeat: repeat-x;
  color: var(--bgcolor);
  padding-top: 20px;
  padding-bottom: 20px;
}
body[data-theme="dark"] nav p {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 3'%3E%3Crect x='0' y='0' fill='white' width='11' height='3'/%3E%3C/svg%3E");
}
nav p span:not(.list) {
  -webkit-text-stroke: 0px !important;
  color: var(--txtcolor);
}
nav p a, nav p span.list {
  -webkit-text-stroke: 0.5px var(--txtcolor);
}
ul.sub-menu li {
  display: inline-block;
}
nav>div:first-child {

}
.show-menu header {
  width: 100%;
}
.show-menu header h2 {
  display: none;
}
#menu-footer {
  display: inline-block;
}
#menu-footer li {
  display: inline-block;
}
#menu-footer li a:after {
  content: '\2197';
  font-family: 'Inter', sans-serif;
  display: inline-block;
}
#menu-footer li a:hover {
  color: var(--color1);
}
body[data-theme="dark"] #menu-footer li a:hover {
  color: var(--bgcolor);
  -webkit-text-stroke: 0.5px var(--txtcolor);
}
section.restaurants>h2 {
  font-size: 34px;
  line-height: 40px;
  padding-bottom: 20px;
  text-transform: uppercase;
}
section.restaurants {
  padding-bottom: 30px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 3'%3E%3Crect x='0' y='0' width='11' height='3'/%3E%3C/svg%3E");
  background-position: left bottom;
  background-size: 14px 3px;
  background-repeat: repeat-x;
}
body[data-theme="dark"] section.restaurants {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 3'%3E%3Crect x='0' fill='white' y='0' width='11' height='3'/%3E%3C/svg%3E");
}
section.restaurants:not(:first-child) {
  padding-top: 30px;
}
.gallery-links.loading {
  position: relative;
  min-height: 100px;
  opacity: 0.5;
}
.gallery-links.loading:after {
  content: 'Loading...';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
}
div.gallery-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
div.gallery-nav li {
  font-weight: bold;
  font-size: 24px;
  line-height: 26px;
  display: inline-block;
}

.filter-options {
  position: absolute;
  display: none;
}
.filter-group {
  position: relative;
  display: inline-block;
  
}
h3.filter-active {
  background-color: var(--txtcolor);
  color: var(--bgcolor);
}
section.gallery-filters>h3 {
  font-size: 12px;
  font-weight: normal;
  display: inline-block;
  padding-right: 5px;
}
section.gallery-filters form {
  display: inline-block;
}
section.gallery-filters {
  padding-bottom: 15px;
}
.filter-group h3 {
  font-size: 12px;
  border: solid 1px var(--txtcolor);
  display: inline-block;
  cursor: pointer;
  padding: 2px 5px;
  font-weight: normal;
  line-height: 12px;
}
.filter-options {
  width: 250px;
  max-height: 300px;
  overflow-y: auto;
  background-color: var(--bgcolor);
  padding: 13px;
  border: solid 1px var(--txtcolor);
  z-index: 1000;
  top: 18px;
}
@media(min-width: 768px) {
  .filter-group:hover .filter-options {
    display: block;
  }
}
.filter-group label {
  display: block;
  font-size: 16px;
  line-height: 16px;
  padding: 5px 0;
}
.filter-group label:first-child {
  padding-top: 0;
}
.filter-group label:last-child {
  padding-bottom: 0;
}
#gallery-filter-form button, #gallery-filter-form a {
  display: none;
}

/* Custom checkbox styling */
.filter-group input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 13px;
  height: 13px;
  border: 1px solid var(--txtcolor);
  margin-right: 6px;
  position: relative;
  top: 1px;
  cursor: pointer;
}

.filter-group input[type="checkbox"]:checked {
  background-color: var(--txtcolor);
}

.filter-group input[type="checkbox"]:focus {
  outline: none;
}

.filter-group label {
  display: block;
  font-size: 16px;
  line-height: 16px;
  padding: 5px 0;
  cursor: pointer;
}

.filter-group label:hover input[type="checkbox"]:not(:checked) {
  background-color: #eee;
}
.child-pages {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
.child-page {
  height: calc(var(--vh)*50 - 62px);
  width: 50%;
  position: relative;
}
.child-page a {
  text-align: center;
  padding: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.child-page:hover .child-page-overlay {
  opacity: 1;
}
.child-page-overlay {
  pointer-events: none;
  opacity: 0;
  position: absolute;
  top: 0px;
  background-size: cover;
  background-position: center;
  z-index: 10;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.3s;
}
.child-pages:after {
  content: '';
  display: block;
  height: calc(100%);
  z-index: 10;
  width: 3px;
  position: absolute;
  left: 50% ;
  background-image: var(--vertical-image);
  background-position: var(--vertical-position);
  background-size: var(--vertical-size);
  background-repeat: var(--vertical-repeat);
}
.child-page:nth-child(n+3) {
  background-image: var(--horizontal-image);
  background-position: top left;
  background-size: var(--horizontal-size);
  background-repeat: var(--horizontal-repeat);
}
.child-page:nth-child(n+3) .child-page-overlay {
  height: calc(100% - 3px);
  top: 3px;
}
.preview-off-programme h2, .preview-off-programme h3 {
  font-size: 24px;
  line-height: 26px;
}
.preview-off-programme h2 {
  color: transparent;
  -webkit-text-stroke: 0.5px var(--txtcolor);
  padding-top: 10px;
}
.preview-off-programme h3 {
  font-style: italic;
}
.preview-off-programme .txt {
  padding-top: 20px;
}

.home-menu {
  white-space: nowrap;
  padding-bottom: 10px;
  overflow: hidden;
}
.tib figure+.txt {
  padding-top: 10px;
}
section.home-menu {
  margin-bottom: 0;
  position: sticky;
  top: 90px;
  background-color: var(--bgcolor);
  z-index: 100;
  overflow: hidden;
  padding-bottom: 13px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 3'%3E%3Crect x='0' y='0' width='11' height='3'/%3E%3C/svg%3E");
  background-position: left bottom;
  background-size: 14px 3px;
  background-repeat: repeat-x;
}
body[data-theme="dark"] section.home-menu {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 3'%3E%3Crect x='0' fill='white' y='0' width='11' height='3'/%3E%3C/svg%3E");
}
section.partners {
  white-space: nowrap;
  padding-bottom: 10px;
  overflow: hidden;
  padding-top: 20px;
  margin-bottom: -45px;
}
section.partners figure {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding-right: 20px;
  flex-shrink: 0;
  overflow: hidden;
  vertical-align: middle;
  margin: 0;
  height: 85px;
}
section.partners img {
  max-width: 130px;
  max-height: 80px;
  margin-top: 5px;
  width: auto;
  height: auto;
  object-fit: contain;
}

section.text-img-blocks-2:not(:last-child), section.text-img-blocks-3:not(:last-child), section.text-blocks-2:not(:last-child), section.text-blocks-3:not(:last-child), section.text-blocks-infinite:not(:last-child) {
  padding-bottom: 13px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 3'%3E%3Crect x='0' y='0' width='11' height='3'/%3E%3C/svg%3E");
  background-position: left bottom;
  background-size: 14px 3px;
  background-repeat: repeat-x;
}
body[data-theme="dark"] section.text-img-blocks-2:not(:last-child), body[data-theme="dark"] section.text-img-blocks-3:not(:last-child), body[data-theme="dark"] section.text-blocks-2:not(:last-child), body[data-theme="dark"] section.text-blocks-3:not(:last-child), body[data-theme="dark"] section.text-blocks-infinite:not(:last-child) {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 3'%3E%3Crect x='0' fill='white' y='0' width='11' height='3'/%3E%3C/svg%3E");
}
section.text-img-blocks-2:not(:first-child), section.text-img-blocks-3:not(:first-child), section.text-img-blocks-infinite:not(:first-child), section.text-blocks-2:not(:first-child), section.text-blocks-3:not(:first-child) {
  padding-top: 10px;
}
section.gallery-filters {
  background-image: none;
  padding-bottom: 10px;
}
.ticker {
  display: inline-flex;
  will-change: transform;
  width: auto;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  overflow: hidden;
}
.home-menu .inside {
  padding-top: 10px;
}
.home-menu a {
  background-color: var(--txtcolor);
  color: var(--bgcolor);
  padding: 15px 10px;
  display: inline-block;
  margin-right: 10px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: -16px;
}
a.highlight {
  background:linear-gradient(0deg, var(--color2) 0%, var(--color1) 100%);
  color: var(--txtcolor);
}
.home-menu a:last-child {
  margin-right: 0;
}
section.hero, section.home-menu {
  overflow-y: hidden;
  padding-bottom: 13px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 3'%3E%3Crect x='0' y='0' width='11' height='3'/%3E%3C/svg%3E");
  background-position: left bottom;
  background-size: 14px 3px;
  background-repeat: repeat-x;
}
.home-overlay+.hero {
  margin-top: 10px;
}
p+p.no-p {
  padding-top: 0;
}
@media(min-width: 768px) {
  
  .has-hero.home-overlay {
    position: relative;
    padding-bottom: 10px;
  }
  .has-hero.home-overlay:after {
    content: '';
    position: absolute;
    bottom: 0px;
    width: 100%;
    height: 13px;
    overflow-y: hidden;
    background-color: var(--bgcolor);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 13'%3E%3Crect x='0' y='10' width='11' height='3'/%3E%3C/svg%3E");
    background-position: left bottom;
    background-size: 14px 13px;
    background-repeat: repeat-x;
  }
}
body[data-theme="dark"] section.hero, body[data-theme="dark"] section.home-menu {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 3'%3E%3Crect x='0' fill='white' y='0' width='11' height='3'/%3E%3C/svg%3E");
}
.home-menu a.aaab[target="_blank"] {
  background: linear-gradient(0deg, var(--extcolor1) 0%, var(--extcolor2) 100%)
}
.home-menu a:after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 49.23 49.23' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:%23fff;fill-rule:evenodd%7D%3C/style%3E%3C/defs%3E%3Cpolygon class='cls-1' points='0 47.26 1.98 49.23 46.48 4.73 46.39 33.4 49.23 33.4 49.23 0 15.82 0 15.82 2.75 44.5 2.75 0 47.26'/%3E%3C/svg%3E");
  content: '';
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  display: inline-block;
  vertical-align: top;
  margin-top: 13px;
  margin-left: 10px;
}
body[data-theme="dark"] .home-menu a:after, body[data-theme="light"] .home-menu a.highlight:after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 49.23 49.23' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:black;fill-rule:evenodd%7D%3C/style%3E%3C/defs%3E%3Cpolygon class='cls-1' points='0 47.26 1.98 49.23 46.48 4.73 46.39 33.4 49.23 33.4 49.23 0 15.82 0 15.82 2.75 44.5 2.75 0 47.26'/%3E%3C/svg%3E");
}
body[data-theme="dark"] .home-menu a.highlight:after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 49.23 49.23' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:%23fff;fill-rule:evenodd%7D%3C/style%3E%3C/defs%3E%3Cpolygon class='cls-1' points='0 47.26 1.98 49.23 46.48 4.73 46.39 33.4 49.23 33.4 49.23 0 15.82 0 15.82 2.75 44.5 2.75 0 47.26'/%3E%3C/svg%3E");
}
.home-item {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 3'%3E%3Crect x='0' y='0' width='11' height='3'/%3E%3C/svg%3E");
  background-position: left bottom;
  background-size: 14px 3px;
  background-repeat: repeat-x;
  padding-top: 10px;
  padding-bottom: 23px;
}
body[data-theme="dark"] .home-item {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 3'%3E%3Crect x='0' fill='white' y='0' width='11' height='3'/%3E%3C/svg%3E");
}
.home-item.vid:hover {
  background-repeat: repeat;
}
.home-item h3 {
  font-size: 12px;
  font-weight: normal;
  background-color: var(--bgcolor);
  display: inline-block;
  padding-right: 5px;
  padding-bottom: 1px;
}
@media(min-width: 768px) {
  .main-partners.desktop {
    position: fixed;
    z-index: 1000;
    width: 280px;
    display: flex;
    top: 17px;
    right: 10px;
    
  }
  .main-partners.desktop div {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .main-partners.desktop a {
    width: calc(50% - 10px);
    display: block;
  }
  .main-partners.desktop p {
    font-size: 12px;
    line-height: 12px;
    padding-bottom: 10px;
    width: 100%;
  }
  .home .main-partners.desktop, .full-width .main-partners.desktop, .error404 .main-partners.desktop {
    display: block;
  }
  .home-item h2 a:hover:after {
    content: '';
    display: inline-block;
    width: 70px;
    height: 70px;
    vertical-align: top;
    margin-left: 20px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
  .home-item.v-31 h2 a:hover:after, .home-item.v-32 h2 a:hover:after {
    display: none;
  }
  i.arrow {
    
    position: relative;
    display: inline-block;
    vertical-align: baseline;
    
    width: 53px;
    height: 46px;
    
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='53' height='46' viewBox='0 0 53 46' fill='none'%3E%3Cpath d='M26.6349 45L23.1051 40.9233L41.2017 25.4617H1.03125L1.97583 19.9929H43.3395L29.9161 3.88498L34.0426 0.45459L52.6364 22.7273L26.6349 45Z' fill='black' stroke-width='0' stroke-linecap='square'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='53' height='46' viewBox='0 0 53 46' fill='none'%3E%3Cpath d='M26.6349 45L23.1051 40.9233L41.2017 25.4617H1.03125L1.97583 19.9929H43.3395L29.9161 3.88498L34.0426 0.45459L52.6364 22.7273L26.6349 45Z' fill='black' stroke-width='0' stroke-linecap='square'/%3E%3C/svg%3E");
    
    -webkit-mask-size: 53px 46px;
    mask-size: 53px 46px;
    
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    
    background: linear-gradient(0deg, var(--color2) 0%, var(--color1) 100%);
    opacity: 0;
    margin-left: 20px;
  }
  body[data-theme="dark"] i.arrow {
    background: var(--color2);
  }
  i.arrow:after {
    width: 53px;
    height: 46px;
    content:'';
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='53' height='46' viewBox='0 0 53 46' fill='none'%3E%3Cpath d='M26.6349 45L23.1051 40.9233L41.2017 25.4617H1.03125L1.97583 19.9929H43.3395L29.9161 3.88498L34.0426 0.45459L52.6364 22.7273L26.6349 45Z' stroke='black' stroke-width='1' stroke-linecap='square'/%3E%3C/svg%3E");
    position: absolute;
    left: 0;
    top: 0;
    z-index: 10;
  }
  .v-31 h2 a:hover i, .v-32 h2 a:hover i {
    opacity: 1;
  }
  
  .v-32 i.arrow {
    width: 53px;
    height: 51px;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='53' height='51' viewBox='0 0 53 51' fill='none'%3E%3Cpath d='M23.6918 50.2123L18.4467 44.0724L35.0021 29.9282H0.375L1.7919 21.5262H38.0845L25.1087 5.96515L31.3232 0.67041L52.2536 25.7272L23.6918 50.2123Z' stroke='black' fill='black' stroke-width='0.5' stroke-linecap='square'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='53' height='51' viewBox='0 0 53 51' fill='none'%3E%3Cpath d='M23.6918 50.2123L18.4467 44.0724L35.0021 29.9282H0.375L1.7919 21.5262H38.0845L25.1087 5.96515L31.3232 0.67041L52.2536 25.7272L23.6918 50.2123Z' stroke='black' fill='black' stroke-width='0.5' stroke-linecap='square'/%3E%3C/svg%3E");
    
    -webkit-mask-size: 53px 51px;
    mask-size: 53px 51px;
  }
  .v-32 i.arrow:after {
    width: 53px;
    height: 51px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='53' height='51' viewBox='0 0 53 51' fill='none'%3E%3Cpath d='M23.6918 50.2123L18.4467 44.0724L35.0021 29.9282H0.375L1.7919 21.5262H38.0845L25.1087 5.96515L31.3232 0.67041L52.2536 25.7272L23.6918 50.2123Z' stroke='black' fill='transparent' stroke-width='0.6' stroke-linecap='square'/%3E%3C/svg%3E");
  }
  /* v-31, v-32 gradient arrow */
  .v-11 h2 a:hover:after, .v-21 h2 a:hover:after {
    content:'';
    display: inline-block;
    vertical-align: baseline;
    
    width: 53px;
    height: 46px;
  }
  .v-31 h2 a:hover:before {
    width: 53px;
    height: 46px;
  }
  
  .v-11 h2 a:hover:after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='53' height='46' viewBox='0 0 53 46' fill='none'%3E%3Cpath d='M26.6349 45L23.1051 40.9233L41.2017 25.4617H1.03125L1.97583 19.9929H43.3395L29.9161 3.88498L34.0426 0.45459L52.6364 22.7273L26.6349 45Z' fill='black' stroke='black' stroke-width='0' stroke-linecap='square'/%3E%3C/svg%3E");
  }
  body[data-theme="dark"] .v-11 h2 a:hover:after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='53' height='46' viewBox='0 0 53 46' fill='none'%3E%3Cpath d='M26.6349 45L23.1051 40.9233L41.2017 25.4617H1.03125L1.97583 19.9929H43.3395L29.9161 3.88498L34.0426 0.45459L52.6364 22.7273L26.6349 45Z' fill='white' stroke='white' stroke-width='0' stroke-linecap='square'/%3E%3C/svg%3E");
  }
  
  .v-21 h2 a:hover:after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='53' height='46' viewBox='0 0 53 46' fill='none'%3E%3Cpath d='M26.6349 45L23.1051 40.9233L41.2017 25.4617H1.03125L1.97583 19.9929H43.3395L29.9161 3.88498L34.0426 0.45459L52.6364 22.7273L26.6349 45Z' fill='white' stroke='black' stroke-width='0.7' stroke-linecap='square'/%3E%3C/svg%3E");
  }
  body[data-theme="dark"] .v-21 h2 a:hover:after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='53' height='46' viewBox='0 0 53 46' fill='none'%3E%3Cpath d='M26.6349 45L23.1051 40.9233L41.2017 25.4617H1.03125L1.97583 19.9929H43.3395L29.9161 3.88498L34.0426 0.45459L52.6364 22.7273L26.6349 45Z' fill='black' stroke='white' stroke-width='0.7' stroke-linecap='square'/%3E%3C/svg%3E");
  }

  .v-12 h2 a:hover:after, .v-22 h2 a:hover:after {
    vertical-align: baseline;
    width: 53px;
    height: 51px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='53' height='51' viewBox='0 0 53 51' fill='none'%3E%3Cpath d='M23.6918 50.2123L18.4467 44.0724L35.0021 29.9282H0.375L1.7919 21.5262H38.0845L25.1087 5.96515L31.3232 0.67041L52.2536 25.7272L23.6918 50.2123Z' fill='url(%23paint0_linear_1419_339)' stroke='black' stroke-width='0.5'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_1419_339' x1='26.3143' y1='0.67041' x2='26.3143' y2='50.2123' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%2351CEE0'/%3E%3Cstop offset='0.9999' stop-color='%23FFEF21'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
  }
  /* ok */
  .v-12 h2 a:hover:after { 
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='53' height='51' viewBox='0 0 53 51' fill='none'%3E%3Cpath d='M23.6918 50.2123L18.4467 44.0724L35.0021 29.9282H0.375L1.7919 21.5262H38.0845L25.1087 5.96515L31.3232 0.67041L52.2536 25.7272L23.6918 50.2123Z' fill='black' stroke='black' stroke-width='0'/%3E%3C/svg%3E");
  }
  body[data-theme="dark"] .v-12 h2 a:hover:after { 
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='53' height='51' viewBox='0 0 53 51' fill='none'%3E%3Cpath d='M23.6918 50.2123L18.4467 44.0724L35.0021 29.9282H0.375L1.7919 21.5262H38.0845L25.1087 5.96515L31.3232 0.67041L52.2536 25.7272L23.6918 50.2123Z' fill='white' stroke='white' stroke-width='0'/%3E%3C/svg%3E");
  }
  .v-22 h2 a:hover:after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='53' height='51' viewBox='0 0 53 51' fill='none'%3E%3Cpath d='M23.6918 50.2123L18.4467 44.0724L35.0021 29.9282H0.375L1.7919 21.5262H38.0845L25.1087 5.96515L31.3232 0.67041L52.2536 25.7272L23.6918 50.2123Z' fill='white' stroke='black' stroke-width='0.7'/%3E%3C/svg%3E");
    
  }
  body[data-theme="dark"] .v-22 h2 a:hover:after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='53' height='51' viewBox='0 0 53 51' fill='none'%3E%3Cpath d='M23.6918 50.2123L18.4467 44.0724L35.0021 29.9282H0.375L1.7919 21.5262H38.0845L25.1087 5.96515L31.3232 0.67041L52.2536 25.7272L23.6918 50.2123Z' fill='black' stroke='white' stroke-width='0.7'/%3E%3C/svg%3E");
    
  }
}
.home-item h2 {
  font-size: 70px;
  line-height: 70px;
  font-weight: normal;
}
.home-item h2 a:hover {
  font-style: italic;
}
.v-12 h2 a, .v-22 h2 a, .v-32 h2 a {
  font-weight: bold;
}
.v-11 h2 a, .v-12 h2 a, .v-21 h2 a:hover, .v-22 h2 a:hover {
  color: transparent;
  -webkit-text-stroke: 0.5px var(--txtcolor);
}
.v-11 h2 a:hover, .v-12 h2 a:hover {
  color: var(--txtcolor);
  -webkit-text-stroke: 0px;
}
.v-31 h2 a, .v-32 h2 a {
  display: -webkit-box;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  background: linear-gradient(180deg, var(--color1) 0%, var(--color2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-stroke: 0.5px var(--txtcolor);
  padding: 0.1em 0;
}
body[data-theme="dark"] .v-31 h2 a, body[data-theme="dark"] .v-32 h2 a {
  background: var(--color2);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-stroke: 0px var(--color2);
}
.home-item img {
  width: 50%;
  margin: 0 auto;
  margin-top: -29px;
  margin-bottom: -10px;
}
section.password {
  margin-top: -10px;
  position: relative;
}
section.password:before {
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    z-index: -1;
    position: absolute;
    background-color: var(--color2); /* the color you want */
    opacity: 1;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 1436'%3E%3Crect x='0' y='1433' width='11' height='3'/%3E%3Crect fill='black' x='0' width='11' height='1433'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 1436'%3E%3Crect x='0' y='1433' width='11' height='3'/%3E%3Crect fill='black' x='0' width='11' height='1433'/%3E%3C/svg%3E");
    
    -webkit-mask-size: 14px 1436px;
    mask-size: 14px 1436px;
    
    mask-repeat: repeat-x;
    -webkit-mask-repeat: repeat-x;
    mask-position: left bottom;
    
}
section.password:after, .cta:after, .related:after {
  height: 3px;
  width: 100%;
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
}
.post-password-form {
  text-align: center;
  padding: 100px 0;
}
input[type="password"], input[type="submit"] {
  color: var(--txtcolor);
  border: solid 1px var(--txtcolor);
  font-size: 16px;
  padding: auto;
  background-color: var(--bgcolor);
  padding: 10px 20px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
}
input[type="submit"] {
  background-color: var(--txtcolor);
  color: var(--bgcolor);
  cursor: pointer;
  
}
section.fold-out-list {
  padding-top: 40px;
  padding-bottom: 40px;
}
div.fold-out-list {
  padding-top: 20px;
  width: 50%;
  margin: 0 auto;
}
.fold-out-list h2 {
  font-size: 44px;
  line-height: 44px;
  font-weight: normal;
  color: transparent;
  -webkit-text-stroke: 0.5px var(--txtcolor);
  padding-bottom: 20px;
  text-transform: uppercase;
  text-align: center;
}
.fold-out-item h3 {
  cursor: pointer;
  font-size: 16px;
  line-height: 16px;
}
.fold-out-item h3:after {
  content: '\2193';
  display: inline-block;
  font-family: 'Inter', sans-serif;
  padding-left: 5px;
}
.fold-out-item.open h3:after {
  content: '\2191';
}
.fold-out-item {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 3'%3E%3Crect x='0' y='0' width='11' height='3'/%3E%3C/svg%3E");
  background-position: left bottom;
  background-size: 14px 3px;
  background-repeat: repeat-x;
  padding: 20px 0;
}
body[data-theme="dark"] .fold-out-item {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 3'%3E%3Crect x='0' fill='white' y='0' width='11' height='3'/%3E%3C/svg%3E");
}
.fold-out-content {
  display: none;
  padding-top: 20px;
}

section.block-links {
  padding-top: 20px;

}
section.block-links:not(:last-child) {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 3'%3E%3Crect x='0' y='0' width='11' height='3'/%3E%3C/svg%3E");
  background-position: left bottom;
  background-size: 14px 3px;
  background-repeat: repeat-x;
}
body[data-theme="dark"] section.block-links:not(:last-child) {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 3'%3E%3Crect x='0' y='0' fill='white' width='11' height='3'/%3E%3C/svg%3E");
}
.block-links-grid {
  display: flex;
  flex-wrap: wrap;
}
.block-link {
  display: flex;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  width: 25%;
  min-height: 300px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1436 14'%3E%3Crect x='0' y='0' width='3' height='11'/%3E%3Crect fill='transparent' x='3' y='0' width='1433' height='11'/%3E%3C/svg%3E");
  background-position: left top;
  background-size: 1436px 14px;
  background-repeat: repeat-y;
  background-color: var(--color3);
  position: relative;
  margin-bottom: 20px;
  position: relative;
}
.block-link:before {
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  z-index: -1;
  position: absolute;
  mix-blend-mode: multiply;
  background-color: var(--color3); /* the color you want */
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1436 14'%3E%3Crect x='0' y='0' width='3' height='11'/%3E%3Crect fill='black' x='3' y='0' width='1433' height='11'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1436 14'%3E%3Crect x='0' y='0' width='3' height='11'/%3E%3Crect fill='black' x='3' y='0' width='1433' height='11'/%3E%3C/svg%3E");
  
  -webkit-mask-size: 1436px 14px;
  mask-size: 1436px 14px;
  
  mask-repeat: repeat-y;
  -webkit-mask-repeat: repeat-y;
}
section.block-links+section.block-links .block-link, section.block-links+section.block-links .block-link:before {
  background-color: var(--color1);
}
.block-link h3 {
  align-self: center;
  font-size: 24px;
  line-height: 24px;
  text-transform: uppercase;
}
.block-link p {
  position: absolute;
  bottom: 20px;
  padding: 0 20px;
  text-align: center;
}
.block-link:hover {
  background-color: transparent !important;
}
.block-link:first-child, .block-link:nth-child(4n+1) {
  background-position: center top;
}
.bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--bgcolor);
}
.bottom.desktop {
  position: fixed;
  bottom: 0;
  z-index: 980;
  right: 0;
  width: calc(25%);
  padding: 10px;
  padding-left: 0;
}
.bottom a {
  width: calc(50% - 4px);

}
.bottom a:first-child {
  width: calc(50% - 20px);
}
aside>*:first-child {
  margin-top: 3px;
}
.cta {
  font-size: 44px;
  line-height: 44px;
  text-transform: uppercase;
  padding-bottom: 20px;
  padding-top: 20px;
  text-transform: uppercase;
  text-align: center;

  background-position: left bottom;
  background-size: 14px 1436px;
  background-repeat: repeat-x;
  position: relative;
}
.related.text, .has-link {
  position: relative;
}

.cta:before, .related.text:before, .has-link:before {
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  top: 0;
  z-index: -1;
  position: absolute;
  background-color: var(--color3); /* the color you want */
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 1436'%3E%3Crect x='0' y='1433' width='11' height='3'/%3E%3Crect fill='black' x='0' width='11' height='1433'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 1436'%3E%3Crect x='0' y='1433' width='11' height='3'/%3E%3Crect fill='black' x='0' width='11' height='1433'/%3E%3C/svg%3E");
  
  -webkit-mask-size: 14px 1436px;
  mask-size: 14px 1436px;
  
  mask-repeat: repeat-x;
  -webkit-mask-repeat: repeat-x;
}
.related.text:before, .has-link:before {
  opacity: 0;
}
.cta:first-child {
  color: transparent;
  -webkit-text-stroke: 0.5px var(--txtcolor);
}
body[data-theme="dark"] .cta:first-child {
  color: var(--txtcolor);
  -webkit-text-stroke: 0px;
}
.cta:hover:before {
  background-color: var(--color4);
}
.related.text:hover:before, .has-link:hover:before {
  opacity: 1;
  background-color: var(--color4);
}
.related.text:nth-child(3n+1):hover:before, .has-link:hover:before  {
  background-color: var(--color1);
}
.related.text:nth-child(3n+2):hover:before {
  background-color: var(--color3);
}
.text h3.meta {
  background-color: transparent;
}
.main-partners.desktop { 
  display: none;
}
.video-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
section.video p a{
  font-weight: bold;
  padding-bottom: 10px;
}
section.video p {
  padding-bottom: 10px;
}
section.video+section.txt-small { 
  padding-top: 10px;
  padding-bottom: 20px;
}
nav i {
  font-style: normal;
}
.mobile {
  display: none;
}
.txt {
  padding-right: 10px;
}
.toggle {
  display: none;
}

/* Background Video Styling */
.video-preview {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
}

.video-player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: var(--color4);
}

.video-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}

.video-thumbnail.hidden {
  opacity: 0;
  z-index: 0;
}

.video-item-link {
  display: block;
  position: relative;
  overflow: hidden;
  width: 50%;
  margin: 0 auto;
  margin-top: -29px;
  margin-bottom: -20px;
}

.video-item-link:hover {
  cursor: pointer;
}

/* Hide Vimeo play button and controls */
.video-player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none; /* Prevent interaction with the iframe */
}

/* Additional CSS to hide controls */
.video-player .vimeo-play-button,
.video-player .vp-controls,
.video-player .vp-sidedock,
.video-player .vp-title,
.video-player .vp-video-wrapper button,
.video-player .vp-placeholder,
.video-player button {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}
.aside-toggle {
  display: none;
}
/* Home item styling for video items */
.home-item.vid:hover .video-thumbnail {
  opacity: 0;
}
.error404 aside {
  display: none;
}
.home-overlay h2 {
  color: var(--txtcolor);

  text-align: center;
  leading-trim: both;

  text-edge: cap;
  font-family: 'ARTBRUSSELS';
  font-size: 200px;
  font-style: normal;
  font-weight: 400;
  line-height: 120px;
  padding-top: 30px;
  padding-bottom: 60px;
}
.home-overlay {
  margin-top: 10px;
  background: linear-gradient(180deg, var(--color1) 0%, var(--color2) 100%);
  
  overflow: hidden;
  animation: home-overlay-gradient linear 0.4s;
  animation-fill-mode: forwards;
  animation-delay: 3s;
}
.home main {
  padding-top: 90px;
}
.g4-1>div.preview-artwork:nth-child(4n+2) .preview-artwork-info, .g4-1>div.preview-artwork:nth-child(4n+3) .preview-artwork-info, .g4-1>div.preview-artwork:nth-child(4n+4) .preview-artwork-info {
  padding-left: 10px;
}
body.single-artwork, body.single-artwork header, body.single-artwork nav, body.page-template-ovr-galleries, body.page-template-ovr-galleries header, body.page-template-ovr-galleries nav, body.ovr, body.ovr header, body.ovr nav {
  background-color: var(--color4);
}
body.single-artwork nav p, body.page-template-ovr-galleries nav p, body.ovr nav p {
  color: var(--color4);
}
body.single-artwork .menu-toggle i, body.page-template-ovr-galleries .menu-toggle i, body.ovr .menu-toggle i {
  display: none;
}
body.single-artwork header div.title h2, body.page-template-ovr-galleries header div.title h2, body.ovr header div.title h2 {

  display: none;
}
body.single-artwork .main-partners, body.page-template-ovr-galleries .main-partners, body.ovr .main-partners {
  mix-blend-mode: multiply;
}
.ovr-nav {
  font-size: 34px;
  line-height: 30px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 3'%3E%3Crect x='0' fill='black' y='0' width='11' height='3'/%3E%3C/svg%3E");
  background-size: 14px 3px;
  background-position: left bottom;
  background-repeat: repeat-x;
  padding-bottom: 10px;
  position: sticky;
  width: calc(100%);
  top: 90px;
  background-color: var(--color4);
  padding: 10px 0;
  z-index: 50;
}
body[data-theme="dark"] .ovr-nav {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 3'%3E%3Crect x='0' fill='white' y='0' width='11' height='3'/%3E%3C/svg%3E");
}
.ovr main {
  padding-top: 90px;
}
.ovr-nav ul {
  display: flex;
}
.ovr-nav ul li {
  width: 33.3333%;
  text-align: center;
  list-style: none;
  padding-bottom: 5px;
}
.ovr-nav ul li:not(:last-child) {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 3 14'%3E%3Crect x='0' y='0' width='3' height='11'/%3E%3C/svg%3E");
  background-position: right top;
  background-size: 3px 14px;
  background-repeat: repeat-y;
}
body[data-theme="dark"] .ovr-nav ul li:not(:last-child) {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 3 14'%3E%3Crect x='0' y='0' fill='white' width='3' height='11'/%3E%3C/svg%3E");
}
.artwork-gallery {
  padding-top: 30px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 3'%3E%3Crect x='0' y='0' width='11' height='3'/%3E%3C/svg%3E");
  background-size: 14px 3px;
  background-position: left bottom;
  background-repeat: repeat-x;
  padding-bottom: 3px;
}
body[data-theme="dark"] .artwork-gallery {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 3'%3E%3Crect x='0' y='0' fill='white' width='11' height='3'/%3E%3C/svg%3E");
}

section.artwork-description {
  padding-top: 10px;
  display: flex;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 3'%3E%3Crect x='0' y='0' width='11' height='3'/%3E%3C/svg%3E");
  background-size: 14px 3px;
  background-position: left bottom;
  background-repeat: repeat-x;
  padding-bottom: 13px;
}
body[data-theme="dark"] section.artwork-description {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 3'%3E%3Crect x='0' fill='white' y='0' width='11' height='3'/%3E%3C/svg%3E");
}
section.artwork-description .aw-left {
  width: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 3 14'%3E%3Crect x='0' y='0' width='3' height='11'/%3E%3C/svg%3E");
  background-position: right top;
  background-size: 3px 14px;
  background-repeat: repeat-y;
}
body[data-theme="dark"] section.artwork-description .aw-left {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 3 14'%3E%3Crect x='0' fill='white' y='0' width='3' height='11'/%3E%3C/svg%3E");
}
section.artwork-description .aw-right {
  width: 50%;
  padding-left: 10px;
}
.title.fill h2, .curated-lists .preview-off-programme-content h2, .page-template-ovr-overview .other-artworks>h2 {
  color: var(--txtcolor);
  -webkit-text-stroke: 0px;
}
.other-artworks>h2, .curated-lists>h2 {
  color: transparent;
  -webkit-text-stroke: 0.5px var(--txtcolor);
  text-align: center;
  font-size: 34px;
  line-height: 40px;
  font-weight: normal;
  padding-top: 30px;
  padding-bottom: 30px;
  text-transform: uppercase;
}
.preview-artwork-info {
  padding-top: 10px;
}
.preview-artwork-info h3, .preview-artwork-info h4 { 
  font-size: 16px;
  line-height: 18px;
}
.preview-artwork-info h4 {
  font-weight: normal;
}
.artwork-gallery-item {
  width: 100%;
  padding-left: 90px;
  padding-right: 90px;
}
.artwork-gallery-item figcaption {
  padding-bottom: 20px;
  width: 100%;
}
.preview-artwork {
  padding-bottom: 30px;
}
.other-artworks:last-child {
  margin-bottom: -30px;
}
.other-artworks:not(:last-child), .curated-lists:not(:last-child) {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 3'%3E%3Crect x='0' y='0' width='11' height='3'/%3E%3C/svg%3E");
  background-size: 14px 3px;
  background-position: left bottom;
  background-repeat: repeat-x;
  padding-bottom: 33px;
}
body[data-theme="dark"] .other-artworks:not(:last-child), body[data-theme="dark"] .curated-lists:not(:last-child) {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 3'%3E%3Crect x='0' y='0' fill='white' width='11' height='3'/%3E%3C/svg%3E");
}
.single-curated-list .other-artworks { 
  padding-top: 30px;
}
.artwork-gallery-item figure {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
figure.placeholder {
  background-color: var(--color1);
  height: 200px;
}
.artwork-gallery-item figure img {
  max-height: calc(100vh - 300px);
  max-width: 100%;
  width: auto !important;
  height: auto !important;
}
.page-template-ovr-galleries .gallery-links a {
  display: block;
}
.gallery-links a span {
  color: var(--color1);
}
.gallery-links a:nth-child(3n+1) span {
  color: var(--color2);
}
.gallery-links a:nth-child(3n+2) span {
  color: var(--color3);
}

sup { 
  vertical-align: top;
  position: relative;
  font-size: 0.5em;
  top: -0.2em;
}
.gallery-nav-ovr {
  position: fixed;
  width: 25px;
  right: 10px;
  top: 200px;
  text-align: center;

}
div.gallery-nav-ovr ul {
  flex-direction: column;
}
div.gallery-nav-ovr ul li:nth-child(even) {
  display: none;
}
.ovr-nav+section.title {

  margin-bottom: 10px;
}
.ovr-g-r {
  
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  min-height: 100%;
}
.ovr-g-r.txt {
  flex-grow: 1;
}
.ovr-g-r div:nth-child(2) { 
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 20px;
}
.artists-overlay {
  right: 10px;
    top: 150px;
    display: none;
    z-index: 2000;
    width: calc(25% - 10px);
    background-color:var(--color2);
    padding-bottom: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 3'%3E%3Crect x='0' y='0' width='11' height='3'/%3E%3C/svg%3E");
    background-size: 14px 3px;
    background-position: left bottom;
    background-repeat: repeat-x;
    position: fixed;
    padding-top: 10px;
}
.artists-overlay:before {
  content: '';
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 3'%3E%3Crect x='0' y='0' width='11' height='3'/%3E%3C/svg%3E");
    background-size: 14px 3px;
    background-position: left bottom;
    background-repeat: repeat-x;
    position: absolute;
    top: -3px;
    left: 0;
    width: 100%;
    height: 3px;
}
body[data-theme="dark"] .artists-overlay, body[data-theme="dark"] .artists-overlay:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 3'%3E%3Crect x='0' fill='white' y='0' width='11' height='3'/%3E%3C/svg%3E");
}
.artists-overlay.solo {
  background-color: var(--color3);
}
.artists-overlay .meta {
  background-color: inherit;
}
.page-template-ovr-artworks section.gallery-filters {
  padding-top: 20px;
}
.filter-group+button, a.reset-filters {
  display: none;
}
.single-gallery .ovr-nav li:last-child, .page-template-ovr-galleries .ovr-nav li:last-child {
  font-weight: bold;
}
.page-template-ovr-artworks .ovr-nav li:nth-child(2), .single-artwork .ovr-nav li:nth-child(2), .single-curated-list .ovr-nav li:nth-child(1), .page-template-ovr-overview .ovr-nav li:nth-child(1) {
  font-weight: bold;
}
.ovr .text-50 .txt{
  margin: 0 auto;

}
.ovr .filter-options {
  background-color: var(--color4);
}
@keyframes home-overlay-gradient {
  0% {
    height: 330px;
    margin-top: 10px;
    padding-bottom: 10px;
  }
  100% {
    height: 0;
    margin-top: 0;
    padding-bottom: 0;
  }
}
@keyframes fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@media(min-width: 1800px) {
  .home-item img, .video-item-link {
    width: 33.3333%;
  }
}
@media(max-width: 1100px) {
  .g4-1>div, .block-link {
    width: 33.3333%;
  }
  .g4-1>div.preview-artwork:nth-child(3n+2) .preview-artwork-info, .g4-1>div.preview-artwork:nth-child(3n+3) .preview-artwork-info {
    padding-left: 10px;
  }
  .g4-1>div.preview-artwork:nth-child(3n+1) .preview-artwork-info {
    padding-left: 0;
  }
  .g4:before {
    left: calc(33.3333% - 1.5px);
  }
  .g4:after {
    left: calc(66.6666% - 1.5px);
  }
  .g4-1:before {
    display: none;
  }
  .block-link:nth-child(3n+2), .block-link:nth-child(3n+3) {
    background-position: left top;
  }
  .block-link:nth-child(3n+1) {
    background-position: center top;
  }
  
}
@media(max-width: 767px) {
  .artists-overlay {
    display: none;
  }
  p.social a {
    padding-right: 8px;
  }
  .menu-toggle i {
    display: none;
  }
  .full-width section.under-construction h2, section.under-construction h2, .error404 section.under-construction h2 {
    font-size: 24px;
    line-height: 26px;
  }
  section.under-construction {
    min-height: calc(100*var(--vh) - 87px);
  }
  div.fold-out-list {
    width: 100%;
  }
  div.title-row {
    padding: 10px;
  }
  .block-link:nth-child(even) {
    background-position: left top;
  }
  .block-link:nth-child(odd) {
    background-position: center top;
  }
  .g4-1>div, .block-link {
    width: 50%;
  }
  .g4-1>div.preview-artwork:nth-child(even) .preview-artwork-info {
    padding-left: 10px;
  }
  .g4-1>div.preview-artwork:nth-child(odd) .preview-artwork-info {
    padding-left: 0;
  }
  .g4:before {
    left: calc(50% - 1.5px);
  }
  .g4:after {
    display: none;
  }
  section.gallery>div {
    width: 100%;
  }
  div.g-l {
    margin-bottom: 40px;
  }
  .g-l figcaption {
    bottom: -20px;
  }
  .g-r-b .txt{
    padding-top: 20px;
  }
  section.text-50 .txt {
    width: 66.6666%;
  }
  section.gallery>div:nth-child(2) {
    padding-left: 0;
    background-image: none;
  }
  .desktop {
    display: none;
  }
  .mobile {
    display: block;
  }
  .bottom.mobile {
    display: flex;
    padding-top: 10px;
  }
  html {
    scroll-padding-top: 66px;
  }
  html.ovr {
    scroll-padding-top: 30px;
  }
  nav p span:first-child {
    display: block;
  }
  span.list {
    display: none;
  }
  nav i {
    display: none;
  }
  section.home-menu {
    top: 67px;
  }
  .ovr .menu-toggle {
    top: 9px;
  }
  .menu-open i {
    font-style: normal;
    display: inline;
  }
  .home-item img, .video-item-link {
    width: 100%;
  }
  .image-text h2, .home-item h2 {
    font-size: 34px;
    line-height: 32px;
  }
  .title-row h2, .home-menu a {
    font-size: 60px;
    line-height: 35px;
  }
  .home-menu a {
    margin-top: -10px;
    padding-left: 5px;
    padding-right: 5px;
  }
  .g-r-t h2, .txt-big p, section.foldouttxt h2, section.title h2, section.section-preview h2,  .child-page a, .fold-out-list h2, .cta, .tib h2, .tb h2 {
    font-size: 24px;
    line-height: 26px;
  }
  #menu-footer {
    width: 100%;
    font-size: 16px;
    line-height: 20px;
    padding-bottom: 15px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 3'%3E%3Crect x='0' y='0' width='11' height='3'/%3E%3C/svg%3E");
    background-position: left bottom;
    background-size: 14px 3px;
    background-repeat: repeat-x;
  }
  body[data-theme="dark"] #menu-footer {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 3'%3E%3Crect x='0' y='0' fill='white' width='11' height='3'/%3E%3C/svg%3E");
  }
  section.gallery-links p {
    font-size: 18px;
    line-height: 24px;
    padding-right: 15px;
  }
  div.gallery-nav {
    position: fixed;
    width: 10px;
    right: 10px;
    top: 125px;
    text-align: center;
  }
  section.gallery-filters {
    position: fixed;
    background-color: var(--bgcolor);
    width: 100%;
    margin-top: -10px;
    padding-top: 10px;
    
  }
  div.gallery-nav li {
    font-size: 9px;
    font-weight: normal;
    line-height: 12px;
    color: var(--color1);
  }
  .display-filter .filter-options {
    position: fixed;
    display: block;
    top: 105px;
    left: 10px;
    border: none;
    width: 100%;
    z-index: 100;
  }
  .home-overlay {
    pointer-events: none;
    position: fixed;
    opacity: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    margin-top: 0;
    animation: fadeout linear 0.4s;
    animation-fill-mode: forwards;
    animation-delay: 1s;
  }
  .home-overlay h2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #000;
    font-size: 60px;
    line-height: 37px; 
    width: 100vw;
  }
  .page-template-a-z-galleries section.gallery-links {
    padding-top: 40px;
  }
  .display-filter h3 {
    background-color: var(--txtcolor);
    color: var(--bgcolor);
  }
  div.gallery-nav ul {
    flex-direction: column;
    
  }
  div.gallery-nav ul li:nth-child(even) {
    display: none;
  }
  nav {
    font-size: 34px;
    line-height: 32px;
  }
  header h1, header h2, .menu-toggle {
    font-size: 24px;
    line-height: 20px;
  }
 .home-menu a:after {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    margin-left: 5px;
  }
  main {
    padding-right: 10px;
    padding-top: 77px;
  }
  .home main {
    padding-top: 67px;
  }
  aside {
    right: -270px;
    width: 270px;
    background-color: var(--color2);
    transition: right 0.3s;
    top: 67px;
    margin-top: 0;
    background-image: none;
    padding: 10px;
    height: calc(var(--vh)* 100 - 67px);
  }
  aside:before {
    position: absolute;
    width: calc(100% - 20px);
    top: 10px;
    height: 3px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 3'%3E%3Crect x='0' y='0' width='11' height='3'/%3E%3C/svg%3E");
    background-position: left bottom;
    background-size: 14px 3px;
    background-repeat: repeat-x;
    content: '';
  }
  body[data-theme="dark"] aside:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 3'%3E%3Crect x='0' y='0' fill='white' width='11' height='3'/%3E%3C/svg%3E");
  }
  .show-aside aside {
    right: 0;
  }
  .show-aside .aside-toggle {
    right: 270px;
  }
  .show-aside main {
    pointer-events: none;
  }
  .aside-toggle {
    display: block;
    width: 79px;
    text-align: center;
    font-size: 16px;
    line-height: 16px;
    padding: 5px;
    position: fixed;
    transform-origin: center;
    transform: rotate(270deg) translate(26px, 27px);
    right: 0;
    bottom: 70px;
    background-color: var(--color2);
    transition: right 0.3s;
  }
  nav p {
    padding-top: 13px;
    padding-bottom: 16px;
  }
  header {
    width: 100%;
  }
  footer {
    width: calc(100% - 20px);
  }
  nav {
    padding-top: 67px;
  }
  .g3>div {
    width: 50%;
  }
  .g3:before {
    display: none;
  }
  .g3:after { 
    left: calc(50% - 1.5px);
  }
  .g3>div h2, .g3>div h3, .g3>div .txt {
    padding-left: 0px !important;
  }
  .g3>div:nth-child(2n+2) h2, .g3>div:nth-child(2n+2) h3, .g3>div:nth-child(2n+2) .txt {
    padding-left: 10px !important;
  }
  section.title2:first-child div.title-row {
    margin-top: 10px;
  }
  
  section.foldouttxt h2, section.title h2, section.section-preview h2, .child-page a {
    padding: 20px 0;
  }
  header p {
    font-size: 12px;
    line-height: 9px;
  }
  header h1, header h2, .menu-toggle {
    font-size: 34px;
    line-height: 32px;
    padding-bottom: 10px;
  }
  .menu-toggle span {
    display: none;
    
  }
  .menu-toggle {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18.61 18.61'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;stroke:%23000;stroke-width:.5px%7D%3C/style%3E%3C/defs%3E%3Cg%3E%3Crect class='cls-1' x='.3' y='.56' width='18' height='3'/%3E%3Crect class='cls-1' x='.3' y='7.8' width='18' height='3'/%3E%3Crect class='cls-1' x='.3' y='15.05' width='18' height='3'/%3E%3C/g%3E%3C/svg%3E");
    width: 20px;
    height: 20px;
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: center;
    position: fixed;
    top: 35px;
    right: 10px;
  }
  body[data-theme="dark"] .menu-toggle {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18.61 18.61'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;stroke:%23fff;stroke-width:.5px%7D%3C/style%3E%3C/defs%3E%3Cg%3E%3Crect class='cls-1' x='.3' y='.56' width='18' height='3'/%3E%3Crect class='cls-1' x='.3' y='7.8' width='18' height='3'/%3E%3Crect class='cls-1' x='.3' y='15.05' width='18' height='3'/%3E%3C/g%3E%3C/svg%3E");
  }
  .show-menu .menu-toggle {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18.61 18.61'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;stroke:%23000;stroke-width:.5px%7D%3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='M18.25,2.47L16.13,.35l-6.82,6.82L2.47,.35,.35,2.48l6.83,6.83L.35,16.13l2.12,2.12,6.84-6.84,6.82,6.84,2.12-2.12-6.83-6.83,6.83-6.83Z'/%3E%3C/svg%3E");
  }
  body[data-theme="dark"].show-menu .menu-toggle {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18.61 18.61'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;stroke:%23fff;stroke-width:.5px%7D%3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='M18.25,2.47L16.13,.35l-6.82,6.82L2.47,.35,.35,2.48l6.83,6.83L.35,16.13l2.12,2.12,6.84-6.84,6.82,6.84,2.12-2.12-6.83-6.83,6.83-6.83Z'/%3E%3C/svg%3E");
  }
  body.show-menu .menu-toggle span:first-child {
    display: none;
    position: fixed;
    left: 10px;
    top: 25px;
  }
  body.show-menu header h1, body.show-menu header h2 {
    opacity: 0;
  }
  header div.title {
    padding-top: 6px;
    height: 48px;
  }
  .menu-open span.list {
    display: inline-block;
  }
  body:not(.home) header h1 {
    display: none;
  }
  body.ovr header h1 {
    display: block;
  }
  body.show-menu header h1 {
    display: block;
    opacity: 1;
  }
  header div.title h2 {
    width: calc(100% - 26px);
  }
  section.section-preview {
    position: relative;
  }
  section.section-preview a {
    display: block;
    min-height: auto;
  }
  section.section-preview .section-preview-content {
    display: none;
  }
  section.section-preview h2 {
    font-size: 34px;
    line-height: 32px;
    font-weight: bold;
    text-align: left;
  }
  section.section-preview .section-toggle {
    position: absolute;
    height: 34px;
    width: 34px;
    background-color: var(--bgcolor);
    right: 0;
    top: 20px;
    display: block;
    text-align: right;
    line-height: 34px;
  }
  section.section-preview.show-content .section-toggle:after {
    content: '-';
  }
  section.section-preview .section-toggle:after {
    content: '+';
  }
  section.section-preview.show-content .section-preview-content {
    display: block;
    opacity: 1;
    text-align: left;
    padding: 0;
    padding-bottom: 20px;
  }
  .other-artworks>h2, .curated-lists>h2 {
    font-size: 24px;
    line-height: 30px;
  }
  .section-preview-content p {
    text-align: left;
  }
  .page-template-sections main {
    padding-top: 67px;
  }
  .single-section section.gallery-links {
    padding-top: 0px;
  }
  .title-row h2 {
    line-height: 60px;
    margin-top: -13px;
    margin-bottom: -3px;
  }
  section.text-blocks-3>div, section.text-img-blocks-3>div, section.text-img-blocks-infinite>div, section.text-img-blocks-2>div, section.text-blocks-2>div { 
    width: 100% !important;
    background-image: none !important;
  }
  section.text-blocks-3>div:not(:last-child), section.text-img-blocks-3>div:not(:last-child),section.text-img-blocks-infinite>div:not(:last-child), section.text-img-blocks-2>div:not(:last-child), section.text-blocks-2>div:not(:last-child) {
    padding-bottom: 20px;
  }
  .text-blocks-3 .tb:not(:first-child) .txt, .text-blocks-3 .tb:not(:first-child) .credits, .text-img-blocks-3 .tib:not(:first-child) .txt, .text-img-blocks-infinite .tib:not(:first-child) .txt, .text-img-blocks-3 .tib:not(:first-child) .credits, .text-blocks-2 .tb:not(:first-child) .txt, .text-blocks-2 .tb:not(:first-child) .credits {
    padding-left: 0px !important;
  }
  h2.st {
    margin-bottom: 10px;
  }
  section.title2+section {
    padding-top: 0;
  }
  .g-l {
    min-height: 0;

  }
  .g-r>div {
    height: auto;
  }
  .ovr-nav ul li {
    font-size: 16px;
    line-height: 16px;
  }
  body.ovr header {
    position: sticky;
  }
  .ovr-nav {
    top: 0px;
  }
  .ovr section.gallery-filters {
    position: static;
    background-color: var(--color4);
  }
  .ovr main {
    padding-top: 0px;
  }
  .ovr-nav ul li:not(:last-child) {
    background-image: none;
  }
  .ovr .display-filter .filter-options {
    position: absolute;
    display: block;
    top: 105px;
    left: 10px;
    border: none;
    width: 170px;
    left: 0;
    z-index: 100;
    top: 20px;
    background-color: var(--color4);
  }
  .ovr-g-r div:nth-child(2) {
    column-gap: 20px;
  }
  .artwork-gallery-item {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media(max-width: 500px) {
  .artwork-gallery-item {
    padding-left: 0px;
    padding-right: 0px;
  }
  div:not(.other-artworks-grid) .g4-1>div.preview-artwork:nth-child(even) .preview-artwork-info, div:not(.other-artworks-grid) .g4-1>div.preview-artwork:nth-child(odd) .preview-artwork-info {
    padding-left: 0px;
  }
  section.image-text-small>div {
    padding-left: 0;
  }
  .block-link {
    background-position: center top !important;
  }
  div:not(.other-artworks-grid) .g4-1>div, div:not(.other-artworks-grid) .block-link {
    width: 100%;
  }
  div:not(.other-artworks-grid) .g4:before {
    display: none;
  }
  section.tickets .g4:before {
    display: none;
  }
  .ticket {
    min-height: 0;
  }
  section.image-text-small>* {
    width: 100% !important;
  }
  section.image-text-small figure {
    background-image: none;
    padding-right: 0;
    padding-bottom: 10px;
  }
  .g3>div {
    width: 100%;
  }
  .g3:after { 
    display: none;
  }
  .g3>div h2, .g3>div h3, .g3>div .txt {
    padding-left: 0px !important;
  }
  .g3>div:nth-child(2n+2) h2, .g3>div:nth-child(2n+2) h3, .g3>div:nth-child(2n+2) .txt {
    padding-left: 0px !important;
  }
  .child-page {
    width: 100%;
    height: 200px;
  }
  .child-pages:after {
    display: none;
  }
  .child-page:nth-child(2)  {
    background-image: var(--horizontal-image);
    background-position: top left;
    background-size: var(--horizontal-size);
    background-repeat: var(--horizontal-repeat);
  }
  section.text-50 .txt {
    width: 100%;
  }
  section.artwork-description .aw-left, section.artwork-description .aw-right {
    padding-left: 0px;
    width: 100%;
    background-image: none;
  }

}
.bottom a {
  display: block;
  height: auto;
}
.switcher {
  position: relative;
  display: block;
  width: 130px;  /* Adjust based on your actual image size */
  height: 100%;  /* Match flex container height */
}

.switcher img:nth-child(2), .switcher img:nth-child(3) {
  position: absolute;
  top: -1px;
  left: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  opacity: 0;
  transition: opacity 0.01s ease;
  animation: imageSwitch 6s infinite linear;
}

.switcher img:nth-child(1) { animation-delay: 0s; }
.switcher img:nth-child(2) { animation-delay: 2s; }
.switcher img:nth-child(3) { animation-delay: 4s; }

@keyframes imageSwitch {
  0%, 33.99% { opacity: 1; }
  34%, 100% { opacity: 0; }
}

/* OVR */

