html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}
ul {
  list-style: none;
}
button,
input,
select {
  margin: 0;
}
html {
  box-sizing: border-box;
}
*,
*::before,
*::after {
  box-sizing: inherit;
}
img,
video {
  height: auto;
  max-width: 100%;
}
iframe {
  border: 0;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}
@font-face {
  font-family: 'basis_grotesque_regular';
  src: url('../fonts/basis-grotesque-regular.woff2') format('woff2'), url('../fonts/basis-grotesque-regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'basis_grotesque_medium';
  src: url('../fonts/basis-grotesque-medium.woff2') format('woff2'), url('../fonts/basis-grotesque-medium.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
p {
  line-height: 1.5rem;
  margin-top: 0;
  margin-bottom: 1.5rem;
}
/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0.5rem;
  margin-bottom: 0;
  line-height: 1.2;
}
@media (min-width: 768px) {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin-top: 1.5rem;
    margin-bottom: 0;
  }
}
h1 {
  font-size: 2.4rem;
  margin-top: 1rem;
}
@media (min-width: 768px) {
  h1 {
    font-size: 3rem;
    margin-top: 3rem;
  }
}
h2 {
  font-size: 1.6rem;
  margin-top: 1rem;
}
@media (min-width: 768px) {
  h2 {
    font-size: 2.28rem;
    margin-top: 3rem;
  }
}
h3 {
  font-size: 1.2rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
h4 {
  font-size: 0.707rem;
}
h5 {
  font-size: 0.47133333rem;
}
h6 {
  font-size: 0.3535rem;
}
h1.heading-small {
  font-size: 16px;
  font-family: 'basis_grotesque_medium';
  line-height: 1;
  margin: 0;
}
:root {
  --gutter-width: 1rem;
  --outer-margin: 2rem;
  --gutter-compensation: calc((var(--gutter-width) * 0.5) * -1);
  --half-gutter-width: calc(var(--gutter-width) * 0.5);
  --xs-min: 30;
  --sm-min: 48;
  --md-min: 64;
  --lg-min: 75;
  --screen-xs-min: var(--xs-min) em;
  --screen-sm-min: var(--sm-min) em;
  --screen-md-min: var(--md-min) em;
  --screen-lg-min: var(--lg-min) em;
  --container-sm: calc(var(--sm-min) + var(--gutter-width));
  --container-md: calc(var(--md-min) + var(--gutter-width));
  --container-lg: calc(var(--lg-min) + var(--gutter-width));
}
@custom-media --sm-viewport only screen and (min-width: 48em);
@custom-media --md-viewport only screen and (min-width: 64em);
@custom-media --lg-viewport only screen and (min-width: 75em);
.container-fluid,
.container {
  margin-right: auto;
  margin-left: auto;
}
.container-fluid {
  padding-right: var(--outer-margin, 2rem);
  padding-left: var(--outer-margin, 2rem);
}
.row {
  box-sizing: border-box;
  display: flex;
  flex: 0 1 auto;
  flex-direction: row;
  flex-wrap: wrap;
  margin-right: var(--gutter-compensation, -0.5rem);
  margin-left: var(--gutter-compensation, -0.5rem);
}
.row.reverse {
  flex-direction: row-reverse;
}
.col.reverse {
  flex-direction: column-reverse;
}
.col-xs,
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-offset-0,
.col-xs-offset-1,
.col-xs-offset-2,
.col-xs-offset-3,
.col-xs-offset-4,
.col-xs-offset-5,
.col-xs-offset-6,
.col-xs-offset-7,
.col-xs-offset-8,
.col-xs-offset-9,
.col-xs-offset-10,
.col-xs-offset-11,
.col-xs-offset-12 {
  box-sizing: border-box;
  flex: 0 0 auto;
  padding-right: var(--half-gutter-width, 0.5rem);
  padding-left: var(--half-gutter-width, 0.5rem);
}
.col-xs {
  flex-grow: 1;
  flex-basis: 0;
  max-width: 100%;
}
.col-xs-1 {
  flex-basis: 8.33333333%;
  max-width: 8.33333333%;
}
.col-xs-2 {
  flex-basis: 16.66666667%;
  max-width: 16.66666667%;
}
.col-xs-3 {
  flex-basis: 25%;
  max-width: 25%;
}
.col-xs-4 {
  flex-basis: 33.33333333%;
  max-width: 33.33333333%;
}
.col-xs-5 {
  flex-basis: 41.66666667%;
  max-width: 41.66666667%;
}
.col-xs-6 {
  flex-basis: 50%;
  max-width: 50%;
}
.col-xs-7 {
  flex-basis: 58.33333333%;
  max-width: 58.33333333%;
}
.col-xs-8 {
  flex-basis: 66.66666667%;
  max-width: 66.66666667%;
}
.col-xs-9 {
  flex-basis: 75%;
  max-width: 75%;
}
.col-xs-10 {
  flex-basis: 83.33333333%;
  max-width: 83.33333333%;
}
.col-xs-11 {
  flex-basis: 91.66666667%;
  max-width: 91.66666667%;
}
.col-xs-12 {
  flex-basis: 100%;
  max-width: 100%;
}
.col-xs-offset-0 {
  margin-left: 0;
}
.col-xs-offset-1 {
  margin-left: 8.33333333%;
}
.col-xs-offset-2 {
  margin-left: 16.66666667%;
}
.col-xs-offset-3 {
  margin-left: 25%;
}
.col-xs-offset-4 {
  margin-left: 33.33333333%;
}
.col-xs-offset-5 {
  margin-left: 41.66666667%;
}
.col-xs-offset-6 {
  margin-left: 50%;
}
.col-xs-offset-7 {
  margin-left: 58.33333333%;
}
.col-xs-offset-8 {
  margin-left: 66.66666667%;
}
.col-xs-offset-9 {
  margin-left: 75%;
}
.col-xs-offset-10 {
  margin-left: 83.33333333%;
}
.col-xs-offset-11 {
  margin-left: 91.66666667%;
}
.start-xs {
  justify-content: flex-start;
  text-align: start;
}
.center-xs {
  justify-content: center;
  text-align: center;
}
.end-xs {
  justify-content: flex-end;
  text-align: end;
}
.top-xs {
  align-items: flex-start;
}
.middle-xs {
  align-items: center;
}
.bottom-xs {
  align-items: flex-end;
}
.around-xs {
  justify-content: space-around;
}
.between-xs {
  justify-content: space-between;
}
.first-xs {
  order: -1;
}
.last-xs {
  order: 1;
}
@media (--sm-viewport) {
  .container {
    width: var(--container-sm, 46rem);
  }
  .col-sm,
  .col-sm-1,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12,
  .col-sm-offset-0,
  .col-sm-offset-1,
  .col-sm-offset-2,
  .col-sm-offset-3,
  .col-sm-offset-4,
  .col-sm-offset-5,
  .col-sm-offset-6,
  .col-sm-offset-7,
  .col-sm-offset-8,
  .col-sm-offset-9,
  .col-sm-offset-10,
  .col-sm-offset-11,
  .col-sm-offset-12 {
    box-sizing: border-box;
    flex: 0 0 auto;
    padding-right: var(--half-gutter-width, 0.5rem);
    padding-left: var(--half-gutter-width, 0.5rem);
  }
  .col-sm {
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
  }
  .col-sm-1 {
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-sm-2 {
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-sm-3 {
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-sm-5 {
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-sm-6 {
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-sm-8 {
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-sm-9 {
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-sm-11 {
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-sm-12 {
    flex-basis: 100%;
    max-width: 100%;
  }
  .col-sm-offset-0 {
    margin-left: 0;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }
  .start-sm {
    justify-content: flex-start;
    text-align: start;
  }
  .center-sm {
    justify-content: center;
    text-align: center;
  }
  .end-sm {
    justify-content: flex-end;
    text-align: end;
  }
  .top-sm {
    align-items: flex-start;
  }
  .middle-sm {
    align-items: center;
  }
  .bottom-sm {
    align-items: flex-end;
  }
  .around-sm {
    justify-content: space-around;
  }
  .between-sm {
    justify-content: space-between;
  }
  .first-sm {
    order: -1;
  }
  .last-sm {
    order: 1;
  }
}
@media (--md-viewport) {
  .container {
    width: var(--container-md, 61rem);
  }
  .col-md,
  .col-md-1,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-10,
  .col-md-11,
  .col-md-12,
  .col-md-offset-0,
  .col-md-offset-1,
  .col-md-offset-2,
  .col-md-offset-3,
  .col-md-offset-4,
  .col-md-offset-5,
  .col-md-offset-6,
  .col-md-offset-7,
  .col-md-offset-8,
  .col-md-offset-9,
  .col-md-offset-10,
  .col-md-offset-11,
  .col-md-offset-12 {
    box-sizing: border-box;
    flex: 0 0 auto;
    padding-right: var(--half-gutter-width, 0.5rem);
    padding-left: var(--half-gutter-width, 0.5rem);
  }
  .col-md {
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
  }
  .col-md-1 {
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-md-2 {
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-md-3 {
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-md-4 {
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-md-5 {
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-md-6 {
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-md-7 {
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-md-8 {
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-md-9 {
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-md-10 {
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-md-11 {
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-md-12 {
    flex-basis: 100%;
    max-width: 100%;
  }
  .col-md-offset-0 {
    margin-left: 0;
  }
  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }
  .start-md {
    justify-content: flex-start;
    text-align: start;
  }
  .center-md {
    justify-content: center;
    text-align: center;
  }
  .end-md {
    justify-content: flex-end;
    text-align: end;
  }
  .top-md {
    align-items: flex-start;
  }
  .middle-md {
    align-items: center;
  }
  .bottom-md {
    align-items: flex-end;
  }
  .around-md {
    justify-content: space-around;
  }
  .between-md {
    justify-content: space-between;
  }
  .first-md {
    order: -1;
  }
  .last-md {
    order: 1;
  }
}
@media (--lg-viewport) {
  .container {
    width: var(--container-lg, 71rem);
  }
  .col-lg,
  .col-lg-1,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12,
  .col-lg-offset-0,
  .col-lg-offset-1,
  .col-lg-offset-2,
  .col-lg-offset-3,
  .col-lg-offset-4,
  .col-lg-offset-5,
  .col-lg-offset-6,
  .col-lg-offset-7,
  .col-lg-offset-8,
  .col-lg-offset-9,
  .col-lg-offset-10,
  .col-lg-offset-11,
  .col-lg-offset-12 {
    box-sizing: border-box;
    flex: 0 0 auto;
    padding-right: var(--half-gutter-width, 0.5rem);
    padding-left: var(--half-gutter-width, 0.5rem);
  }
  .col-lg {
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
  }
  .col-lg-1 {
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-lg-2 {
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-lg-3 {
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-lg-5 {
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-lg-6 {
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-lg-8 {
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-lg-9 {
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-lg-11 {
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-lg-12 {
    flex-basis: 100%;
    max-width: 100%;
  }
  .col-lg-offset-0 {
    margin-left: 0;
  }
  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }
  .start-lg {
    justify-content: flex-start;
    text-align: start;
  }
  .center-lg {
    justify-content: center;
    text-align: center;
  }
  .end-lg {
    justify-content: flex-end;
    text-align: end;
  }
  .top-lg {
    align-items: flex-start;
  }
  .middle-lg {
    align-items: center;
  }
  .bottom-lg {
    align-items: flex-end;
  }
  .around-lg {
    justify-content: space-around;
  }
  .between-lg {
    justify-content: space-between;
  }
  .first-lg {
    order: -1;
  }
  .last-lg {
    order: 1;
  }
}
html {
  font-family: 'basis_grotesque_regular', Helvetica, sans-serif;
  color: #000;
  font-size: 16px;
  line-height: 1.4;
}
@media (min-width: 768px) {
}
html body {
  position: relative;
  background-color: #F7F7F1;
}
html body.welcome,
html body.sustainability {
  background-color: #ECC2D2;
}
html body.article {
  background-color: #e5ad02;
}
html body.set-times {
  background-color: #fbfdf2;
}
html body.afterparties {
  background-color: #000;
}
html body.home {
  animation: fadeInAnimation ease 1s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
@media (min-width: 768px) {
  html body.home .gala-22 {
    max-width: 50%;
  }
}
html a {
  text-decoration: none;
}
.container {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}
#Toggle {
  position: fixed;
  top: 0;
  right: 1rem;
  height: 0;
  padding-left: 40px;
  padding-right: 40px;
  z-index: 10000;
}
@media (min-width: 768px) {
  #Toggle {
    width: 100%;
  }
}
#Toggle a.trigger {
  position: absolute;
  top: 22px;
  background: #000;
  color: #fff;
  padding: 0 16px;
  font-size: 12px;
  height: 30px;
  line-height: 30px;
  border-radius: 20px;
  display: inline-block;
}
#Toggle a.trigger:visited {
  color: #fff;
}
@media (min-width: 768px) {
  #Toggle a.trigger {
    height: 36px;
    line-height: 36px;
    right: 0;
  }
}
body.afterparties #Toggle a {
  background-color: #ECC2D2;
  color: #000;
}
body.afterparties #Toggle a:visited {
  color: #000;
}
.gala.menu-active #Toggle a {
  background-color: #fff;
  color: #000;
}
.gala.menu-active #Toggle a:visited {
  color: #000;
}
#Menu {
  display: none;
}
#Menu .overlay {
  position: fixed;
  z-index: 910;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
}
#Menu .overlay.blend {
  mix-blend-mode: difference;
  background-color: #fff;
  z-index: 900;
}
#Menu .nav {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
}
#Menu .nav ul {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  isolation: isolate;
}
#Menu .nav li {
  text-align: Center;
  font-size: 2rem;
  line-height: 1.8;
}
#Menu .nav a {
  color: #fff;
}
.gala.menu-active #Menu {
  display: block;
}
.top {
  height: 12px;
  width: 100%;
  background: #5a5a5a;
  position: absolute;
  z-index: 500;
  top: 0;
  left: 0;
}
#Site {
  position: relative;
  min-height: 100vh;
}
main {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 45%;
}
.home main {
  padding-top: 30%;
}
.header {
  z-index: 500;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  padding-top: 24px;
  width: 100%;
}
.header h1.here-together {
  color: #000;
  font-size: 1rem;
  margin: 0;
  line-height: 1;
}
@media (min-width: 768px) {
  .header h1.here-together {
    font-size: 2rem;
    margin: 0;
  }
}
.header h2.heading-small {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .header h2.heading-small {
    margin: 0;
    font-size: 1.4rem;
  }
}
body.welcome a,
body.sustainability a,
body.discover.article a {
  color: #fff;
}
body.welcome .header .gala-22 .f,
body.sustainability .header .gala-22 .f,
body.discover.article .header .gala-22 .f {
  fill: #fff;
}
body.welcome .header h1.here-together,
body.sustainability .header h1.here-together,
body.discover.article .header h1.here-together {
  color: #fff;
}
body.welcome .header h2.heading-small,
body.sustainability .header h2.heading-small,
body.discover.article .header h2.heading-small {
  color: #fff;
}
body.welcome .footer .logo .cls-1,
body.sustainability .footer .logo .cls-1,
body.discover.article .footer .logo .cls-1,
body.welcome .footer .logo .cls-2,
body.sustainability .footer .logo .cls-2,
body.discover.article .footer .logo .cls-2 {
  fill: #fff;
}
body.welcome .footer h2,
body.sustainability .footer h2,
body.discover.article .footer h2 {
  color: #fff;
}
body.set-times .header .gala-22 .f {
  fill: #000;
}
body.afterparties .header h1.here-together {
  color: #fff;
}
body.afterparties .header h2.heading-small {
  color: #ECC2D2;
}
.footer {
  z-index: 500;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding-bottom: 24px;
  width: 100%;
}
.footer .logo {
  width: 100%;
  max-width: 90px;
  margin-bottom: 0.25rem;
}
@media (min-width: 768px) {
  .footer .logo {
    max-width: 120px;
    margin-bottom: 0.5rem;
  }
}
.footer h2 {
  margin: 0;
  font-family: 'basis_grotesque_medium';
}
@media (min-width: 768px) {
  .footer .left {
    float: left;
  }
}
.footer .coordinates p {
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .footer .coordinates p {
    margin-top: 2rem;
  }
}
@media (min-width: 768px) {
  .footer .coordinates {
    float: right;
    text-align: right;
  }
}
body.home .footer h2 {
  color: #d1d2c8;
}
body.welcome .header,
body.set-times .header {
  background: -moz-linear-gradient(top, #ecc2d2 62%, #ecc2d2 75%, rgba(236, 194, 210, 0) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #ecc2d2 62%, #ecc2d2 75%, rgba(236, 194, 210, 0) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #ecc2d2 62%, #ecc2d2 75%, rgba(236, 194, 210, 0) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ecc2d2', endColorstr='#00ecc2d2', GradientType=0);
  /* IE6-9 */
}
body.welcome .footer,
body.set-times .footer {
  background: -moz-linear-gradient(top, rgba(236, 194, 210, 0) 0%, #ecc2d2 25%, #ecc2d2 38%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(236, 194, 210, 0) 0%, #ecc2d2 25%, #ecc2d2 38%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(236, 194, 210, 0) 0%, #ecc2d2 25%, #ecc2d2 38%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ecc2d2', endColorstr='#ecc2d2', GradientType=0);
  /* IE6-9 */
}
body.set-times .header {
  background: -moz-linear-gradient(top, #f7f9ee 62%, #f7f9ee 75%, rgba(247, 249, 238, 0) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #f7f9ee 62%, #f7f9ee 75%, rgba(247, 249, 238, 0) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #f7f9ee 62%, #f7f9ee 75%, rgba(247, 249, 238, 0) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ecc2d2', endColorstr='#00ecc2d2', GradientType=0);
  /* IE6-9 */
}
body.set-times .footer {
  background: -moz-linear-gradient(top, rgba(236, 194, 210, 0) 0%, #ecc2d2 25%, #ecc2d2 38%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(236, 194, 210, 0) 0%, #ecc2d2 25%, #ecc2d2 38%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(236, 194, 210, 0) 0%, #ecc2d2 25%, #ecc2d2 38%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ecc2d2', endColorstr='#ecc2d2', GradientType=0);
  /* IE6-9 */
}
body.discover.article .header {
  background: -moz-linear-gradient(top, #e5ad02 62%, #e5ad02 75%, rgba(229, 173, 2, 0) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #e5ad02 62%, #e5ad02 75%, rgba(229, 173, 2, 0) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #e5ad02 62%, #e5ad02 75%, rgba(229, 173, 2, 0) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e5ad02', endColorstr='#00e5ad02', GradientType=0);
  /* IE6-9 */
}
body.discover.article .footer {
  background: -moz-linear-gradient(top, rgba(229, 173, 2, 0) 0%, #e5ad02 25%, #e5ad02 38%);
  background: -webkit-linear-gradient(top, rgba(229, 173, 2, 0) 0%, #e5ad02 25%, #e5ad02 38%);
  background: linear-gradient(to bottom, rgba(229, 173, 2, 0) 0%, #e5ad02 25%, #e5ad02 38%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00e5ad02', endColorstr='#e5ad02', GradientType=0);
}
.cursor {
  width: 32px;
  height: 32px;
  border-radius: 100%;
  background-color: #ECC2D2;
  transition: all 200ms ease-out;
  position: fixed;
  pointer-events: none;
  left: 0;
  top: 0;
  transform: translate(calc(-50% + 15px), -50%);
  z-index: 10001;
}
.cursor2 {
  width: 24px;
  height: 24px;
  border-radius: 100%;
  background-color: black;
  opacity: 0.1;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: width 0.3s, height 0.3s;
  z-index: 10000;
}
main {
  position: relative;
  z-index: 100;
}
@media (min-width: 768px) {
}
@media (min-width: 1141px) {
}
article {
  position: relative;
  z-index: 100;
  top: 6rem;
  padding: 0 8px;
  padding-bottom: 12rem;
}
@media (min-width: 768px) {
  article {
    max-width: 70%;
    margin: 0 auto;
    top: 10rem;
  }
}
article > div {
  margin: 0 auto;
}
article p .img {
  vertical-align: top;
  display: inline-block;
}
article .hero {
  position: relative;
}
article .hero .text {
  position: absolute;
  bottom: 0rem;
  margin: 1rem;
}
@media (min-width: 768px) {
  article .hero .text {
    bottom: 0rem;
    margin: 2rem;
  }
}
@media (min-width: 768px) {
}
@media (min-width: 1141px) {
}
.text-right {
  text-align: right;
}
.align-top {
  vertical-align: top;
}
.align-bottom {
  vertical-align: bottom;
}
.text-white {
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}
figure {
  margin-top: 1rem;
}
.img-right {
  float: right;
  margin-left: 1.5rem;
  max-width: 150px;
}
@media (min-width: 768px) {
  .img-right {
    max-width: 220px;
  }
}
.img-left {
  float: left;
  margin-right: 1.5rem;
  max-width: 150px;
}
@media (min-width: 768px) {
  .img-left {
    max-width: 220px;
  }
}
.img-center {
  text-align: center;
}
.img-full {
  width: 100%;
  display: block;
}
.img-med {
  max-width: 576px;
}
@keyframes fadeInAnimation {
  0% {
    opacity: 0;
    transform: scale3d(5, 5, 5);
  }
  50% {
    transform: scale3d(1, 1, 1);
  }
  100% {
    opacity: 1;
  }
}
.box {
  background-color: #0cf;
  padding: 100px 0;
}
.masonry {
  column-gap: 16px;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.masonry.masonry-1 {
  column-count: 1;
  width: 72%;
}
.masonry.masonry-2 {
  column-count: 2;
}
.masonry img {
  width: 100%;
  display: block;
}
.masonry figure {
  margin: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  margin-bottom: 10px;
  break-inside: avoid;
}
.masonry figure > img {
  grid-row: 1 / -1;
  grid-column: 1;
}
ul.bubbles {
  position: relative;
  margin-top: 200px;
  margin-bottom: 100px;
}
ul.bubbles li {
  border-radius: 50%;
  position: absolute;
  overflow: hidden;
  background: #ECC2D2;
  background-size: 100% auto;
  background-repeat: no-repeat;
}
ul.bubbles li::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0);
}
ul.bubbles li.discover-1 {
  background-image: url(../../articles/assets/img/thumb-1.jpg);
  top: -20vw;
  left: 4vw;
  width: 34vw;
  height: 34vw;
  animation: float 5s ease-in-out infinite;
}
@media (min-width: 768px) {
  ul.bubbles li.discover-1 {
    top: 0vw;
    left: 3vw;
    width: 24vw;
    height: 24vw;
  }
}

/* thursday */
ul.bubbles li.discover-8 {
  top: 28vw;
  left: 25vw;
  width: 19vw;
  height: 19vw;
  background-image: url(../../articles/assets/img/thumb-8.jpg);
  animation: float 9s ease-in-out infinite;
}
@media (min-width: 768px) {
  ul.bubbles li.discover-8 {
    top: 30vw;
    left: 71vw;
    width: 16vw;
    height: 16vw;
  }
}
ul.bubbles li.discover-7 {
  top: 58vw;
  left: 7vw;
  width: 20vw;
  height: 20vw;
  background-image: url(../../articles/assets/img/thumb-7.jpg);
  animation: float 7s ease-in-out infinite;
}
@media (min-width: 768px) {
  ul.bubbles li.discover-7 {
    top: 26vw;
    left: 5vw;
    width: 15vw;
    height: 15vw;
  }
}
ul.bubbles li.discover-5 {
  top: 70vw;
  left: 37vw;
  width: 22vw;
  height: 22vw;
  background-image: url(../../articles/assets/img/thumb-5.jpg);
  animation: float 12.5s ease-in-out infinite;
}
@media (min-width: 768px) {
  ul.bubbles li.discover-5 {
    top: 46vw;
    left: 15vw;
    width: 21vw;
    height: 21vw;
  }
}

/* friday */
ul.bubbles li.discover-4 {
  top: -18vw;
  left: 45vw;
  width: 38vw;
  height: 38vw;
  background-image: url(../../articles/assets/img/thumb-4.jpg);
  animation: float 8.5s ease-in-out infinite;
}
@media (min-width: 768px) {
  ul.bubbles li.discover-4 {
    top: 0vw;
    left: 62vw;
    width: 28vw;
    height: 28vw;
  }
}
ul.bubbles li.discover-3 {
  top: 2vw;
  left: -4vw;
  width: 33vw;
  height: 33vw;
  background-image: url(../../articles/assets/img/thumb-3.jpg);
  animation: float 6.5s ease-in-out infinite;
}
@media (min-width: 768px) {
  ul.bubbles li.discover-3 {
    top: 12vw;
    left: 28vw;
    width: 30vw;
    height: 30vw;
  }
}



ul.bubbles li.discover-2 {
  top: -18vw;
  left: 45vw;
  width: 38vw;
  height: 38vw;
  background-image: url(../../articles/assets/img/thumb-2.jpg);
  animation: float 8s ease-in-out infinite;
}
@media (min-width: 768px) {
  ul.bubbles li.discover-2 {
    top: 3vw;
    left: 62vw;
    width: 31vw;
    height: 31vw;  }
}

ul.bubbles li.discover-6 {
  top: 92vw;
  left: 0vw;
  width: 30vw;
  height: 30vw;
  background-image: url(../../articles/assets/img/thumb-6.jpg);
  animation: float 7s ease-in-out infinite;
}
@media (min-width: 768px) {
  ul.bubbles li.discover-6 {
    top: 39vw;
    left: 37vw;
    width: 9vw;
    height: 9vw;
  }
}



ul.bubbles li.discover-9 {
  top: 22vw;
  left: 8vw;
  width: 43vw;
  height: 43vw;
  background-image: url(../../articles/assets/img/thumb-9.jpg);
  animation: float 11s ease-in-out infinite;
}
@media (min-width: 768px) {
  ul.bubbles li.discover-9 {
    top: 12vw;
    left: 28vw;
    width: 30vw;
    height: 30vw;
  }
}
ul.bubbles li a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}
ul.bubbles li span {
  position: absolute;
  color: #ffffff;
  font-family: 'basis_grotesque_medium';
  font-size: 1.5rem;
  line-height: 1.3;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  width: 80%;
  display: block;
}
ul.bubbles li:hover span {
  opacity: 1;
  text-shadow: 0 0 5px #000;
}
ul.bubbles li:hover::before {
  background-color: rgba(0, 0, 0, 0.4);
}
@keyframes float {
  0% {
    box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.2);
    transform: translatey(0px);
  }
  50% {
    box-shadow: 0 25px 15px 0px rgba(0, 0, 0, 0.1);
    transform: translatey(-20px);
  }
  100% {
    box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.2);
    transform: translatey(0px);
  }
}
.set-times article h2 {
  margin-top: 2rem;
}
.set-times article h3 {
  margin-bottom: 1rem;
}
.set-times article table {
  width: 100%;
  margin: 0 auto 2rem auto;
}
.set-times article table tr > td:first-child {
  width: 120px;
}
.set-times article table td {
  padding: 0.5rem 1rem 0.5rem 0;
}
.tabs .tab-nav {
  margin-left: -2rem;
}
.tabs .tab {
  display: none;
}
.tabs .tab.active {
  display: block;
}
.tabs .nav-tab {
  display: inline-block;
  padding: 10px 2rem;
  font-size: 1.2rem;
  color: #ECC2D2;
  font-family: 'basis_grotesque_medium';
}
.tabs .nav-tab.active {
  color: #000;
}
#Map {
  position: absolute;
  height: 100%;
  width: 100%;
}
#Orb {
  position: absolute;
  width: 90%;
  left: 5%;
  top: 30vw;
  z-index: 100;
  padding-bottom: 90%;
  height: 0;
}
@media (min-width: 768px) {
  #Orb {
    top: 1.5vw;
    width: 50%;
    left: 25%;
    padding-bottom: 50%;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }
}
#Orb video,
#Orb img {
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  -webkit-mask-image: url("../img/mask.png");
  mask-image: url("../img/mask.png");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  top: 0;
  left: 0;
}
.map-pop table tr > td:first-child {
  width: 80px;
}
.map-pop table tr > td:last-child {
  width: 200px;
}
.map-pop .uk-tab a {
  font-size: 12px;
  color: #ECC2D2;
}
.map-pop .uk-tab .uk-active a {
  border-color: #000;
}
.leaflet-popup-content {
  min-width: 280px!important;
}
.leaflet-popup-tip {
  display: none!important;
}
.leaflet-control {
  display: none;
}
@media (min-width: 768px) {
  .leaflet-control {
    display: block;
  }
}
