/* stylelint-disable order/properties-alphabetical-order */
/* stylelint-enable */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

a {
  text-decoration: none; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

html {
  font-size: 62.5%; }

body {
  font-size: 1.8rem;
  font-family: proxima-nova, sans-serif; }

.outer {
  position: relative; }
  .outer .inner {
    position: relative;
    width: 1290px;
    margin: 0 auto;
    max-width: calc(100vw - 40px); }
  .outer.yellow {
    background-color: #FFD600; }
  .outer.pink {
    background-color: #E94B5B; }
  .outer.black {
    background-color: rgba(0, 0, 0, 0.99); }
  .outer.spots {
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url("../images/spots.png"); }

p em {
  font-style: italic; }

p strong {
  font-weight: bold; }

header {
  height: 10rem;
  width: 100vw;
  position: fixed;
  z-index: 999;
  background-color: white;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.05); }
  header #site-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url("../images/spoton-logo.svg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 93px;
    height: 84px;
    text-indent: -99999px;
    z-index: 999; }
    header #site-title a {
      width: 100%;
      height: 100%;
      display: block; }
  header #menu-button {
    position: absolute;
    top: 50%;
    left: 6rem;
    width: 28px;
    height: 20px;
    transform: translate(0, -50%);
    transition-duration: 0.3s;
    z-index: 999; }
    header #menu-button:hover:before {
      top: -4px; }
    header #menu-button:hover:after {
      bottom: -4px; }
    header #menu-button:before, header #menu-button:after, header #menu-button a:after {
      content: '';
      width: 28px;
      height: 4px;
      background-color: #000;
      position: absolute;
      pointer-events: none;
      transition-duration: 0.3s; }
    header #menu-button:before {
      top: 0; }
    header #menu-button:after {
      bottom: 0; }
    header #menu-button a {
      display: block;
      width: 28px;
      height: 20px;
      text-indent: -99999px; }
      header #menu-button a:after {
        display: block;
        text-indent: 0;
        top: 50%;
        transform: translate(0, -2px); }
    header #menu-button.active:before {
      top: 30%;
      transform: rotate(45deg); }
    header #menu-button.active:after {
      bottom: 50%;
      transform: rotate(135deg); }
    header #menu-button.active a:after {
      opacity: 0; }
  header #site-content {
    position: absolute;
    top: -100vh;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: white;
    transition-duration: 0.3s;
    z-index: 0;
    opacity: 0; }
    header #site-content.active {
      top: 0;
      opacity: 1; }
    header #site-content #main-menu {
      position: absolute;
      top: 160px;
      left: calc(50% + 64px);
      transform: translate(-50%, 0);
      font-size: 4.6rem;
      font-weight: 800; }
      @media only screen and (min-width: 100px) and (max-width: 670px) {
        header #site-content #main-menu {
          font-size: 3rem;
          left: 50%; } }
      header #site-content #main-menu li {
        margin-bottom: 1.3rem;
        position: relative; }
        header #site-content #main-menu li a {
          color: #000;
          transition-duration: 0.2s; }
          header #site-content #main-menu li a:hover {
            color: #FFD600; }
        header #site-content #main-menu li .submenu-title {
          cursor: pointer; }
          header #site-content #main-menu li .submenu-title:hover {
            color: #FFD600; }
        header #site-content #main-menu li.has-submenu {
          display: block; }
          header #site-content #main-menu li.has-submenu:before {
            position: absolute;
            top: -4px;
            left: -64px;
            display: block;
            content: '';
            width: 32px;
            height: 32px;
            border-left: 2px solid #FFD600;
            border-top: 2px solid #FFD600;
            transform: rotate(225deg);
            cursor: pointer; }
          header #site-content #main-menu li.has-submenu:hover:before {
            border-color: #E8BC04; }
        header #site-content #main-menu li .submenu {
          overflow: hidden; }
          header #site-content #main-menu li .submenu.open li {
            opacity: 1;
            height: 4rem; }
          header #site-content #main-menu li .submenu li {
            margin-bottom: 0;
            line-height: 4rem;
            height: 1px;
            overflow: hidden;
            opacity: 0;
            transition-duration: 0.4s; }
            header #site-content #main-menu li .submenu li a {
              font-family: din-condensed, sans-serif;
              font-size: 3.2rem;
              line-height: 4rem;
              text-transform: uppercase;
              font-weight: 200; }
              @media only screen and (min-width: 100px) and (max-width: 670px) {
                header #site-content #main-menu li .submenu li a {
                  font-size: 2.4rem;
                  line-height: 2.6rem; } }
  header #banner-quick-links {
    position: absolute;
    top: 50%;
    right: 6rem;
    transform: translate(0, -50%); }
    header #banner-quick-links li {
      display: inline-block;
      font-family: din-condensed, sans-serif;
      font-size: 1.8rem;
      text-transform: uppercase;
      font-weight: 200;
      margin-left: 2rem; }
      @media only screen and (min-width: 100px) and (max-width: 670px) {
        header #banner-quick-links li {
          display: block;
          margin-bottom: 1rem; } }
      header #banner-quick-links li a {
        display: inline-block;
        color: black;
        transition-duration: 0.3s;
        position: relative; }
        header #banner-quick-links li a:after {
          content: '';
          background-color: rgba(255, 214, 0, 0);
          position: absolute;
          bottom: -4px;
          left: 50%;
          width: 1%;
          height: 2px;
          transform: translate(-50%, 0);
          transition-duration: 0.3s; }
        header #banner-quick-links li a:hover:after {
          width: 100%;
          background-color: #ffd600; }
      header #banner-quick-links li.link-button a {
        display: block;
        color: black;
        padding: 1rem;
        border-radius: 4px;
        background-color: #FFD600;
        border-bottom: none; }
        header #banner-quick-links li.link-button a:after {
          display: none; }
        header #banner-quick-links li.link-button a:hover {
          border-bottom: none;
          background-color: black;
          color: #B5AA36; }

#title-bar {
  width: 100vw;
  height: 460px;
  margin-bottom: 6.5rem; }
  @media only screen and (min-width: 1290px) {
    #title-bar {
      min-height: 30vw; } }
  @media only screen and (min-width: 671px) and (max-width: 1180px), only screen and (min-width: 100px) and (max-width: 670px) {
    #title-bar {
      max-height: 40vw; } }
  #title-bar #banner-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative; }
    #title-bar #banner-image #page-title {
      position: absolute;
      bottom: 0;
      left: 50%;
      background-color: white;
      width: 855px;
      max-width: calc(100vw - 80px);
      padding: 2rem 2rem 0 2rem;
      transform: translate(-50%, 0);
      border-top-left-radius: 16px;
      border-top-right-radius: 16px; }
      #title-bar #banner-image #page-title .subtitle {
        font-family: din-condensed, sans-serif;
        text-transform: uppercase;
        font-size: 2.8rem;
        font-weight: 100; }
      #title-bar #banner-image #page-title h1 {
        font-weight: bold;
        font-size: 4.6rem;
        line-height: 4.6rem; }
  #title-bar.no-image {
    height: 150px; }
    @media only screen and (min-width: 1290px) {
      #title-bar.no-image {
        min-height: 150px; } }
    @media only screen and (min-width: 671px) and (max-width: 1180px), only screen and (min-width: 100px) and (max-width: 670px) {
      #title-bar.no-image {
        max-height: 100px; } }
    #title-bar.no-image #banner {
      width: 100%;
      height: 100%;
      background-color: black;
      position: relative; }
      #title-bar.no-image #banner #page-title {
        position: absolute;
        bottom: 0;
        left: 50%;
        background-color: white;
        width: 855px;
        max-width: calc(100vw - 80px);
        padding: 2rem 2rem 0 2rem;
        transform: translate(-50%, 0);
        border-top-left-radius: 16px;
        border-top-right-radius: 16px; }
        #title-bar.no-image #banner #page-title h1 {
          font-weight: bold;
          font-size: 4.6rem;
          line-height: 4.6rem; }

#header-fill {
  height: 100px;
  background-color: white; }

.carousel {
  width: 100vw;
  height: 460px;
  overflow: hidden; }
  @media only screen and (min-width: 1290px) {
    .carousel {
      min-height: 30vw; } }
  @media only screen and (min-width: 100px) and (max-width: 670px) {
    .carousel {
      height: 100vh; } }
  .carousel .slide {
    width: 100vw;
    height: 460px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative; }
    @media only screen and (min-width: 1290px) {
      .carousel .slide {
        min-height: 30vw; } }
    @media only screen and (min-width: 100px) and (max-width: 670px) {
      .carousel .slide {
        height: 100vh; } }
    .carousel .slide .slide-image {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      width: 100%;
      height: 100%;
      background-position: center center;
      background-size: cover;
      background-repeat: no-repeat; }
      @media only screen and (min-width: 100px) and (max-width: 670px) {
        .carousel .slide .slide-image {
          height: 50%;
          bottom: auto; } }
    .carousel .slide .details {
      cursor: pointer; }
      .carousel .slide .details:hover .link-button a {
        background-color: #000;
        color: white; }
      .carousel .slide .details .story {
        margin-bottom: 2rem; }
      .carousel .slide .details .date-location {
        font-family: din-condensed, sans-serif;
        font-size: 1.8rem;
        color: rgba(0, 0, 0, 0.7);
        text-transform: uppercase; }
    .carousel .slide .link-button {
      position: absolute;
      bottom: 0rem;
      transform: translate(0, 50%); }
      .carousel .slide .link-button a {
        background-color: #FFD600;
        border: 1px solid white;
        font-family: din-condensed, sans-serif;
        text-transform: uppercase;
        font-weight: 300;
        font-size: 2rem;
        color: black;
        border-radius: 4px;
        padding: 0.5rem 1rem;
        transition-duration: 0.2s; }
        .carousel .slide .link-button a:hover {
          background-color: #000;
          color: white; }
    .carousel .slide.featured .details {
      background-color: rgba(0, 0, 0, 0.8);
      border: 2px solid white;
      border-left: none;
      border-top-right-radius: 16px;
      border-bottom-right-radius: 16px;
      color: white;
      font-size: 3.6rem;
      line-height: 4.1rem;
      font-weight: 900;
      position: absolute;
      top: 50%;
      left: 0;
      width: calc(50% - 17.5rem);
      max-width: 480px;
      padding: 1.5rem 1.5rem 5rem 6rem;
      transform: translate(0, -50%); }
      @media only screen and (min-width: 100px) and (max-width: 670px) {
        .carousel .slide.featured .details {
          background-color: black; } }
      .carousel .slide.featured .details.yellow {
        background-color: rgba(255, 214, 0, 0.8);
        color: black; }
        @media only screen and (min-width: 100px) and (max-width: 670px) {
          .carousel .slide.featured .details.yellow {
            background-color: #FFD600; } }
      .carousel .slide.featured .details.white {
        background-color: rgba(255, 255, 255, 0.8);
        color: black; }
        @media only screen and (min-width: 100px) and (max-width: 670px) {
          .carousel .slide.featured .details.white {
            background-color: white; } }
      @media only screen and (min-width: 671px) and (max-width: 1180px) {
        .carousel .slide.featured .details {
          font-size: 2.6rem;
          line-height: 3rem;
          width: calc(50% - 8rem); } }
      @media only screen and (min-width: 100px) and (max-width: 670px) {
        .carousel .slide.featured .details {
          font-size: 2.4rem;
          line-height: 2.8rem;
          padding: 2rem;
          width: calc(100vw - 8rem);
          height: calc(50% - 10rem);
          left: 50%;
          top: calc(50% - 8rem);
          border-radius: 2rem;
          transform: translate(-50%, 0); } }
      .carousel .slide.featured .details .link-button {
        left: 6rem; }
        @media only screen and (min-width: 100px) and (max-width: 670px) {
          .carousel .slide.featured .details .link-button {
            left: 2rem; } }
    .carousel .slide.production .details {
      position: absolute;
      top: 50%;
      left: 6rem;
      transform: translate(0, -50%);
      background-color: white;
      width: 466px;
      max-width: 25vw;
      padding: 3rem 3rem 6rem 3rem;
      border-radius: 16px;
      box-shadow: 0 0 12px rgba(0, 0, 0, 0.5); }
      .carousel .slide.production .details .performer {
        font-family: din-condensed, sans-serif;
        text-transform: uppercase;
        font-size: 2.8rem;
        font-weight: 200; }
        @media only screen and (min-width: 100px) and (max-width: 670px) {
          .carousel .slide.production .details .performer {
            font-size: 2rem; } }
      .carousel .slide.production .details .title {
        font-size: 4.6rem;
        font-weight: 800;
        margin: 1.15rem 0; }
        @media only screen and (min-width: 100px) and (max-width: 670px) {
          .carousel .slide.production .details .title {
            font-size: 4rem; } }
      @media only screen and (min-width: 100px) and (max-width: 670px) {
        .carousel .slide.production .details {
          top: calc(50% - 8rem);
          width: calc(100vw - 8rem);
          height: calc(50% - 10rem);
          max-width: none;
          left: 50%;
          padding: 2rem;
          transform: translate(-50%, 0); } }
  .carousel .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    z-index: 999;
    text-indent: -9999px;
    background: none;
    border: none;
    border-left: 2px solid white;
    border-top: 2px solid white;
    width: 20px;
    height: 20px;
    transition-duration: 0.1s;
    cursor: pointer; }
    @media only screen and (min-width: 100px) and (max-width: 670px) {
      .carousel .slick-arrow {
        top: 25%; } }
    .carousel .slick-arrow.slick-prev {
      left: 20px;
      transform: translate(0, -50%) rotate(-45deg); }
    .carousel .slick-arrow.slick-next {
      right: 20px;
      transform: translate(0, -50%) rotate(135deg); }
    .carousel .slick-arrow:hover {
      width: 28px;
      height: 28px; }
  .carousel .slick-dots {
    position: absolute;
    bottom: 20px;
    right: 20px;
    opacity: 0.2;
    transition-duration: 0.5s;
    transform: scale(0.7);
    transform-origin: bottom; }
    .carousel .slick-dots:hover {
      opacity: 1;
      transform: scale(1); }
    .carousel .slick-dots li {
      margin-bottom: 8px; }
      .carousel .slick-dots li button {
        text-indent: -9999px;
        border: 2px solid white;
        background: none;
        width: 16px;
        height: 16px;
        border-radius: 50%;
        cursor: pointer;
        outline: none;
        transition-duration: 0.3s; }
      .carousel .slick-dots li:hover button {
        background-color: rgba(255, 214, 0, 0.5); }
      .carousel .slick-dots li.slick-active button {
        background: white; }

#home-links {
  width: 1290px;
  max-width: calc(100vw - 32px);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  transform: translate(0, -25px);
  padding-bottom: 4rem; }
  @media only screen and (max-width: 1290px) {
    #home-links {
      justify-content: center; } }
  #home-links .tab {
    position: relative;
    width: 420px;
    height: 220px;
    background: rgba(255, 214, 0, 0.2);
    border-radius: 16px;
    border: 2px solid white;
    cursor: pointer;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transition-duration: 0.3s;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.2); }
    @media only screen and (max-width: 1290px) {
      #home-links .tab {
        margin: 0 0.5rem 2.5rem 0.5rem; } }
    #home-links .tab .overview {
      background-color: white;
      width: 250px;
      height: 32px;
      position: absolute;
      top: 0;
      left: 50%;
      transform: translate(-50%, 0);
      text-align: center;
      padding: 1rem 0;
      border-bottom-left-radius: 16px;
      border-bottom-right-radius: 16px;
      border-top-left-radius: 0;
      border-top-right-radius: 0;
      transition-duration: 0.4s;
      overflow: hidden; }
      #home-links .tab .overview h3 {
        font-size: 3.2rem;
        font-weight: 800;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%; }
        #home-links .tab .overview h3.grey {
          color: #464646; }
        #home-links .tab .overview h3.yellow {
          color: #E8BC04; }
        #home-links .tab .overview h3.pink {
          color: #F7AC8D; }
      #home-links .tab .overview .description {
        color: #464646;
        position: absolute;
        top: -50px;
        left: 50%;
        width: calc(100% - 20px);
        transform: translate(-50%, -50%);
        transition-duration: 0.4s; }
    #home-links .tab .link-button {
      position: absolute;
      bottom: 0rem;
      left: 50%;
      transform: translate(-50%, 50%); }
      #home-links .tab .link-button a {
        background-color: #FFD600;
        border: 1px solid white;
        font-family: din-condensed, sans-serif;
        text-transform: uppercase;
        font-weight: 300;
        font-size: 2rem;
        color: black;
        border-radius: 4px;
        padding: 0.5rem 1rem;
        transition-duration: 0.6s; }
    #home-links .tab:hover .overview {
      width: 100%;
      height: calc(100% - 20px);
      border-radius: 14px;
      background-color: rgba(255, 255, 255, 0.9); }
      #home-links .tab:hover .overview .description {
        top: 25%; }
    #home-links .tab:hover .link-button a {
      background-color: #000;
      color: white; }

#featured-events {
  background-color: rgba(181, 170, 54, 0.12); }
  #featured-events .tile-group {
    padding: 8rem 0; }

.title-tab {
  background-color: white;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  padding: 1rem 3rem;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  text-transform: uppercase;
  font-family: din-condensed, sans-serif;
  font-weight: 200;
  font-size: 2.8rem;
  color: #464646; }

.logo {
  width: 93px;
  height: 83px;
  background-image: url("../images/spoton-logo.svg");
  background-size: contain;
  background-repeat: no-repeat;
  text-indent: -99999px;
  display: block;
  overflow: hidden; }
  .logo.rev-logo {
    background-image: url("../images/spoton-logo-rev.svg"); }

.hero {
  height: 46rem; }

#events.module {
  padding-top: 4rem;
  background-color: rgba(181, 170, 54, 0.1); }

#event-page #main-details {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  justify-content: space-between; }
  @media only screen and (max-width: 1290px) {
    #event-page #main-details {
      display: block; } }
  #event-page #main-details .sidebar {
    width: 180px; }
    #event-page #main-details .sidebar.left-sidebar {
      text-align: right; }
    @media only screen and (max-width: 1290px) {
      #event-page #main-details .sidebar {
        width: 855px;
        max-width: calc(100vw - 80px);
        margin: 0 auto; } }
  #event-page #main-details #description {
    width: 855px;
    max-width: calc(100vw - 80px); }
    @media only screen and (max-width: 1290px) {
      #event-page #main-details #description {
        margin: 0 auto; } }
    #event-page #main-details #description p {
      font-size: 1.8rem;
      line-height: 2.4rem;
      margin-bottom: 2.4rem; }
      #event-page #main-details #description p.introduction {
        font-size: 2.2rem;
        line-height: 3rem; }
  #event-page #main-details .link-button {
    display: inline-block;
    margin-bottom: 3rem; }
    #event-page #main-details .link-button a {
      text-align: center;
      display: block;
      padding: 0.5rem 1.5rem;
      background-color: #FFD600;
      border-radius: 4px;
      font-weight: bold;
      color: black;
      font-size: 1.8rem;
      transition-duration: 0.3s; }
      #event-page #main-details .link-button a:hover {
        background-color: black;
        color: #FFD600; }

#event-page #further-details {
  width: 855px;
  margin: 3rem auto;
  max-width: calc(100vw - 80px);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; }
  #event-page #further-details .detail {
    width: calc(50% - 20px);
    padding: 1rem 0;
    border-top: 1px solid #FFD600;
    border-bottom: 1px solid #FFD600;
    font-size: 1.8rem;
    line-height: 2.1rem;
    margin-top: -1px; }
    #event-page #further-details .detail a {
      color: #E8BC04;
      transition-duration: 0.3s; }
      #event-page #further-details .detail a:hover {
        color: #000; }
    #event-page #further-details .detail.categories li {
      display: inline-block;
      font-family: din-condensed, sans-serif;
      text-transform: uppercase;
      font-weight: 100; }
      #event-page #further-details .detail.categories li:after {
        content: '/';
        margin: 0 0.5rem; }
      #event-page #further-details .detail.categories li:last-child:after {
        display: none; }

#filter {
  padding-bottom: 4rem; }
  #filter h4 {
    display: inline;
    font-family: din-condensed, sans-serif;
    font-size: 2.8rem;
    line-height: 2.8rem;
    font-weight: 100;
    text-transform: uppercase;
    color: #464646;
    margin-right: 2rem; }
    @media only screen and (min-width: 100px) and (max-width: 670px) {
      #filter h4 {
        display: block;
        margin-bottom: 1.5rem; } }
  #filter #filter-options {
    display: inline; }
    #filter #filter-options ul {
      display: inline; }
      #filter #filter-options ul li {
        display: inline-block;
        margin-right: 1rem;
        margin-bottom: 1.5rem; }
        #filter #filter-options ul li a {
          font-family: din-condensed, sans-serif;
          text-transform: uppercase;
          color: black;
          background-color: rgba(255, 214, 0, 0.25);
          transition-duration: 0.4s;
          padding: 0.5rem 1rem;
          border-radius: 4px;
          font-size: 2rem;
          line-height: 2rem;
          height: 2rem; }
          #filter #filter-options ul li a:hover {
            background-color: rgba(255, 214, 0, 0.5); }
          #filter #filter-options ul li a.active {
            background-color: #ffd600; }
    #filter #filter-options .clear-filter {
      display: inline-block;
      border: 2px solid #FFD600;
      padding: 0.65rem 1rem;
      border-radius: 4px;
      font-size: 1.4rem;
      line-height: 1.6rem;
      height: 1.6rem;
      font-weight: bold;
      cursor: pointer;
      transform: translate(0, -2px);
      margin-bottom: 1.5rem; }
      #filter #filter-options .clear-filter:hover {
        background-color: #FFD600; }

.module.newsletter {
  padding: 4rem 0 5rem 0; }
  .module.newsletter h3 {
    text-align: center;
    color: white;
    text-transform: uppercase;
    font-size: 2.4rem;
    font-weight: bold;
    margin-bottom: 2rem; }
  .module.newsletter p {
    text-align: center; }
  .module.newsletter #signup-form {
    width: 390px;
    height: 40px;
    background-color: white;
    border-radius: 4px;
    margin: 3rem auto 0 auto;
    position: relative; }
    .module.newsletter #signup-form #newsletter-email {
      position: absolute;
      top: 50%;
      left: 1rem;
      transform: translate(0, -50%);
      width: 300px;
      border: none !important;
      outline: none;
      background-color: white;
      font-family: proxima-nova, sans-serif;
      font-size: 2rem; }
      .module.newsletter #signup-form #newsletter-email::placeholder {
        font-family: din-condensed, sans-serif;
        text-transform: uppercase;
        color: #464646;
        font-weight: 200;
        font-size: 1.8rem;
        line-height: 1.8rem; }
    .module.newsletter #signup-form #newsletter-submit {
      position: absolute;
      top: 2px;
      right: 0px;
      background-color: black;
      color: #FFD600;
      border: none;
      text-transform: uppercase;
      font-family: din-condensed, sans-serif;
      font-size: 2rem;
      line-height: 2rem;
      height: 36px;
      padding: 0 1rem;
      border-radius: 4px;
      cursor: pointer;
      transition-duration: 0.3s; }
      .module.newsletter #signup-form #newsletter-submit:hover {
        color: white; }

.module.call-to-action {
  padding: 4rem 0; }
  .module.call-to-action .inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 920px; }
    .module.call-to-action .inner .image {
      width: 420px;
      max-width: calc(100vw - 40px);
      margin: 0 auto; }
    .module.call-to-action .inner .text {
      width: 420px;
      text-align: center;
      padding: 60px 0 40px 0;
      margin: 0 auto;
      display: table-cell;
      vertical-align: middle; }
      .module.call-to-action .inner .text h3 {
        text-transform: uppercase;
        color: white;
        font-weight: bold;
        font-size: 2.4rem; }
      .module.call-to-action .inner .text h4 {
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.7);
        font-family: din-condensed, sans-serif;
        font-weight: 200;
        font-size: 2rem;
        margin: 1rem 0; }
      .module.call-to-action .inner .text p {
        margin-top: 1rem; }
    .module.call-to-action .inner.image-right {
      flex-direction: row-reverse; }
      @media only screen and (min-width: 100px) and (max-width: 670px), only screen and (min-width: 671px) and (max-width: 1180px) {
        .module.call-to-action .inner.image-right {
          flex-direction: column-reverse; } }
  .module.call-to-action.black .inner .text {
    color: white; }
  .module.call-to-action .link-button {
    margin: 3rem 0; }
    .module.call-to-action .link-button a {
      background-color: #FFD600;
      font-family: din-condensed, sans-serif;
      text-transform: uppercase;
      font-weight: 300;
      font-size: 2rem;
      color: black;
      border-radius: 4px;
      padding: 0.5rem 1rem;
      transition-duration: 0.2s; }
      .module.call-to-action .link-button a:hover {
        background-color: #000;
        color: white; }

.module.single-column-text .inner {
  max-width: calc(100vw - 80px);
  width: 855px; }

.module.single-column-text .inner p, .module.two-column .inner p {
  font-size: 1.8rem;
  line-height: 2.6rem;
  margin-bottom: 2.6rem; }
  .module.single-column-text .inner p.introduction, .module.two-column .inner p.introduction {
    font-size: 2.2rem;
    line-height: 3rem; }
  .module.single-column-text .inner p.small, .module.two-column .inner p.small {
    font-size: 1.4rem;
    line-height: 1.8rem; }
  .module.single-column-text .inner p a, .module.two-column .inner p a {
    color: #E8BC04;
    transition-duration: 0.3s; }
    .module.single-column-text .inner p a:hover, .module.two-column .inner p a:hover {
      color: #000; }
  .module.single-column-text .inner p.link-button a, .module.two-column .inner p.link-button a {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #FFD600;
    border-radius: 4px;
    color: black;
    font-weight: bold;
    transition-duration: 0.2s; }
    .module.single-column-text .inner p.link-button a:hover, .module.two-column .inner p.link-button a:hover {
      background-color: black;
      color: #FFD600; }

.module.single-column-text .inner ul, .module.single-column-text .inner ol, .module.two-column .inner ul, .module.two-column .inner ol {
  font-size: 1.8rem;
  line-height: 2.6rem;
  margin-bottom: 2.6rem; }

.module.single-column-text .inner ul li, .module.two-column .inner ul li {
  list-style: disc;
  list-style-position: inside; }
  .module.single-column-text .inner ul li a, .module.two-column .inner ul li a {
    color: #E8BC04;
    transition-duration: 0.3s; }
    .module.single-column-text .inner ul li a:hover, .module.two-column .inner ul li a:hover {
      color: #000; }

.module.single-column-text .inner ol, .module.two-column .inner ol {
  list-style: decimal; }
  .module.single-column-text .inner ol li, .module.two-column .inner ol li {
    list-style-position: inside; }

.module.two-columns .images {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  max-width: 2000px;
  width: 100vw;
  height: 100%;
  display: flex; }
  @media only screen and (min-width: 671px) and (max-width: 1180px) {
    .module.two-columns .images {
      position: relative;
      display: block;
      top: auto;
      left: auto;
      transform: translate(0, 0); } }
  .module.two-columns .images .blank {
    width: 50%;
    height: 100%; }
    @media only screen and (min-width: 671px) and (max-width: 1180px) {
      .module.two-columns .images .blank {
        display: none; } }
  .module.two-columns .images .image {
    width: 50%;
    height: 100%;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative; }
    .module.two-columns .images .image .caption {
      position: absolute;
      bottom: 0;
      left: 0;
      background-color: black;
      padding: 0.5rem 0.75rem;
      color: white;
      font-size: 1.4rem;
      font-family: din-condensed, sans-serif;
      text-transform: uppercase; }

.module.two-columns .inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; }
  @media only screen and (min-width: 671px) and (max-width: 1180px) {
    .module.two-columns .inner {
      display: block; } }
  .module.two-columns .inner .text-col {
    width: 50%;
    padding-bottom: 8rem; }
    .module.two-columns .inner .text-col.padding-top {
      padding-top: 4rem; }
    .module.two-columns .inner .text-col.right-col .text {
      margin-left: 48px; }
    .module.two-columns .inner .text-col .text {
      width: calc(100% - 48px); }
    .module.two-columns .inner .text-col h3 {
      font-size: 3.2rem;
      line-height: 3.2rem;
      margin-bottom: 2.6rem;
      font-family: din-condensed, sans-serif;
      text-transform: uppercase;
      font-weight: 200; }
    .module.two-columns .inner .text-col p {
      font-size: 1.8rem;
      line-height: 2.6rem;
      margin-bottom: 2.6rem; }
      .module.two-columns .inner .text-col p a {
        color: #E8BC04;
        transition-duration: 0.3s; }
        .module.two-columns .inner .text-col p a:hover {
          color: #000; }

.tiles .tile-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; }
  .tiles .tile-group .tile {
    transform: scale(1);
    transition-duration: 0.5s;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0); }
    .tiles .tile-group .tile.event-tile {
      cursor: pointer; }
      .tiles .tile-group .tile.event-tile:hover {
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.06); }
        .tiles .tile-group .tile.event-tile:hover .thumbnail img {
          transform: scale(1.1); }
        .tiles .tile-group .tile.event-tile:hover .link-button a {
          background-color: black;
          color: #FFD600; }
      .tiles .tile-group .tile.event-tile.hidden {
        display: none; }
    .tiles .tile-group .tile .link-button {
      position: absolute;
      left: 16px;
      bottom: 16px; }
      .tiles .tile-group .tile .link-button a {
        display: block;
        background-color: #FFD600;
        border: 1px solid white;
        font-family: din-condensed, sans-serif;
        text-transform: uppercase;
        font-weight: 300;
        font-size: 2rem;
        line-height: 2rem;
        height: 2rem;
        color: black;
        border-radius: 4px;
        padding: 0.75rem 1rem;
        transition-duration: 0.4s; }
    .tiles .tile-group .tile .thumbnail {
      border-radius: 16px;
      overflow: hidden;
      position: relative;
      z-index: 1; }
      .tiles .tile-group .tile .thumbnail img {
        display: block;
        transform: scale(1);
        transition-duration: 0.3s; }
    .tiles .tile-group .tile .tile-title {
      width: calc(100% - 16px);
      margin: 16px auto; }
      .tiles .tile-group .tile .tile-title h5 {
        font-family: din-condensed, sans-serif;
        color: #464646;
        font-size: 1.8rem;
        font-weight: 200;
        text-transform: uppercase;
        margin-bottom: 0.45rem; }
      .tiles .tile-group .tile .tile-title h4 {
        font-weight: bold;
        font-size: 2.4rem; }
    .tiles .tile-group .tile .details {
      position: absolute;
      bottom: 64px;
      left: 16px;
      font-family: din-condensed, sans-serif;
      text-transform: uppercase;
      font-size: 1.8rem;
      line-height: 1.9rem;
      font-weight: 200;
      color: #464646; }
      .tiles .tile-group .tile .details strong {
        font-weight: 400; }
  .tiles .tile-group.tiles-4 .tile {
    width: 310px;
    height: 423px;
    background-color: white;
    border-radius: 16px;
    margin: 0 8px 16px 8px; }
    .tiles .tile-group.tiles-4 .tile .tile-title {
      width: calc(100% - 32px); }
  .tiles .tile-group.tiles-3 {
    max-width: 1320px;
    margin: 0 auto; }
    .tiles .tile-group.tiles-3 .tile {
      width: 419px;
      max-width: calc(100vw - 40px);
      height: 379px;
      margin: 0 8px 16px 8px;
      border-radius: 16px;
      box-shadow: 0 0 12px rgba(0, 0, 0, 0.16); }

.tiles#event-dates {
  padding-bottom: 4rem; }
  .tiles#event-dates #date-tiles {
    align-items: stretch; }
    .tiles#event-dates #date-tiles .tile {
      width: 420px;
      max-height: 130px;
      height: auto;
      overflow: hidden;
      padding-bottom: 4rem;
      background-color: black;
      color: white; }
      .tiles#event-dates #date-tiles .tile .date-info {
        position: relative;
        font-size: 2.4rem;
        font-weight: bold;
        line-height: 2.8rem;
        width: calc(100% - 50px);
        height: 140px;
        padding: 2rem 50px 0 2rem;
        cursor: pointer; }
        .tiles#event-dates #date-tiles .tile .date-info .date {
          color: #FFD600; }
      .tiles#event-dates #date-tiles .tile.sold-out {
        background-color: #AAA; }
        .tiles#event-dates #date-tiles .tile.sold-out .date-info {
          cursor: default; }
      .tiles#event-dates #date-tiles .tile.show-info .date-info:after {
        content: '';
        position: absolute;
        display: block;
        top: 1rem;
        right: 4rem;
        width: 24px;
        height: 24px;
        border-right: 2px solid white;
        border-bottom: 2px solid white;
        transform: rotate(45deg) translate(0, 0);
        transition-duration: 0.2s; }
      .tiles#event-dates #date-tiles .tile .sold-out {
        position: absolute;
        left: 2rem;
        top: 115px;
        bottom: auto;
        font-weight: 100;
        font-size: 3rem;
        text-transform: uppercase;
        color: black;
        font-family: din-condensed, sans-serif; }
      .tiles#event-dates #date-tiles .tile .link-button {
        left: 2rem;
        top: 115px;
        bottom: auto;
        position: absolute;
        z-index: 999; }
        .tiles#event-dates #date-tiles .tile .link-button a {
          border-color: #FFD600 !important; }
          .tiles#event-dates #date-tiles .tile .link-button a:hover {
            background-color: #000;
            color: #FFD600; }
      .tiles#event-dates #date-tiles .tile.active {
        max-height: 9999px; }
        .tiles#event-dates #date-tiles .tile.active .date-info:after {
          transform: rotate(-135deg) translate(-1rem, -1rem); }
      .tiles#event-dates #date-tiles .tile .venue-info {
        padding: 2rem; }
        .tiles#event-dates #date-tiles .tile .venue-info p {
          font-size: 1.8rem;
          line-height: 2.4rem;
          margin-bottom: 2.4rem; }
        .tiles#event-dates #date-tiles .tile .venue-info h4 {
          font-family: din-condensed, sans-serif;
          font-size: 2.4rem;
          text-transform: uppercase;
          margin-bottom: 1rem; }
        .tiles#event-dates #date-tiles .tile .venue-info li {
          margin: 0 0.5rem 0.5rem 0; }
          .tiles#event-dates #date-tiles .tile .venue-info li a {
            display: inline-block;
            padding: 0.5rem;
            background-color: #FFD600;
            border-radius: 4px;
            font-weight: bold;
            color: black; }

#further-information {
  padding-bottom: 7rem; }
  #further-information h3 {
    font-size: 3.2rem;
    font-family: din-condensed, sans-serif;
    text-transform: uppercase;
    padding: 2rem 0;
    margin-bottom: 2rem;
    border-top: 1px solid #FFD600; }

footer {
  padding: 4rem 0 6rem 0;
  background-color: #000;
  box-shadow: 0 100vh 0 100vh #000;
  color: #AAA; }
  footer .inner {
    display: flex; }
    @media only screen and (min-width: 100px) and (max-width: 670px) {
      footer .inner {
        display: block; } }
    footer .inner li a {
      transition-duration: 0.3s; }
      footer .inner li a:hover {
        color: #FFD600 !important; }
    footer .inner #footer-logo {
      width: 218px; }
      @media only screen and (min-width: 100px) and (max-width: 670px) {
        footer .inner #footer-logo {
          margin-bottom: 2rem; } }
    footer .inner #footer-links {
      width: 528px;
      font-size: 1.8rem;
      font-weight: bold; }
      @media only screen and (min-width: 100px) and (max-width: 670px) {
        footer .inner #footer-links {
          margin-bottom: 2rem; } }
      footer .inner #footer-links li {
        display: inline-block;
        margin-right: 8px; }
      footer .inner #footer-links #footer-info {
        margin: 2rem 0; }
        footer .inner #footer-links #footer-info li {
          font-family: din-condensed, sans-serif;
          text-transform: uppercase;
          font-weight: 200; }
          footer .inner #footer-links #footer-info li a {
            color: rgba(255, 255, 255, 0.7); }
            footer .inner #footer-links #footer-info li a:hover {
              color: #FFD600; }
      footer .inner #footer-links #footer-copyright {
        font-size: 1.2rem;
        color: rgba(255, 255, 255, 0.6);
        margin: 2rem 0 0 0;
        font-weight: normal; }
        footer .inner #footer-links #footer-copyright a {
          color: rgba(255, 255, 255, 0.8);
          transition-duration: 0.3s; }
          footer .inner #footer-links #footer-copyright a:hover {
            color: #FFD600; }
        footer .inner #footer-links #footer-copyright .separator {
          display: inline-block;
          width: 2rem; }
    footer .inner #footer-social li {
      margin-right: 1rem; }
      footer .inner #footer-social li a {
        width: 16px;
        height: 16px;
        display: block;
        overflow: hidden;
        transition-duration: 0.3s;
        transition-property: fill; }
        footer .inner #footer-social li a svg {
          fill: white;
          transition-duration: 0.3s;
          transition-property: fill; }
        footer .inner #footer-social li a:hover svg {
          fill: #FFD600; }
    footer .inner #footer-sponsors {
      display: flex;
      justify-content: space-between; }
      footer .inner #footer-sponsors .sponsor-column {
        width: 174px;
        margin-left: 16px; }
        footer .inner #footer-sponsors .sponsor-column h4 {
          font-size: 1.4rem;
          margin-bottom: 1.4rem;
          text-transform: uppercase;
          font-family: din-condensed, sans-serif;
          font-weight: 200;
          color: rgba(255, 255, 255, 0.45); }
        footer .inner #footer-sponsors .sponsor-column .mini-carousel {
          background-color: rgba(255, 255, 255, 0.15);
          border-radius: 8px;
          width: 100%;
          height: 102px; }
  footer a {
    color: white; }

/* Make embedded videos responsive and full-width */
    .responsive-embed {
        position: relative;
        padding-bottom: 56.25%; /* 16:9 aspect ratio */
        height: 0;
        overflow: hidden;
        max-width: 100%;
        margin: 8rem 0;
    }
    
    .responsive-embed iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
